|
|
|
@ -6068,13 +6068,20 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String audio = null; |
|
|
|
|
String orders = null; |
|
|
|
|
if (0 == isZero) { |
|
|
|
|
unloadPackage(loadId, orderPackageCode, warehouseId, 1, "卸分一体 卸车", incomingType, palletName, trayCode); |
|
|
|
|
R r1 = unloadPackage(loadId, orderPackageCode, warehouseId, 1, "卸分一体 卸车", incomingType, palletName, trayCode); |
|
|
|
|
int code1 = r1.getCode(); |
|
|
|
|
if(NumberUtil.equals(code1,4005)){ |
|
|
|
|
log.warn("##########unloadTrayAllOne: 系统无编码 trayCode={} orderPackageCode={} msg={}", trayCode, orderPackageCode, r1.getMsg()); |
|
|
|
|
return R.fail(code1, "系统无编码"); |
|
|
|
|
} |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("trayId", basicdataTrayEntity.getId()); |
|
|
|
|
map.put("trayType", trayType); |
|
|
|
|
map.put("trayCode", trayCode); |
|
|
|
|
map.put("trayName", basicdataTrayEntity.getPalletName()); |
|
|
|
|
map.put("warehouseId", warehouseId); |
|
|
|
|
map.put("orderPackageCode", orderPackageCode); |
|
|
|
|
R r = trayTypeClient.orderScanOrderPackageCodeReturnR(map); |
|
|
|
|
R r = trayTypeClient.orderScanOrderPackageCodeSyncJd(map); |
|
|
|
|
int code = r.getCode(); |
|
|
|
|
if (code != 200) { |
|
|
|
|
log.warn("##########unloadTrayAllOne: 打托失败 trayCode={} orderPackageCode={} msg={}", trayCode, orderPackageCode, r.getMsg()); |
|
|
|
@ -6129,6 +6136,317 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.data(map); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public R unloadTrayAllOneNew(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
Long loadId = loadCarsDTO.getLoadId(); |
|
|
|
|
String trayCode = loadCarsDTO.getTrayCode(); |
|
|
|
|
String trayType = loadCarsDTO.getTrayType(); |
|
|
|
|
String orderPackageCode = loadCarsDTO.getOrderPackageCode(); |
|
|
|
|
Long warehouseId = loadCarsDTO.getWarehouseId(); |
|
|
|
|
String warehouseName = loadCarsDTO.getWarehouseName(); |
|
|
|
|
Integer incomingType = loadCarsDTO.getIncomingType(); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
|
log.warn("############unloadTrayAllOneNew: 配载计划信息不存在 loadId={} ", loadId); |
|
|
|
|
return R.fail(405, "配载计划信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String carsNo = carsLoadEntity.getCarsNo(); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(loadId, warehouseId); |
|
|
|
|
if (Objects.isNull(carsLoadLineEntity)) { |
|
|
|
|
log.warn("############unloadTrayAllOneNew: 配载计划节点信息不存在 loadId={} warehouseId={}", loadId, warehouseId); |
|
|
|
|
return R.fail(405, "配载计划节点信息不存在"); |
|
|
|
|
} |
|
|
|
|
String unloadStatus = carsLoadLineEntity.getUnloadStatus(); |
|
|
|
|
if (!"0".equals(unloadStatus)) { |
|
|
|
|
log.warn("############unloadTrayAllOneNew: 当前网点已经卸车确认 loadId={} warehouseId={}", loadId, warehouseId); |
|
|
|
|
return R.fail(405, "当前网点已经卸车确认"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
DistributionParcelListEntity signDistributionParcelListEntity = distributionParcelListClient.findOrderPackageCodeAndStatus(orderPackageCode,"70"); |
|
|
|
|
if (!Objects.isNull(signDistributionParcelListEntity)) { |
|
|
|
|
log.warn("##############unloadTrayAllOneNew: 包件已签收 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(405, "包件已签收"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer trayStatus = 0; |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = null; |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = trunklineAdvanceDetailService.findEntityByOrderPackageCode(orderPackageCode); |
|
|
|
|
|
|
|
|
|
// if(Objects.isNull(advanceDetailEntity)){
|
|
|
|
|
// //系统无编码
|
|
|
|
|
// trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity();
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadId(loadId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadCode(carsNo);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanCode(orderPackageCode);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setReserve1("1");
|
|
|
|
|
// //把其他仓reserve1为1的更新为2
|
|
|
|
|
// trunklineCarsLoadScanService.updateReserve1ByOrderPackageCode(orderPackageCode,"2");
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanStatus("2");
|
|
|
|
|
// trunklineCarsLoadScanEntity.setNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setType(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsData(0);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeName(warehouseName);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsSupple(0);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTime(new Date());
|
|
|
|
|
// trunklineCarsLoadScanService.save(trunklineCarsLoadScanEntity);
|
|
|
|
|
// log.warn("##############unloadTrayAllOneNew: 系统无编码 orderPackageCode={}", orderPackageCode);
|
|
|
|
|
// return R.fail(405, "系统无编码");
|
|
|
|
|
// }else{
|
|
|
|
|
// Long advanceId = advanceDetailEntity.getAdvanceId();
|
|
|
|
|
// TrunklineAdvanceEntity advanceEntity = advanceService.getById(advanceId);
|
|
|
|
|
// String orderCode = advanceEntity.getOrderCode();
|
|
|
|
|
// Long waybillId = advanceDetailEntity.getWaybillId();
|
|
|
|
|
// WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillId(waybillId);
|
|
|
|
|
//
|
|
|
|
|
// //首先判断包件是否已经入库
|
|
|
|
|
// DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCodeAndWarehouseId(orderPackageCode, warehouseId);
|
|
|
|
|
// if(Objects.isNull(parcelListEntity)){
|
|
|
|
|
//
|
|
|
|
|
// QueryWrapper<TrunklineCarsLoadScanEntity> neloadScanQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
// neloadScanQueryWrapper.eq("load_id", loadId)
|
|
|
|
|
// .eq("scan_code", orderPackageCode)
|
|
|
|
|
// .eq("unload_node_id", warehouseId)
|
|
|
|
|
// .ne("scan_status", "1");
|
|
|
|
|
// TrunklineCarsLoadScanEntity unloadScanEntity = trunklineCarsLoadScanService.getOne(neloadScanQueryWrapper);
|
|
|
|
|
// if(Objects.isNull(unloadScanEntity)){
|
|
|
|
|
// log.warn("############unloadTrayAllOneNew: 包件已经卸车 loadId={} unload_node_id={}", loadId, warehouseId);
|
|
|
|
|
// return R.fail(405, "包件已经卸车");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// //没有入库,去做判定能否入库
|
|
|
|
|
// QueryWrapper<TrunklineCarsLoadScanEntity> scanQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
// scanQueryWrapper.eq("load_id", loadId)
|
|
|
|
|
// .eq("scan_code", orderPackageCode)
|
|
|
|
|
// .eq("scan_status", "1");
|
|
|
|
|
// TrunklineCarsLoadScanEntity scanEntity = trunklineCarsLoadScanService.getOne(scanQueryWrapper);
|
|
|
|
|
// if(Objects.isNull(scanEntity)){
|
|
|
|
|
// //当前车上没有在车记录
|
|
|
|
|
// trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity();
|
|
|
|
|
// trunklineCarsLoadScanEntity.setOrderCode(advanceDetailEntity.getOrderCode());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setWaybillId(advanceDetailEntity.getWaybillId());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setWaybillNo(advanceDetailEntity.getWaybillNo());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadId(loadId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadCode(carsNo);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanCode(orderPackageCode);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanStatus("2");
|
|
|
|
|
// trunklineCarsLoadScanEntity.setNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setType(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsData(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeName(warehouseName);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsSupple(0);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTime(new Date());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setFirsts(advanceDetailEntity.getFirstPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setSenconds(advanceDetailEntity.getSecondPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setThirds(advanceDetailEntity.getThirdPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setMaterialCode(advanceDetailEntity.getMaterialCode());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setMaterialName(advanceDetailEntity.getMaterialName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerName(advanceEntity.getCustomerName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerTelephone(advanceEntity.getCustomerPhone());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerAddress(advanceEntity.getCustomerAddress());
|
|
|
|
|
//
|
|
|
|
|
// Long currentOrderId = null;
|
|
|
|
|
// //查询当前仓库订单信息有没有
|
|
|
|
|
// Integer totalNumber = trunklineAdvanceDetailService.findTotalNumByOrderCode(orderCode);
|
|
|
|
|
// DistributionStockArticleEntity currentStockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId);
|
|
|
|
|
// if (Objects.isNull(currentStockArticleEntity)) {
|
|
|
|
|
// //查询包件前面仓的订单信息
|
|
|
|
|
// currentStockArticleEntity = new DistributionStockArticleEntity();
|
|
|
|
|
// currentStockArticleEntity.setId(null);
|
|
|
|
|
// currentStockArticleEntity.setServiceNumber(advanceEntity.getServiceNum());
|
|
|
|
|
// currentStockArticleEntity.setOrderCode(orderCode);
|
|
|
|
|
// currentStockArticleEntity.setMallCode(advanceEntity.getDealerCode());
|
|
|
|
|
// currentStockArticleEntity.setMallName(advanceEntity.getDealerName());
|
|
|
|
|
// if(!Objects.isNull(waybillEntity)){
|
|
|
|
|
// currentStockArticleEntity.setMallId(waybillEntity.getConsigneeId());
|
|
|
|
|
// currentStockArticleEntity.setConsignee(waybillEntity.getConsignee());
|
|
|
|
|
// currentStockArticleEntity.setConsigneeTelephone(waybillEntity.getConsigneePhone());
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// currentStockArticleEntity.setWarehouseId(warehouseId);
|
|
|
|
|
// currentStockArticleEntity.setWarehouse(warehouseName);
|
|
|
|
|
// currentStockArticleEntity.setTotalNumber(totalNumber);
|
|
|
|
|
// currentStockArticleEntity.setHandQuantity(0);
|
|
|
|
|
// currentStockArticleEntity.setCompleteSet(1);
|
|
|
|
|
// currentStockArticleEntity.setStockupStatus("10");
|
|
|
|
|
// currentStockArticleEntity.setReservationStatus("10");
|
|
|
|
|
// currentStockArticleEntity.setOrderStatus("20");
|
|
|
|
|
// currentStockArticleEntity.setGroundingStatus("10");
|
|
|
|
|
// currentStockArticleEntity.setOrderReceiveStatus("10");
|
|
|
|
|
// currentStockArticleEntity.setFreezeStatus("10");
|
|
|
|
|
// currentStockArticleEntity.setSortingQuantity(0);
|
|
|
|
|
// currentStockArticleEntity.setDeliveryQuantity(0);
|
|
|
|
|
// currentStockArticleEntity.setTransferQuantity(0);
|
|
|
|
|
// currentStockArticleEntity.setSigninQuantity(0);
|
|
|
|
|
// currentStockArticleEntity.setIncomingNum(0);
|
|
|
|
|
// currentStockArticleEntity.setGenre(1);
|
|
|
|
|
// currentStockArticleEntity.setAllocation(null);
|
|
|
|
|
// currentStockArticleEntity.setTrays(null);
|
|
|
|
|
// currentOrderId = distributionStockArticleClient.addData(currentStockArticleEntity);
|
|
|
|
|
// currentStockArticleEntity.setId(currentOrderId);
|
|
|
|
|
// } else {
|
|
|
|
|
// currentOrderId = currentStockArticleEntity.getId();
|
|
|
|
|
// String reservationStatus = currentStockArticleEntity.getReservationStatus();
|
|
|
|
|
// if("30".equals(reservationStatus)){
|
|
|
|
|
// currentStockArticleEntity.setReservationStatus("20");
|
|
|
|
|
// }
|
|
|
|
|
// String orderStatus = currentStockArticleEntity.getOrderStatus();
|
|
|
|
|
// if("80".equals(orderStatus)){
|
|
|
|
|
// currentStockArticleEntity.setOrderStatus("70");
|
|
|
|
|
// }
|
|
|
|
|
// currentStockArticleEntity.setGenre(1);
|
|
|
|
|
// currentStockArticleEntity.setTotalNumber(totalNumber);
|
|
|
|
|
//
|
|
|
|
|
// distributionStockArticleClient.updateEntity(currentStockArticleEntity);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// //判断包件当前仓是否是目的仓
|
|
|
|
|
// WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNumber);
|
|
|
|
|
//
|
|
|
|
|
// if (Objects.isNull(distributionParcelListEntity)) {
|
|
|
|
|
// distributionParcelListEntity = new DistributionParcelListEntity();
|
|
|
|
|
// BeanUtil.copy(parcelListEntity, distributionParcelListEntity);
|
|
|
|
|
// distributionParcelListEntity.setId(null);
|
|
|
|
|
// distributionParcelListEntity.setIsTransfer(1);
|
|
|
|
|
// isTransfer = 1;
|
|
|
|
|
// if (!Objects.isNull(warehouseWaybillEntity)) {
|
|
|
|
|
// Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId();//目的仓
|
|
|
|
|
// if (destinationWarehouseId.equals(warehouseId)) {
|
|
|
|
|
// distributionParcelListEntity.setIsTransfer(0);
|
|
|
|
|
// isTransfer = 0;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// distributionParcelListEntity.setAdvanceId(parcelListEntity.getAdvanceId());
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageStatus("20");
|
|
|
|
|
// distributionParcelListEntity.setWarehouseId(warehouseId);
|
|
|
|
|
// distributionParcelListEntity.setWarehouse(warehouseName);
|
|
|
|
|
// distributionParcelListEntity.setTrainNumber(loadCode);
|
|
|
|
|
// distributionParcelListEntity.setStockArticleId(currentOrderId);
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageFreezeStatus("10");
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageGroundingStatus("10");
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageStockupStatus("10");
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageReservationStatus("10");
|
|
|
|
|
// distributionParcelListEntity.setOrderPackageLoadingStatus("10");
|
|
|
|
|
// distributionParcelListEntity.setWarehouseEntryTimeEnd(new Date());
|
|
|
|
|
// boolean add = distributionParcelListClient.add(distributionParcelListEntity);
|
|
|
|
|
//
|
|
|
|
|
// }else{
|
|
|
|
|
// //当前车上有在车记录
|
|
|
|
|
// trunklineCarsLoadScanEntity = scanEntity;
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeName(warehouseName);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTime(new Date());
|
|
|
|
|
//
|
|
|
|
|
// parcelListEntity.setOrderPackageStatus("20");
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }else{
|
|
|
|
|
// //已经入库就直接打托
|
|
|
|
|
// String orderPackageStatus = parcelListEntity.getOrderPackageStatus();
|
|
|
|
|
// if("20".equals(orderPackageStatus)){
|
|
|
|
|
// //已经入库就去打托
|
|
|
|
|
// log.info("###############unloadTrayAllOneNew: ");
|
|
|
|
|
// }else{
|
|
|
|
|
// QueryWrapper<TrunklineCarsLoadScanEntity> neloadScanQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
// neloadScanQueryWrapper.eq("load_id", loadId)
|
|
|
|
|
// .eq("scan_code", orderPackageCode)
|
|
|
|
|
// .eq("unload_node_id", warehouseId)
|
|
|
|
|
// .ne("scan_status", "1");
|
|
|
|
|
// TrunklineCarsLoadScanEntity unloadScanEntity = trunklineCarsLoadScanService.getOne(neloadScanQueryWrapper);
|
|
|
|
|
// if(Objects.isNull(unloadScanEntity)){
|
|
|
|
|
// log.warn("############unloadTrayAllOneNew: 包件已经卸车 loadId={} unload_node_id={}", loadId, warehouseId);
|
|
|
|
|
// return R.fail(405, "包件已经卸车");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// QueryWrapper<TrunklineCarsLoadScanEntity> scanQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
// scanQueryWrapper.eq("load_id", loadId)
|
|
|
|
|
// .eq("scan_code", orderPackageCode)
|
|
|
|
|
// .eq("scan_status", "1");
|
|
|
|
|
// TrunklineCarsLoadScanEntity scanEntity = trunklineCarsLoadScanService.getOne(scanQueryWrapper);
|
|
|
|
|
// if(Objects.isNull(scanEntity)){
|
|
|
|
|
// //当前车上没有在车记录
|
|
|
|
|
// trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity();
|
|
|
|
|
// trunklineCarsLoadScanEntity.setOrderCode(advanceDetailEntity.getOrderCode());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setWaybillId(advanceDetailEntity.getWaybillId());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setWaybillNo(advanceDetailEntity.getWaybillNo());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadId(loadId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadCode(carsNo);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanCode(orderPackageCode);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setScanStatus("2");
|
|
|
|
|
// trunklineCarsLoadScanEntity.setNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setType(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsData(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeName(warehouseName);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setIsSupple(0);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setLoadingUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTime(new Date());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setFirsts(advanceDetailEntity.getFirstPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setSenconds(advanceDetailEntity.getSecondPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setThirds(advanceDetailEntity.getThirdPackName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setMaterialCode(advanceDetailEntity.getMaterialCode());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setMaterialName(advanceDetailEntity.getMaterialName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerName(advanceEntity.getCustomerName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerTelephone(advanceEntity.getCustomerPhone());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setCustomerAddress(advanceEntity.getCustomerAddress());
|
|
|
|
|
//
|
|
|
|
|
// parcelListEntity.setOrderPackageStatus("20");
|
|
|
|
|
//
|
|
|
|
|
// }else{
|
|
|
|
|
// //当前车上有在车记录
|
|
|
|
|
// trunklineCarsLoadScanEntity = scanEntity;
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadAbnormal(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeName(warehouseName);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNodeId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadNum(1);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName());
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTime(new Date());
|
|
|
|
|
//
|
|
|
|
|
// parcelListEntity.setOrderPackageStatus("20");
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("orders", "11111"); |
|
|
|
|
return R.data(map); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R determineHasNoFinalNode(Long loadId, Long warehouseId) { |
|
|
|
|
|
|
|
|
@ -10303,7 +10621,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String orderPackageStatus = distributionParcelListEntity.getOrderPackageStatus(); |
|
|
|
|
if ("20".equals(orderPackageStatus) || "30".equals(orderPackageStatus)) { |
|
|
|
|
log.warn("##############unloadPackage: 包件已入库 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(405, "包件已入库"); |
|
|
|
|
return R.success( "包件已入库"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -10326,7 +10644,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Integer isData1 = scanEntity.getIsData(); |
|
|
|
|
if (isData1.equals(0)) { |
|
|
|
|
log.warn("##############unloadPackage: 系统无编码 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(405, "系统无编码"); |
|
|
|
|
return R.fail(4005, "系统无编码"); |
|
|
|
|
} |
|
|
|
|
log.warn("##############unloadPackage: 包件已卸车 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return R.fail(405, "包件已卸车"); |
|
|
|
@ -10360,8 +10678,6 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
//需要补装车扫记录
|
|
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity(); |
|
|
|
|
// trunklineCarsLoadScanEntity.setWarehouseId(warehouseId);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setWarehouseName(warehouseName);
|
|
|
|
|
trunklineCarsLoadScanEntity.setOrderCode(advanceDetailEntity.getOrderCode()); |
|
|
|
|
trunklineCarsLoadScanEntity.setWaybillId(advanceDetailEntity.getWaybillId()); |
|
|
|
|
trunklineCarsLoadScanEntity.setWaybillNo(advanceDetailEntity.getWaybillNo()); |
|
|
|
@ -10386,12 +10702,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
trunklineCarsLoadScanService.save(trunklineCarsLoadScanEntity); |
|
|
|
|
loadScanId = trunklineCarsLoadScanEntity.getId(); |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadingLogService.savaLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.saveLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, null, loadScanId, "有数据,补装车计划,异常装车"); |
|
|
|
|
|
|
|
|
|
trunklineCarsUnloadLogService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, null, loadScanId, "有数据,异常卸车"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
//已入库
|
|
|
|
|
Long nowWarehouseId = advanceDetailEntity.getNowWarehouseId(); |
|
|
|
@ -10427,10 +10745,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
trunklineCarsLoadScanService.save(trunklineCarsLoadScanEntity); |
|
|
|
|
loadScanId = trunklineCarsLoadScanEntity.getId(); |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadingLogService.savaLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.saveLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, null, loadScanId, "有数据,无计划,无装车,补装车计划,异常装车"); |
|
|
|
|
|
|
|
|
|
trunklineCarsUnloadLogService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, null, loadScanId, "有数据,无计划,无装车,异常卸车"); |
|
|
|
|
|
|
|
|
|
//无装车记录异常日志记录
|
|
|
|
@ -10566,7 +10884,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
distributionParcelListClient.update(distributionParcelListEntity); |
|
|
|
|
} |
|
|
|
|
if(StringUtils.isNotBlank(orderPackageCode)){ |
|
|
|
|
updownTypeClient.downPackageOrDelTray(orderPackageCode, nowWarehouseId, "干线卸车下架解托"); |
|
|
|
|
carsLoadAsyncService.downPackageOrDelTray(orderPackageCode, nowWarehouseId, "干线卸车下架解托"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
@ -10595,17 +10913,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
trunklineCarsLoadScanEntity.setLoadingUserName(AuthUtil.getNickName()); |
|
|
|
|
trunklineCarsLoadScanEntity.setUnloadUserName(AuthUtil.getNickName()); |
|
|
|
|
trunklineCarsLoadScanEntity.setUnloadTime(new Date()); |
|
|
|
|
if(isData==1){ |
|
|
|
|
trunklineCarsLoadScanEntity.setUnloadTrayCode(unloadTrayCode); |
|
|
|
|
trunklineCarsLoadScanEntity.setUnloadTrayName(unloadTrayName); |
|
|
|
|
} |
|
|
|
|
// if(isData==1){
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTrayCode(unloadTrayCode);
|
|
|
|
|
// trunklineCarsLoadScanEntity.setUnloadTrayName(unloadTrayName);
|
|
|
|
|
// }
|
|
|
|
|
trunklineCarsLoadScanService.save(trunklineCarsLoadScanEntity); |
|
|
|
|
loadScanId = trunklineCarsLoadScanEntity.getId(); |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadingLogService.savaLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.saveLoadingLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 0, 1, trayId, trayCode, trayName, null, loadScanId, "无数据,补装车计划,异常装车"); |
|
|
|
|
|
|
|
|
|
trunklineCarsUnloadLogService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, null, null, null, orderPackageCode, 1, |
|
|
|
|
1, 0, 1, trayId, trayCode, trayName, null, loadScanId, "无数据,异常卸车"); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -10668,10 +10986,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
loadScanId = trunklineCarsLoadScanEntity.getId(); |
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
trunklineCarsLoadingLogService.savaLoadingLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNumber, orderCode, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.saveLoadingLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNumber, orderCode, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, wid, loadScanId, "有数据,补装车计划,异常装车"); |
|
|
|
|
|
|
|
|
|
trunklineCarsUnloadLogService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNumber, orderCode, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNumber, orderCode, orderPackageCode, 1, |
|
|
|
|
1, 1, 1, trayId, trayCode, trayName, wid, loadScanId, "有数据,异常卸车"); |
|
|
|
|
|
|
|
|
|
distributionStockArticleClient.submitHandleNumByOrderId(1, articleId); |
|
|
|
@ -10771,7 +11089,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
distributionParcelListClient.update(distributionParcelListEntity); |
|
|
|
|
} |
|
|
|
|
if(StringUtils.isNotBlank(orderPackageCode)){ |
|
|
|
|
updownTypeClient.downPackageOrDelTray(orderPackageCode, wid, "干线卸车下架解托"); |
|
|
|
|
carsLoadAsyncService.downPackageOrDelTray(orderPackageCode, wid, "干线卸车下架解托"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -10822,11 +11140,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
trayName = trayEntity.getPalletName(); |
|
|
|
|
} |
|
|
|
|
if (unbindTray == 1) { |
|
|
|
|
updownTypeClient.downPackageOrDelTray(orderPackageCode, fromWarehouseId, "干线卸车下架解托"); |
|
|
|
|
carsLoadAsyncService.downPackageOrDelTray(orderPackageCode, fromWarehouseId, "干线卸车下架解托"); |
|
|
|
|
} |
|
|
|
|
trunklineCarsLoadScanService.updateById(carsLoadScanEntity); |
|
|
|
|
|
|
|
|
|
trunklineCarsUnloadLogService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNo, orderCode, orderPackageCode, 1, |
|
|
|
|
carsLoadAsyncService.savaUnloadLog(warehouseId, warehouseName, loadId, loadCode, waybillId, waybillNo, orderCode, orderPackageCode, 1, |
|
|
|
|
1, 1, isAbnormal, trayId, trayCode, trayName, fromWarehouseId, loadScanId, remark); |
|
|
|
|
|
|
|
|
|
if (1 == isData) { |
|
|
|
@ -11009,54 +11327,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
orderPackageCodes.add(orderPackageCode); |
|
|
|
|
String content = "包件在 " + warehouseName + "卸车,车次号:"+carsLoadEntity.getCarsNo()+" 卸车方式:" + IncomingTypeEnum.getValue(incomingType)+ (StringUtil.isNotBlank(unloadTrayName)?"托盘:"+unloadTrayName:""); |
|
|
|
|
packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), orderPackageCodes, warehouseId, warehouseName, WorkNodeEnums.UNLOAD_INCOMING_WAREHOUSE.getCode(), content); |
|
|
|
|
try { |
|
|
|
|
if (StrUtil.isNotEmpty(orderCode)) { |
|
|
|
|
// 发送入库消息
|
|
|
|
|
OrderStatusDTO orderStatusDTO = new OrderStatusDTO(); |
|
|
|
|
// 通过包件id 查询包件
|
|
|
|
|
orderStatusDTO.setUnitNo(orderPackageCode); |
|
|
|
|
orderStatusDTO.setOrderNo(orderCode); |
|
|
|
|
orderStatusDTO.setStatus("4"); |
|
|
|
|
orderStatusDTO.setOperationTime(DateUtil.now()); |
|
|
|
|
orderStatusDTO.setCurrentWarehouse(warehouseId.toString()); |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("messageData", JSONUtil.toJsonStr(orderStatusDTO)); |
|
|
|
|
rabbitTemplate.convertAndSend(RabbitConstant.HWY_ORDER_STATUS_EXCHANGE, RabbitConstant.HWY_ORDER_STATUS_ROUTING, map); |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCodeAndWarehouseId(orderPackageCode, warehouseId); |
|
|
|
|
JSONObject main = new JSONObject(); |
|
|
|
|
main.put("trainNumber", parcelListEntity.getTrainNumber()); |
|
|
|
|
main.put("waybillNumber", parcelListEntity.getWaybillNumber()); |
|
|
|
|
NodePushMsg nodePushMsg = NodePushMsg.builder() |
|
|
|
|
.operator(AuthUtil.getNickName()) |
|
|
|
|
.operatorTime(new Date()) |
|
|
|
|
.warehouse(warehouseName) |
|
|
|
|
.startWarehouse(ObjectUtil.isNotEmpty(parcelListEntity) ? parcelListEntity.getSendWarehouseName():"") |
|
|
|
|
.endWarehouse(ObjectUtil.isNotEmpty(parcelListEntity) ? parcelListEntity.getAcceptWarehouseName():"") |
|
|
|
|
.address("在【" + warehouseName + "】入库") |
|
|
|
|
.brand(BrandEnums.getByValue(distributionParcelListEntity.getBrandName())) |
|
|
|
|
.main(JSONUtil.toJsonStr(main)) |
|
|
|
|
.node(WorkNodeEnums.UNLOAD_INCOMING_WAREHOUSE) |
|
|
|
|
.content(Collections.singletonList(PushData.builder() |
|
|
|
|
.packageCode(orderPackageCode) |
|
|
|
|
.warehouseName(warehouseName) |
|
|
|
|
.waybillNumber(parcelListEntity.getWaybillNumber()) |
|
|
|
|
.destinationWarehouse(ObjectUtil.isNotEmpty(parcelListEntity) ? parcelListEntity.getAcceptWarehouseName():"") |
|
|
|
|
.waybillStartWarehouse(ObjectUtil.isNotEmpty(parcelListEntity) ? parcelListEntity.getSendWarehouseName():"") |
|
|
|
|
.orderCode(orderCode) |
|
|
|
|
.build())) |
|
|
|
|
.build(); |
|
|
|
|
factoryDataMessageSender.sendNodeDataByBrand(nodePushMsg); |
|
|
|
|
} |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("入库推送失败:{}", e); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
carsLoadAsyncService.sendFactoryData(orderCode,orderPackageCode,warehouseId,warehouseName); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.warn("#########卸车存入日志失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = trunklineCarsLoadScanService.findUnloadNumAudio(loadId,warehouseId); |
|
|
|
|
Integer totalUnloadNum = jsonObject.getInteger("totalUnloadNum"); |
|
|
|
|
Integer abnormalUnloadNum = jsonObject.getInteger("abnormalUnloadNum"); |
|
|
|
|
// Integer abnormalUnloadNum = jsonObject.getInteger("abnormalUnloadNum");
|
|
|
|
|
StringBuilder audio = new StringBuilder(); |
|
|
|
|
audio.append("卸车").append(totalUnloadNum).append("件"); |
|
|
|
|
// if(!Objects.isNull(abnormalUnloadNum) && !abnormalUnloadNum.equals(0)){
|
|
|
|
@ -11068,7 +11347,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadAsyncService.sendReportPackageUnloadData(AuthUtil.getNickName(),AuthUtil.getUserId(),warehouseId,warehouseName,carsLoadEntity,orderPackageCodeList); |
|
|
|
|
|
|
|
|
|
if (isData == 0) { |
|
|
|
|
return Resp.scanSuccess("卸车成功", "系统无编码"); |
|
|
|
|
return Resp.fail(4005,"系统无编码"); |
|
|
|
|
} |
|
|
|
|
return Resp.scanSuccess("卸车成功", audio.toString()); |
|
|
|
|
} |
|
|
|
|