|
|
|
@ -305,11 +305,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
//修改节点的发车状态
|
|
|
|
|
carsLoadLineEntity.setNodeStatus("20"); |
|
|
|
|
carsLoadLineEntity.setStartDate(date); |
|
|
|
|
carsLoadLineEntity.setStartUserId(AuthUtil.getUserId()); |
|
|
|
|
carsLoadLineEntity.setStartUserName(AuthUtil.getNickName()); |
|
|
|
|
trunklineCarsLoadLineService.updateById(carsLoadLineEntity); |
|
|
|
|
// carsLoadLineEntity.setNodeStatus("20");
|
|
|
|
|
// carsLoadLineEntity.setStartDate(date);
|
|
|
|
|
// carsLoadLineEntity.setStartUserId(AuthUtil.getUserId());
|
|
|
|
|
// carsLoadLineEntity.setStartUserName(AuthUtil.getNickName());
|
|
|
|
|
trunklineCarsLoadLineService.updateStartTime(carsLoadLineEntity.getId(),"20",date,AuthUtil.getUserId(),AuthUtil.getNickName()); |
|
|
|
|
|
|
|
|
|
//修改配载计划的节点状态
|
|
|
|
|
carsLoadEntity.setStartTime(date); |
|
|
|
@ -384,11 +384,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
//修改节点的发车状态
|
|
|
|
|
currentCarsLoadLineEntity.setNodeStatus("20"); |
|
|
|
|
currentCarsLoadLineEntity.setStartDate(date); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserId(AuthUtil.getUserId()); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserName(AuthUtil.getNickName()); |
|
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
trunklineCarsLoadLineService.updateStartTime(currentCarsLoadLineEntity.getId(),"20",date,AuthUtil.getUserId(),AuthUtil.getNickName()); |
|
|
|
|
|
|
|
|
|
//修改配载计划的节点状态
|
|
|
|
|
carsLoadEntity.setLoadStatus("30"); |
|
|
|
@ -813,10 +809,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
if (1 == startCarType) { |
|
|
|
|
//发展仓发车
|
|
|
|
|
currentCarsLoadLineEntity.setNodeStatus("10"); |
|
|
|
|
currentCarsLoadLineEntity.setStartDate(null); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserId(null); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserName(null); |
|
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
// currentCarsLoadLineEntity.setStartDate(null);
|
|
|
|
|
// currentCarsLoadLineEntity.setStartUserId(null);
|
|
|
|
|
// currentCarsLoadLineEntity.setStartUserName(null);
|
|
|
|
|
// trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity);
|
|
|
|
|
trunklineCarsLoadLineService.updateStartTime(currentCarsLoadLineEntity.getId(),"10",null,null,null); |
|
|
|
|
|
|
|
|
|
carsLoadEntity.setLoadStatus("0"); |
|
|
|
|
carsLoadEntity.setStartTime(null); |
|
|
|
@ -834,11 +831,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
} else if (2 == startCarType) { |
|
|
|
|
//中间网点发车
|
|
|
|
|
currentCarsLoadLineEntity.setNodeStatus("10"); |
|
|
|
|
currentCarsLoadLineEntity.setStartDate(null); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserId(null); |
|
|
|
|
currentCarsLoadLineEntity.setStartUserName(null); |
|
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
trunklineCarsLoadLineService.updateStartTime(currentCarsLoadLineEntity.getId(),"10",null,null,null); |
|
|
|
|
|
|
|
|
|
carsLoadEntity.setLoadStatus("20"); |
|
|
|
|
carsLoadEntity.setStartTime(null); |
|
|
|
@ -1400,6 +1393,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Integer quantity = entity.getQuantity(); |
|
|
|
|
DistributionParcelListEntity updatePaceList = new DistributionParcelListEntity(); |
|
|
|
|
updatePaceList.setId(parceListId); |
|
|
|
|
updatePaceList.setOrderCode(entity.getOrderCode()); |
|
|
|
|
updatePaceList.setWarehouseId(entity.getWarehouseId()); |
|
|
|
|
updatePaceList.setQuantity(quantity+totalUnloadNum); |
|
|
|
|
updatePaceList.setOrderPackageStatus("20"); |
|
|
|
|
updatePaceList.setOrderPackageStockupStatus("10"); |
|
|
|
@ -1628,7 +1623,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
//把scanList中warehouseId不为空的num值求和 为空则用0代替
|
|
|
|
|
Integer realLoadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getWarehouseId())).mapToInt(TrunklineCarsLoadScanEntity::getNum).sum(); |
|
|
|
|
///把scanList中scanStatus不为1的unloadNum值求和 为空则用0代替
|
|
|
|
|
Integer realUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1")).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Integer realUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1") && !scan.getScanStatus().equals("4")).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Integer stockCarNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && scan.getScanStatus().equals("1")).mapToInt(TrunklineCarsLoadScanEntity::getNum).sum(); |
|
|
|
|
|
|
|
|
|
carsLoadEntity.setPlanLoadingNumber(loadPlanNum); |
|
|
|
@ -1649,7 +1644,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
planNum = nodeNumDataVO.getPlanNum(); |
|
|
|
|
} |
|
|
|
|
Integer lineRealLoadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getWarehouseId()) && NumberUtil.equals(nodeId,scan.getWarehouseId())).mapToInt(TrunklineCarsLoadScanEntity::getNum).sum(); |
|
|
|
|
Integer lineRealUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1") && !Objects.isNull(scan.getUnloadNodeId()) && NumberUtil.equals(nodeId,scan.getUnloadNodeId())).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Integer lineRealUnloadingNum = scanList.stream().filter(scan -> !Objects.isNull(scan.getScanStatus()) && !scan.getScanStatus().equals("1") && !scan.getScanStatus().equals("4") && !Objects.isNull(scan.getUnloadNodeId()) && NumberUtil.equals(nodeId,scan.getUnloadNodeId())).mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
carsLoadLineEntity.setPlanLoadingNumber(planNum); |
|
|
|
|
carsLoadLineEntity.setRealLoadingNumber(lineRealLoadingNum); |
|
|
|
|
carsLoadLineEntity.setUnloadNumber(lineRealUnloadingNum); |
|
|
|
@ -1668,7 +1663,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") && 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") && !scan.getScanStatus().equals("4") && 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); |
|
|
|
@ -4117,6 +4112,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionParcelListEntity updateEntity = new DistributionParcelListEntity(); |
|
|
|
|
updateEntity.setId(entity.getId()); |
|
|
|
|
updateEntity.setQuantity(quantity-entityByWaybillDetailId.getNum()); |
|
|
|
|
updateEntity.setOrderCode(entity.getOrderCode()); |
|
|
|
|
updateEntity.setWarehouseId(entity.getWarehouseId()); |
|
|
|
|
updateParceList.add(updateEntity); |
|
|
|
|
DistributionParcelNumberEntity parcelNumberEntity = parcelNumberMapByParceListId.get(parceListId); |
|
|
|
|
DistributionParcelNumberEntity updateNumberEntity = new DistributionParcelNumberEntity(); |
|
|
|
@ -4933,7 +4930,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
noWaybillNoTrunklineCarsLoadScanMapByOrderCode.keySet().forEach(orderCode -> { |
|
|
|
|
List<TrunklineCarsLoadScanVO> trunklineCarsLoadScanVOS = noWaybillNoTrunklineCarsLoadScanMapByOrderCode.get(orderCode); |
|
|
|
|
//把trunklineCarsLoadScanVOS中所有元素的num加起来,如果num为空则用0代替
|
|
|
|
|
Integer loadingNum = trunklineCarsLoadScanVOS.stream().filter(t-> Objects.isNull(t.getWarehouseId())).map(TrunklineCarsLoadScanVO::getNum).reduce(0, Integer::sum); |
|
|
|
|
Integer loadingNum = trunklineCarsLoadScanVOS.stream().filter(t-> !Objects.isNull(t.getWarehouseId())).map(TrunklineCarsLoadScanVO::getNum).reduce(0, Integer::sum); |
|
|
|
|
Integer unloadNum = trunklineCarsLoadScanVOS.stream().map(TrunklineCarsLoadScanVO::getUnloadNum).reduce(0, Integer::sum); |
|
|
|
|
Integer signNum = trunklineCarsLoadScanVOS.stream().filter(t-> t.getScanStatus().equals("3")).map(TrunklineCarsLoadScanVO::getUnloadNum).reduce(0, Integer::sum); |
|
|
|
|
|
|
|
|
@ -5309,6 +5306,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionParcelListEntity updatePaceList = new DistributionParcelListEntity(); |
|
|
|
|
updatePaceList.setId(parceListId); |
|
|
|
|
updatePaceList.setQuantity(quantity+totalUnloadNum); |
|
|
|
|
updatePaceList.setOrderCode(entity.getOrderCode()); |
|
|
|
|
updatePaceList.setWarehouseId(entity.getWarehouseId()); |
|
|
|
|
updatePaceList.setOrderPackageStatus("20"); |
|
|
|
|
updatePaceList.setOrderPackageStockupStatus("10"); |
|
|
|
|
updatePaceList.setOrderPackageReservationStatus("10"); |
|
|
|
@ -5374,6 +5373,153 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findRetentionCarsLoadPackage(String orderPackageCode, Long warehouseId, String warehouseName) { |
|
|
|
|
|
|
|
|
|
//查询包件所在车次
|
|
|
|
|
List<RetentionCarsLoadVO> retentionList = trunklineCarsLoadScanService.findRetentionPackage(orderPackageCode,warehouseId); |
|
|
|
|
|
|
|
|
|
return R.data(retentionList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R retentionCarsLoadPackage(List<Long> loadScanIds, Long warehouseId, String warehouseName) { |
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineCarsLoadScanEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.in("id", loadScanIds) |
|
|
|
|
.eq("scan_status","1"); |
|
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.list(queryWrapper); |
|
|
|
|
if (CollUtil.isEmpty(carsLoadScanEntityList)) { |
|
|
|
|
log.warn("##################removeCarsLoadScan: 没有滞留的数据 carsLoadScanIds={}", loadScanIds); |
|
|
|
|
return R.fail(405, "没有滞留的数据"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把carsLoadScanEntityList通过loadId分组
|
|
|
|
|
Map<Long, List<TrunklineCarsLoadScanEntity>> groupedByLoadId = carsLoadScanEntityList.stream() |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getLoadId)); |
|
|
|
|
Set<Long> loadIdSet = groupedByLoadId.keySet(); |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadEntity> trunklineCarsLoadEntities = baseMapper.selectBatchIds(loadIdSet); |
|
|
|
|
//把trunklineCarsLoadEntities转化成以id为key的Map
|
|
|
|
|
Map<Long, TrunklineCarsLoadEntity> map = trunklineCarsLoadEntities.stream().collect(Collectors.toMap(TrunklineCarsLoadEntity::getId, Function.identity())); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> updateParceListList = new ArrayList<>(); |
|
|
|
|
List<DistributionStockArticleEntity> updateStockArticleList = new ArrayList<>(); |
|
|
|
|
List<TrunklineCarsLoadScanEntity> updateScanList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
groupedByLoadId.keySet().forEach(loadId -> { |
|
|
|
|
List<TrunklineCarsLoadScanEntity> loadScanEntityList = groupedByLoadId.get(loadId); |
|
|
|
|
if(CollUtil.isNotEmpty(loadScanEntityList)){ |
|
|
|
|
//把loadScanEntityList通过fromNodeId进行分组
|
|
|
|
|
Map<Long, List<TrunklineCarsLoadScanEntity>> groupedByFromWarehouseId = loadScanEntityList.stream().filter(carsLoadScanEntity-> !Objects.isNull(carsLoadScanEntity.getFromWarehouseId())) |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getFromWarehouseId)); |
|
|
|
|
groupedByFromWarehouseId.keySet().forEach(fromWarehouseId -> { |
|
|
|
|
BasicdataWarehouseEntity fromWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(fromWarehouseId); |
|
|
|
|
String fromWarehouseEntityName = fromWarehouseEntity.getName(); |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> loadScanEntityList1 = groupedByFromWarehouseId.get(fromWarehouseId); |
|
|
|
|
if(CollUtil.isNotEmpty(loadScanEntityList1)){ |
|
|
|
|
//把trunklineCarsLoadScanEntities通过orderCode进行分组
|
|
|
|
|
Map<String, List<TrunklineCarsLoadScanEntity>> groupedByOrderCode = loadScanEntityList1.stream().filter(carsLoadScanEntity-> !Objects.isNull(carsLoadScanEntity.getOrderCode())) |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getOrderCode)); |
|
|
|
|
groupedByOrderCode.keySet().forEach(orderCode -> { |
|
|
|
|
DistributionStockArticleEntity distributionStockArticle = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
|
List<TrunklineCarsLoadScanEntity> loadScanEntityList2 = groupedByOrderCode.get(orderCode); |
|
|
|
|
if(CollUtil.isNotEmpty(loadScanEntityList2)){ |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadScanEntity carsLoadScanEntity = loadScanEntityList2.get(0); |
|
|
|
|
Long loadId1 = carsLoadScanEntity.getLoadId(); |
|
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
|
|
|
|
|
|
//把loadScanEntityList2的num进行累加
|
|
|
|
|
Integer num = loadScanEntityList2.stream().map(TrunklineCarsLoadScanEntity::getNum).reduce(0, Integer::sum); |
|
|
|
|
//把loadScanEntityList2中所有元素的scanCode放入一个List
|
|
|
|
|
List<String> scanCodeList = loadScanEntityList2.stream().map(TrunklineCarsLoadScanEntity::getScanCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(scanCodeList); |
|
|
|
|
findParamterDTO.setWarehouseId(fromWarehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
parcelListEntityList.forEach(parcelListEntity -> { |
|
|
|
|
DistributionParcelListEntity updateParceList = new DistributionParcelListEntity(); |
|
|
|
|
updateParceList.setId(parcelListEntity.getId()); |
|
|
|
|
updateParceList.setOrderPackageStatus("20"); |
|
|
|
|
updateParceList.setWarehouseId(parcelListEntity.getWarehouseId()); |
|
|
|
|
updateParceList.setOrderCode(parcelListEntity.getOrderCode()); |
|
|
|
|
updateParceListList.add(updateParceList); |
|
|
|
|
}); |
|
|
|
|
loadScanEntityList2.forEach(trunklineCarsLoadScanEntity -> { |
|
|
|
|
TrunklineCarsLoadScanEntity updateEntity = new TrunklineCarsLoadScanEntity(); |
|
|
|
|
updateEntity.setId(trunklineCarsLoadScanEntity.getId()); |
|
|
|
|
updateEntity.setScanStatus("4"); |
|
|
|
|
updateScanList.add(updateEntity); |
|
|
|
|
String trayCode = trunklineCarsLoadScanEntity.getTrayCode(); |
|
|
|
|
String scanCode = trunklineCarsLoadScanEntity.getScanCode(); |
|
|
|
|
if (StringUtil.isNotBlank(trayCode)) { |
|
|
|
|
updownTypeClient.downPackageOrDelTray(scanCode, warehouseId, "包件下架解托"); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DistributionStockArticleEntity updateStockArticle = new DistributionStockArticleEntity(); |
|
|
|
|
updateStockArticle.setId(distributionStockArticle.getId()); |
|
|
|
|
updateStockArticle.setHandQuantity(distributionStockArticle.getHandQuantity()+num); |
|
|
|
|
updateStockArticleList.add(updateStockArticle); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = map.get(loadId1); |
|
|
|
|
if(!Objects.isNull(carsLoadEntity)){ |
|
|
|
|
String loadType = carsLoadEntity.getLoadType(); |
|
|
|
|
if(!StringUtils.equals(loadType, "4")){ |
|
|
|
|
String content = "包件在 " + warehouseName + "滞留 ,车次号:"+loadCode+",配载计划目的仓 " + fromWarehouseEntityName; |
|
|
|
|
packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), scanCodeList, warehouseId, warehouseName, WorkNodeEnums.CANCEL_INITIAL_WAREHOUSE_LOADING.getCode(), content); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
String content = "包件在 " + warehouseName + "滞留 ,车次号:"+loadCode+",配载计划目的仓 " + fromWarehouseEntityName; |
|
|
|
|
packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), scanCodeList, warehouseId, warehouseName, WorkNodeEnums.CANCEL_INITIAL_WAREHOUSE_LOADING.getCode(), content); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
//更新装车明细
|
|
|
|
|
if (CollUtil.isNotEmpty(updateScanList)){ |
|
|
|
|
trunklineCarsLoadScanService.updateBatchById(updateScanList); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(updateStockArticleList)){ |
|
|
|
|
distributionStockArticleClient.updateByBatchId(updateStockArticleList); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(updateParceListList)){ |
|
|
|
|
distributionParcelListClient.updateList(updateParceListList); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(loadIdSet)){ |
|
|
|
|
loadIdSet.forEach(loadId -> { |
|
|
|
|
updateNumByLoadId(loadId); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把carsLoadScanEntityList通过finalNodeId分组
|
|
|
|
|
Map<Long, List<TrunklineCarsLoadScanEntity>> groupedByFinalNodeId = carsLoadScanEntityList.stream().filter(carsLoadScanEntity-> !Objects.isNull(carsLoadScanEntity.getFinalNodeId())) |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getFinalNodeId)); |
|
|
|
|
|
|
|
|
|
groupedByFinalNodeId.keySet().forEach(finalNodeId -> { |
|
|
|
|
List<TrunklineCarsLoadScanEntity> trunklineCarsLoadScanEntities = groupedByFinalNodeId.get(finalNodeId); |
|
|
|
|
if(CollUtil.isNotEmpty(trunklineCarsLoadScanEntities)){ |
|
|
|
|
//把trunklineCarsLoadScanEntities中所有元素的scanCode放入一个List
|
|
|
|
|
List<String> scanCodeList = trunklineCarsLoadScanEntities.stream().map(TrunklineCarsLoadScanEntity::getScanCode).collect(Collectors.toList()); |
|
|
|
|
DealWithAbnormalVO dealWithAbnormalVO = new DealWithAbnormalVO(); |
|
|
|
|
dealWithAbnormalVO.setOrderPackageCodes(scanCodeList); |
|
|
|
|
dealWithAbnormalVO.setWarehouseName(warehouseName); |
|
|
|
|
dealWithAbnormalVO.setNickName(AuthUtil.getNickName()); |
|
|
|
|
dealWithAbnormalVO.setRemark("滞留同步系统自动处理("+warehouseName+" "+" "+AuthUtil.getNickName()+")"); |
|
|
|
|
abnormalRecordClient.dealwithOrderPackageCodes(dealWithAbnormalVO); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
return R.success("滞留成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void updateParcelListToWarehouse(TrunklineAdvanceDetailEntity advanceDetailEntity, Long warehouseId, String status) { |
|
|
|
|
String orderPackageCode = advanceDetailEntity.getOrderPackageCode(); |
|
|
|
|
String orderCode = advanceDetailEntity.getOrderCode(); |
|
|
|
@ -5396,6 +5542,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionParcelListEntity updateEntity = new DistributionParcelListEntity(); |
|
|
|
|
updateEntity.setId(distributionParcelListEntity.getId()); |
|
|
|
|
updateEntity.setOrderPackageStatus("60"); |
|
|
|
|
updateEntity.setOrderCode(distributionParcelListEntity.getOrderCode()); |
|
|
|
|
updateEntity.setWarehouseId(distributionParcelListEntity.getWarehouseId()); |
|
|
|
|
updateParceList.add(updateEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -9893,7 +10041,9 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> saveScanList = new ArrayList<>(); |
|
|
|
|
List<DistributionParcelListEntity> updateList = new ArrayList<>(); |
|
|
|
|
parcelListEntityList.forEach(parcelListEntity -> { |
|
|
|
|
|
|
|
|
|
String orderPackageCode = parcelListEntity.getOrderPackageCode(); |
|
|
|
|
Long waybillId = parcelListEntity.getWaybillId(); |
|
|
|
|
String waybillNo = parcelListEntity.getWaybillNumber(); |
|
|
|
@ -9939,9 +10089,23 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadScanEntity.setMaterialName(parcelListEntity.getMaterialName()); |
|
|
|
|
carsLoadScanEntity.setLoadingUserName(AuthUtil.getNickName()); |
|
|
|
|
saveScanList.add(carsLoadScanEntity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DistributionParcelListEntity updetaEntity = new DistributionParcelListEntity(); |
|
|
|
|
updetaEntity.setId(parcelListEntity.getId()); |
|
|
|
|
updetaEntity.setWarehouseId(parcelListEntity.getWarehouseId()); |
|
|
|
|
updetaEntity.setOrderCode(parcelListEntity.getOrderCode()); |
|
|
|
|
updetaEntity.setOrderPackageStatus("60"); |
|
|
|
|
updateList.add(updetaEntity); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadScanService.saveBatch(saveScanList); |
|
|
|
|
if(CollUtil.isNotEmpty(saveScanList)){ |
|
|
|
|
trunklineCarsLoadScanService.saveBatch(saveScanList); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(updateList)){ |
|
|
|
|
distributionParcelListClient.updateList(updateList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateNumByLoadId(loadId); |
|
|
|
|
|
|
|
|
@ -10153,6 +10317,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionParcelListEntity updateParceList = new DistributionParcelListEntity(); |
|
|
|
|
updateParceList.setId(parcelListEntity.getId()); |
|
|
|
|
updateParceList.setOrderPackageStatus("20"); |
|
|
|
|
updateParceList.setOrderCode(parcelListEntity.getOrderCode()); |
|
|
|
|
updateParceList.setWarehouseId(parcelListEntity.getWarehouseId()); |
|
|
|
|
updateParceListList.add(updateParceList); |
|
|
|
|
}); |
|
|
|
|
loadScanEntityList2.forEach(trunklineCarsLoadScanEntity -> { |
|
|
|
@ -10533,6 +10699,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
parcelList.setIsTransfer(1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
parcelList.setOrderCode(parcelListEntity.getOrderCode()); |
|
|
|
|
parcelList.setWarehouseId(parcelListEntity.getWarehouseId()); |
|
|
|
|
updateParcelListList.add(parcelList); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -10646,6 +10814,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
log.warn("##############unloadPackage: 系统无编码 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(4005, "系统无编码"); |
|
|
|
|
} |
|
|
|
|
String scanStatus = scanEntity.getScanStatus(); |
|
|
|
|
if (scanStatus.equals("4")) { |
|
|
|
|
log.warn("##############unloadPackage: 包件已滞留 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(4005, "包件已滞留"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
log.warn("##############unloadPackage: 包件已卸车 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(405, "包件已卸车"); |
|
|
|
|
} |
|
|
|
@ -12239,6 +12413,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
DistributionParcelListEntity updateEntity = new DistributionParcelListEntity(); |
|
|
|
|
updateEntity.setId(distributionParcelListEntity.getId()); |
|
|
|
|
updateEntity.setOrderPackageStatus("60"); |
|
|
|
|
updateEntity.setOrderCode(distributionParcelListEntity.getOrderCode()); |
|
|
|
|
updateEntity.setWarehouseId(distributionParcelListEntity.getWarehouseId()); |
|
|
|
|
updateParceList.add(updateEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -12272,6 +12448,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
dealWithAbnormalVO.setCarsNo(carsLoadEntity.getCarsNo()); |
|
|
|
|
dealWithAbnormalVO.setWarehouseName(warehouseName); |
|
|
|
|
dealWithAbnormalVO.setNickName(AuthUtil.getNickName()); |
|
|
|
|
dealWithAbnormalVO.setRemark("数据同步系统自动处理("+warehouseName+" "+carsLoadEntity.getCarsNo()+" "+AuthUtil.getNickName()+")"); |
|
|
|
|
abnormalRecordClient.dealwithOrderPackageCodes(dealWithAbnormalVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|