|
@@ -2,7 +2,6 @@ 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;
|
|
|
import com.ruoyi.ams.business.IBusinessService;
|
|
@@ -36,12 +35,8 @@ import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
-import org.springframework.util.Assert;
|
|
|
-
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
+import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -129,15 +124,14 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(InvLocIdSearchFrom invLocIdSearchFrom) {
|
|
|
-
|
|
|
- List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
+ public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(String size) {
|
|
|
+ List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(new InvLocIdSearchFrom());
|
|
|
if(CollectionUtil.isEmpty(invLotLocIdLotattVOS)){
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
List<InvLotLocIdLotattLargeScreenVO> invLotLocIdLotattLargeScreenVOS = invLotLocIdLotattVOS
|
|
|
.stream()
|
|
|
- .filter(item -> StringUtils.isNotBlank(item.getZoneName()) && ObjectUtil.isNotNull(item.getQty()))
|
|
|
+ .filter(item -> StringUtils.isNotBlank(item.getZoneName()) && ObjectUtil.isNotNull(item.getQty()) && StringUtils.isNotBlank(item.getCreateTime()))
|
|
|
.collect(Collectors.groupingBy(InvLotLocIdLotattVO::getZoneName))
|
|
|
.entrySet()
|
|
|
.stream()
|
|
@@ -146,12 +140,13 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
|
|
|
largeScreenVO.setZoneName(entry.getKey());
|
|
|
largeScreenVO.setWeight(entry.getValue().stream().mapToDouble(InvLotLocIdLotattVO::getQty).sum());
|
|
|
largeScreenVO.setPalletNum(entry.getValue().size());
|
|
|
+ largeScreenVO.setCreateTime(entry.getValue().stream().map(InvLotLocIdLotattVO::getCreateTime).max(String::compareTo).toString());
|
|
|
return largeScreenVO;
|
|
|
})
|
|
|
+ .sorted(Comparator.comparing(InvLotLocIdLotattLargeScreenVO::getCreateTime).reversed())
|
|
|
+ .skip(0L).limit(Long.parseLong(size))
|
|
|
.collect(Collectors.toList());
|
|
|
return invLotLocIdLotattLargeScreenVOS;
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|