|
|
@ -90,13 +90,13 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void saveLog(TrunklineCarsLoadEntity carsLoadEntity, TrunklineCarsLoadLineEntity carsLoadLineEntity, int cardLoadType,String nickName,Long userId) { |
|
|
|
public void saveLog(TrunklineCarsLoadEntity carsLoadEntity, TrunklineCarsLoadLineEntity carsLoadLineEntity, int cardLoadType, String nickName, Long userId) { |
|
|
|
String nodeName = null; |
|
|
|
String nodeName = null; |
|
|
|
Integer planLoadingNumber = null; |
|
|
|
Integer planLoadingNumber = null; |
|
|
|
Integer realLoadingNumber = null; |
|
|
|
Integer realLoadingNumber = null; |
|
|
|
Date startDate = null; |
|
|
|
Date startDate = null; |
|
|
|
Long nodeId = null; |
|
|
|
Long nodeId = null; |
|
|
|
if(!Objects.isNull(carsLoadLineEntity)){ |
|
|
|
if (!Objects.isNull(carsLoadLineEntity)) { |
|
|
|
nodeName = carsLoadLineEntity.getNodeName(); |
|
|
|
nodeName = carsLoadLineEntity.getNodeName(); |
|
|
|
planLoadingNumber = carsLoadLineEntity.getPlanLoadingNumber(); |
|
|
|
planLoadingNumber = carsLoadLineEntity.getPlanLoadingNumber(); |
|
|
|
realLoadingNumber = carsLoadLineEntity.getRealLoadingNumber(); |
|
|
|
realLoadingNumber = carsLoadLineEntity.getRealLoadingNumber(); |
|
|
@ -124,74 +124,74 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
carsLoadLogEntity.setTenantId(TenantNum.HUITONGCODE); |
|
|
|
carsLoadLogEntity.setTenantId(TenantNum.HUITONGCODE); |
|
|
|
carsLoadLogEntity.setAbstText(CarsLoadLogTypeConstant.getName(cardLoadType)); |
|
|
|
carsLoadLogEntity.setAbstText(CarsLoadLogTypeConstant.getName(cardLoadType)); |
|
|
|
String content = ""; |
|
|
|
String content = ""; |
|
|
|
switch (cardLoadType){ |
|
|
|
switch (cardLoadType) { |
|
|
|
case 0: |
|
|
|
case 0: |
|
|
|
content = "【"+nodeName+"】取消配载计划,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】取消配载计划,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile; |
|
|
|
",司机手机号:" + driverMobile; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
content = "【"+nodeName+"】创建配载计划,路线:"+carsLineName+",车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】创建配载计划,路线:" + carsLineName + ",车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile; |
|
|
|
",司机手机号:" + driverMobile; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
content = "【"+nodeName+"】修改配载计划,路线:"+carsLineName+",车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】修改配载计划,路线:" + carsLineName + ",车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile; |
|
|
|
",司机手机号:" + driverMobile; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 3: |
|
|
|
case 3: |
|
|
|
content = "【"+nodeName+"】始发仓装车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】始发仓装车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",计划发货:"+planLoadingNumber+",实际装车:"+realLoadingNumber+",装车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",计划发货:" + planLoadingNumber + ",实际装车:" + realLoadingNumber + ",装车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 4: |
|
|
|
case 4: |
|
|
|
content = "【"+nodeName+"】始发仓发车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】始发仓发车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",计划发货:"+planLoadingNumber+",实际装车:"+realLoadingNumber+",发车时间:"+ CommonUtil.dateToString(startDate); |
|
|
|
",司机手机号:" + driverMobile + ",计划发货:" + planLoadingNumber + ",实际装车:" + realLoadingNumber + ",发车时间:" + CommonUtil.dateToString(startDate); |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 5: |
|
|
|
case 5: |
|
|
|
content = "【"+nodeName+"】始发仓取消发车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】始发仓取消发车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",取消时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",取消时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 6: |
|
|
|
case 6: |
|
|
|
content = "【"+nodeName+"】网点到车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点到车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点到车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点到车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 7: |
|
|
|
case 7: |
|
|
|
content = "【"+nodeName+"】网点取消到车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点取消到车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点取消到车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点取消到车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 8: |
|
|
|
case 8: |
|
|
|
content = "【"+nodeName+"】网点卸车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点卸车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点卸车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点卸车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 9: |
|
|
|
case 9: |
|
|
|
content = "【"+nodeName+"】网点修改配载,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点修改配载,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点修改配载时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点修改配载时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 10: |
|
|
|
case 10: |
|
|
|
content = "【"+nodeName+"】网点装车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点装车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点装车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点装车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 11: |
|
|
|
case 11: |
|
|
|
content = "【"+nodeName+"】网点发车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点发车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点发车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点发车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 12: |
|
|
|
case 12: |
|
|
|
content = "【"+nodeName+"】网点取消发车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】网点取消发车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",网点取消发车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",网点取消发车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 13: |
|
|
|
case 13: |
|
|
|
content = "【"+nodeName+"】终点到达,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】终点到达,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",终点到达时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",终点到达时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 14: |
|
|
|
case 14: |
|
|
|
content = "【"+nodeName+"】终点取消到达,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】终点取消到达,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",终点取消到达时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",终点取消到达时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 15: |
|
|
|
case 15: |
|
|
|
content = "【"+nodeName+"】终点卸车,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】终点卸车,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile+",终点卸车时间:"+ now; |
|
|
|
",司机手机号:" + driverMobile + ",终点卸车时间:" + now; |
|
|
|
break; |
|
|
|
break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
content = "【"+nodeName+"】其他日志,车次号:"+carsNo+",车牌号:"+carNumber+",司机姓名:"+driverName+ |
|
|
|
content = "【" + nodeName + "】其他日志,车次号:" + carsNo + ",车牌号:" + carNumber + ",司机姓名:" + driverName + |
|
|
|
",司机手机号:"+driverMobile; |
|
|
|
",司机手机号:" + driverMobile; |
|
|
|
} |
|
|
|
} |
|
|
|
carsLoadLogEntity.setContent(content); |
|
|
|
carsLoadLogEntity.setContent(content); |
|
|
|
carsLoadLogEntity.setType(cardLoadType); |
|
|
|
carsLoadLogEntity.setType(cardLoadType); |
|
|
@ -202,9 +202,9 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void saveCostShareRecord(Long loadId, TrunklineCarsLoadEntity carsLoadEntity, Long userId, String tenantId, String deptIds) { |
|
|
|
public void saveCostShareRecord(Long loadId, TrunklineCarsLoadEntity carsLoadEntity, Long userId, String tenantId, String deptIds) { |
|
|
|
Long deptId = null; |
|
|
|
Long deptId = null; |
|
|
|
if(deptIds.contains(",")){ |
|
|
|
if (deptIds.contains(",")) { |
|
|
|
String[] split = deptIds.split(","); |
|
|
|
String[] split = deptIds.split(","); |
|
|
|
deptId = Long.parseLong(split[split.length-1]); |
|
|
|
deptId = Long.parseLong(split[split.length - 1]); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -225,8 +225,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
if(Objects.isNull(waybillEntity)){ |
|
|
|
if (Objects.isNull(waybillEntity)) { |
|
|
|
log.warn("##############saveCostShareRecord: 运单信息不存在 waybillNo={}",waybillNo); |
|
|
|
log.warn("##############saveCostShareRecord: 运单信息不存在 waybillNo={}", waybillNo); |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
@ -237,11 +237,11 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TrunklineCostShareRecordEntity trunklineCostShareRecordEntity = null; |
|
|
|
TrunklineCostShareRecordEntity trunklineCostShareRecordEntity = null; |
|
|
|
if(type.equals(1)){ |
|
|
|
if (type.equals(1)) { |
|
|
|
trunklineCostShareRecordEntity = trunklineCostShareRecordService.findPackageDataByLoadIdAndCode(scanCode,loadId,tenantId); |
|
|
|
trunklineCostShareRecordEntity = trunklineCostShareRecordService.findPackageDataByLoadIdAndCode(scanCode, loadId, tenantId); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(Objects.isNull(trunklineCostShareRecordEntity)){ |
|
|
|
if (Objects.isNull(trunklineCostShareRecordEntity)) { |
|
|
|
trunklineCostShareRecordEntity = new TrunklineCostShareRecordEntity(); |
|
|
|
trunklineCostShareRecordEntity = new TrunklineCostShareRecordEntity(); |
|
|
|
trunklineCostShareRecordEntity.setTenantId(tenantId); |
|
|
|
trunklineCostShareRecordEntity.setTenantId(tenantId); |
|
|
|
trunklineCostShareRecordEntity.setCreateUser(userId); |
|
|
|
trunklineCostShareRecordEntity.setCreateUser(userId); |
|
|
@ -251,7 +251,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
trunklineCostShareRecordEntity.setCarsNo(carsLoadEntity.getCarsNo()); |
|
|
|
trunklineCostShareRecordEntity.setCarsNo(carsLoadEntity.getCarsNo()); |
|
|
|
trunklineCostShareRecordEntity.setWaybillId(waybillId); |
|
|
|
trunklineCostShareRecordEntity.setWaybillId(waybillId); |
|
|
|
trunklineCostShareRecordEntity.setWaybillNo(waybillNo); |
|
|
|
trunklineCostShareRecordEntity.setWaybillNo(waybillNo); |
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
if (!Objects.isNull(stockArticleEntity)) { |
|
|
|
trunklineCostShareRecordEntity.setOrderId(stockArticleEntity.getId()); |
|
|
|
trunklineCostShareRecordEntity.setOrderId(stockArticleEntity.getId()); |
|
|
|
} |
|
|
|
} |
|
|
|
trunklineCostShareRecordEntity.setOrderCode(orderCode); |
|
|
|
trunklineCostShareRecordEntity.setOrderCode(orderCode); |
|
|
@ -262,7 +262,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
trunklineCostShareRecordEntity.setLoadingWarehouseName(warehouseName); |
|
|
|
trunklineCostShareRecordEntity.setLoadingWarehouseName(warehouseName); |
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseId(finalNodeId); |
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseId(finalNodeId); |
|
|
|
BasicdataWarehouseEntity finalWarehouse = warehouseClient.getEntityWarehouseId(finalNodeId); |
|
|
|
BasicdataWarehouseEntity finalWarehouse = warehouseClient.getEntityWarehouseId(finalNodeId); |
|
|
|
if(!Objects.isNull(finalWarehouse)){ |
|
|
|
if (!Objects.isNull(finalWarehouse)) { |
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseName(finalWarehouse.getName()); |
|
|
|
trunklineCostShareRecordEntity.setPlanUnloadWarehouseName(finalWarehouse.getName()); |
|
|
|
} |
|
|
|
} |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(unloadNodeId); |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(unloadNodeId); |
|
|
@ -273,7 +273,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
trunklineCostShareRecordEntity.setWaybillEndWarehouseName(destinationWarehouseName); |
|
|
|
trunklineCostShareRecordEntity.setWaybillEndWarehouseName(destinationWarehouseName); |
|
|
|
trunklineCostShareRecordService.save(trunklineCostShareRecordEntity); |
|
|
|
trunklineCostShareRecordService.save(trunklineCostShareRecordEntity); |
|
|
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
} else { |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(scanEntity.getUnloadNodeId()); |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseId(scanEntity.getUnloadNodeId()); |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseName(scanEntity.getUnloadNodeName()); |
|
|
|
trunklineCostShareRecordEntity.setRealUnloadWarehouseName(scanEntity.getUnloadNodeName()); |
|
|
|
trunklineCostShareRecordService.updateById(trunklineCostShareRecordEntity); |
|
|
|
trunklineCostShareRecordService.updateById(trunklineCostShareRecordEntity); |
|
|
@ -285,25 +285,25 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void costShareByLoadId(Long loadId,TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
public void costShareByLoadId(Long loadId, TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
|
|
|
|
|
|
|
|
String proportion1 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "1"); |
|
|
|
String proportion1 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "1"); |
|
|
|
String proportion2 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "2"); |
|
|
|
String proportion2 = DictBizCache.getValue(DictBizConstant.TRUNKLINE_COST_PROPORTION, "2"); |
|
|
|
if(new BigDecimal(proportion1).add(new BigDecimal(proportion2)).compareTo(BigDecimal.ONE) != 0){ |
|
|
|
if (new BigDecimal(proportion1).add(new BigDecimal(proportion2)).compareTo(BigDecimal.ONE) != 0) { |
|
|
|
log.warn("###############costShareZhang: 配置比例有误"); |
|
|
|
log.warn("###############costShareZhang: 配置比例有误"); |
|
|
|
throw new CustomerException(405,"配置比例有误"); |
|
|
|
throw new CustomerException(405, "配置比例有误"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BigDecimal countTransportCost = carsLoadEntity.getCountTransportCost(); |
|
|
|
BigDecimal countTransportCost = carsLoadEntity.getCountTransportCost(); |
|
|
|
Integer totalUnloadNum = trunklineCostShareRecordService.findTotalUnloadNumByLoad(loadId); |
|
|
|
Integer totalUnloadNum = trunklineCostShareRecordService.findTotalUnloadNumByLoad(loadId); |
|
|
|
|
|
|
|
|
|
|
|
if(totalUnloadNum.equals(0)){ |
|
|
|
if (totalUnloadNum.equals(0)) { |
|
|
|
log.warn("###############costShareZhang: 分摊件数为0"); |
|
|
|
log.warn("###############costShareZhang: 分摊件数为0"); |
|
|
|
throw new CustomerException(405,"分摊件数为0"); |
|
|
|
throw new CustomerException(405, "分摊件数为0"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//计算单件成本
|
|
|
|
//计算单件成本
|
|
|
|
BigDecimal costPiece = countTransportCost.divide(new BigDecimal(totalUnloadNum),2, RoundingMode.HALF_UP); |
|
|
|
BigDecimal costPiece = countTransportCost.divide(new BigDecimal(totalUnloadNum), 2, RoundingMode.HALF_UP); |
|
|
|
|
|
|
|
|
|
|
|
//先查询出该车次的所有记录
|
|
|
|
//先查询出该车次的所有记录
|
|
|
|
List<TrunklineCostShareRecordEntity> list = trunklineCostShareRecordService.findListByLoadId(loadId); |
|
|
|
List<TrunklineCostShareRecordEntity> list = trunklineCostShareRecordService.findListByLoadId(loadId); |
|
|
@ -321,28 +321,28 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
//收入
|
|
|
|
//收入
|
|
|
|
String waybillNo = trunklineCostShareRecordEntity.getWaybillNo(); |
|
|
|
String waybillNo = trunklineCostShareRecordEntity.getWaybillNo(); |
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
BigDecimal totalFreight = waybillEntity.getTotalFreight();//运单运费
|
|
|
|
BigDecimal totalFreight = waybillEntity.getTotalFreight();//运单运费
|
|
|
|
if(waybillStartWarehouseId.equals(loadingWarehouseId)){ |
|
|
|
if (waybillStartWarehouseId.equals(loadingWarehouseId)) { |
|
|
|
//装车仓库 就是 运单起始仓
|
|
|
|
//装车仓库 就是 运单起始仓
|
|
|
|
if(realUnloadWarehouseId.equals(waybillEndWarehouseId)){ |
|
|
|
if (realUnloadWarehouseId.equals(waybillEndWarehouseId)) { |
|
|
|
//卸车仓库 就是 运单目的仓
|
|
|
|
//卸车仓库 就是 运单目的仓
|
|
|
|
totalFreight = totalFreight.multiply(BigDecimal.ONE);//运费收入就是100%
|
|
|
|
totalFreight = totalFreight.multiply(BigDecimal.ONE);//运费收入就是100%
|
|
|
|
}else{ |
|
|
|
} else { |
|
|
|
//卸车仓库 不是 运单目的仓
|
|
|
|
//卸车仓库 不是 运单目的仓
|
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion1));//运费收入就是80%
|
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion1));//运费收入就是80%
|
|
|
|
} |
|
|
|
} |
|
|
|
}else{ |
|
|
|
} else { |
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion2));//运费收入就是20%
|
|
|
|
totalFreight = totalFreight.multiply(new BigDecimal(proportion2));//运费收入就是20%
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount();//总件数
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount();//总件数
|
|
|
|
BigDecimal xincome = totalFreight.divide(new BigDecimal(totalCount),2, RoundingMode.HALF_DOWN); |
|
|
|
BigDecimal xincome = totalFreight.divide(new BigDecimal(totalCount), 2, RoundingMode.HALF_DOWN); |
|
|
|
BigDecimal income = xincome.multiply(new BigDecimal(num)); |
|
|
|
BigDecimal income = xincome.multiply(new BigDecimal(num)); |
|
|
|
trunklineCostShareRecordEntity.setIncome(income); |
|
|
|
trunklineCostShareRecordEntity.setIncome(income); |
|
|
|
totalIncome = totalIncome.add(income); |
|
|
|
totalIncome = totalIncome.add(income); |
|
|
|
|
|
|
|
|
|
|
|
trunklineCostShareRecordEntity.setProportion(proportion1+":"+proportion2); |
|
|
|
trunklineCostShareRecordEntity.setProportion(proportion1 + ":" + proportion2); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -350,7 +350,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
for (TrunklineCostShareRecordEntity trunklineCostShareRecordEntity : list) { |
|
|
|
for (TrunklineCostShareRecordEntity trunklineCostShareRecordEntity : list) { |
|
|
|
BigDecimal income = trunklineCostShareRecordEntity.getIncome(); |
|
|
|
BigDecimal income = trunklineCostShareRecordEntity.getIncome(); |
|
|
|
trunklineCostShareRecordEntity.setCostZhang(countTransportCost.multiply(income.divide(totalIncome,8,RoundingMode.HALF_UP))); |
|
|
|
trunklineCostShareRecordEntity.setCostZhang(countTransportCost.multiply(income.divide(totalIncome, 8, RoundingMode.HALF_UP))); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
trunklineCostShareRecordService.updateBatchById(list); |
|
|
|
trunklineCostShareRecordService.updateBatchById(list); |
|
|
@ -371,13 +371,13 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void abnormalListStartCarByLoadIdAndWarehouseId(Long loadId, Long warehouseId,Long userId,Long deptId,String nickName,String tenantId,String warehouseName) { |
|
|
|
public void abnormalListStartCarByLoadIdAndWarehouseId(Long loadId, Long warehouseId, Long userId, Long deptId, String nickName, String tenantId, String warehouseName) { |
|
|
|
|
|
|
|
|
|
|
|
//先查询
|
|
|
|
//先查询
|
|
|
|
List<TrunklineCarsLoadScanEntity> ls = trunklineCarsLoadScanService.abnormalListStartCarByLoadIdAndWarehouseId(loadId,warehouseId); |
|
|
|
List<TrunklineCarsLoadScanEntity> ls = trunklineCarsLoadScanService.abnormalListStartCarByLoadIdAndWarehouseId(loadId, warehouseId); |
|
|
|
for (TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity : ls) { |
|
|
|
for (TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity : ls) { |
|
|
|
Integer isData = trunklineCarsLoadScanEntity.getIsData(); |
|
|
|
Integer isData = trunklineCarsLoadScanEntity.getIsData(); |
|
|
|
if(isData == 1){ |
|
|
|
if (isData == 1) { |
|
|
|
String loadCode = trunklineCarsLoadScanEntity.getLoadCode(); |
|
|
|
String loadCode = trunklineCarsLoadScanEntity.getLoadCode(); |
|
|
|
String waybillNo = trunklineCarsLoadScanEntity.getWaybillNo(); |
|
|
|
String waybillNo = trunklineCarsLoadScanEntity.getWaybillNo(); |
|
|
|
String orderCode = trunklineCarsLoadScanEntity.getOrderCode(); |
|
|
|
String orderCode = trunklineCarsLoadScanEntity.getOrderCode(); |
|
|
@ -416,7 +416,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void abnormalListUnloadByLoadIdAndWarehouseId(Long loadId, Long warehouseId, String warehouseName, Long loadScanId, String tenantId, Long userId, String nickName, Long deptId) { |
|
|
|
public void abnormalListUnloadByLoadIdAndWarehouseId(Long loadId, Long warehouseId, String warehouseName, Long loadScanId, String tenantId, Long userId, String nickName, Long deptId) { |
|
|
|
TrunklineCarsLoadScanEntity carsLoadScanEntity = trunklineCarsLoadScanService.getById(loadScanId); |
|
|
|
TrunklineCarsLoadScanEntity carsLoadScanEntity = trunklineCarsLoadScanService.getById(loadScanId); |
|
|
|
if(!Objects.isNull(carsLoadScanEntity)){ |
|
|
|
if (!Objects.isNull(carsLoadScanEntity)) { |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
|
String orderCode = carsLoadScanEntity.getOrderCode(); |
|
|
|
String orderCode = carsLoadScanEntity.getOrderCode(); |
|
|
@ -454,21 +454,21 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void abnormalListUnloadCheckByLoadIdAndWarehouseId(Long loadId, Long warehouseId, String warehouseName, String tenantId, Long userId, String nickName, Long deptId,TrunklineCarsLoadLineEntity carsLoadLineEntity) { |
|
|
|
public void abnormalListUnloadCheckByLoadIdAndWarehouseId(Long loadId, Long warehouseId, String warehouseName, String tenantId, Long userId, String nickName, Long deptId, TrunklineCarsLoadLineEntity carsLoadLineEntity) { |
|
|
|
|
|
|
|
|
|
|
|
log.info("################abnormalListUnloadCheckByLoadIdAndWarehouseId: 卸车报告生成开始 loadId={}",loadId); |
|
|
|
log.info("################abnormalListUnloadCheckByLoadIdAndWarehouseId: 卸车报告生成开始 loadId={}", loadId); |
|
|
|
|
|
|
|
|
|
|
|
UnloadReportVO unloadReportVO = trunklineCarsLoadScanService.findUnloadReport(loadId,warehouseId); |
|
|
|
UnloadReportVO unloadReportVO = trunklineCarsLoadScanService.findUnloadReport(loadId, warehouseId); |
|
|
|
if(!Objects.isNull(carsLoadLineEntity)){ |
|
|
|
if (!Objects.isNull(carsLoadLineEntity)) { |
|
|
|
carsLoadLineEntity.setUnloadReportStatus(1); |
|
|
|
carsLoadLineEntity.setUnloadReportStatus(1); |
|
|
|
carsLoadLineEntity.setReportOne("本次装车件数 "+unloadReportVO.getLoadingNum()+" 件,实际卸车件数 "+unloadReportVO.getUnloadNum()+" 件,计划未卸车数量 "+(unloadReportVO.getNoUnloadNum()-unloadReportVO.getNoPlanNum())+" 件"); |
|
|
|
carsLoadLineEntity.setReportOne("本次装车件数 " + unloadReportVO.getLoadingNum() + " 件,实际卸车件数 " + unloadReportVO.getUnloadNum() + " 件,计划未卸车数量 " + (unloadReportVO.getNoUnloadNum() - unloadReportVO.getNoPlanNum()) + " 件"); |
|
|
|
carsLoadLineEntity.setReportTwo("无基础数据货物 "+unloadReportVO.getNoDataNum()+" 件、非计划内货物 "+unloadReportVO.getNoPlanNum()+" 件、手动确认入库 "+unloadReportVO.getManualNum()+" 件"); |
|
|
|
carsLoadLineEntity.setReportTwo("无基础数据货物 " + unloadReportVO.getNoDataNum() + " 件、非计划内货物 " + unloadReportVO.getNoPlanNum() + " 件、手动确认入库 " + unloadReportVO.getManualNum() + " 件"); |
|
|
|
trunklineCarsLoadLineService.updateById(carsLoadLineEntity); |
|
|
|
trunklineCarsLoadLineService.updateById(carsLoadLineEntity); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<AftersalesAbnormalRecordEntity> addList = new ArrayList<>(); |
|
|
|
List<AftersalesAbnormalRecordEntity> addList = new ArrayList<>(); |
|
|
|
List<TrunklineCarsLoadScanEntity> noUnloadList = trunklineCarsLoadScanService.findUnloadCheckAbnormalNoUnloadList(loadId,warehouseId); |
|
|
|
List<TrunklineCarsLoadScanEntity> noUnloadList = trunklineCarsLoadScanService.findUnloadCheckAbnormalNoUnloadList(loadId, warehouseId); |
|
|
|
for (TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity : noUnloadList) { |
|
|
|
for (TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity : noUnloadList) { |
|
|
|
String loadCode = trunklineCarsLoadScanEntity.getLoadCode(); |
|
|
|
String loadCode = trunklineCarsLoadScanEntity.getLoadCode(); |
|
|
|
String waybillNo = trunklineCarsLoadScanEntity.getWaybillNo(); |
|
|
|
String waybillNo = trunklineCarsLoadScanEntity.getWaybillNo(); |
|
|
@ -504,7 +504,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
// abnormalRecordClient.addAbnormalRecord(abnormalRecordEntity);
|
|
|
|
// abnormalRecordClient.addAbnormalRecord(abnormalRecordEntity);
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> noDataList = trunklineCarsLoadScanService.findUnloadCheckAbnormalNoDataList(loadId,warehouseId); |
|
|
|
List<TrunklineCarsLoadScanEntity> noDataList = trunklineCarsLoadScanService.findUnloadCheckAbnormalNoDataList(loadId, warehouseId); |
|
|
|
for (TrunklineCarsLoadScanEntity carsLoadScanEntity : noDataList) { |
|
|
|
for (TrunklineCarsLoadScanEntity carsLoadScanEntity : noDataList) { |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
@ -540,8 +540,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
// abnormalRecordClient.addAbnormalRecord(abnormalRecordEntity);
|
|
|
|
// abnormalRecordClient.addAbnormalRecord(abnormalRecordEntity);
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> abnormalZeroScanList = trunklineCarsLoadScanService.findAbnormalZeroScanList(loadId,warehouseId); |
|
|
|
List<TrunklineCarsLoadScanEntity> abnormalZeroScanList = trunklineCarsLoadScanService.findAbnormalZeroScanList(loadId, warehouseId); |
|
|
|
if(CollUtil.isNotEmpty(abnormalZeroScanList)){ |
|
|
|
if (CollUtil.isNotEmpty(abnormalZeroScanList)) { |
|
|
|
abnormalZeroScanList.forEach(carsLoadScanEntity -> { |
|
|
|
abnormalZeroScanList.forEach(carsLoadScanEntity -> { |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String loadCode = carsLoadScanEntity.getLoadCode(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
|
String waybillNo = carsLoadScanEntity.getWaybillNo(); |
|
|
@ -575,28 +575,29 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
abnormalRecordEntity.setUpUserName(nickName); |
|
|
|
abnormalRecordEntity.setUpUserName(nickName); |
|
|
|
abnormalRecordEntity.setAbnormalStatus(0); |
|
|
|
abnormalRecordEntity.setAbnormalStatus(0); |
|
|
|
abnormalRecordEntity.setRemark("零担卸车数量异常"); |
|
|
|
abnormalRecordEntity.setRemark("零担卸车数量异常"); |
|
|
|
if("3".equals(scanStatus)){ |
|
|
|
if ("3".equals(scanStatus)) { |
|
|
|
abnormalRecordEntity.setAbnormalStatus(1); |
|
|
|
abnormalRecordEntity.setAbnormalStatus(1); |
|
|
|
abnormalRecordEntity.setRemark("零担签收未完成数量回退原仓"); |
|
|
|
abnormalRecordEntity.setRemark("零担签收未完成数量回退原仓"); |
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(orderCode, fromWarehouseId); |
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
if (!Objects.isNull(stockArticleEntity)) { |
|
|
|
distributionStockArticleClient.addHandQuantity(stockArticleEntity.getId(),num-unloadNum); |
|
|
|
distributionStockArticleClient.addHandQuantity(stockArticleEntity.getId(), num - unloadNum); |
|
|
|
zeroDetailVOList.forEach(zeroDetailVO -> { |
|
|
|
zeroDetailVOList.forEach(zeroDetailVO -> { |
|
|
|
Long packageId = zeroDetailVO.getPackageId(); |
|
|
|
Long packageId = zeroDetailVO.getPackageId(); |
|
|
|
Integer loadingNum = zeroDetailVO.getLoadingNum(); |
|
|
|
Integer loadingNum = zeroDetailVO.getLoadingNum(); |
|
|
|
Integer unloadNum1 = zeroDetailVO.getUnloadNum(); |
|
|
|
Integer unloadNum1 = zeroDetailVO.getUnloadNum(); |
|
|
|
distributionParcelListClient.addZeroQuantity(packageId,loadingNum-unloadNum1); |
|
|
|
distributionParcelListClient.addZeroQuantity(packageId, loadingNum - unloadNum1); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
String content = warehouseName+"干线未签收卸车回库,总数/卸车数:"+num+"/"+num+",卸车时间"+ CommonUtil.dateToStringGeneral(new Date());; |
|
|
|
String content = warehouseName + "干线未签收卸车回库,总数/卸车数:" + num + "/" + num + ",卸车时间" + CommonUtil.dateToStringGeneral(new Date()); |
|
|
|
openOrderAsyncService.saveLog(waybillId,waybillNo,"80","零担未签收回库",content,AuthUtil.getNickName(),AuthUtil.getUserId(),warehouseId,warehouseName); |
|
|
|
; |
|
|
|
|
|
|
|
openOrderAsyncService.saveLog(waybillId, waybillNo, "80", "零担未签收回库", content, AuthUtil.getNickName(), AuthUtil.getUserId(), warehouseId, warehouseName); |
|
|
|
} |
|
|
|
} |
|
|
|
abnormalRecordEntity.setSendOrderStatus(0); |
|
|
|
abnormalRecordEntity.setSendOrderStatus(0); |
|
|
|
abnormalRecordEntity.setUpTime(new Date()); |
|
|
|
abnormalRecordEntity.setUpTime(new Date()); |
|
|
|
abnormalRecordEntity.setAssociationId(scanId); |
|
|
|
abnormalRecordEntity.setAssociationId(scanId); |
|
|
|
abnormalRecordEntity.setAssociationType(1); |
|
|
|
abnormalRecordEntity.setAssociationType(1); |
|
|
|
abnormalRecordEntity.setIsZero(1); |
|
|
|
abnormalRecordEntity.setIsZero(1); |
|
|
|
abnormalRecordEntity.setNum(num-unloadNum); |
|
|
|
abnormalRecordEntity.setNum(num - unloadNum); |
|
|
|
addList.add(abnormalRecordEntity); |
|
|
|
addList.add(abnormalRecordEntity); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
@ -619,13 +620,13 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
abnormalRecordZeroDetailEntity.setPackageId(zeroDetailVO.getPackageId()); |
|
|
|
abnormalRecordZeroDetailEntity.setPackageId(zeroDetailVO.getPackageId()); |
|
|
|
abnormalRecordZeroDetailEntity.setGoodsId(zeroDetailVO.getGoodsId()); |
|
|
|
abnormalRecordZeroDetailEntity.setGoodsId(zeroDetailVO.getGoodsId()); |
|
|
|
abnormalRecordZeroDetailEntity.setGoodsName(zeroDetailVO.getGoodsName()); |
|
|
|
abnormalRecordZeroDetailEntity.setGoodsName(zeroDetailVO.getGoodsName()); |
|
|
|
abnormalRecordZeroDetailEntity.setAbnormalNum(zeroDetailVO.getLoadingNum()-zeroDetailVO.getUnloadNum()); |
|
|
|
abnormalRecordZeroDetailEntity.setAbnormalNum(zeroDetailVO.getLoadingNum() - zeroDetailVO.getUnloadNum()); |
|
|
|
abnormalRecordZeroDetailEntity.setReturnNum(0); |
|
|
|
abnormalRecordZeroDetailEntity.setReturnNum(0); |
|
|
|
abnormalRecordZeroDetailEntity.setIncomingNum(0); |
|
|
|
abnormalRecordZeroDetailEntity.setIncomingNum(0); |
|
|
|
abnormalRecordZeroDetailEntityList.add(abnormalRecordZeroDetailEntity); |
|
|
|
abnormalRecordZeroDetailEntityList.add(abnormalRecordZeroDetailEntity); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
if(CollUtil.isNotEmpty(abnormalRecordZeroDetailEntityList)){ |
|
|
|
if (CollUtil.isNotEmpty(abnormalRecordZeroDetailEntityList)) { |
|
|
|
abnormalRecordZeroDetailClient.addAbnormalRecordZeroDetail(abnormalRecordZeroDetailEntityList); |
|
|
|
abnormalRecordZeroDetailClient.addAbnormalRecordZeroDetail(abnormalRecordZeroDetailEntityList); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -634,23 +635,23 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void dealwithAfterAbnormalPackage(String orderPackageCode, Long warehouseId, String warehouseName, String carsNo, Long userId, Long aLong, String nickName) { |
|
|
|
public void dealwithAfterAbnormalPackage(String orderPackageCode, Long warehouseId, String warehouseName, String carsNo, Long userId, Long aLong, String nickName) { |
|
|
|
|
|
|
|
|
|
|
|
List<AftersalesAbnormalRecordEntity> abnormalRecordEntities = abnormalRecordClient.findOrderPackageAndAbnormalStatus(orderPackageCode,"0"); |
|
|
|
List<AftersalesAbnormalRecordEntity> abnormalRecordEntities = abnormalRecordClient.findOrderPackageAndAbnormalStatus(orderPackageCode, "0"); |
|
|
|
//循环abnormalRecordEntities把abnormalStatus改为1
|
|
|
|
//循环abnormalRecordEntities把abnormalStatus改为1
|
|
|
|
//如果send_order_status = 1 则修改工单记录
|
|
|
|
//如果send_order_status = 1 则修改工单记录
|
|
|
|
for (AftersalesAbnormalRecordEntity abnormalRecordEntity : abnormalRecordEntities) { |
|
|
|
for (AftersalesAbnormalRecordEntity abnormalRecordEntity : abnormalRecordEntities) { |
|
|
|
Integer sendOrderStatus = abnormalRecordEntity.getSendOrderStatus(); |
|
|
|
Integer sendOrderStatus = abnormalRecordEntity.getSendOrderStatus(); |
|
|
|
if(Objects.isNull(sendOrderStatus)){ |
|
|
|
if (Objects.isNull(sendOrderStatus)) { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(sendOrderStatus == 1){ |
|
|
|
if (sendOrderStatus == 1) { |
|
|
|
//修改对应工单记录
|
|
|
|
//修改对应工单记录
|
|
|
|
aftersalesWorkOrderClient.updateWorkOrderStatus(warehouseId,orderPackageCode,1); |
|
|
|
aftersalesWorkOrderClient.updateWorkOrderStatus(warehouseId, orderPackageCode, 1); |
|
|
|
} |
|
|
|
} |
|
|
|
abnormalRecordEntity.setAbnormalStatus(1); |
|
|
|
abnormalRecordEntity.setAbnormalStatus(1); |
|
|
|
abnormalRecordEntity.setDealUserId(userId); |
|
|
|
abnormalRecordEntity.setDealUserId(userId); |
|
|
|
abnormalRecordEntity.setDealUserName(nickName); |
|
|
|
abnormalRecordEntity.setDealUserName(nickName); |
|
|
|
abnormalRecordEntity.setRemark("包件已在 "+warehouseName+" 车次号:"+carsNo+" 中被卸车"); |
|
|
|
abnormalRecordEntity.setRemark("包件已在 " + warehouseName + " 车次号:" + carsNo + " 中被卸车"); |
|
|
|
} |
|
|
|
} |
|
|
|
abnormalRecordClient.updateList(abnormalRecordEntities); |
|
|
|
abnormalRecordClient.updateList(abnormalRecordEntities); |
|
|
|
|
|
|
|
|
|
|
@ -688,8 +689,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
Long loadId = carsLoadEntity.getId(); |
|
|
|
Long loadId = carsLoadEntity.getId(); |
|
|
|
QueryWrapper<TrunklineCarsLoadScanEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<TrunklineCarsLoadScanEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
queryWrapper.eq("load_id", loadId) |
|
|
|
queryWrapper.eq("load_id", loadId) |
|
|
|
.eq("warehouse_id",warehouseId) |
|
|
|
.eq("warehouse_id", warehouseId) |
|
|
|
.eq("scan_status","1"); |
|
|
|
.eq("scan_status", "1"); |
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.list(queryWrapper); |
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -712,8 +713,10 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
if(CollUtil.isNotEmpty(list)){ |
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
if(type.equals("1")){ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (new Integer(1).equals(type)) { |
|
|
|
list.forEach(entity -> { |
|
|
|
list.forEach(entity -> { |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
@ -724,7 +727,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}else if(type.equals("2")){ |
|
|
|
} else if (new Integer(2).equals(type)) { |
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
//把list转化成以id为key的Map
|
|
|
|
//把list转化成以id为key的Map
|
|
|
@ -751,7 +754,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
@ -765,8 +768,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
Long loadId = carsLoadEntity.getId(); |
|
|
|
Long loadId = carsLoadEntity.getId(); |
|
|
|
QueryWrapper<TrunklineCarsLoadScanEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<TrunklineCarsLoadScanEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
queryWrapper.eq("load_id", loadId) |
|
|
|
queryWrapper.eq("load_id", loadId) |
|
|
|
.eq("warehouse_id",warehouseId) |
|
|
|
.eq("warehouse_id", warehouseId) |
|
|
|
.eq("scan_status","1"); |
|
|
|
.eq("scan_status", "1"); |
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.list(queryWrapper); |
|
|
|
List<TrunklineCarsLoadScanEntity> carsLoadScanEntityList = trunklineCarsLoadScanService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -789,8 +792,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
if(CollUtil.isNotEmpty(list)){ |
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
if(type.equals("1")){ |
|
|
|
if (type.equals(1)) { |
|
|
|
list.forEach(entity -> { |
|
|
|
list.forEach(entity -> { |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
@ -801,7 +804,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}else if(type.equals("2")){ |
|
|
|
} else if (type.equals(2)) { |
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
//把list转化成以id为key的Map
|
|
|
|
//把list转化成以id为key的Map
|
|
|
@ -828,7 +831,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
@ -859,8 +862,8 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
collect.keySet().forEach(type -> { |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
List<TrunklineCarsLoadScanEntity> list = collect.get(type); |
|
|
|
if(CollUtil.isNotEmpty(list)){ |
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
if(type.equals("1")){ |
|
|
|
if (type.equals(1)) { |
|
|
|
list.forEach(entity -> { |
|
|
|
list.forEach(entity -> { |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
|
packageData.setPackageCode(entity.getScanCode()); |
|
|
@ -871,7 +874,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}else if(type.equals("2")){ |
|
|
|
} else if (type.equals(2)) { |
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
//把list中所有id放入一个List集合
|
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
List<Long> carsLoadScanIds = list.stream().map(TrunklineCarsLoadScanEntity::getId).collect(Collectors.toList()); |
|
|
|
//把list转化成以id为key的Map
|
|
|
|
//把list转化成以id为key的Map
|
|
|
@ -897,7 +900,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
@ -931,7 +934,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
|
|
|
|
|
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
@ -942,7 +945,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
|
|
|
|
|
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@LogpmAsync("asyncExecutor") |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void sendReportZeroPackageUnloadData(Long userId, String nickName, Long warehouseId, String warehouseName, List<TrunklineScanZeroDetailVO> sendList, TrunklineCarsLoadScanEntity carsLoadScanEntity,TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
public void sendReportZeroPackageUnloadData(Long userId, String nickName, Long warehouseId, String warehouseName, List<TrunklineScanZeroDetailVO> sendList, TrunklineCarsLoadScanEntity carsLoadScanEntity, TrunklineCarsLoadEntity carsLoadEntity) { |
|
|
|
|
|
|
|
|
|
|
|
NodeFanoutMsg nodeFanoutMsg = new NodeFanoutMsg(); |
|
|
|
NodeFanoutMsg nodeFanoutMsg = new NodeFanoutMsg(); |
|
|
|
nodeFanoutMsg.setNode(WorkNodeEnums.UNLOAD_INCOMING_WAREHOUSE); |
|
|
|
nodeFanoutMsg.setNode(WorkNodeEnums.UNLOAD_INCOMING_WAREHOUSE); |
|
|
@ -970,7 +973,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
@ -1006,7 +1009,7 @@ public class CarsLoadAsyncServiceImpl implements ICarsLoadAsyncService { |
|
|
|
packageDataList.add(packageData); |
|
|
|
packageDataList.add(packageData); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
json.put("details",packageDataList); |
|
|
|
json.put("details", packageDataList); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
nodeFanoutMsg.setMain(json); |
|
|
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.trunkline.REPORTDATA.EXCHANGE).msg(JSONObject.toJSONString(nodeFanoutMsg)).build(); |
|
|
|