|
|
|
@ -806,30 +806,31 @@ public class WarehouseTrayAllocationListener {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void updateStockListAllocationInfo(List<Long> stockListIds, Long warehouseId, String allocationName) { |
|
|
|
|
List<DistributionStockListEntity> stockListEntities = stockListService.listByIds(stockListIds); |
|
|
|
|
if(!stockListIds.isEmpty()){ |
|
|
|
|
List<DistributionStockListEntity> stockListEntities = stockListService.listByIds(stockListIds); |
|
|
|
|
|
|
|
|
|
List<DistributionStockListEntity> 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<String> allocationList = new ArrayList<>(Arrays.asList(split)); |
|
|
|
|
allocationList.add(allocationName); |
|
|
|
|
updateStockListEntity.setTrayName(StringUtil.join(allocationList,",")); |
|
|
|
|
List<DistributionStockListEntity> 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<String> 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<String> orderCodes, String allocationName, Long warehouseId) { |
|
|
|
|