huminmin
2026-06-17 8e39b5335cac5969a0f4d2aea1dd56f3e3b80de8
src/api/salesManagement/deliveryLedger.js
@@ -11,6 +11,21 @@
}
// 修改发货台账
export function getDeliveryDetail(id) {
  return request({
    url: `/shippingInfo/getDateil/${id}`,
    method: "get",
  });
}
// 修改发货台账
export function getDeliveryDetailByShippingNo(query) {
  return request({
    url: "/shippingInfo/getDateilByShippingNo",
    method: "get",
    params: query,
  });
}
export function addOrUpdateDeliveryLedger(query) {
  return request({
    url: "/shippingInfo/update",
@@ -44,4 +59,3 @@
    data,
  });
}