小小儁爺
2024-08-06 7de17bdd69eb8700e5e74f17b265afdaca80c32c
src/api/produceManager.js
@@ -17,6 +17,7 @@
    data
  })
}
// ERP订单批量下达
export function MarkBatchSaveErpOrder(data) {
  return request({
@@ -430,6 +431,15 @@
  })
}
// MES工单打印更新打印次数
export function UpdateMesOrderPrintCount(data) {
  return request({
    url: 'ProductionManagement/UpdateMesOrderPrintCount',
    method: 'post',
    params: data
  })
}
// 补打生产入库条码
export function ProductInHouseLabCode(data) {
  return request({
@@ -475,3 +485,20 @@
  })
}
// MES工单批量派发,根据产品+车间获取工艺路线工序信息
export function BatchSearchRouteStep(data) {
  return request({
    url: 'ProductionManagement/BatchSearchRouteStep',
    method: 'post',
    data
  })
}
// MES工单批量派发提交
export function BatchWorkSave(data) {
  return request({
    url: 'ProductionManagement/BatchWorkSave',
    method: 'post',
    data
  })
}