gaoluyang
2025-11-15 47e1cecb6f5cd01c029ff1a2f1658326a33025f4
src/api/productionManagement/productionOrder.js
@@ -17,6 +17,14 @@
    data: query,
  });
}
// 自动派工
export function productionDispatchList(query) {
  return request({
    url: "/salesLedger/scheduling/productionDispatchList",
    method: "post",
    data: query,
  });
}
// 获取炒机正在工作量数据
export function schedulingList(query) {
  return request({
@@ -43,3 +51,29 @@
    data: data,
  });
}
// 查询损耗率
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,
  });
}