|
|
@ -2478,33 +2478,35 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
log.warn("#############updateWaybill: 运单已作废 waybillId={}", waybillId); |
|
|
|
log.warn("#############updateWaybill: 运单已作废 waybillId={}", waybillId); |
|
|
|
return R.fail(405, "运单已作废"); |
|
|
|
return R.fail(405, "运单已作废"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
Integer checkStatus = waybillEntity.getCheckStatus(); |
|
|
|
|
|
|
|
if(checkStatus.equals(1)){ |
|
|
|
|
|
|
|
log.warn("#############updateWaybill: 运单已审核 waybillId={}", waybillId); |
|
|
|
|
|
|
|
return R.fail(405, "运单已审核,不能改单"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Integer waybillType = waybillEntity.getWaybillType(); |
|
|
|
Integer waybillType = waybillEntity.getWaybillType(); |
|
|
|
if(waybillType.equals(2)){ |
|
|
|
if(waybillType.equals(2)){ |
|
|
|
//零担改单限制
|
|
|
|
//零担改单限制
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
DistributionStockArticleEntity startStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, departureWarehouseId); |
|
|
|
DistributionStockArticleEntity endStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, destinationWarehouseId); |
|
|
|
if(Objects.isNull(startStockArticleEntity)){ |
|
|
|
if(Objects.isNull(endStockArticleEntity)){ |
|
|
|
log.warn("#############updateWaybill: 订单信息不存在 waybillId={}", waybillId); |
|
|
|
DistributionStockArticleEntity startStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, departureWarehouseId); |
|
|
|
return R.fail(405, "订单信息不存在"); |
|
|
|
if(Objects.isNull(startStockArticleEntity)){ |
|
|
|
} |
|
|
|
|
|
|
|
Integer handQuantity = startStockArticleEntity.getHandQuantity(); |
|
|
|
|
|
|
|
if(NumberUtil.equals(handQuantity,0)){ |
|
|
|
|
|
|
|
DistributionStockArticleEntity endStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, destinationWarehouseId); |
|
|
|
|
|
|
|
if(Objects.isNull(endStockArticleEntity)){ |
|
|
|
|
|
|
|
log.warn("#############updateWaybill: 订单信息不存在! waybillId={}", waybillId); |
|
|
|
log.warn("#############updateWaybill: 订单信息不存在! waybillId={}", waybillId); |
|
|
|
return R.fail(405, "订单信息不存在!"); |
|
|
|
return R.fail(405, "订单信息不存在!"); |
|
|
|
} |
|
|
|
} |
|
|
|
handQuantity = endStockArticleEntity.getHandQuantity(); |
|
|
|
Integer handQuantity = startStockArticleEntity.getHandQuantity(); |
|
|
|
if(!NumberUtil.equals(handQuantity,totalCount)){ |
|
|
|
if(!NumberUtil.equals(handQuantity,totalCount)){ |
|
|
|
log.warn("#############updateWaybill: 目的仓数据还未完全到达 waybillId={}", waybillId); |
|
|
|
log.warn("#############updateWaybill: 始发仓数据已发运 waybillId={}", waybillId); |
|
|
|
return R.fail(405, "目的仓数据还未完全到达"); |
|
|
|
return R.fail(405, "始发仓数据已发运"); |
|
|
|
} |
|
|
|
} |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
|
|
|
|
Integer handQuantity = endStockArticleEntity.getHandQuantity(); |
|
|
|
if(!NumberUtil.equals(handQuantity,totalCount)){ |
|
|
|
if(!NumberUtil.equals(handQuantity,totalCount)){ |
|
|
|
log.warn("#############updateWaybill: 始发仓数据已发运 waybillId={}", waybillId); |
|
|
|
log.warn("#############updateWaybill: 目的仓数据还未完全到达 waybillId={}", waybillId); |
|
|
|
return R.fail(405, "始发仓数据已发运"); |
|
|
|
return R.fail(405, "目的仓数据还未完全到达"); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -2637,10 +2639,22 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
} |
|
|
|
} |
|
|
|
}else if(waybillType == 2){ |
|
|
|
}else if(waybillType == 2){ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<WaybillDetailDTO> addList = openOrderDTO.getAddList(); |
|
|
|
|
|
|
|
//把addList中updateType=1的放入一个新的List
|
|
|
|
|
|
|
|
List<WaybillDetailDTO> addNewList = addList.stream().filter(waybillDetailDTO -> waybillDetailDTO.getUpdateType() == 1).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<DistributionStockArticleEntity> orderList = distributionStockArticleClient.findListByWaybillNumber(waybillNo); |
|
|
|
List<DistributionStockArticleEntity> orderList = distributionStockArticleClient.findListByWaybillNumber(waybillNo); |
|
|
|
orderList.forEach(stockArticleEntity -> { |
|
|
|
orderList.forEach(stockArticleEntity -> { |
|
|
|
stockArticleEntity.setMallId(consigneeId); |
|
|
|
stockArticleEntity.setMallId(consigneeId); |
|
|
|
|
|
|
|
stockArticleEntity.setDescriptionGoods(waybillEntity.getGoodsName()); |
|
|
|
stockArticleEntity.setTotalNumber(totalCount); |
|
|
|
stockArticleEntity.setTotalNumber(totalCount); |
|
|
|
|
|
|
|
Integer handQuantity = stockArticleEntity.getHandQuantity(); |
|
|
|
|
|
|
|
if(handQuantity != 0){ |
|
|
|
|
|
|
|
stockArticleEntity.setHandQuantity(totalCount); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode()); |
|
|
|
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode()); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
@ -2663,18 +2677,53 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<WaybillDetailDTO> removeList = openOrderDTO.getRemoveList(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> updateNumberIds = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//把addList中updateType=2的元素的id放入一个新的List
|
|
|
|
|
|
|
|
List<WaybillDetailDTO> updateList = addList.stream().filter(waybillDetailDTO -> waybillDetailDTO.getUpdateType() == 2).collect(Collectors.toList()); |
|
|
|
|
|
|
|
//把updateList转化成以id为key的Map
|
|
|
|
|
|
|
|
Map<Long, WaybillDetailDTO> updateMap = updateList.stream().collect(Collectors.toMap(WaybillDetailDTO::getId, Function.identity())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> deleteParcelListIds = new ArrayList<>(); |
|
|
|
|
|
|
|
List<Long> removeIds = new ArrayList<>(); |
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(removeList)){ |
|
|
|
|
|
|
|
//把removeList中所有id放入一个List
|
|
|
|
|
|
|
|
List<Long> list = removeList.stream().map(WaybillDetailDTO::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
removeIds.addAll(list); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findByWaybillNumber(waybillNo); |
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findByWaybillNumber(waybillNo); |
|
|
|
parcelListEntityList.forEach(parcelListEntity -> { |
|
|
|
parcelListEntityList.forEach(parcelListEntity -> { |
|
|
|
Long nowWarehouseId = parcelListEntity.getWarehouseId(); |
|
|
|
Long nowWarehouseId = parcelListEntity.getWarehouseId(); |
|
|
|
parcelListEntity.setSendWarehouseId(departureWarehouseId); |
|
|
|
Long advanceId = parcelListEntity.getAdvanceId(); |
|
|
|
parcelListEntity.setSendWarehouseName(departureWarehouseName); |
|
|
|
Long id = parcelListEntity.getId(); |
|
|
|
parcelListEntity.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
if(removeIds.contains(advanceId)){ |
|
|
|
parcelListEntity.setAcceptWarehouseName(destinationWarehouseName); |
|
|
|
deleteParcelListIds.add(id); |
|
|
|
|
|
|
|
|
|
|
|
if(nowWarehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
|
|
|
parcelListEntity.setIsTransfer(0); |
|
|
|
|
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
parcelListEntity.setIsTransfer(1); |
|
|
|
WaybillDetailDTO waybillDetailDTO = updateMap.get(advanceId); |
|
|
|
|
|
|
|
if(!Objects.isNull(waybillDetailDTO)){ |
|
|
|
|
|
|
|
parcelListEntity.setFirsts(waybillDetailDTO.getGoodsName()); |
|
|
|
|
|
|
|
Integer quantity = parcelListEntity.getQuantity(); |
|
|
|
|
|
|
|
if(quantity != 0){ |
|
|
|
|
|
|
|
parcelListEntity.setQuantity(waybillDetailDTO.getNum()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
updateNumberIds.add(id); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
parcelListEntity.setSendWarehouseId(departureWarehouseId); |
|
|
|
|
|
|
|
parcelListEntity.setSendWarehouseName(departureWarehouseName); |
|
|
|
|
|
|
|
parcelListEntity.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
|
|
|
|
parcelListEntity.setAcceptWarehouseName(destinationWarehouseName); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(nowWarehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
|
|
|
parcelListEntity.setIsTransfer(0); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
parcelListEntity.setIsTransfer(1); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -2685,6 +2734,80 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
distributionParcelListClient.updateList(parcelListEntityList); |
|
|
|
distributionParcelListClient.updateList(parcelListEntityList); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<DistributionParcelNumberEntity> addNewNumberList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
orderList.forEach(stockArticleEntity -> { |
|
|
|
|
|
|
|
Integer handQuantity = stockArticleEntity.getHandQuantity(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addNewList.forEach(waybillDetailDTO->{ |
|
|
|
|
|
|
|
DistributionParcelListEntity entity = new DistributionParcelListEntity(); |
|
|
|
|
|
|
|
entity.setBrandName(stockArticleEntity.getBrand()); |
|
|
|
|
|
|
|
entity.setDealerName(stockArticleEntity.getConsigneeUnit()); |
|
|
|
|
|
|
|
entity.setFirsts(waybillDetailDTO.getGoodsName()); |
|
|
|
|
|
|
|
Long warehouseId1 = stockArticleEntity.getWarehouseId(); |
|
|
|
|
|
|
|
entity.setWarehouseId(warehouseId1); |
|
|
|
|
|
|
|
entity.setWarehouse(stockArticleEntity.getWarehouse()); |
|
|
|
|
|
|
|
if(handQuantity != 0){ |
|
|
|
|
|
|
|
entity.setQuantity(waybillDetailDTO.getNum()); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
entity.setQuantity(0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
entity.setConditions(3); |
|
|
|
|
|
|
|
entity.setStockArticleId(stockArticleEntity.getId()); |
|
|
|
|
|
|
|
entity.setOrderCode(stockArticleEntity.getOrderCode()); |
|
|
|
|
|
|
|
entity.setOrderPackageStatus("20"); |
|
|
|
|
|
|
|
entity.setOrderPackageFreezeStatus("10"); |
|
|
|
|
|
|
|
entity.setOrderPackageGroundingStatus("10"); |
|
|
|
|
|
|
|
entity.setOrderPackageStockupStatus("10"); |
|
|
|
|
|
|
|
entity.setOrderPackageReservationStatus("10"); |
|
|
|
|
|
|
|
entity.setOrderPackageLoadingStatus("10"); |
|
|
|
|
|
|
|
entity.setWaybillId(waybillId); |
|
|
|
|
|
|
|
entity.setWaybillNumber(waybillNo); |
|
|
|
|
|
|
|
entity.setIsZero("1"); |
|
|
|
|
|
|
|
entity.setAdvanceId(waybillDetailDTO.getId()); |
|
|
|
|
|
|
|
entity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
|
|
|
entity.setSendWarehouseId(departureWarehouseId); |
|
|
|
|
|
|
|
entity.setSendWarehouseName(departureWarehouseName); |
|
|
|
|
|
|
|
entity.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
|
|
|
|
entity.setAcceptWarehouseName(destinationWarehouseName); |
|
|
|
|
|
|
|
if (departureWarehouseId.equals(destinationWarehouseId)) { |
|
|
|
|
|
|
|
entity.setIsTransfer(0); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
entity.setIsTransfer(1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long aLong = distributionParcelListClient.addReturnId(entity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DistributionParcelNumberEntity parcelNumberEntity = new DistributionParcelNumberEntity(); |
|
|
|
|
|
|
|
parcelNumberEntity.setStockArticleId(entity.getStockArticleId()); |
|
|
|
|
|
|
|
parcelNumberEntity.setWarehouseId(entity.getWarehouseId()); |
|
|
|
|
|
|
|
parcelNumberEntity.setParcelListId(aLong); |
|
|
|
|
|
|
|
parcelNumberEntity.setHandQuantity(entity.getQuantity()); |
|
|
|
|
|
|
|
parcelNumberEntity.setQuantity(entity.getQuantity()); |
|
|
|
|
|
|
|
parcelNumberEntity.setDeliveryQuantity(0); |
|
|
|
|
|
|
|
parcelNumberEntity.setSigninQuantity(0); |
|
|
|
|
|
|
|
parcelNumberEntity.setOutboundQuantity(0); |
|
|
|
|
|
|
|
addNewNumberList.add(parcelNumberEntity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(addNewNumberList)){ |
|
|
|
|
|
|
|
distributionParcelNumberClient.addBatch(addNewNumberList); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(deleteParcelListIds)){ |
|
|
|
|
|
|
|
distributionParcelListClient.deleteListByParcelListIds(deleteParcelListIds); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(updateNumberIds)){ |
|
|
|
|
|
|
|
distributionParcelNumberClient.updateListByPracelListIds(updateNumberIds); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
trunklineWaybillPackageService.updateWaybillStatus(waybillEntity); |
|
|
|
trunklineWaybillPackageService.updateWaybillStatus(waybillEntity); |
|
|
@ -4842,10 +4965,14 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
if (StringUtil.isNotBlank(removeMsg)) { |
|
|
|
if (StringUtil.isNotBlank(removeMsg)) { |
|
|
|
stringBuilder.append("明细移除:").append(removeMsg).append(";"); |
|
|
|
stringBuilder.append("明细移除:").append(removeMsg).append(";"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
Integer totalNum = 0; |
|
|
|
|
|
|
|
Set<String> goodsList = new HashSet<>(); |
|
|
|
List<WaybillDetailDTO> addList = openOrderDTO.getAddList(); |
|
|
|
List<WaybillDetailDTO> addList = openOrderDTO.getAddList(); |
|
|
|
for (WaybillDetailDTO waybillDetailDTO : addList) { |
|
|
|
for (WaybillDetailDTO waybillDetailDTO : addList) { |
|
|
|
|
|
|
|
Integer num1 = waybillDetailDTO.getNum(); |
|
|
|
|
|
|
|
String goodsName = waybillDetailDTO.getGoodsName(); |
|
|
|
|
|
|
|
goodsList.add(goodsName); |
|
|
|
|
|
|
|
totalNum = totalNum + num1; |
|
|
|
Integer updateType = waybillDetailDTO.getUpdateType(); |
|
|
|
Integer updateType = waybillDetailDTO.getUpdateType(); |
|
|
|
|
|
|
|
|
|
|
|
if (1 == updateType) { |
|
|
|
if (1 == updateType) { |
|
|
@ -4867,7 +4994,9 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
warehouseWayBillDetail.setSystemDeliveryChargeType(waybillDetailDTO.getSystemDeliveryChargeType()); |
|
|
|
warehouseWayBillDetail.setSystemDeliveryChargeType(waybillDetailDTO.getSystemDeliveryChargeType()); |
|
|
|
warehouseWayBillDetail.setSystemPickupChargeType(waybillDetailDTO.getSystemPickupChargeType()); |
|
|
|
warehouseWayBillDetail.setSystemPickupChargeType(waybillDetailDTO.getSystemPickupChargeType()); |
|
|
|
warehouseWayBillDetail.setSystemWarehouseChargeType(waybillDetailDTO.getSystemWarehouseChargeType()); |
|
|
|
warehouseWayBillDetail.setSystemWarehouseChargeType(waybillDetailDTO.getSystemWarehouseChargeType()); |
|
|
|
warehouseWaybillDetailClient.addEntity(warehouseWayBillDetail); |
|
|
|
Long waybillDetailId = warehouseWaybillDetailClient.addEntityReturnId(warehouseWayBillDetail); |
|
|
|
|
|
|
|
waybillDetailDTO.setId(waybillDetailId); |
|
|
|
|
|
|
|
|
|
|
|
stringBuilder.append("明细新增:").append(warehouseWayBillDetail.getProductName()).append(" 数量 ").append(waybillDetailDTO.getNum()).append(" 单价 ").append(waybillDetailDTO.getPrice()).append(";"); |
|
|
|
stringBuilder.append("明细新增:").append(warehouseWayBillDetail.getProductName()).append(" 数量 ").append(waybillDetailDTO.getNum()).append(" 单价 ").append(waybillDetailDTO.getPrice()).append(";"); |
|
|
|
|
|
|
|
|
|
|
|
} else if (2 == updateType) { |
|
|
|
} else if (2 == updateType) { |
|
|
@ -4944,12 +5073,14 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
warehouseWaybillDetailClient.updateEntityById(warehouseWayBillDetail); |
|
|
|
warehouseWaybillDetailClient.updateEntityById(warehouseWayBillDetail); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
waybillEntity.setGoodsName(String.join(",",goodsList)); |
|
|
|
|
|
|
|
|
|
|
|
Integer newTotalCount = openOrderDTO.getTotalCount(); |
|
|
|
Integer newTotalCount = openOrderDTO.getTotalCount(); |
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
if (!ObjectUtil.equals(totalCount,newTotalCount)) { |
|
|
|
if (!ObjectUtil.equals(totalCount,totalNum)) { |
|
|
|
stringBuilder.append("货物总数:").append(totalCount).append("-->").append(newTotalCount).append(";"); |
|
|
|
stringBuilder.append("货物总数:").append(totalCount).append("-->").append(totalNum).append(";"); |
|
|
|
waybillEntity.setTotalCount(newTotalCount); |
|
|
|
waybillEntity.setTotalCount(totalNum); |
|
|
|
|
|
|
|
waybillEntity.setStockCount(totalNum); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BigDecimal newTotalFreight = openOrderDTO.getTotalFreight(); |
|
|
|
BigDecimal newTotalFreight = openOrderDTO.getTotalFreight(); |
|
|
@ -5210,7 +5341,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService { |
|
|
|
entity.setWarehouse(distributionStockArticleEntity.getWarehouse()); |
|
|
|
entity.setWarehouse(distributionStockArticleEntity.getWarehouse()); |
|
|
|
entity.setQuantity(warehouseWayBillDetail.getNum()); |
|
|
|
entity.setQuantity(warehouseWayBillDetail.getNum()); |
|
|
|
entity.setTrainNumber(warehouseWaybill.getCustomerTrain()); |
|
|
|
entity.setTrainNumber(warehouseWaybill.getCustomerTrain()); |
|
|
|
entity.setConditions(1); |
|
|
|
entity.setConditions(3); |
|
|
|
entity.setStockArticleId(orderId); |
|
|
|
entity.setStockArticleId(orderId); |
|
|
|
entity.setOrderCode(distributionStockArticleEntity.getOrderCode()); |
|
|
|
entity.setOrderCode(distributionStockArticleEntity.getOrderCode()); |
|
|
|
entity.setOrderPackageStatus("20"); |
|
|
|
entity.setOrderPackageStatus("20"); |
|
|
|