木箱库

This commit is contained in:
2025-07-30 13:22:17 +08:00
parent 689a80e8d5
commit 1461578b93
10 changed files with 378 additions and 18 deletions

View File

@@ -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: {}
})