From 9e7ed81d5fcfdc1489fc8a08edf5fe826dfe5fdc Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期一, 25 五月 2026 16:54:43 +0800
Subject: [PATCH] 宝东 1.协同审批部门选择筛选去掉

---
 src/api/salesManagement/deliveryLedger.js |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/src/api/salesManagement/deliveryLedger.js b/src/api/salesManagement/deliveryLedger.js
index b85582c..ab37598 100644
--- a/src/api/salesManagement/deliveryLedger.js
+++ b/src/api/salesManagement/deliveryLedger.js
@@ -17,6 +17,14 @@
     method: "get",
   });
 }
+// 淇敼鍙戣揣鍙拌处
+export function getDeliveryDetailByShippingNo(query) {
+  return request({
+    url: "/shippingInfo/getDateilByShippingNo",
+    method: "get",
+    params: query,
+  });
+}
 
 export function addOrUpdateDeliveryLedger(query) {
   return request({
@@ -25,6 +33,7 @@
     data: query,
   });
 }
+
 // 淇敼鍙戣揣鍙拌处
 export function deductStock(query) {
   return request({
@@ -52,3 +61,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