From fd6abd7553ea3a994ff4bbc843ea61b9eb2f6fc7 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期二, 31 三月 2026 11:48:04 +0800
Subject: [PATCH] 打印销售台账增加UID码

---
 src/api/inventoryManagement/stockInventory.js |   35 +++++++++++++++++++++++++++++++++--
 1 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/src/api/inventoryManagement/stockInventory.js b/src/api/inventoryManagement/stockInventory.js
index a50194a..92b3892c 100644
--- a/src/api/inventoryManagement/stockInventory.js
+++ b/src/api/inventoryManagement/stockInventory.js
@@ -26,12 +26,43 @@
     });
 };
 
-export const exportStockInventory = (params) => {
+export const getStockInventoryReportList = (params) => {
     return request({
-        url: "/stockInventory/exportStockInventory",
+        url: "/stockInventory/stockInventoryPage",
+        method: "get",
+        params,
+    });
+};
+
+export const getStockInventoryInAndOutReportList = (params) => {
+    return request({
+        url: "/stockInventory/stockInAndOutRecord",
+        method: "get",
+        params,
+    });
+};
+
+// 鍐荤粨搴撳瓨璁板綍
+export const frozenStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/frozenStock",
         method: "post",
         data: params,
     });
 };
 
+// 瑙e喕搴撳瓨璁板綍
+export const thawStockInventory = (params) => {
+    return request({
+        url: "/stockInventory/thawStock",
+        method: "post",
+        data: params,
+    });
+};
 
+export function getMaterials() {
+    return request({
+        url: "/stockInventory/getMaterials",
+        method: "get",
+    });
+}
\ No newline at end of file

--
Gitblit v1.9.3