Browse Source

备货扫描BUG修复

pre-production
汤建军 3 weeks ago
parent
commit
e42e31439e
  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

@ -5532,7 +5532,7 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
//库存品 //库存品
if (!inventoryList.isEmpty() && inventoryList.size() > 0) { if (!inventoryList.isEmpty() && inventoryList.size() > 0) {
inventoryFlag = inventoryList.stream().allMatch(b -> InventoryStockUpStatusConstant.yibeihuo.getValue().equals(b.getStockStatus())); inventoryFlag = inventoryList.stream().allMatch(b -> InventoryStockUpStatusConstant.yibeihuo.getValue().equals(b.getStockStatus()));
}else { } else {
inventoryFlag = true; inventoryFlag = true;
} }
//零担 //零担

Loading…
Cancel
Save