gaoluyang
2026-06-01 baa5da182d9f141d6d3d5af393cbf48e84d58875
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,
  });
}