Browse Source

Merge branch 'fix_bug_20231221' into dev

single_db
pref_mail@163.com 1 year ago
parent
commit
d3fd84facf
  1. 4
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseUpdownTypeServiceImpl.java

4
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseUpdownTypeServiceImpl.java

@ -326,6 +326,10 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
} }
Map map = distributionStockArticleClient.findShelfNumByOrderCodeAndWarehouseId(orderCode,warehouseId); Map map = distributionStockArticleClient.findShelfNumByOrderCodeAndWarehouseId(orderCode,warehouseId);
if(Objects.isNull(map)){
log.warn("#################findUpShelfScanGoods: 无可用数据 orderCode={}",orderCode);
throw new CustomerException(403,"无可用数据");
}
List<UpShelfDataVO> ls = new ArrayList<>(); List<UpShelfDataVO> ls = new ArrayList<>();
UpShelfDataVO upShelfDataVO = new UpShelfDataVO(); UpShelfDataVO upShelfDataVO = new UpShelfDataVO();

Loading…
Cancel
Save