From db42d47f5692ef64e5436c5a6d29dcb537b44596 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期一, 26 一月 2026 16:36:13 +0800
Subject: [PATCH] 浪潮对接单点登录:mis调整

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

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
new file mode 100644
index 0000000..a50194a
--- /dev/null
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -0,0 +1,37 @@
+import request from "@/utils/request.js";
+// 鍒嗛〉鏌ヨ搴撳瓨璁板綍鍒楄〃
+export const getStockInventoryListPage = (params) => {
+    return request({
+        url: "/stockInventory/pagestockInventory",
+        method: "get",
+        params,
+    });
+};
+
+// 鍒涘缓搴撳瓨璁板綍
+export const createStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/addstockInventory",
+        method: "post",
+        data: params,
+    });
+};
+
+// 鍑忓皯搴撳瓨璁板綍
+export const subtractStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/subtractStockInventory",
+        method: "post",
+        data: params,
+    });
+};
+
+export const exportStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/exportStockInventory",
+        method: "post",
+        data: params,
+    });
+};
+
+

--
Gitblit v1.9.3