|
@@ -171,11 +171,6 @@ public class InvLotLocIdServiceImpl extends CrudServiceImpl<InvLotLocIdMapper, I
|
|
|
//库存批次信息
|
|
|
List<InvLotLocIdLotattVO> invLotLocIdLotAttVOList = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
if (CollectionUtil.isEmpty(invLotLocIdLotAttVOList)) return invLotLocIdLotAttVOList;
|
|
|
-
|
|
|
- // 物料信息
|
|
|
- List<BaseSku> baseSkuList = baseSkuService.selectBaseSkuList(new BaseSku());
|
|
|
- Map<String, BaseSku> baseSkuMap = baseSkuList.stream().collect(Collectors.toMap(BaseSku::getSku, Function.identity()));
|
|
|
-
|
|
|
//托盘信息
|
|
|
String isFull = StringUtils.isNotBlank(invLocIdSearchFrom.getIsFull()) ? invLocIdSearchFrom.getIsFull(): null;
|
|
|
List<WmsBoxInfo> wmsBoxInfoList = iWmsBoxInfoService.queryWmsBoxInfoByPalletNoList(invLotLocIdLotAttVOList.stream().filter(item ->
|
|
@@ -196,9 +191,6 @@ public class InvLotLocIdServiceImpl extends CrudServiceImpl<InvLotLocIdMapper, I
|
|
|
item.setStockStatus(baseLocationInfoMap.get(item.getLocationId()).getStockStatus());
|
|
|
item.setZoneId(baseLocationInfoMap.get(item.getLocationId()).getZoneId().toString());
|
|
|
item.setIsFull(wmsBoxInfoMap.get(item.getLotatt07()).getIsFull());
|
|
|
- BaseSku baseSku = baseSkuMap.get(item.getSku());
|
|
|
- item.setSkuName(baseSku.getDesc1());
|
|
|
- item.setSkuModel(baseSku.getModel());
|
|
|
});
|
|
|
return invLotLocIdLotAttVOList;
|
|
|
}
|