|
@@ -1,5 +1,7 @@
|
|
|
package com.ruoyi.ams.inv.service.impl;
|
|
|
|
|
|
+import cn.hutool.core.collection.CollectionUtil;
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.ruoyi.ams.box.domain.WmsBoxInfo;
|
|
|
import com.ruoyi.ams.box.service.IWmsBoxInfoService;
|
|
@@ -129,9 +131,13 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
|
|
|
@Override
|
|
|
public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(InvLocIdSearchFrom invLocIdSearchFrom) {
|
|
|
|
|
|
- List<InvLotLocIdLotattLargeScreenVO> invLotLocIdLotattLargeScreenVOS = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom)
|
|
|
+ List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
+ if(CollectionUtil.isNotEmpty(invLotLocIdLotattVOS)){
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ List<InvLotLocIdLotattLargeScreenVO> invLotLocIdLotattLargeScreenVOS = invLotLocIdLotattVOS
|
|
|
.stream()
|
|
|
- .filter(item -> StringUtils.isNotBlank(item.getZoneName()))
|
|
|
+ .filter(item -> StringUtils.isNotBlank(item.getZoneName()) && ObjectUtil.isNotNull(item.getQty()))
|
|
|
.collect(Collectors.groupingBy(InvLotLocIdLotattVO::getZoneName))
|
|
|
.entrySet()
|
|
|
.stream()
|