Browse Source

大屏库位信息修改按创建时间倒序8.8

李卫 1 year ago
parent
commit
a06c02d4ee

+ 2 - 2
ruoyi-admin/src/main/java/com/ruoyi/web/controller/warewms/ams/InvLotLocIdController.java

@@ -50,8 +50,8 @@ public class InvLotLocIdController extends BaseController {
      */
     @PreAuthorize("@ss.hasPermi('ams:invLotLocId:list')")
     @GetMapping("/largeScreenList")
-    public TableDataInfo largeScreen() {
-        List<InvLotLocIdLotattLargeScreenVO> invLocIdLotattList = invLotLocIdService.selectInvLocIdLotattLargeScreenList();
+    public TableDataInfo largeScreen(@RequestParam String size) {
+        List<InvLotLocIdLotattLargeScreenVO> invLocIdLotattList = invLotLocIdService.selectInvLocIdLotattLargeScreenList(size);
         return getDataTable(invLocIdLotattList);
     }
 

+ 5 - 0
warewms-ams/src/main/java/com/ruoyi/ams/inv/domain/vo/InvLotLocIdLotattLargeScreenVO.java

@@ -3,6 +3,7 @@ package com.ruoyi.ams.inv.domain.vo;
 import lombok.Data;
 
 
+
 @Data
 public class InvLotLocIdLotattLargeScreenVO {
     /**
@@ -20,5 +21,9 @@ public class InvLotLocIdLotattLargeScreenVO {
      */
     private Integer palletNum;
 
+    /**
+     * 批次创建时间
+     */
+    private String createTime;
 
 }

+ 9 - 0
warewms-ams/src/main/java/com/ruoyi/ams/inv/domain/vo/InvLotLocIdLotattVO.java

@@ -21,6 +21,7 @@ public class InvLotLocIdLotattVO {
     private Double weight;
     private String palletNo;
     private String isFull;
+    private String createTime;
     private String lotatt01;
     private String lotatt02;
     private String lotatt03;
@@ -40,6 +41,14 @@ public class InvLotLocIdLotattVO {
     private String lotatt17;
     private String lotatt18;
 
+    public String getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(String createTime) {
+        this.createTime = createTime;
+    }
+
     public String getLotatt01() {
         return lotatt01;
     }

+ 2 - 2
warewms-ams/src/main/java/com/ruoyi/ams/inv/service/IInvLotLocIdService.java

@@ -72,10 +72,10 @@ public interface IInvLotLocIdService {
     /**
      * 查询物料批次信息大屏列表
      *
-     * @param invLocIdSearchFrom
+     * @param
      * @return
      */
-    List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList();
+    List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(String size);
 
     /**
      * 查询库位库存信息

+ 6 - 10
warewms-ams/src/main/java/com/ruoyi/ams/inv/service/impl/InvLotLocIdServiceImpl.java

@@ -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,14 +124,14 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
     }
 
     @Override
-    public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList() {
+    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()
@@ -145,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;
-
-
     }