From 50552c590564e51349229d4f2e26a147109adc60 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 27 三月 2026 17:55:07 +0800
Subject: [PATCH] feat:1.生产订单增加领用弹窗(数据输入和输出)

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

diff --git a/src/api/productionManagement/productionOrder.js b/src/api/productionManagement/productionOrder.js
index 6c8dbe2..5d3db7b 100644
--- a/src/api/productionManagement/productionOrder.js
+++ b/src/api/productionManagement/productionOrder.js
@@ -129,4 +129,45 @@
     method: "post",
     data: data,
   });
+}
+
+export function finishOrder(id) {
+  return request({
+    url: `/productOrder/${id}`,
+    method: "patch",
+  });
+}
+
+// 淇濆瓨娓呭満璁板綍
+export function saveCleanRecord(id, data) {
+  return request({
+    url: `/productOrder/cleanRecord/${id}`,
+    method: "patch",
+    data: data,
+  });
+}
+
+//鏍规嵁璁㈠崟鐨刡omId鏌ヨ搴撳瓨鍘熸潗鏂�
+export function getByBomId(query) {
+  return request({
+    url: "/productOrder/getByBomId",
+    method: "get",
+    params: query,
+  });
+}
+
+//淇濆瓨鐢熶骇璁㈠崟棰嗘枡
+export function drawMaterials(data) {
+  return request({
+    url: "/productOrder/drawMaterials",
+    method: "post",
+    data: data,
+  });
+}
+
+export function getProductOrderBatchNoOptions() {
+  return request({
+    url: "/productOrder/getProductOrderBatchNo",
+    method: "get",
+  });
 }
\ No newline at end of file

--
Gitblit v1.9.3