|
|
|
@ -54,12 +54,18 @@ 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.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; |
|
|
|
@ -1347,6 +1353,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setWarehouseEntryTimeEnd(date); |
|
|
|
|
Long orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if (orderId != 0) { |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadByLoadId: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer isTransfer = 1; |
|
|
|
|
List<DistributionParcelListVO> parcelListEntityList = distributionParcelListClient.findEntityVOListByOrderCode(orderCode, fromWarehouseId); |
|
|
|
@ -1516,8 +1528,6 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
String content = "包件在 " + warehouseEntity.getName() + "卸车确认"; |
|
|
|
|
packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), orderPackageCodes, warehouseId, warehouseEntity.getName(), node.getCode(), content); |
|
|
|
|
|
|
|
|
|
//同步一次系统无编码数据
|
|
|
|
|
syncNoSystemData(loadId, warehouseId, warehouseEntity.getName()); |
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.warn("###############unloadPackage: 存入异常列表记录失败"); |
|
|
|
@ -5203,6 +5213,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setWarehouseEntryTimeEnd(date); |
|
|
|
|
Long orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if (orderId != 0) { |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################zeroUnloadEnter: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer isTransfer = 1; |
|
|
|
|
List<DistributionParcelListVO> parcelListEntityList = distributionParcelListClient.findEntityVOListByOrderCode(orderCode, fromWarehouseId); |
|
|
|
@ -5751,6 +5765,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
if(NumberUtil.equals(orderId,0)){ |
|
|
|
|
log.warn("################111111: 保存失败"); |
|
|
|
|
throw new CustomerException(405,"保存失败"); |
|
|
|
|
}else{ |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################updateParcelListToWarehouse: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
stockArticleEntity.setGenre(1); |
|
|
|
@ -7630,6 +7649,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setAllocation(null); |
|
|
|
|
newStockArticleEntity.setTrays(null); |
|
|
|
|
orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if(orderId.equals(0L)){ |
|
|
|
|
log.warn("################batchUnload: 订单信息保存失败 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################batchUnload: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
finalOrderCodes.put(e, orderId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -7751,6 +7779,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setAllocation(null); |
|
|
|
|
newStockArticleEntity.setTrays(null); |
|
|
|
|
orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if(orderId.equals(0L)){ |
|
|
|
|
log.warn("################batchUnload: 订单信息保存失败 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################batchUnload: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
finalOrderCodes1.put(e, orderId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -9716,6 +9752,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)); |
|
|
|
@ -9727,30 +9765,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(); |
|
|
|
@ -10107,6 +10222,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newEntity.setAllocation(null); |
|
|
|
|
newEntity.setTrays(null); |
|
|
|
|
Long orderId = distributionStockArticleClient.addData(newEntity); |
|
|
|
|
if(orderId.equals(0L)){ |
|
|
|
|
log.warn("################getDistributionStockArticle: 订单信息保存失败 orderCode={} warehouseId={}",newEntity.getOrderCode(),newEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################getDistributionStockArticle: 订单信息正在更新 orderCode={} warehouseId={}",newEntity.getOrderCode(),newEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
newEntity.setId(orderId); |
|
|
|
|
return newEntity; |
|
|
|
|
} |
|
|
|
@ -11896,7 +12019,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
currentStockArticleEntity.setIncomingNum(0); |
|
|
|
|
currentStockArticleEntity.setAllocation(null); |
|
|
|
|
currentStockArticleEntity.setTrays(null); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(currentStockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息保存失败 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息正在更新 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
currentStockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = currentStockArticleEntity.getId(); |
|
|
|
@ -12109,7 +12242,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
currentStockArticleEntity.setGenre(1); |
|
|
|
|
currentStockArticleEntity.setAllocation(null); |
|
|
|
|
currentStockArticleEntity.setTrays(null); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(currentStockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息保存失败 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息正在更新 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
currentStockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = currentStockArticleEntity.getId(); |
|
|
|
@ -12281,7 +12424,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
stockArticleEntity.setIncomingNum(0); |
|
|
|
|
stockArticleEntity.setAllocation(null); |
|
|
|
|
stockArticleEntity.setTrays(null); |
|
|
|
|
stockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
stockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(stockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息保存失败 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
stockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = stockArticleEntity.getId(); |
|
|
|
@ -12379,7 +12532,18 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticle.setWarehouse(basicdataWarehouseEntity.getName()); |
|
|
|
|
newStockArticle.setAllocation(null); |
|
|
|
|
newStockArticle.setTrays(null); |
|
|
|
|
newStockArticle.setWarehouseEntryTime(new Date()); |
|
|
|
|
newStockArticle.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
orderId = distributionStockArticleClient.addData(newStockArticle); |
|
|
|
|
if(orderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息保存失败 orderCode={} warehouseId={}",newStockArticle.getOrderCode(),newStockArticle.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackage: 订单信息正在更新 orderCode={} warehouseId={}",newStockArticle.getOrderCode(),newStockArticle.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
orderId = newStockArticle.getId(); |
|
|
|
|
} |
|
|
|
@ -12744,7 +12908,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
currentStockArticleEntity.setTransferQuantity(0); |
|
|
|
|
currentStockArticleEntity.setSigninQuantity(0); |
|
|
|
|
currentStockArticleEntity.setIncomingNum(0); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(currentStockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息保存失败 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息正在更新 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
currentStockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = currentStockArticleEntity.getId(); |
|
|
|
@ -12891,7 +13065,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
currentStockArticleEntity.setTransferQuantity(0); |
|
|
|
|
currentStockArticleEntity.setSigninQuantity(0); |
|
|
|
|
currentStockArticleEntity.setIncomingNum(0); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
currentStockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(currentStockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息保存失败 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息正在更新 orderCode={} warehouseId={}",currentStockArticleEntity.getOrderCode(),currentStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
currentStockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = currentStockArticleEntity.getId(); |
|
|
|
@ -13054,7 +13238,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
stockArticleEntity.setIncomingNum(0); |
|
|
|
|
stockArticleEntity.setAllocation(null); |
|
|
|
|
stockArticleEntity.setTrays(null); |
|
|
|
|
stockArticleEntity.setWarehouseEntryTime(new Date()); |
|
|
|
|
stockArticleEntity.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
currentOrderId = distributionStockArticleClient.addData(stockArticleEntity); |
|
|
|
|
if(currentOrderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息保存失败 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(currentOrderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息正在更新 orderCode={} warehouseId={}",stockArticleEntity.getOrderCode(),stockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
stockArticleEntity.setId(currentOrderId); |
|
|
|
|
} else { |
|
|
|
|
currentOrderId = stockArticleEntity.getId(); |
|
|
|
@ -13149,7 +13343,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticle.setWarehouse(basicdataWarehouseEntity.getName()); |
|
|
|
|
newStockArticle.setAllocation(null); |
|
|
|
|
newStockArticle.setTrays(null); |
|
|
|
|
newStockArticle.setWarehouseEntryTime(new Date()); |
|
|
|
|
newStockArticle.setWarehouseEntryTimeEnd(new Date()); |
|
|
|
|
orderId = distributionStockArticleClient.addData(newStockArticle); |
|
|
|
|
if(orderId.equals(0L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息保存失败 orderCode={} warehouseId={}",newStockArticle.getOrderCode(),newStockArticle.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息保存失败"); |
|
|
|
|
} |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadPackageNoXz: 订单信息正在更新 orderCode={} warehouseId={}",newStockArticle.getOrderCode(),newStockArticle.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
orderId = newStockArticle.getId(); |
|
|
|
|
} |
|
|
|
@ -13849,6 +14053,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
newStockArticleEntity.setCarsLoadNum(0); |
|
|
|
|
Long orderId = distributionStockArticleClient.addData(newStockArticleEntity); |
|
|
|
|
if (orderId != 0) { |
|
|
|
|
if(orderId.equals(1L)){ |
|
|
|
|
log.warn("################unloadZeroWithTray: 订单信息正在更新 orderCode={} warehouseId={}",newStockArticleEntity.getOrderCode(),newStockArticleEntity.getWarehouseId()); |
|
|
|
|
throw new CustomerException(405,"订单信息正在更新,请稍后重试"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findEntityListByOrderCode(orderCode, fromWarehouseId); |
|
|
|
|
List<DistributionParcelNumberEntity> ls = new ArrayList<>(); |
|
|
|
|
for (DistributionParcelListEntity parcelListEntity : parcelListEntityList) { |
|
|
|
|