From ed94f308b3fb345eb7238b8836a61d0b8bbaa98c Mon Sep 17 00:00:00 2001
From: chenhj <1263187585@qq.com>
Date: 星期五, 27 三月 2026 17:52:23 +0800
Subject: [PATCH] feat(salesLedger): 添加批号字段和销售出库单打印功能
---
src/api/productionManagement/productionOrder.js | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/api/productionManagement/productionOrder.js b/src/api/productionManagement/productionOrder.js
index 6c8dbe2..8adc47f 100644
--- a/src/api/productionManagement/productionOrder.js
+++ b/src/api/productionManagement/productionOrder.js
@@ -129,4 +129,27 @@
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,
+ });
+}
+
+export function getProductOrderBatchNoOptions() {
+ return request({
+ url: "/productOrder/getProductOrderBatchNo",
+ method: "get",
+ });
}
\ No newline at end of file
--
Gitblit v1.9.3