Jelajahi Sumber

大屏库位信息修改无参8.8

李卫 1 tahun lalu
induk
melakukan
b522bc0c30

+ 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(InvLocIdSearchFrom invLocIdSearchFrom) {
-        List<InvLotLocIdLotattLargeScreenVO> invLocIdLotattList = invLotLocIdService.selectInvLocIdLotattLargeScreenList(invLocIdSearchFrom);
+    public TableDataInfo largeScreen() {
+        List<InvLotLocIdLotattLargeScreenVO> invLocIdLotattList = invLotLocIdService.selectInvLocIdLotattLargeScreenList();
         return getDataTable(invLocIdLotattList);
     }
 

+ 1 - 1
ruoyi-admin/src/main/resources/application-dev.yml

@@ -57,7 +57,7 @@ spring:
                         multi-statement-allow: true
     redis:
         # 地址
-        host: 154.12.20.200
+        host: 192.168.157.130
         # 端口,默认为6379
         port: 6379
         # 数据库索引

+ 1 - 1
ruoyi-admin/src/main/resources/application.yml

@@ -37,7 +37,7 @@ spring:
     # 国际化资源文件路径
     basename: i18n/messages
   profiles:
-    active: prod
+    active: dev
   # 文件上传
   servlet:
     multipart:

+ 47 - 0
ruoyi-admin/src/test/java/com/ruoyi/admin/test/base/TestDay.java

@@ -0,0 +1,47 @@
+package com.ruoyi.admin.test.base;
+
+import com.ruoyi.RuoYiApplication;
+import com.ruoyi.ams.inv.domain.form.InvLocIdSearchFrom;
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattLargeScreenVO;
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
+import com.ruoyi.ams.inv.service.IInvLotLocIdService;
+import com.ruoyi.common.core.controller.BaseController;
+import lombok.extern.slf4j.Slf4j;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+import java.util.List;
+
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = RuoYiApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
+@Slf4j
+public class TestDay extends BaseController {
+
+    @Autowired
+    private IInvLotLocIdService invLotLocIdService;
+
+    @Test
+    public void invLocIdSearchFrom(){
+        InvLocIdSearchFrom invLocIdSearchFrom = new InvLocIdSearchFrom();
+        List<InvLotLocIdLotattVO> list = invLotLocIdService.selectInvLocIdLotattList(invLocIdSearchFrom);
+        list.forEach(item -> System.out.println(item));
+    }
+
+    @Test
+    public void a(){
+        List<InvLotLocIdLotattLargeScreenVO> list = invLotLocIdService.selectInvLocIdLotattLargeScreenList();
+        list.forEach(item -> {
+            System.out.println(item.toString());
+        });
+    }
+
+
+
+
+
+
+}

+ 1 - 0
ruoyi-ui/package.json

@@ -66,6 +66,7 @@
     "@vue/cli-service": "4.4.6",
     "babel-eslint": "10.1.0",
     "babel-plugin-dynamic-import-node": "2.3.3",
+    "babel-plugin-import": "^1.13.8",
     "chalk": "4.1.0",
     "compression-webpack-plugin": "5.0.2",
     "connect": "3.6.6",

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

@@ -75,7 +75,7 @@ public interface IInvLotLocIdService {
      * @param invLocIdSearchFrom
      * @return
      */
-    List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(InvLocIdSearchFrom invLocIdSearchFrom);
+    List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList();
 
     /**
      * 查询库位库存信息

+ 2 - 3
warewms-ams/src/main/java/com/ruoyi/ams/inv/service/impl/InvLotLocIdServiceImpl.java

@@ -129,9 +129,8 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
     }
 
     @Override
-    public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList(InvLocIdSearchFrom invLocIdSearchFrom) {
-
-        List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(invLocIdSearchFrom);
+    public List<InvLotLocIdLotattLargeScreenVO> selectInvLocIdLotattLargeScreenList() {
+        List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdMapper.selectInvLocIdLotattList(new InvLocIdSearchFrom());
         if(CollectionUtil.isEmpty(invLotLocIdLotattVOS)){
             return new ArrayList<>();
         }