From b2ee80ea7ca9c86180a0afee220303e3e0616e60 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 16 一月 2026 17:21:14 +0800
Subject: [PATCH] 浪潮对接单点登录:跳转问题修复
---
src/api/productionManagement/productionOrder.js | 55 ++++++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 44 insertions(+), 11 deletions(-)
diff --git a/src/api/productionManagement/productionOrder.js b/src/api/productionManagement/productionOrder.js
index ab3dc06..fc13b6f 100644
--- a/src/api/productionManagement/productionOrder.js
+++ b/src/api/productionManagement/productionOrder.js
@@ -3,17 +3,50 @@
// 鍒嗛〉鏌ヨ
export function schedulingListPage(query) {
- return request({
- url: "/salesLedger/scheduling/listPage",
- method: "get",
- params: query,
- });
+ return request({
+ url: "/productionOrder/listPage",
+ method: "get",
+ params: query,
+ });
}
// 鐢熶骇娲惧伐
export function productionDispatch(query) {
- return request({
- url: "/salesLedger/scheduling/productionDispatch",
- method: "post",
- data: query,
- });
-}
\ No newline at end of file
+ return request({
+ url: "/salesLedger/scheduling/productionDispatch",
+ method: "post",
+ data: query,
+ });
+}
+
+// 鏂板鐢熶骇璁㈠崟
+export function addProductionOrder(query) {
+ return request({
+ url: "/productionOrder/addProductionOrder",
+ method: "post",
+ data: query,
+ });
+}
+// 淇敼鐢熶骇璁㈠崟
+export function updateProductionOrder(query) {
+ return request({
+ url: "/productionOrder/updateProductionOrder",
+ method: "post",
+ data: query,
+ });
+}
+// 鍒犻櫎鐢熶骇璁㈠崟
+export function deleteProductionOrder(query) {
+ return request({
+ url: "/productionOrder/deleteProductionOrder",
+ method: "delete",
+ data: query,
+ });
+}
+// 鎶ヨ〃鍒嗘瀽
+export function reportAnalysis(query) {
+ return request({
+ url: "/productionOrder/reportAnalysis",
+ method: "get",
+ params: query,
+ });
+}
--
Gitblit v1.9.3