diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/WarehouseTrayAllocationListener.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/WarehouseTrayAllocationListener.java index 784eabaa3..9902a08c9 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/WarehouseTrayAllocationListener.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/receiver/WarehouseTrayAllocationListener.java @@ -806,30 +806,31 @@ public class WarehouseTrayAllocationListener { } private void updateStockListAllocationInfo(List stockListIds, Long warehouseId, String allocationName) { - List stockListEntities = stockListService.listByIds(stockListIds); + if(!stockListIds.isEmpty()){ + List stockListEntities = stockListService.listByIds(stockListIds); - List updateStockListList = new ArrayList<>(); - stockListEntities.forEach(stockListEntity -> { - DistributionStockListEntity updateStockListEntity = new DistributionStockListEntity(); - updateStockListEntity.setId(stockListEntity.getId()); - String storageLocation = stockListEntity.getStorageLocation(); - if(StringUtil.isBlank(storageLocation)){ - updateStockListEntity.setStorageLocation(allocationName); - updateStockListList.add(updateStockListEntity); - }else{ - if(!storageLocation.contains(allocationName)){ - String[] split = storageLocation.split(","); - List allocationList = new ArrayList<>(Arrays.asList(split)); - allocationList.add(allocationName); - updateStockListEntity.setTrayName(StringUtil.join(allocationList,",")); + List updateStockListList = new ArrayList<>(); + stockListEntities.forEach(stockListEntity -> { + DistributionStockListEntity updateStockListEntity = new DistributionStockListEntity(); + updateStockListEntity.setId(stockListEntity.getId()); + String storageLocation = stockListEntity.getStorageLocation(); + if(StringUtil.isBlank(storageLocation)){ + updateStockListEntity.setStorageLocation(allocationName); updateStockListList.add(updateStockListEntity); + }else{ + if(!storageLocation.contains(allocationName)){ + String[] split = storageLocation.split(","); + List allocationList = new ArrayList<>(Arrays.asList(split)); + allocationList.add(allocationName); + updateStockListEntity.setTrayName(StringUtil.join(allocationList,",")); + updateStockListList.add(updateStockListEntity); + } } + }); + if(!updateStockListList.isEmpty()){ + stockListService.updateBatchById(updateStockListList); } - }); - if(!updateStockListList.isEmpty()){ - stockListService.updateBatchById(updateStockListList); } - } private void updateZeroAllocationInfo(List orderCodes, String allocationName, Long warehouseId) { diff --git a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java index 88af4e5fd..89a58fb36 100644 --- a/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java +++ b/blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseTrayTypeServiceImpl.java @@ -1642,6 +1642,7 @@ public class WarehouseTrayTypeServiceImpl extends BaseServiceImpl