From 01a0dbc37d2df7557f6bab27a8f3f78970b8251e Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 01 四月 2026 17:39:03 +0800
Subject: [PATCH] 军泰伟业 1.军泰伟业-库存管理增加库位 2.军泰伟业-生产入库要审核,加个入库审核菜单,入库数量,库位,通过不通过

---
 src/api/inventoryManagement/stockInRecord.js |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/src/api/inventoryManagement/stockInRecord.js b/src/api/inventoryManagement/stockInRecord.js
index 1746bfe..f5ca6e6 100644
--- a/src/api/inventoryManagement/stockInRecord.js
+++ b/src/api/inventoryManagement/stockInRecord.js
@@ -18,10 +18,19 @@
     });
 };
 
+// 鍏ュ簱瀹℃牳
+export const productionApprove = (data) => {
+    return request({
+        url: "/stockInRecord/productionApprove",
+        method: "post",
+        data,
+    });
+};
+
 export const batchDeleteStockInRecords = (ids) => {
     return request({
         url: "/stockInRecord",
         method: "delete",
         data: ids,
     });
-};
\ No newline at end of file
+};

--
Gitblit v1.9.3