Files
pad-hl-hcx-new/utils/getData1.js
2023-03-29 09:45:17 +08:00

39 lines
898 B
JavaScript

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
}
}
})