扫码异常

This commit is contained in:
2023-04-06 11:28:00 +08:00
parent c9426fd131
commit 580ff867ba
4 changed files with 38 additions and 181 deletions

View File

@@ -30,18 +30,20 @@ export const getCacheLine = (area) => request({
}
})
// 1.2指令查询
export const inOutExceptionInstQuery = (type, wcode, vcode) => request({
export const inOutExceptionInstQuery = (wcode) => request({
url:'api/cacheLineHand/inOutExceptionInstQuery',
data: {
inOut_type: type,
wcsdevice_code: wcode,
vehicle_code: vcode
wcsdevice_code: wcode
}
})
// 1.3确认
export const inOutExceptionInstConfirm = (obj) => request({
export const inOutExceptionInstConfirm = (wcode, vcode, pcode) => request({
url:'api/cacheLineHand/inOutExceptionInstConfirm',
data: obj
data: {
wcsdevice_code: wcode,
vehicle_code: vcode,
position_code: pcode
}
})
/** 缓存线盘点 */