From 25e8bb2eed567c5075d87b12489f0917a995fc77 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期四, 16 四月 2026 16:51:30 +0800
Subject: [PATCH] fix: 退料添加审批人的功能去掉

---
 src/api/productionManagement/productionOrder.js |   54 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 53 insertions(+), 1 deletions(-)

diff --git a/src/api/productionManagement/productionOrder.js b/src/api/productionManagement/productionOrder.js
index 178b385..b8468eb 100644
--- a/src/api/productionManagement/productionOrder.js
+++ b/src/api/productionManagement/productionOrder.js
@@ -45,12 +45,64 @@
   });
 }
 
+export function delProductOrder(ids) {
+  return request({
+    url: `/productOrder/${ids}`,
+    method: "delete",
+  });
+}
+
 // 鐢熶骇璁㈠崟-鏌ヨ浜у搧缁撴瀯鍒楄〃
 export function listProcessBom(query) {
   return request({
     url: "/productOrder/listProcessBom",
     method: "get",
     params: query,
+  });
+}
+
+// 鐢熶骇璁㈠崟-棰嗘枡鍙拌处鍒楄〃
+export function listMaterialPickingLedger(query) {
+  return request({
+    url: "/productOrderMaterial/list",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鐢熶骇璁㈠崟-淇濆瓨棰嗘枡鍙拌处
+export function saveMaterialPickingLedger(data) {
+  return request({
+    url: "/productOrderMaterial/save",
+    method: "post",
+    data,
+  });
+}
+
+// 鐢熶骇璁㈠崟-棰嗘枡璇︽儏鍒楄〃
+export function listMaterialPickingDetail(query) {
+  return request({
+    url: "/productOrderMaterial/detailList",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鐢熶骇璁㈠崟-琛ユ枡璁板綍鍒楄〃
+export function listMaterialSupplementRecord(query) {
+  return request({
+    url: "/productOrderMaterial/supplementRecord",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鐢熶骇璁㈠崟-閫�鏂欑‘璁�
+export function confirmMaterialReturn(data) {
+  return request({
+    url: "/productOrderMaterial/confirmReturn",
+    method: "post",
+    data,
   });
 }
 
@@ -122,4 +174,4 @@
     method: "post",
     data: data,
   });
-}
\ No newline at end of file
+}

--
Gitblit v1.9.3