|
|
|
@ -54,12 +54,19 @@ import org.apache.commons.lang.StringEscapeUtils;
|
|
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
|
import org.springblade.common.annotations.RepeatSubmit; |
|
|
|
|
import org.springblade.common.constant.*; |
|
|
|
|
import org.springblade.common.constant.broadcast.FanoutConstants; |
|
|
|
|
import org.springblade.common.constant.carsload.CarsLoadLogTypeConstant; |
|
|
|
|
import org.springblade.common.enums.BizOperationEnums; |
|
|
|
|
import org.springblade.common.enums.PackageTypeEnums; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.model.NodeFanoutMsg; |
|
|
|
|
import org.springblade.common.model.PackageData; |
|
|
|
|
import org.springblade.common.model.TripartiteVO; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
import org.springblade.common.utils.QRCodeUtil; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.redis.cache.BladeRedis; |
|
|
|
|
import org.springblade.core.secure.BladeUser; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
@ -9746,6 +9753,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
// 推送签收数据给工厂
|
|
|
|
|
sendFactorySignTriparite(warehouseId, orderPackageCodes, warehouseEntity); |
|
|
|
|
|
|
|
|
|
List<PackageData> packageDataList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> loadScanEntityList = trunklineCarsLoadScanService.findListByIds(loadScanIds); |
|
|
|
|
//把loadScanEntityList中所有元素通过type进行分组
|
|
|
|
|
Map<Integer, List<TrunklineCarsLoadScanEntity>> map = loadScanEntityList.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getType)); |
|
|
|
@ -9757,30 +9766,107 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
List<String> scanCodes = trunklineCarsLoadScanEntities.stream().map(TrunklineCarsLoadScanEntity::getScanCode).collect(Collectors.toList()); |
|
|
|
|
//TODO 暂时注释
|
|
|
|
|
// carsLoadAsyncService.sendReportPackageSignData(AuthUtil.getNickName(),AuthUtil.getUserId(),warehouseId,warehouseName,carsLoadEntity,scanCodes);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(scanCodes); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
parcelListEntityList.forEach(parcelListEntity -> { |
|
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
|
packageData.setWaybillNumber(parcelListEntity.getWaybillNumber()); |
|
|
|
|
packageData.setBrand(parcelListEntity.getBrandName()); |
|
|
|
|
packageData.setPackageCode(parcelListEntity.getOrderPackageCode()); |
|
|
|
|
packageData.setMaterialCode(parcelListEntity.getMaterialCode()); |
|
|
|
|
packageData.setMaterialName(parcelListEntity.getMaterialName()); |
|
|
|
|
packageData.setNumber(1); |
|
|
|
|
packageData.setOrderCode(parcelListEntity.getOrderCode()); |
|
|
|
|
packageData.setPackageType(PackageTypeEnums.CMP); |
|
|
|
|
packageDataList.add(packageData); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
|
|
trunklineCarsLoadScanEntities.forEach(carsLoadScanEntity -> { |
|
|
|
|
|
|
|
|
|
Long scanId = carsLoadScanEntity.getId(); |
|
|
|
|
List<TrunklineScanZeroDetailVO> zeroDetailVOList = scanZeroDetailService.findListByCarsLoadScanId(scanId); |
|
|
|
|
|
|
|
|
|
//把zeroDetailList中所有元素的packageId放入一个List
|
|
|
|
|
List<Long> packageIds = zeroDetailVOList.stream().map(TrunklineScanZeroDetailEntity::getPackageId).collect(Collectors.toList()); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByIds(packageIds); |
|
|
|
|
//把parcelListEntityList转成以id为key的Map
|
|
|
|
|
Map<Long, DistributionParcelListEntity> parcelListMap = parcelListEntityList.stream().collect(Collectors.toMap(DistributionParcelListEntity::getId, Function.identity())); |
|
|
|
|
|
|
|
|
|
List<TrunklineScanZeroDetailEntity> zeroDetailList = new ArrayList<>(); |
|
|
|
|
zeroDetailVOList.forEach(zeroDetailVO -> { |
|
|
|
|
TrunklineScanZeroDetailEntity entity = new TrunklineScanZeroDetailEntity(); |
|
|
|
|
BeanUtil.copy(zeroDetailVO, entity); |
|
|
|
|
zeroDetailList.add(entity); |
|
|
|
|
Long packageId = zeroDetailVO.getPackageId(); |
|
|
|
|
DistributionParcelListEntity parcelList = parcelListMap.get(packageId); |
|
|
|
|
if(!Objects.isNull(parcelList)){ |
|
|
|
|
PackageData packageData = new PackageData(); |
|
|
|
|
packageData.setWaybillNumber(parcelList.getWaybillNumber()); |
|
|
|
|
packageData.setBrand(parcelList.getBrandName()); |
|
|
|
|
packageData.setProductId(zeroDetailVO.getGoodsId()); |
|
|
|
|
packageData.setProductName(zeroDetailVO.getGoodsName()); |
|
|
|
|
packageData.setNumber(zeroDetailVO.getUnloadNum()); |
|
|
|
|
packageData.setOrderCode(parcelList.getOrderCode()); |
|
|
|
|
packageData.setPackageType(PackageTypeEnums.LTL); |
|
|
|
|
packageDataList.add(packageData); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
//TODO 暂时注释
|
|
|
|
|
// carsLoadAsyncService.sendReportZeroPackageSignData(AuthUtil.getUserId(), AuthUtil.getNickName(), warehouseId, warehouseName, zeroDetailList, carsLoadScanEntity, carsLoadEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
NodeFanoutMsg<TripartiteVO> tripartiteVONodeFanoutMsg = buildNodeFanoutMessage(carsLoadEntity, packageDataList, warehouseId); |
|
|
|
|
if(!Objects.isNull(tripartiteVONodeFanoutMsg)){ |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.trunkline.tripartite.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(tripartiteVONodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("签收成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private NodeFanoutMsg<TripartiteVO> buildNodeFanoutMessage(TrunklineCarsLoadEntity carsLoadEntity, List<PackageData> packageDataList,Long warehouseId) { |
|
|
|
|
try { |
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
NodeFanoutMsg<TripartiteVO> nodeFanoutMsg = new NodeFanoutMsg<TripartiteVO>(); |
|
|
|
|
nodeFanoutMsg.setBizOperation(BizOperationEnums.ADD); |
|
|
|
|
nodeFanoutMsg.setNode(WorkNodeEnums.SIGN_TRIPARTITE_TRANSFER_DEPART); |
|
|
|
|
BasicdataWarehouseEntity entityWarehouse = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
if (entityWarehouse != null) { |
|
|
|
|
nodeFanoutMsg.setWarehouse(entityWarehouse.getName()); |
|
|
|
|
} |
|
|
|
|
nodeFanoutMsg.setWarehouseId(warehouseId); |
|
|
|
|
nodeFanoutMsg.setOperator(user.getNickName()); |
|
|
|
|
nodeFanoutMsg.setOperatorTime(new Date()); |
|
|
|
|
TripartiteVO tripartiteVO = new TripartiteVO(); |
|
|
|
|
BeanUtil.copy(carsLoadEntity, tripartiteVO); |
|
|
|
|
// ReservationVO reservationVO = distributionReservationService.getReservationVO(reservationEntity);
|
|
|
|
|
|
|
|
|
|
tripartiteVO.setPackageDataList(packageDataList); |
|
|
|
|
nodeFanoutMsg.setMain(tripartiteVO); |
|
|
|
|
nodeFanoutMsg.setTenantId(AuthUtil.getTenantId()); |
|
|
|
|
|
|
|
|
|
return nodeFanoutMsg; |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.warn("三方中转签收:发送三方中转签收节点消息失败", e); |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void sendFactorySignTriparite(Long warehouseId, List<String> orderPackageCodes, BasicdataWarehouseEntity warehouseEntity) { |
|
|
|
|
try { |
|
|
|
|
FindParamterDTO paramterDTO = new FindParamterDTO(); |
|
|
|
|