|
|
|
@ -1248,6 +1248,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
queryWrapper.eq("load_id", loadId) |
|
|
|
|
.eq("unload_node_id", warehouseId) |
|
|
|
|
.eq("type", 2) |
|
|
|
|
.eq("unload_check",0) |
|
|
|
|
.ne("scan_status", "1") |
|
|
|
|
.isNull("unload_tray_code"); |
|
|
|
|
|
|
|
|
@ -5101,6 +5102,233 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findOrderPlanCarsNum(String orderCode, Long warehouseId, String warehouseName) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<CarsStartNumVO> ls = trunklineCarsOrderService.findStartNumByOrderCodeAndWarehouseId(orderCode,warehouseId); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return R.data(ls); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R zeroUnloadEnter(List<Long> loadScanIds, Long warehouseId, String warehouseName) { |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.findListByIds(loadScanIds); |
|
|
|
|
//排除carsLoadScanEntityList中unloadCheck为1的值
|
|
|
|
|
carsLoadScanEntityList = carsLoadScanEntityList.stream().filter(carsLoadScanEntity -> !carsLoadScanEntity.getUnloadCheck().equals(1)).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(carsLoadScanEntityList)){ |
|
|
|
|
TrunklineCarsLoadScanEntity carsLoadScanEntity1 = carsLoadScanEntityList.get(0); |
|
|
|
|
Long loadId = carsLoadScanEntity1.getLoadId(); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
|
log.warn("#############zeroUnloadEnter: 配载计划不存在 loadId={}",loadId); |
|
|
|
|
return R.fail("配载计划不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把carsLoadScanEntityList通过orderCode进行分组
|
|
|
|
|
Map<String, List<TrunklineCarsLoadScanEntity>> orderCodemap = carsLoadScanEntityList.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getOrderCode)); |
|
|
|
|
orderCodemap.keySet().forEach(orderCode -> { |
|
|
|
|
List<TrunklineCarsLoadScanEntity> orderCodeList = orderCodemap.get(orderCode); |
|
|
|
|
//把orderCodeList通过fromWarehouseId进行分组
|
|
|
|
|
Map<Long, List<TrunklineCarsLoadScanEntity>> fromWarehouseIdmap = orderCodeList.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getFromWarehouseId)); |
|
|
|
|
fromWarehouseIdmap.keySet().forEach(fromWarehouseId -> { |
|
|
|
|
List<TrunklineCarsLoadScanEntity> fromWarehouseIdList = fromWarehouseIdmap.get(fromWarehouseId); |
|
|
|
|
|
|
|
|
|
int realNum = fromWarehouseIdList.stream().mapToInt(TrunklineCarsLoadScanEntity::getNum).sum(); |
|
|
|
|
//把fromWarehouseIdList中所有元素的unloadNum累加
|
|
|
|
|
int unloadNum = fromWarehouseIdList.stream().mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
|
|
|
|
|
|
if(unloadNum > realNum){ |
|
|
|
|
//卸车数大于实际装车数
|
|
|
|
|
throw new CustomerException(405,"零担订单"+orderCode+"卸车件数已大于实际装车件数,请去调整补录"); |
|
|
|
|
}else { |
|
|
|
|
|
|
|
|
|
//把fromWarehouseIdList中所有元素的id放入一个集合
|
|
|
|
|
List<Long> carsLoadScanIds = fromWarehouseIdList.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
List<TrunklineScanZeroDetailVO> zeroDetailVOList = scanZeroDetailService.findListByCarsLoadScanIds(carsLoadScanIds); |
|
|
|
|
//把zeroDetailVOList所有元素通过goodsName进行分组
|
|
|
|
|
Map<String, List<TrunklineScanZeroDetailVO>> goodsNamemap = zeroDetailVOList.stream().collect(Collectors.groupingBy(TrunklineScanZeroDetailVO::getGoodsName)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DistributionStockArticleEntity newStockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId); |
|
|
|
|
if (Objects.isNull(newStockArticleEntity)) { |
|
|
|
|
newStockArticleEntity = new DistributionStockArticleEntity(); |
|
|
|
|
BeanUtil.copy(stockArticleEntity, newStockArticleEntity); |
|
|
|
|
Integer totalNumber = stockArticleEntity.getTotalNumber(); |
|
|
|
|
newStockArticleEntity.setId(null); |
|
|
|
|
if(totalNumber == unloadNum){ |
|
|
|
|
newStockArticleEntity.setOrderReceiveStatus("30"); |
|
|
|
|
}else{ |
|
|
|
|
newStockArticleEntity.setOrderReceiveStatus("20"); |
|
|
|
|
} |
|
|
|
|
newStockArticleEntity.setOrderStatus("10"); |
|
|
|
|
newStockArticleEntity.setHandQuantity(unloadNum); |
|
|
|
|
newStockArticleEntity.setIncomingNum(unloadNum); |
|
|
|
|
newStockArticleEntity.setWarehouse(warehouseName); |
|
|
|
|
newStockArticleEntity.setWarehouseId(warehouseId); |
|
|
|
|
newStockArticleEntity.setAllocation(null); |
|
|
|
|
newStockArticleEntity.setTrays(null); |
|
|
|
|
newStockArticleEntity.setCarsLoadNum(0); |
|
|
|
|
Long orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if (orderId != 0) { |
|
|
|
|
|
|
|
|
|
Integer isTransfer = 1; |
|
|
|
|
List<DistributionParcelListVO> parcelListEntityList = distributionParcelListClient.findEntityVOListByOrderCode(orderCode, fromWarehouseId); |
|
|
|
|
List<DistributionParcelNumberEntity> ls = new ArrayList<>(); |
|
|
|
|
for (DistributionParcelListVO parcelListEntity : parcelListEntityList) { |
|
|
|
|
DistributionParcelListEntity newParcelListEntity = new DistributionParcelListEntity(); |
|
|
|
|
String firsts = parcelListEntity.getFirsts(); |
|
|
|
|
List<TrunklineScanZeroDetailVO> detailVOList = goodsNamemap.get(firsts); |
|
|
|
|
//把detailVOList所有元素的unloadNum求和,如果为空用0代替
|
|
|
|
|
int totalUnloadNum = detailVOList.stream() |
|
|
|
|
.mapToInt(vo -> Optional.ofNullable(vo.getUnloadNum()).orElse(0)) |
|
|
|
|
.sum(); |
|
|
|
|
|
|
|
|
|
BeanUtil.copy(parcelListEntity, newParcelListEntity); |
|
|
|
|
newParcelListEntity.setId(null); |
|
|
|
|
newParcelListEntity.setWarehouseId(warehouseId); |
|
|
|
|
newParcelListEntity.setWarehouse(warehouseName); |
|
|
|
|
newParcelListEntity.setStockArticleId(orderId); |
|
|
|
|
newParcelListEntity.setQuantity(totalUnloadNum); |
|
|
|
|
Long acceptWarehouseId = parcelListEntity.getAcceptWarehouseId(); |
|
|
|
|
if(warehouseId.equals(acceptWarehouseId)){ |
|
|
|
|
newParcelListEntity.setIsTransfer(0); |
|
|
|
|
isTransfer = 0; |
|
|
|
|
}else{ |
|
|
|
|
newParcelListEntity.setIsTransfer(1); |
|
|
|
|
} |
|
|
|
|
Long orderPackageId = distributionParcelListClient.addReturnId(newParcelListEntity); |
|
|
|
|
|
|
|
|
|
DistributionParcelNumberEntity parcelNumberEntity = new DistributionParcelNumberEntity(); |
|
|
|
|
parcelNumberEntity.setStockArticleId(orderId); |
|
|
|
|
parcelNumberEntity.setParcelListId(orderPackageId); |
|
|
|
|
parcelNumberEntity.setQuantity(parcelListEntity.getZeroPackageTotalNum()); |
|
|
|
|
parcelNumberEntity.setHandQuantity(totalUnloadNum); |
|
|
|
|
parcelNumberEntity.setDeliveryQuantity(0); |
|
|
|
|
parcelNumberEntity.setSigninQuantity(0); |
|
|
|
|
parcelNumberEntity.setOutboundQuantity(0); |
|
|
|
|
parcelNumberEntity.setWarehouseId(warehouseId); |
|
|
|
|
ls.add(parcelNumberEntity); |
|
|
|
|
} |
|
|
|
|
distributionParcelNumberClient.addBatch(ls); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
Integer hQuantity = newStockArticleEntity.getHandQuantity() + unloadNum; |
|
|
|
|
Integer incomingNum = newStockArticleEntity.getIncomingNum() + unloadNum; |
|
|
|
|
Integer totalNumber = newStockArticleEntity.getTotalNumber(); |
|
|
|
|
String reservationStatus = newStockArticleEntity.getReservationStatus(); |
|
|
|
|
String orderStatus = newStockArticleEntity.getOrderStatus(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (incomingNum.equals(totalNumber)) { |
|
|
|
|
newStockArticleEntity.setOrderStatus("20"); |
|
|
|
|
newStockArticleEntity.setOrderReceiveStatus("30"); |
|
|
|
|
} else { |
|
|
|
|
newStockArticleEntity.setOrderReceiveStatus("20"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if("30".equals(reservationStatus)){ |
|
|
|
|
newStockArticleEntity.setReservationStatus("20"); |
|
|
|
|
} |
|
|
|
|
if("80".equals(orderStatus)){ |
|
|
|
|
newStockArticleEntity.setOrderStatus("70"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
newStockArticleEntity.setHandQuantity(hQuantity); |
|
|
|
|
newStockArticleEntity.setIncomingNum(incomingNum); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> listEntityList = distributionParcelListClient.findEntityListByOrderCode(orderCode, warehouseId); |
|
|
|
|
//把listEntityList中所有元素的id放入一个集合
|
|
|
|
|
List<Long> parcelListIds = listEntityList.stream().map(DistributionParcelListEntity::getId).collect(Collectors.toList()); |
|
|
|
|
List<DistributionParcelNumberEntity> parceNumberList = distributionParcelNumberClient.findListByParcelListIds(parcelListIds); |
|
|
|
|
//把parceNumberList转化成以parcelListId为key的Map
|
|
|
|
|
Map<Long, DistributionParcelNumberEntity> mapByParcelListId = parceNumberList.stream() |
|
|
|
|
.collect(Collectors.toMap( |
|
|
|
|
DistributionParcelNumberEntity::getParcelListId, |
|
|
|
|
entity -> entity, |
|
|
|
|
(entity1, entity2) -> entity1)); // 处理可能的键冲突
|
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> updateParceList = new ArrayList<>(); |
|
|
|
|
List<DistributionParcelNumberEntity> updateParceNumberList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
listEntityList.forEach(entity -> { |
|
|
|
|
Long parceListId = entity.getId(); |
|
|
|
|
String firsts = entity.getFirsts(); |
|
|
|
|
List<TrunklineScanZeroDetailVO> detailVOList = goodsNamemap.get(firsts); |
|
|
|
|
//把detailVOList所有元素的unloadNum求和,如果为空用0代替
|
|
|
|
|
int totalUnloadNum = detailVOList.stream() |
|
|
|
|
.mapToInt(vo -> Optional.ofNullable(vo.getUnloadNum()).orElse(0)) |
|
|
|
|
.sum(); |
|
|
|
|
Integer quantity = entity.getQuantity(); |
|
|
|
|
DistributionParcelListEntity updatePaceList = new DistributionParcelListEntity(); |
|
|
|
|
updatePaceList.setId(parceListId); |
|
|
|
|
updatePaceList.setQuantity(quantity+totalUnloadNum); |
|
|
|
|
updatePaceList.setOrderPackageStatus("20"); |
|
|
|
|
updatePaceList.setOrderPackageStockupStatus("10"); |
|
|
|
|
updatePaceList.setOrderPackageReservationStatus("10"); |
|
|
|
|
updatePaceList.setOrderPackageLoadingStatus("10"); |
|
|
|
|
updateParceList.add(updatePaceList); |
|
|
|
|
|
|
|
|
|
DistributionParcelNumberEntity parcelNumberEntity = mapByParcelListId.get(parceListId); |
|
|
|
|
if(!Objects.isNull(parcelNumberEntity)){ |
|
|
|
|
Integer handQuantity = parcelNumberEntity.getHandQuantity(); |
|
|
|
|
DistributionParcelNumberEntity updateParceNumberEntity = new DistributionParcelNumberEntity(); |
|
|
|
|
updateParceNumberEntity.setId(parcelNumberEntity.getId()); |
|
|
|
|
updateParceNumberEntity.setHandQuantity(handQuantity + totalUnloadNum); |
|
|
|
|
updateParceNumberList.add(updateParceNumberEntity); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(updateParceList)){ |
|
|
|
|
distributionParcelListClient.updateList(updateParceList); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(updateParceNumberList)){ |
|
|
|
|
distributionParcelNumberClient.updateList(updateParceNumberList); |
|
|
|
|
} |
|
|
|
|
distributionStockArticleClient.saveOrUpdate(newStockArticleEntity); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(orderCode); |
|
|
|
|
waybillPackageService.updateWaybillStatus(warehouseWaybillEntity); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//把carsLoadScanEntityList中所有id放入一个List
|
|
|
|
|
List<Long> scanIds = carsLoadScanEntityList.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
|
List<TrunklineScanZeroDetailVO> zeroDetailVOList = scanZeroDetailService.findListByCarsLoadScanIds(scanIds); |
|
|
|
|
//把zeroDetailVOList中所有元素通过scanId进行分组
|
|
|
|
|
Map<Long, List<TrunklineScanZeroDetailVO>> mapByScanId = zeroDetailVOList.stream() |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineScanZeroDetailVO::getScanId)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
carsLoadScanEntityList.forEach(carsLoadScanEntity -> { |
|
|
|
|
|
|
|
|
|
Long scanId = carsLoadScanEntity.getId(); |
|
|
|
|
|
|
|
|
|
List<TrunklineScanZeroDetailVO> list = mapByScanId.get(scanId); |
|
|
|
|
|
|
|
|
|
carsLoadAsyncService.sendReportZeroPackageUnloadData(AuthUtil.getUserId(), AuthUtil.getNickName(), warehouseId, warehouseName,list,carsLoadScanEntity,carsLoadEntity); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void updateParcelListToWarehouse(TrunklineAdvanceDetailEntity advanceDetailEntity, Long warehouseId, String status) { |
|
|
|
|
String orderPackageCode = advanceDetailEntity.getOrderPackageCode(); |
|
|
|
|
String orderCode = advanceDetailEntity.getOrderCode(); |
|
|
|
|