From 107778b5d35bf8c8e21da3b9d58e7144f60487dc Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 27 一月 2026 16:24:38 +0800
Subject: [PATCH] Merge branch 'dev_New' of http://114.132.189.42:9002/r/product-inventory-management into dev_New

---
 src/api/inventoryManagement/stockInventory.js |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index c677ebf..15e1b3a 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -13,7 +13,7 @@
     return request({
         url: "/stockInventory/addstockInventory",
         method: "post",
-        params,
+        data: params,
     });
 };
 
@@ -22,6 +22,22 @@
     return request({
         url: "/stockInventory/subtractStockInventory",
         method: "post",
+        data: params,
+    });
+};
+
+export const getStockInventoryReportList = (params) => {
+    return request({
+        url: "/stockInventory/stockInventoryPage",
+        method: "get",
+        params,
+    });
+};
+
+export const getStockInventoryInAndOutReportList = (params) => {
+    return request({
+        url: "/stockInventory/stockInAndOutRecord",
+        method: "get",
         params,
     });
 };

--
Gitblit v1.9.3