From 4ccf803bfff08d76653376c99d8cb862a7030157 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 27 三月 2026 16:56:03 +0800
Subject: [PATCH] 军泰伟业 1.已发货数量等于总数量时,状态为已发货。已发货数量小于总数量时,状态建议新增发货中 2.产品清除工艺路线点击确定后,仍然回显绑定的工艺路线 3.新增退货单时,退一部分货后,继续对此退货单进行退货操作,展示数据有误
---
src/api/productionManagement/productStructureRecord.js | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/api/productionManagement/productStructureRecord.js b/src/api/productionManagement/productStructureRecord.js
new file mode 100644
index 0000000..65ec4ee
--- /dev/null
+++ b/src/api/productionManagement/productStructureRecord.js
@@ -0,0 +1,20 @@
+// 鐢熶骇璁㈠崟棰嗘枡璁板綍鎺ュ彛
+import request from "@/utils/request";
+
+// 鏍规嵁璁㈠崟ID鏌ヨ鐗╂枡娓呭崟锛堥鏂欐暟鎹級
+export function listPage(query) {
+ return request({
+ url: "/productStructureRecord/listPage",
+ method: "get",
+ params: query,
+ });
+}
+
+// 棰嗘枡鎻愪氦
+export function pick(data) {
+ return request({
+ url: "/productStructureRecord/pick",
+ method: "post",
+ data: data,
+ });
+}
--
Gitblit v1.9.3