From cc57d54f49c91b3c41218ea8e28c050b87476bb5 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 28 四月 2026 11:17:59 +0800
Subject: [PATCH] fix: 恢复被误删内容的工序编辑和新增组件,修复编译错误

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

diff --git a/src/api/inventoryManagement/stockInRecord.js b/src/api/inventoryManagement/stockInRecord.js
index 1746bfe..3142e09 100644
--- a/src/api/inventoryManagement/stockInRecord.js
+++ b/src/api/inventoryManagement/stockInRecord.js
@@ -24,4 +24,21 @@
         method: "delete",
         data: ids,
     });
+};
+
+export const batchDeletePendingStockInRecords = (ids) => {
+    return request({
+        url: "/stockInRecord/pending",
+        method: "delete",
+        data: ids,
+    });
+};
+
+// 鎵归噺瀹℃壒鍏ュ簱璁板綍锛坅pprovalStatus: approved/rejected锛�
+export const batchApproveStockInRecords = (data) => {
+    return request({
+        url: "/stockInRecord/approve",
+        method: "post",
+        data,
+    });
 };
\ No newline at end of file

--
Gitblit v1.9.3