缓存线异常处理
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user