From 89b4ccc1bf351417bbe0acbc8246a681514bd173 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 27 三月 2026 15:16:24 +0800
Subject: [PATCH] 军泰伟业 1.生产订单添加领料功能 2.将报工台账单的查看投入迁移到生产订单
---
src/api/salesManagement/deliveryLedger.js | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/src/api/salesManagement/deliveryLedger.js b/src/api/salesManagement/deliveryLedger.js
index 4be5829..f596724 100644
--- a/src/api/salesManagement/deliveryLedger.js
+++ b/src/api/salesManagement/deliveryLedger.js
@@ -18,6 +18,7 @@
data: query,
});
}
+
// 淇敼鍙戣揣鍙拌处
export function deductStock(query) {
return request({
@@ -45,3 +46,50 @@
});
}
+// 鍙戣揣鏄庣粏鎺ュ彛
+
+// 鍒嗛〉鏌ヨ鍙戣揣鏄庣粏
+export function shippingInfoDetailListPage(query) {
+ return request({
+ url: "/shippingInfoDetail/listPage",
+ method: "get",
+ params: query,
+ });
+}
+
+// 鏂板鍙戣揣鏄庣粏
+export function addShippingInfoDetail(data) {
+ return request({
+ url: "/shippingInfoDetail/add",
+ method: "post",
+ data,
+ });
+}
+
+// 淇敼鍙戣揣鏄庣粏
+export function updateShippingInfoDetail(data) {
+ return request({
+ url: "/shippingInfoDetail/update",
+ method: "post",
+ data,
+ });
+}
+
+// 鍒犻櫎鍙戣揣鏄庣粏
+export function delShippingInfoDetail(ids) {
+ return request({
+ url: "/shippingInfoDetail/delete",
+ method: "delete",
+ data: ids,
+ });
+}
+
+// 鏍规嵁ID鑾峰彇鍙戣揣淇℃伅
+export function getShippingInfoById(id) {
+ return request({
+ url: "/shippingInfo/getById",
+ method: "get",
+ params: { id },
+ });
+}
+
--
Gitblit v1.9.3