From 4f369386ebadf91846c073ec0b7ca564ba9c051c Mon Sep 17 00:00:00 2001 From: zhenghaoyu Date: Tue, 25 Jun 2024 11:42:16 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8D=E5=BA=93=E5=86=85=E4=BD=9C?= =?UTF-8?q?=E4=B8=9Abug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WarehouseTrayAllocationListener.java | 39 ++++++++++--------- .../impl/WarehouseTrayTypeServiceImpl.java | 2 + .../impl/WarehouseUpdownTypeServiceImpl.java | 2 +- 3 files changed, 23 insertions(+), 20 deletions(-) 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