From b0e472495f388c90f18d95078b43f4c777700a4a Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期一, 30 三月 2026 17:15:42 +0800
Subject: [PATCH] feat:不合格管理返工附件下载

---
 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