From ad5fef776eb9d66a0fcfc2ddf89698c5642e0eec Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期五, 06 三月 2026 08:36:24 +0800
Subject: [PATCH] 增加一个定时任务。如果拣货出库过程中,相同料箱号,存在(199 ,200)的任务 并且同时存在  101,196的任务 则101和196的任务会 自动变成199

---
 rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java b/rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java
index afd0384..9b86828 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java
@@ -38,6 +38,7 @@
 
     @Autowired
     private ReceiveMsgService receiveMsgService;
+
     @Autowired
     private MatnrGroupService matnrGroupService;
 
@@ -103,4 +104,22 @@
         return receiveMsgService.queryTransfer(queryParams);
     }
 
+    /**
+     * 瀵规帴鍗忚 8.4 搴撳瓨鏄庣粏鏌ヨ
+     */
+    @PostMapping("/inventory/details")
+    @ApiOperation(value = "搴撳瓨鏄庣粏鏌ヨ")
+    public R inventoryDetails(@RequestBody(required = false) InventoryDetailsParam param) {
+        return receiveMsgService.inventoryDetails(param != null ? param : new InventoryDetailsParam());
+    }
+
+    /**
+     * 瀵规帴鍗忚 8.5 搴撳瓨姹囨�绘煡璇�
+     */
+    @PostMapping("/inventory/summary")
+    @ApiOperation(value = "搴撳瓨姹囨�绘煡璇�")
+    public R inventorySummary(@RequestBody(required = false) InventorySummaryParam param) {
+        return receiveMsgService.inventorySummary(param != null ? param : new InventorySummaryParam());
+    }
+
 }

--
Gitblit v1.9.1