木箱库
This commit is contained in:
@@ -45,3 +45,33 @@ export const feedinghandleConfirm = (obj) => request({
|
||||
raw_jo: obj
|
||||
}
|
||||
})
|
||||
// 木箱库-空木箱入库
|
||||
export const boxIn = (pcode, vcode) => request({
|
||||
url:'api/boxStackInOut/boxIn',
|
||||
data: {
|
||||
point_code: pcode,
|
||||
vehicle_code: vcode
|
||||
}
|
||||
})
|
||||
// 木箱库-空木箱维护
|
||||
export const updateWeight = (pcode, weight) => request({
|
||||
url:'api/boxStackInOut/updateWeight',
|
||||
data: {
|
||||
point_code: pcode,
|
||||
weight: weight
|
||||
}
|
||||
})
|
||||
// 木箱库-点位维护
|
||||
export const updatePoint = (pcode, mcode, vcode) => request({
|
||||
url:'api/boxStackInOut/updatePoint',
|
||||
data: {
|
||||
point_code: pcode,
|
||||
material_code: mcode,
|
||||
vehicle_code: vcode
|
||||
}
|
||||
})
|
||||
// 木箱库-查询木箱物料信息
|
||||
export const getBoxSpecInfo = (pcode, mcode, vcode) => request({
|
||||
url:'api/boxStackInOut/getBoxSpecInfo',
|
||||
data: {}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user