|
|
|
@ -1658,7 +1658,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String orderCode = carsOrderEntity.getOrderCode(); |
|
|
|
|
String waybillNo = carsOrderEntity.getWaybillNo(); |
|
|
|
|
Integer carsOrderRealLoadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getWarehouseId()) && NumberUtil.equals(nodeId,scan.getWarehouseId()) && StringUtil.equals(orderCode,scan.getOrderCode()) && StringUtil.equals(waybillNo,scan.getWaybillNo())).mapToInt(TrunklineCarsLoadScanEntity::getNum).sum(); |
|
|
|
|
Integer carsOrderRealUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1") && !Objects.isNull(scan.getUnloadNodeId()) && NumberUtil.equals(nodeId,scan.getUnloadNodeId()) && StringUtil.equals(orderCode,scan.getOrderCode()) && StringUtil.equals(waybillNo,scan.getWaybillNo())).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Integer carsOrderRealUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1") && !Objects.isNull(scan.getUnloadNodeId()) && StringUtil.equals(orderCode,scan.getOrderCode()) && StringUtil.equals(waybillNo,scan.getWaybillNo())).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Integer carsOrderRealSignNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && scan.getScanStatus().equals("3") && StringUtil.equals(orderCode,scan.getOrderCode()) && StringUtil.equals(waybillNo,scan.getWaybillNo())).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
carsOrderEntity.setRealNum(carsOrderRealLoadingNum); |
|
|
|
|
carsOrderEntity.setUnloadNum(carsOrderRealUnloadingNum); |
|
|
|
@ -3598,21 +3598,23 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
if (Objects.isNull(otherParcelListEntity)) { |
|
|
|
|
TrunklineAdvanceDetailEntity trunklineAdvanceDetailEntity = trunklineAdvanceDetailService.findEntityByOrderPackageCode(orderPackageCode); |
|
|
|
|
if (Objects.isNull(trunklineAdvanceDetailEntity)) { |
|
|
|
|
carsLoadScanEntity.setOrderCode("--"); |
|
|
|
|
carsLoadScanEntity.setIsData(0); |
|
|
|
|
carsLoadScanEntity.setReserve1("1"); |
|
|
|
|
//把其他仓reserve1为1的更新为2
|
|
|
|
|
trunklineCarsLoadScanService.updateReserve1ByOrderPackageCode(orderPackageCode,"2"); |
|
|
|
|
|
|
|
|
|
isData = 0; |
|
|
|
|
remark = "无系统数据,异常装车"; |
|
|
|
|
audio = "系统无编码"; |
|
|
|
|
return Resp.scanFail(405,"系统无编码","系统无编码,不能装车"); |
|
|
|
|
// carsLoadScanEntity.setOrderCode("--");
|
|
|
|
|
// carsLoadScanEntity.setIsData(0);
|
|
|
|
|
// carsLoadScanEntity.setReserve1("1");
|
|
|
|
|
// //把其他仓reserve1为1的更新为2
|
|
|
|
|
// trunklineCarsLoadScanService.updateReserve1ByOrderPackageCode(orderPackageCode,"2");
|
|
|
|
|
|
|
|
|
|
// isData = 0;
|
|
|
|
|
// remark = "无系统数据,异常装车";
|
|
|
|
|
// audio = "系统无编码";
|
|
|
|
|
} else { |
|
|
|
|
carsLoadScanEntity.setOrderCode(trunklineAdvanceDetailEntity.getOrderCode()); |
|
|
|
|
carsLoadScanEntity.setWaybillNo(trunklineAdvanceDetailEntity.getWaybillNo()); |
|
|
|
|
carsLoadScanEntity.setWaybillId(trunklineAdvanceDetailEntity.getWaybillId()); |
|
|
|
|
carsLoadScanEntity.setIsData(1); |
|
|
|
|
carsLoadScanEntity.setFromWarehouseId(trunklineAdvanceDetailEntity.getNowWarehouseId()); |
|
|
|
|
// carsLoadScanEntity.setOrderCode(trunklineAdvanceDetailEntity.getOrderCode());
|
|
|
|
|
// carsLoadScanEntity.setWaybillNo(trunklineAdvanceDetailEntity.getWaybillNo());
|
|
|
|
|
// carsLoadScanEntity.setWaybillId(trunklineAdvanceDetailEntity.getWaybillId());
|
|
|
|
|
// carsLoadScanEntity.setIsData(1);
|
|
|
|
|
// carsLoadScanEntity.setFromWarehouseId(trunklineAdvanceDetailEntity.getNowWarehouseId());
|
|
|
|
|
String packageStatus = trunklineAdvanceDetailEntity.getPackageStatus(); |
|
|
|
|
if ("0".equals(packageStatus)) { |
|
|
|
|
//未入库
|
|
|
|
@ -3627,14 +3629,18 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
log.warn("##################loadingScan: 暂存单未开单 orderPackageCode={}", orderPackageCode); |
|
|
|
|
remark = "有系统数据,暂存单未开单"; |
|
|
|
|
audio = "包件未开单"; |
|
|
|
|
return Resp.scanFail(405,"包件未开单","包件未开单,不能装车"); |
|
|
|
|
} else { |
|
|
|
|
log.warn("##################loadingScan: 包件暂未入到本仓 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
remark = "有系统数据,包件暂未入到本仓"; |
|
|
|
|
audio = "包件未入库"; |
|
|
|
|
return Resp.scanFail(405,"包件未入库","包件不在当前仓,不能装车"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
return Resp.scanFail(405,"包件不在当前仓","包件不在当前仓,不能装车"); |
|
|
|
|
|
|
|
|
|
//先把其他仓在库的包件出库并下架
|
|
|
|
|
// try{
|
|
|
|
|
// List<DistributionParcelListEntity> parcelListEntities = distributionParcelListClient.findAllStockListByOrderPackageCode(orderPackageCode);
|
|
|
|
@ -3648,53 +3654,53 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
// log.warn("################loadingScan: 下架及解托包件失败");
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
carsLoadScanEntity.setIsData(1); |
|
|
|
|
isData = 1; |
|
|
|
|
Long otherPackageId = otherParcelListEntity.getId(); |
|
|
|
|
String waybillNumber = otherParcelListEntity.getWaybillNumber(); |
|
|
|
|
fromWarehouseId = otherParcelListEntity.getWarehouseId(); |
|
|
|
|
orderCode = otherParcelListEntity.getOrderCode(); |
|
|
|
|
brandName = otherParcelListEntity.getBrandName(); |
|
|
|
|
BasicdataWarehouseEntity fromWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(fromWarehouseId); |
|
|
|
|
if (!Objects.isNull(fromWarehouseEntity)) { |
|
|
|
|
fromWarehouseName = fromWarehouseEntity.getName(); |
|
|
|
|
} |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNumber); |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
waybillId = waybillEntity.getId(); |
|
|
|
|
waybillNo = waybillEntity.getWaybillNo(); |
|
|
|
|
destinationWarehouse = waybillEntity.getDestinationWarehouseName(); |
|
|
|
|
} |
|
|
|
|
carsLoadScanEntity.setWaybillId(waybillId); |
|
|
|
|
carsLoadScanEntity.setWaybillNo(waybillNo); |
|
|
|
|
carsLoadScanEntity.setOrderCode(orderCode); |
|
|
|
|
carsLoadScanEntity.setFromWarehouseId(fromWarehouseId); |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
|
if (Objects.isNull(stockArticleEntity)) { |
|
|
|
|
log.warn("##################loadingScan: 订单信息不存在 orderCode={} warehouseId={}", orderCode, warehouseId); |
|
|
|
|
return R.fail(405, "订单信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long articleId = stockArticleEntity.getId(); |
|
|
|
|
stockArticleEntity.setHandQuantity(stockArticleEntity.getHandQuantity() - 1); |
|
|
|
|
|
|
|
|
|
distributionParcelListClient.updateOrderPackageCodeById(otherPackageId, "60"); |
|
|
|
|
distributionStockArticleClient.submitHandleNumByOrderId(1, articleId); |
|
|
|
|
|
|
|
|
|
carsLoadScanEntity.setCustomerName(stockArticleEntity.getCustomerName()); |
|
|
|
|
carsLoadScanEntity.setCustomerTelephone(stockArticleEntity.getCustomerTelephone()); |
|
|
|
|
carsLoadScanEntity.setCustomerAddress(stockArticleEntity.getCustomerAddress()); |
|
|
|
|
|
|
|
|
|
carsLoadScanEntity.setFirsts(otherParcelListEntity.getFirsts()); |
|
|
|
|
carsLoadScanEntity.setSenconds(otherParcelListEntity.getSecond()); |
|
|
|
|
carsLoadScanEntity.setThirds(otherParcelListEntity.getThirdProduct()); |
|
|
|
|
carsLoadScanEntity.setMaterialCode(otherParcelListEntity.getMaterialCode()); |
|
|
|
|
carsLoadScanEntity.setMaterialName(otherParcelListEntity.getMaterialName()); |
|
|
|
|
|
|
|
|
|
remark = "有数据,不在当前仓,异常装车"; |
|
|
|
|
audio = "包件未入库"; |
|
|
|
|
if(StringUtils.isNotBlank(orderPackageCode)){ |
|
|
|
|
updownTypeClient.downPackageOrDelTray(orderPackageCode, fromWarehouseId, "干线装车下架解托"); |
|
|
|
|
} |
|
|
|
|
// carsLoadScanEntity.setIsData(1);
|
|
|
|
|
// isData = 1;
|
|
|
|
|
// Long otherPackageId = otherParcelListEntity.getId();
|
|
|
|
|
// String waybillNumber = otherParcelListEntity.getWaybillNumber();
|
|
|
|
|
// fromWarehouseId = otherParcelListEntity.getWarehouseId();
|
|
|
|
|
// orderCode = otherParcelListEntity.getOrderCode();
|
|
|
|
|
// brandName = otherParcelListEntity.getBrandName();
|
|
|
|
|
// BasicdataWarehouseEntity fromWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(fromWarehouseId);
|
|
|
|
|
// if (!Objects.isNull(fromWarehouseEntity)) {
|
|
|
|
|
// fromWarehouseName = fromWarehouseEntity.getName();
|
|
|
|
|
// }
|
|
|
|
|
// WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNumber);
|
|
|
|
|
// if (!Objects.isNull(waybillEntity)) {
|
|
|
|
|
// waybillId = waybillEntity.getId();
|
|
|
|
|
// waybillNo = waybillEntity.getWaybillNo();
|
|
|
|
|
// destinationWarehouse = waybillEntity.getDestinationWarehouseName();
|
|
|
|
|
// }
|
|
|
|
|
// carsLoadScanEntity.setWaybillId(waybillId);
|
|
|
|
|
// carsLoadScanEntity.setWaybillNo(waybillNo);
|
|
|
|
|
// carsLoadScanEntity.setOrderCode(orderCode);
|
|
|
|
|
// carsLoadScanEntity.setFromWarehouseId(fromWarehouseId);
|
|
|
|
|
// DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId);
|
|
|
|
|
// if (Objects.isNull(stockArticleEntity)) {
|
|
|
|
|
// log.warn("##################loadingScan: 订单信息不存在 orderCode={} warehouseId={}", orderCode, warehouseId);
|
|
|
|
|
// return R.fail(405, "订单信息不存在");
|
|
|
|
|
// }
|
|
|
|
|
// Long articleId = stockArticleEntity.getId();
|
|
|
|
|
// stockArticleEntity.setHandQuantity(stockArticleEntity.getHandQuantity() - 1);
|
|
|
|
|
//
|
|
|
|
|
// distributionParcelListClient.updateOrderPackageCodeById(otherPackageId, "60");
|
|
|
|
|
// distributionStockArticleClient.submitHandleNumByOrderId(1, articleId);
|
|
|
|
|
//
|
|
|
|
|
// carsLoadScanEntity.setCustomerName(stockArticleEntity.getCustomerName());
|
|
|
|
|
// carsLoadScanEntity.setCustomerTelephone(stockArticleEntity.getCustomerTelephone());
|
|
|
|
|
// carsLoadScanEntity.setCustomerAddress(stockArticleEntity.getCustomerAddress());
|
|
|
|
|
//
|
|
|
|
|
// carsLoadScanEntity.setFirsts(otherParcelListEntity.getFirsts());
|
|
|
|
|
// carsLoadScanEntity.setSenconds(otherParcelListEntity.getSecond());
|
|
|
|
|
// carsLoadScanEntity.setThirds(otherParcelListEntity.getThirdProduct());
|
|
|
|
|
// carsLoadScanEntity.setMaterialCode(otherParcelListEntity.getMaterialCode());
|
|
|
|
|
// carsLoadScanEntity.setMaterialName(otherParcelListEntity.getMaterialName());
|
|
|
|
|
//
|
|
|
|
|
// remark = "有数据,不在当前仓,异常装车";
|
|
|
|
|
// audio = "包件未入库";
|
|
|
|
|
// if(StringUtils.isNotBlank(orderPackageCode)){
|
|
|
|
|
// updownTypeClient.downPackageOrDelTray(orderPackageCode, fromWarehouseId, "干线装车下架解托");
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3729,7 +3735,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId); |
|
|
|
|
if (Objects.isNull(stockArticleEntity)) { |
|
|
|
|
log.warn("##################loadingScan: 订单信息不存在 orderCode={} warehouseId={}", orderCode, warehouseId); |
|
|
|
|
return R.fail(405, "订单暂未开单"); |
|
|
|
|
return R.fail(405, "订单信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long articleId = stockArticleEntity.getId(); |
|
|
|
|
|
|
|
|
@ -3740,16 +3746,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
.eq("waybill_no", parcelListEntity.getWaybillNumber()); |
|
|
|
|
TrunklineCarsOrderEntity carsOrderEntity = trunklineCarsOrderService.getOne(queryWrapper); |
|
|
|
|
if (Objects.isNull(carsOrderEntity)) { |
|
|
|
|
return Resp.scanFail(405,"无计划包件","无计划包件,不能装车"); |
|
|
|
|
//该计划中不存在对应的数据,所以是异常包件
|
|
|
|
|
carsLoadScanEntity.setLoadingAbnormal(1); |
|
|
|
|
isAbnormal = 1; |
|
|
|
|
remark = "有数据,在本仓,不在配载计划中,异常装车"; |
|
|
|
|
audio = "无计划装车"; |
|
|
|
|
String loadType = carsLoadEntity.getLoadType(); |
|
|
|
|
if("4".equals(loadType)){ |
|
|
|
|
carsLoadScanEntity.setFinalNodeId(warehouseId); |
|
|
|
|
carsLoadScanEntity.setFinalNodeName(warehouseName); |
|
|
|
|
} |
|
|
|
|
// carsLoadScanEntity.setLoadingAbnormal(1);
|
|
|
|
|
// isAbnormal = 1;
|
|
|
|
|
// remark = "有数据,在本仓,不在配载计划中,异常装车";
|
|
|
|
|
// audio = "无计划装车";
|
|
|
|
|
// String loadType = carsLoadEntity.getLoadType();
|
|
|
|
|
// if("4".equals(loadType)){
|
|
|
|
|
// carsLoadScanEntity.setFinalNodeId(warehouseId);
|
|
|
|
|
// carsLoadScanEntity.setFinalNodeName(warehouseName);
|
|
|
|
|
// }
|
|
|
|
|
} else { |
|
|
|
|
//有计划
|
|
|
|
|
Integer planNum = carsOrderEntity.getPlanNum(); |
|
|
|
@ -3759,6 +3766,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
isAbnormal = 1; |
|
|
|
|
remark = "有数据,在本仓,在配载计划中,大于计划数量,异常装车"; |
|
|
|
|
audio = "大于计划数量装车"; |
|
|
|
|
return Resp.scanFail(405,"大于计划数量","大于计划数量,不能装车"); |
|
|
|
|
} else { |
|
|
|
|
carsLoadScanEntity.setLoadingAbnormal(0); |
|
|
|
|
isAbnormal = 0; |
|
|
|
@ -4684,14 +4692,25 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
if(!Objects.isNull(trunklineWaybillOrder)){ |
|
|
|
|
carsLoadOrderInfoVO.setOrderNum(trunklineWaybillOrder.getTotalNumber()); |
|
|
|
|
}else{ |
|
|
|
|
Integer totalNumber = advanceService.findTotalNumByWaybillNoAndOrderCode(waybillNo,orderCode); |
|
|
|
|
if(Objects.isNull(totalNumber)){ |
|
|
|
|
carsLoadOrderInfoVO.setOrderNum(0); |
|
|
|
|
}else{ |
|
|
|
|
carsLoadOrderInfoVO.setOrderNum(totalNumber); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
carsLoadOrderInfoVO.setLoadingNum(loadingNum); |
|
|
|
|
carsLoadOrderInfoVO.setUnloadNum(unloadNum); |
|
|
|
|
carsLoadOrderInfoVO.setSignNum(signNum); |
|
|
|
|
carsLoadOrderInfoVO.setOrderFreight(freightPrice.multiply(new BigDecimal(loadingNum)).setScale(2, RoundingMode.HALF_UP)); |
|
|
|
|
}else{ |
|
|
|
|
carsLoadOrderInfoVO.setLoadingNum(loadingNum); |
|
|
|
|
carsLoadOrderInfoVO.setUnloadNum(unloadNum); |
|
|
|
|
carsLoadOrderInfoVO.setSignNum(signNum); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
carsLoadOrderInfoVOMap.put(orderCode, carsLoadOrderInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把trunklineCarsLoadScanListByOrderCode通过type分组
|
|
|
|
|
Map<Integer, List<TrunklineCarsLoadScanVO>> trunklineCarsLoadScanMapByType = trunklineCarsLoadScanListByOrderCode.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanVO::getType)); |
|
|
|
@ -4699,6 +4718,9 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
AtomicReference<BigDecimal> totalIncomingParice = new AtomicReference<>(BigDecimal.ZERO); |
|
|
|
|
AtomicReference<BigDecimal> totalVolume = new AtomicReference<>(BigDecimal.ZERO); |
|
|
|
|
AtomicReference<BigDecimal> totalWeight = new AtomicReference<>(BigDecimal.ZERO); |
|
|
|
|
Map<String,Integer> goodsByNum = new HashMap<>(); |
|
|
|
|
Map<String,BigDecimal> goodsByVolume = new HashMap<>(); |
|
|
|
|
Map<String,BigDecimal> goodsByWeight = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadScanMapByType.keySet().forEach(type -> { |
|
|
|
|
List<TrunklineCarsLoadScanVO> trunklineCarsLoadScanVOS = trunklineCarsLoadScanMapByType.get(type); |
|
|
|
@ -4726,6 +4748,25 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
Integer n = goodsByNum.get(gn); |
|
|
|
|
if(Objects.isNull(n)){ |
|
|
|
|
goodsByNum.put(gn,num); |
|
|
|
|
}else{ |
|
|
|
|
goodsByNum.put(gn,n+num); |
|
|
|
|
} |
|
|
|
|
BigDecimal v = goodsByVolume.get(gn); |
|
|
|
|
if(Objects.isNull(v)){ |
|
|
|
|
goodsByVolume.put(gn,new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1))); |
|
|
|
|
}else{ |
|
|
|
|
goodsByVolume.put(gn,v.add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
} |
|
|
|
|
BigDecimal w = goodsByWeight.get(gn); |
|
|
|
|
if(Objects.isNull(w)){ |
|
|
|
|
goodsByWeight.put(gn,new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1))); |
|
|
|
|
}else{ |
|
|
|
|
goodsByWeight.put(gn,w.add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -4753,14 +4794,49 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
totalIncomingParice.set(totalIncomingParice.get().add(new BigDecimal(price).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
totalVolume.set(totalVolume.get().add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
totalWeight.set(totalWeight.get().add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
|
|
|
|
|
Integer n = goodsByNum.get(scanCode); |
|
|
|
|
if(Objects.isNull(n)){ |
|
|
|
|
goodsByNum.put(scanCode,num); |
|
|
|
|
}else{ |
|
|
|
|
goodsByNum.put(scanCode,n+num); |
|
|
|
|
} |
|
|
|
|
BigDecimal v = goodsByVolume.get(scanCode); |
|
|
|
|
if(Objects.isNull(v)){ |
|
|
|
|
goodsByVolume.put(scanCode,new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1))); |
|
|
|
|
}else{ |
|
|
|
|
goodsByVolume.put(scanCode,v.add(new BigDecimal(oneVolume).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
} |
|
|
|
|
BigDecimal w = goodsByWeight.get(scanCode); |
|
|
|
|
if(Objects.isNull(w)){ |
|
|
|
|
goodsByWeight.put(scanCode,new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1))); |
|
|
|
|
}else{ |
|
|
|
|
goodsByWeight.put(scanCode,w.add(new BigDecimal(oneWeight).multiply(new BigDecimal(unloadNum1)))); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
List<String> orderGoodsNameList = new ArrayList<>(); |
|
|
|
|
List<String> orderGoodsNumList = new ArrayList<>(); |
|
|
|
|
List<String> orderGoodsVolumeList = new ArrayList<>(); |
|
|
|
|
List<String> orderGoodsWeightList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
goodsByNum.keySet().forEach(g -> { |
|
|
|
|
orderGoodsNameList.add(g); |
|
|
|
|
orderGoodsNumList.add(goodsByNum.get(g)+""); |
|
|
|
|
orderGoodsVolumeList.add(goodsByVolume.get(g).setScale(2, BigDecimal.ROUND_HALF_UP).toString()); |
|
|
|
|
orderGoodsWeightList.add(goodsByWeight.get(g).setScale(2, BigDecimal.ROUND_HALF_UP).toString()); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
carsLoadOrderInfoVO.setUnloadIncome(totalIncomingParice.get()); |
|
|
|
|
carsLoadOrderInfoVO.setWeight(totalWeight.get()); |
|
|
|
|
carsLoadOrderInfoVO.setVolume(totalVolume.get()); |
|
|
|
|
carsLoadOrderInfoVO.setOrderGoodsNum(String.join(",", orderGoodsNumList)); |
|
|
|
|
carsLoadOrderInfoVO.setOrderGoodsName(String.join(",", orderGoodsNameList)); |
|
|
|
|
carsLoadOrderInfoVO.setOrderGoodsVolume(String.join(",", orderGoodsVolumeList)); |
|
|
|
|
carsLoadOrderInfoVO.setOrderGoodsWeight(String.join(",", orderGoodsWeightList)); |
|
|
|
|
|
|
|
|
|
resulOrderList.add(carsLoadOrderInfoVO); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -8982,6 +9058,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.data(map); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
@Override |
|
|
|
|
public R loadingTray(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
Long loadId = loadCarsDTO.getLoadId(); |
|
|
|
@ -9019,7 +9096,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Integer zeroNum = 0; |
|
|
|
|
for (LoadingPackageDTO loadingPackageDTO : packageList) { |
|
|
|
|
String orderPackageCode = loadingPackageDTO.getOrderPackageCode(); |
|
|
|
|
loadingScan(loadId, warehouseId, orderPackageCode, trayCode, "托盘正常装车"); |
|
|
|
|
R r = loadingScan(loadId, warehouseId, orderPackageCode, trayCode, "托盘正常装车"); |
|
|
|
|
if(r.getCode() != 200){ |
|
|
|
|
throw new CustomerException(r.getCode(),r.getMsg()); |
|
|
|
|
} |
|
|
|
|
pacakagNum = pacakagNum + 1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -12030,5 +12110,3 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|