From 9140aee230de0ef41de9682a9353fbd372e2bcaa Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期二, 03 三月 2026 13:43:22 +0800
Subject: [PATCH] 云仓WMS接口
---
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java | 18 ++++++++++++++++++
1 files changed, 18 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 50168ab..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
@@ -104,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