Browse Source

自提备货BUG修复

master
汤建军 8 months ago
parent
commit
9430731b9e
  1. 2
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockupServiceImpl.java

2
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockupServiceImpl.java

@ -3373,7 +3373,7 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
StockConfigInfoVO stockConfigInfoVO = new StockConfigInfoVO(); StockConfigInfoVO stockConfigInfoVO = new StockConfigInfoVO();
//过滤出同物料库存品的ID信息 //过滤出同物料库存品的ID信息
List<Long> stockListIds = distributionStockListEntities.stream().map(DistributionStockListEntity::getId).collect(Collectors.toList()); List<Long> stockListIds = distributionStockListEntities.stream().map(DistributionStockListEntity::getId).collect(Collectors.toList());
if (!stockListIds.isEmpty()) { if (stockListIds.isEmpty()) {
log.info("###################仓库查询物料信息错误物料编号:{},warehouseId:{}", stockupDTO.getCargoNumber(),myCurrentWarehouse.getId()); log.info("###################仓库查询物料信息错误物料编号:{},warehouseId:{}", stockupDTO.getCargoNumber(),myCurrentWarehouse.getId());
return null; return null;

Loading…
Cancel
Save