liding
8 天以前 518daf6003d4b1fc44692625a3073720de348903
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,
  });
}