chenhj
2025-12-16 71ce07f810982989b08a776ac107eed08c55a15e
src/api/productionManagement/productionOrder.js
@@ -52,4 +52,30 @@
    method: "post",
    data: query,
  });
}
// 查询损耗率
export function getLossRate() {
  return request({
    url: "/salesLedger/scheduling/loss",
    method: "get",
  });
}
// 新增损耗率
export function addLossRate(data) {
  return request({
    url: "/salesLedger/scheduling/addLoss",
    method: "post",
    data: data,
  });
}
// 修改损耗率
export function updateLossRate(data) {
  return request({
    url: "/salesLedger/scheduling/updateLoss",
    method: "post",
    data: data,
  });
}