|
|
|
@ -187,7 +187,7 @@ import org.springblade.common.enums.BizOperationEnums;
|
|
|
|
|
import org.springblade.common.enums.PackageTypeEnums; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.model.*; |
|
|
|
|
import org.springblade.common.model.workNode.AbnormalPackageData; |
|
|
|
|
import org.springblade.common.model.AbnormalPackageData; |
|
|
|
|
import org.springblade.common.node.BillLadingNode; |
|
|
|
|
import org.springblade.common.node.DeliveryNode; |
|
|
|
|
import org.springblade.common.node.ReservationNode; |
|
|
|
@ -6903,8 +6903,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
trunklinePackageTrackLogClient.addPackageTrackLog(logList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private NodeFanoutMsg<ReservationVO> buildNodeFanoutMsgByAbnormalPackage(DistributionReservationEntity reservationEntity, Map<String, List> map,DistributionLoadscanAbnormalEntity distributionLoadscanAbnormalEntity) { |
|
|
|
|
NodeFanoutMsg<ReservationVO> nodeFanoutMsg = new NodeFanoutMsg(); |
|
|
|
|
private NodeFanoutMsg<AbnormalPackageData> buildNodeFanoutMsgByAbnormalPackage(DistributionReservationEntity reservationEntity, Map<String, List> map,DistributionLoadscanAbnormalEntity distributionLoadscanAbnormalEntity) { |
|
|
|
|
NodeFanoutMsg<AbnormalPackageData> nodeFanoutMsg = new NodeFanoutMsg(); |
|
|
|
|
if (LoadingAbnormalTypeConstant.jihuayichang.getValue().equals(distributionLoadscanAbnormalEntity.getAbnormalType())){ |
|
|
|
|
nodeFanoutMsg.setNode(WorkNodeEnums.DISTRIBUTION_ABNORMAL_LOADING); |
|
|
|
|
}else if (LoadingAbnormalTypeConstant.qianshouyichang.getValue().equals(distributionLoadscanAbnormalEntity.getAbnormalType())){ |
|
|
|
@ -6919,6 +6919,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
nodeFanoutMsg.setWarehouse(reservationEntity.getWarehouseName()); |
|
|
|
|
nodeFanoutMsg.setWarehouseId(reservationEntity.getWarehouseId()); |
|
|
|
|
nodeFanoutMsg.setTenantId(AuthUtil.getTenantId()); |
|
|
|
|
AbnormalPackageData abnormalPackageData = new AbnormalPackageData(); |
|
|
|
|
abnormalPackageData.setAbnormalType(distributionLoadscanAbnormalEntity.getAbnormalType()); |
|
|
|
|
abnormalPackageData.setPackageCode(distributionLoadscanAbnormalEntity.getPackageCode()); |
|
|
|
|
abnormalPackageData.setTrainNumber(distributionLoadscanAbnormalEntity.getTrainNumber()); |
|
|
|
|
abnormalPackageData.setAuditingTime(distributionLoadscanAbnormalEntity.getAuditingTime()); |
|
|
|
|
abnormalPackageData.setAuditingStatus(distributionLoadscanAbnormalEntity.getAuditingStatus()); |
|
|
|
|
ReservationVO reservationVO = distributionReservationService.getReservationVO(reservationEntity); |
|
|
|
|
List<PackageData> packageDataList = new ArrayList<>(); |
|
|
|
|
List<DistributionReservationPackageEntity> list = map.get("1"); |
|
|
|
@ -6929,18 +6935,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
packageData.setNumber(1); |
|
|
|
|
packageDataList.add(packageData); |
|
|
|
|
} |
|
|
|
|
List<AbnormalPackageData> abnormalPackageDataList = new ArrayList<>(); |
|
|
|
|
AbnormalPackageData abnormalPackageData = new AbnormalPackageData(); |
|
|
|
|
abnormalPackageData.setAbnormalType(distributionLoadscanAbnormalEntity.getAbnormalType()); |
|
|
|
|
abnormalPackageData.setPackageCode(distributionLoadscanAbnormalEntity.getPackageCode()); |
|
|
|
|
abnormalPackageData.setTrainNumber(distributionLoadscanAbnormalEntity.getTrainNumber()); |
|
|
|
|
abnormalPackageData.setAuditingTime(distributionLoadscanAbnormalEntity.getAuditingTime()); |
|
|
|
|
abnormalPackageData.setAuditingStatus(distributionLoadscanAbnormalEntity.getAuditingStatus()); |
|
|
|
|
if (!abnormalPackageDataList.isEmpty()) { |
|
|
|
|
reservationVO.setAbnormalPackageDataList(abnormalPackageDataList); |
|
|
|
|
} |
|
|
|
|
abnormalPackageData.setReservationVO(reservationVO); |
|
|
|
|
reservationVO.setPackageDataList(packageDataList); |
|
|
|
|
nodeFanoutMsg.setMain(reservationVO); |
|
|
|
|
nodeFanoutMsg.setMain(abnormalPackageData); |
|
|
|
|
return nodeFanoutMsg; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|