顶部样式

This commit is contained in:
2023-05-26 10:55:48 +08:00
parent 934ff5186d
commit 531f767827
2 changed files with 40 additions and 7 deletions

View File

@@ -75,3 +75,16 @@ export const reportQuery = (st, et, code, wcode) => post('api/produceWorkorder/r
device_code: code,
workorder_code: wcode
})
// 修改报工数量
export const updateReport = (id, report, nok, repare) => post('api/produceshiftorder/updateReport', {
macoperate_id: id,
report_qty: report,
nok_qty: nok,
repare_qty: repare
})
// 删除报工记录
export const deleteReport = (id) => post('api/produceshiftorder/deleteReport', {
macoperate_id: id
})