人工倒料、刻字工序

This commit is contained in:
2023-07-04 13:52:35 +08:00
parent 72ca8adefb
commit 558d78e078
5 changed files with 319 additions and 0 deletions

View File

@@ -274,3 +274,30 @@ export const bcpShutGetdtl = (id, btime, etime, code, scode, stcode) => post('ap
export const bcpShutConfirm = (row) => post('api/pda/bcp/shut/confirm', {
row: row
})
/**
* 人工倒料
*/
// 1.1设备列表
export const pourDeviceList = () => post('api/device/list', {})
// 1.2车间列表
export const pourDictList = (code) => post('api/dict/dictDetailByCode', {
code: code
})
// 1人工倒料
export const pourdeviceinstorQty = (qty, code) => post('api/pda/deviceinstorQty', {
qty: qty,
device_code: code
})
/**
* 刻字工序
*/
// 设备列表
export const letterDeviceList = (id) => post('api/device/list', {
workprocedure_id: id
})
// 补空框
export const letterCallVechile = (id) => post('api/pda/callVechile', {
device_code: id
})