|
@@ -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;
|
|
@@ -12,6 +14,7 @@ import com.ruoyi.ams.inv.domain.InvLotLocId;
|
|
|
import com.ruoyi.ams.inv.domain.form.InvLocIdSearchFrom;
|
|
|
import com.ruoyi.ams.inv.domain.form.InvLotLocIdAdjForm;
|
|
|
import com.ruoyi.ams.inv.domain.form.InvLotLocIdMoveForm;
|
|
|
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattLargeScreenVO;
|
|
|
import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
|
|
|
import com.ruoyi.ams.inv.mapper.InvLotAttMapper;
|
|
|
import com.ruoyi.ams.inv.mapper.InvLotLocIdMapper;
|
|
@@ -39,6 +42,7 @@ import java.math.BigDecimal;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* 库位库存信息Service业务层处理
|
|
@@ -124,6 +128,33 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
|
|
|
return invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(InvLocIdSearchFrom invLocIdSearchFrom) {
|
|
|
+
|
|
|
+ List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
+ if(CollectionUtil.isEmpty(invLotLocIdLotattVOS)){
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ List<InvLotLocIdLotattLargeScreenVO> invLotLocIdLotattLargeScreenVOS = invLotLocIdLotattVOS
|
|
|
+ .stream()
|
|
|
+ .filter(item -> StringUtils.isNotBlank(item.getZoneName()) && ObjectUtil.isNotNull(item.getQty()))
|
|
|
+ .collect(Collectors.groupingBy(InvLotLocIdLotattVO::getZoneName))
|
|
|
+ .entrySet()
|
|
|
+ .stream()
|
|
|
+ .map(entry -> {
|
|
|
+ InvLotLocIdLotattLargeScreenVO largeScreenVO = new InvLotLocIdLotattLargeScreenVO();
|
|
|
+ largeScreenVO.setZoneName(entry.getKey());
|
|
|
+ largeScreenVO.setWeight(entry.getValue().stream().mapToDouble(InvLotLocIdLotattVO::getQty).sum());
|
|
|
+ largeScreenVO.setPalletNum(entry.getValue().size());
|
|
|
+ return largeScreenVO;
|
|
|
+ })
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ return invLotLocIdLotattLargeScreenVOS;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 查询库位库存信息
|
|
|
*
|