|
|
@ -1482,6 +1482,15 @@ public class DistributionStockupAppController extends BladeController { |
|
|
|
entity.setStockupAreaId(stockupDTO.getStockupAllocationId()); |
|
|
|
entity.setStockupAreaId(stockupDTO.getStockupAllocationId()); |
|
|
|
} |
|
|
|
} |
|
|
|
distributionStockService.save(entity); |
|
|
|
distributionStockService.save(entity); |
|
|
|
|
|
|
|
//这里尝试修改备货库存品包件的备货状态
|
|
|
|
|
|
|
|
boolean update = distributionParcelListService.update(Wrappers.<DistributionParcelListEntity>update().lambda() |
|
|
|
|
|
|
|
.eq(DistributionParcelListEntity::getOrderPackageCode, entity.getCoding()) |
|
|
|
|
|
|
|
.eq(DistributionParcelListEntity::getWarehouseId, myCurrentWarehouse.getId()) |
|
|
|
|
|
|
|
.eq(DistributionParcelListEntity::getConditions, "2") |
|
|
|
|
|
|
|
.eq(DistributionParcelListEntity::getMaterialId, entity.getMaterialId()) |
|
|
|
|
|
|
|
.eq(DistributionParcelListEntity::getMallId, entity.getMarketId()) |
|
|
|
|
|
|
|
.set(DistributionParcelListEntity::getOrderPackageStockupStatus, OrderPackageStockupStatusConstant.yibeihu.getValue()) |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
//扫码成功
|
|
|
|
//扫码成功
|
|
|
|
return Resp.scanSuccess(PdaAudioLingoStatus.saomiaochenggong.getName(), audioValue); |
|
|
|
return Resp.scanSuccess(PdaAudioLingoStatus.saomiaochenggong.getName(), audioValue); |
|
|
|