|
|
|
@ -369,6 +369,51 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
//查询零担发车件数
|
|
|
|
|
List<ZeroNumVO> zeroNumVOList = trunklineCarsLoadScanService.findZeroStartNum(loadId,warehouseId); |
|
|
|
|
if(CollUtil.isNotEmpty(zeroNumVOList)){ |
|
|
|
|
zeroNumVOList.forEach(zeroNumVO -> { |
|
|
|
|
String waybillNo = zeroNumVO.getWaybillNo(); |
|
|
|
|
Integer num = zeroNumVO.getNum(); |
|
|
|
|
WarehouseWaybillEntity waybill = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
Integer totalCount = waybill.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(waybill.getWaybillStatus()); |
|
|
|
|
TrunklineWaybillOrderEntity waybillOrderEntity = trunklineWaybillOrderService.findEntityByWaybillNoAndOrderCode(waybillNo,waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillOrderEntity)){ |
|
|
|
|
Integer handleNumber = waybillOrderEntity.getHandleNumber(); |
|
|
|
|
if(Objects.isNull(handleNumber)){ |
|
|
|
|
handleNumber = 0; |
|
|
|
|
} |
|
|
|
|
int i = handleNumber + num; |
|
|
|
|
if(waybillStatusInt < 30){ |
|
|
|
|
if(totalCount == i){ |
|
|
|
|
waybill.setWaybillStatus("40"); |
|
|
|
|
waybillOrderEntity.setHandleNumber(i); |
|
|
|
|
warehouseWaybillClient.updateEntity(waybill); |
|
|
|
|
trunklineWaybillOrderService.updateById(waybillOrderEntity); |
|
|
|
|
}else{ |
|
|
|
|
waybill.setWaybillStatus("30"); |
|
|
|
|
waybillOrderEntity.setHandleNumber(i); |
|
|
|
|
warehouseWaybillClient.updateEntity(waybill); |
|
|
|
|
trunklineWaybillOrderService.updateById(waybillOrderEntity); |
|
|
|
|
} |
|
|
|
|
}else if(waybillStatusInt == 30){ |
|
|
|
|
if(totalCount == i){ |
|
|
|
|
waybill.setWaybillStatus("40"); |
|
|
|
|
waybillOrderEntity.setHandleNumber(i); |
|
|
|
|
warehouseWaybillClient.updateEntity(waybill); |
|
|
|
|
trunklineWaybillOrderService.updateById(waybillOrderEntity); |
|
|
|
|
}else{ |
|
|
|
|
waybillOrderEntity.setHandleNumber(i); |
|
|
|
|
trunklineWaybillOrderService.updateById(waybillOrderEntity); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//更新关联订单数据的发车数量
|
|
|
|
|
trunklineCarsOrderService.updateStartNumByLoadIdAndWarehouseId(loadId, warehouseId); |
|
|
|
|
//删除没有装车的计划数据
|
|
|
|
@ -756,6 +801,41 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
//查询零担发车件数
|
|
|
|
|
List<ZeroNumVO> zeroNumVOList = trunklineCarsLoadScanService.findZeroStartNum(loadId,warehouseId); |
|
|
|
|
if(CollUtil.isNotEmpty(zeroNumVOList)){ |
|
|
|
|
zeroNumVOList.forEach(zeroNumVO -> { |
|
|
|
|
String waybillNo = zeroNumVO.getWaybillNo(); |
|
|
|
|
Integer num = zeroNumVO.getNum(); |
|
|
|
|
WarehouseWaybillEntity waybill = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
Integer totalCount = waybill.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(waybill.getWaybillStatus()); |
|
|
|
|
TrunklineWaybillOrderEntity waybillOrderEntity = trunklineWaybillOrderService.findEntityByWaybillNoAndOrderCode(waybillNo,waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillOrderEntity)){ |
|
|
|
|
Integer handleNumber = waybillOrderEntity.getHandleNumber(); |
|
|
|
|
if(waybillStatusInt == 40 || waybillStatusInt == 30){ |
|
|
|
|
if(Objects.isNull(handleNumber)){ |
|
|
|
|
handleNumber = 0; |
|
|
|
|
} |
|
|
|
|
int i = handleNumber - num; |
|
|
|
|
if(i==0){ |
|
|
|
|
waybill.setWaybillStatus("20"); |
|
|
|
|
waybillOrderEntity.setHandleNumber(totalCount); |
|
|
|
|
}else{ |
|
|
|
|
waybill.setWaybillStatus("30"); |
|
|
|
|
waybillOrderEntity.setHandleNumber(i); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
warehouseWaybillClient.updateEntity(waybill); |
|
|
|
|
trunklineWaybillOrderService.updateById(waybillOrderEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//更新关联订单数据的发车数量
|
|
|
|
|
trunklineCarsOrderService.updateStartNumToPlanNumByLoadIdAndWarehouseId(loadId, warehouseId); |
|
|
|
|
|
|
|
|
@ -1004,6 +1084,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Long nowWarehouseId = carsLoadEntity.getNowWarehouseId();//当前节点id
|
|
|
|
|
String carsNo = carsLoadEntity.getCarsNo(); |
|
|
|
|
|
|
|
|
|
if (!warehouseId.equals(nowWarehouseId)) { |
|
|
|
|
log.warn("#############cancelArriveCarByLoadId: 配载未到达当前仓 loadId={} nowWarehouseId={}", loadId, nowWarehouseId); |
|
|
|
@ -1183,30 +1264,41 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
distributionParcelNumberClient.addBatch(ls); |
|
|
|
|
|
|
|
|
|
if(isTransfer == 0){ |
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper1 = new QueryWrapper<>(); |
|
|
|
|
queryWrapper1.eq("waybill_no",stockArticleEntity.getWaybillNumber()) |
|
|
|
|
.eq("order_code",stockArticleEntity.getWaybillNumber()); |
|
|
|
|
TrunklineWaybillOrderEntity one = trunklineWaybillOrderService.getOne(queryWrapper1); |
|
|
|
|
if(!Objects.isNull(one)){ |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(stockArticleEntity.getWaybillNumber()); |
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(waybillEntity.getWaybillStatus()); |
|
|
|
|
if(waybillStatusInt <= 30){ |
|
|
|
|
Integer handleNumber = one.getHandleNumber(); |
|
|
|
|
int total = handleNumber + unloadNum; |
|
|
|
|
if(total < totalCount){ |
|
|
|
|
waybillEntity.setWaybillStatus("50"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
}else{ |
|
|
|
|
waybillEntity.setWaybillStatus("60"); |
|
|
|
|
one.setHandleNumber(totalCount); |
|
|
|
|
} |
|
|
|
|
warehouseWaybillClient.updateEntity(waybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// if(isTransfer == 0){
|
|
|
|
|
// //查询零担发车件数
|
|
|
|
|
// List<ZeroNumVO> zeroNumVOList = trunklineCarsLoadScanService.findZeroStartNum(loadId,warehouseId);
|
|
|
|
|
// if(CollUtil.isNotEmpty(zeroNumVOList)){
|
|
|
|
|
// zeroNumVOList.forEach(zeroNumVO -> {
|
|
|
|
|
// String waybillNo = zeroNumVO.getWaybillNo();
|
|
|
|
|
// Integer num = zeroNumVO.getNum();
|
|
|
|
|
// WarehouseWaybillEntity waybill = warehouseWaybillClient.findByWaybillNo(waybillNo);
|
|
|
|
|
// Integer totalCount = waybill.getTotalCount();
|
|
|
|
|
// Integer waybillStatusInt = Integer.parseInt(waybill.getWaybillStatus());
|
|
|
|
|
// TrunklineWaybillOrderEntity waybillOrderEntity = trunklineWaybillOrderService.findEntityByWaybillNoAndOrderCode(waybillNo,waybillNo);
|
|
|
|
|
// if(!Objects.isNull(waybillOrderEntity)){
|
|
|
|
|
// Integer handleNumber = waybillOrderEntity.getHandleNumber();
|
|
|
|
|
// if(waybillStatusInt <= 40){
|
|
|
|
|
// if(Objects.isNull(handleNumber)){
|
|
|
|
|
// handleNumber = 0;
|
|
|
|
|
// }
|
|
|
|
|
// int i = handleNumber - num;
|
|
|
|
|
// if(i==0){
|
|
|
|
|
// waybill.setWaybillStatus("20");
|
|
|
|
|
// waybillOrderEntity.setHandleNumber(totalCount);
|
|
|
|
|
// }else{
|
|
|
|
|
// waybill.setWaybillStatus("30");
|
|
|
|
|
// waybillOrderEntity.setHandleNumber(i);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// warehouseWaybillClient.updateEntity(waybill);
|
|
|
|
|
// trunklineWaybillOrderService.updateById(waybillOrderEntity);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
Integer hQuantity = newStockArticleEntity.getHandQuantity() + unloadNum; |
|
|
|
@ -1232,38 +1324,77 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setIncomingNum(incomingNum); |
|
|
|
|
|
|
|
|
|
distributionStockArticleClient.saveOrUpdate(newStockArticleEntity); |
|
|
|
|
String waybillNumber = newStockArticleEntity.getWaybillNumber(); |
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNumber); |
|
|
|
|
Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId(); |
|
|
|
|
if(warehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper1 = new QueryWrapper<>(); |
|
|
|
|
queryWrapper1.eq("waybill_no",stockArticleEntity.getWaybillNumber()) |
|
|
|
|
.eq("order_code",stockArticleEntity.getWaybillNumber()); |
|
|
|
|
TrunklineWaybillOrderEntity one = trunklineWaybillOrderService.getOne(queryWrapper1); |
|
|
|
|
if(!Objects.isNull(one)){ |
|
|
|
|
Integer totalCount = warehouseWaybillEntity.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(warehouseWaybillEntity.getWaybillStatus()); |
|
|
|
|
if(waybillStatusInt <= 30){ |
|
|
|
|
Integer handleNumber = one.getHandleNumber(); |
|
|
|
|
int total = handleNumber + unloadNum; |
|
|
|
|
if(total < totalCount){ |
|
|
|
|
warehouseWaybillEntity.setWaybillStatus("50"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
}else{ |
|
|
|
|
warehouseWaybillEntity.setWaybillStatus("60"); |
|
|
|
|
one.setHandleNumber(totalCount); |
|
|
|
|
} |
|
|
|
|
warehouseWaybillClient.updateEntity(warehouseWaybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// String waybillNumber = newStockArticleEntity.getWaybillNumber();
|
|
|
|
|
// WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNumber);
|
|
|
|
|
// Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId();
|
|
|
|
|
// if(warehouseId.equals(destinationWarehouseId)){
|
|
|
|
|
// QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper1 = new QueryWrapper<>();
|
|
|
|
|
// queryWrapper1.eq("waybill_no",stockArticleEntity.getWaybillNumber())
|
|
|
|
|
// .eq("order_code",stockArticleEntity.getWaybillNumber());
|
|
|
|
|
// TrunklineWaybillOrderEntity one = trunklineWaybillOrderService.getOne(queryWrapper1);
|
|
|
|
|
// if(!Objects.isNull(one)){
|
|
|
|
|
// Integer totalCount = warehouseWaybillEntity.getTotalCount();
|
|
|
|
|
// Integer waybillStatusInt = Integer.parseInt(warehouseWaybillEntity.getWaybillStatus());
|
|
|
|
|
// if(waybillStatusInt <= 30){
|
|
|
|
|
// Integer handleNumber = one.getHandleNumber();
|
|
|
|
|
// int total = handleNumber + unloadNum;
|
|
|
|
|
// if(total < totalCount){
|
|
|
|
|
// warehouseWaybillEntity.setWaybillStatus("50");
|
|
|
|
|
// one.setHandleNumber(total);
|
|
|
|
|
// }else{
|
|
|
|
|
// warehouseWaybillEntity.setWaybillStatus("60");
|
|
|
|
|
// one.setHandleNumber(totalCount);
|
|
|
|
|
// }
|
|
|
|
|
// warehouseWaybillClient.updateEntity(warehouseWaybillEntity);
|
|
|
|
|
// trunklineWaybillOrderService.updateById(one);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(orderCode); |
|
|
|
|
String waybillNo = warehouseWaybillEntity.getWaybillNo(); |
|
|
|
|
Long waybillId = warehouseWaybillEntity.getId(); |
|
|
|
|
int unloadNum = orderCodeList.stream().mapToInt(TrunklineCarsLoadScanEntity::getUnloadNum).sum(); |
|
|
|
|
Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId(); |
|
|
|
|
if(warehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper1 = new QueryWrapper<>(); |
|
|
|
|
queryWrapper1.eq("waybill_no",orderCode) |
|
|
|
|
.eq("order_code",orderCode); |
|
|
|
|
TrunklineWaybillOrderEntity one = trunklineWaybillOrderService.getOne(queryWrapper1); |
|
|
|
|
if(!Objects.isNull(one)){ |
|
|
|
|
Integer handleNumber = one.getHandleNumber(); |
|
|
|
|
Integer totalCount = warehouseWaybillEntity.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(warehouseWaybillEntity.getWaybillStatus()); |
|
|
|
|
int total = handleNumber + unloadNum; |
|
|
|
|
if(waybillStatusInt < 50){ |
|
|
|
|
if(total != totalCount){ |
|
|
|
|
warehouseWaybillEntity.setWaybillStatus("50"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
warehouseWaybillClient.updateEntity(warehouseWaybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
}else{ |
|
|
|
|
warehouseWaybillEntity.setWaybillStatus("60"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
warehouseWaybillClient.updateEntity(warehouseWaybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
} |
|
|
|
|
}else if(waybillStatusInt == 50){ |
|
|
|
|
if(total == totalCount){ |
|
|
|
|
warehouseWaybillEntity.setWaybillStatus("60"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
warehouseWaybillClient.updateEntity(warehouseWaybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -6667,7 +6798,6 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DistributionStockArticleEntity updateStockArticle = new DistributionStockArticleEntity(); |
|
|
|
|
updateStockArticle.setId(distributionStockArticle.getId()); |
|
|
|
|
updateStockArticle.setHandQuantity(distributionStockArticle.getHandQuantity()+num); |
|
|
|
@ -6691,6 +6821,34 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
updateStockArticle.setId(distributionStockArticle.getId()); |
|
|
|
|
updateStockArticle.setHandQuantity(distributionStockArticle.getHandQuantity()+num); |
|
|
|
|
updateStockArticleList.add(updateStockArticle); |
|
|
|
|
|
|
|
|
|
if(warehouseId.equals(fromWarehouseId)){ |
|
|
|
|
Long waybillId = distributionStockArticle.getWaybillId(); |
|
|
|
|
String waybillNo = distributionStockArticle.getWaybillNumber(); |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineWaybillOrderEntity> queryWrapper1 = new QueryWrapper<>(); |
|
|
|
|
queryWrapper1.eq("waybill_id",waybillId) |
|
|
|
|
.eq("order_code",waybillNo); |
|
|
|
|
TrunklineWaybillOrderEntity one = trunklineWaybillOrderService.getOne(queryWrapper1); |
|
|
|
|
if(!Objects.isNull(one)){ |
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
Integer waybillStatusInt = Integer.parseInt(waybillEntity.getWaybillStatus()); |
|
|
|
|
if(waybillStatusInt <= 40){ |
|
|
|
|
Integer handleNumber = one.getHandleNumber(); |
|
|
|
|
int total = handleNumber - num; |
|
|
|
|
if(total == 0){ |
|
|
|
|
waybillEntity.setWaybillStatus("20"); |
|
|
|
|
one.setHandleNumber(total); |
|
|
|
|
}else{ |
|
|
|
|
waybillEntity.setWaybillStatus("30"); |
|
|
|
|
one.setHandleNumber(totalCount); |
|
|
|
|
} |
|
|
|
|
warehouseWaybillClient.updateEntity(waybillEntity); |
|
|
|
|
trunklineWaybillOrderService.updateById(one); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|