缓存线异常处理

This commit is contained in:
2023-03-29 09:45:17 +08:00
parent d0bfed111c
commit 2cd3517298
2 changed files with 53 additions and 26 deletions

View File

@@ -1 +1,38 @@
import request from './request.js'
import request from './request.js'
/** 缓存线出箱异常 */
// 1.1缓存线异常处理:
export const cacheLineExcepOpt = (wcode, opttype) => request({
url:'/api/cacheLineHand/cacheLineExcepOpt',
data: {
form: {
wcsdevice_code: wcode,
opt_type: opttype
}
}
})
/** 缓存线异常处理 */
// 1.1缓存线出箱异常-查询:
export const cacheLineOutBoxExceptionQuery = (wcode, pcode) => request({
url:'/api/cacheLineHand/cacheLineOutBoxExceptionQuery',
data: {
form: {
wcsdevice_code: wcode,
position_code: pcode
}
}
})
// 1.2缓存线出箱异常-确认:
export const cacheLineOutBoxExceptionConfirm = (wcode, uuid, itype, vcode, pcode) => request({
url:'/api/cacheLineHand/cacheLineOutBoxExceptionConfirm',
data: {
form: {
wcsdevice_code: wcode,
instruct_uuid: uuid,
inOut_type: itype,
vehicle_code: vcode,
position_code: pcode
}
}
})