木箱库

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

View File

@@ -73,6 +73,11 @@ export const allAuthority = () => {
]},
{menu_id: '9', path: 'RF14', title: '空木箱出库', sonTree: [
{menu_id: '1', title: '空木箱出库', path: '/pages/SecondPhase/EmptyBoxOutStore'}
]},
{menu_id: '10', path: 'RF05', title: '空木箱库', sonTree: [
{menu_id: '1', title: '空木箱入库', path: '/pages/SecondPhase/kmxk/EmptyBoxIntoStore'},
{menu_id: '2', title: '空木箱维护', path: '/pages/SecondPhase/kmxk/EmptyBoxSave'},
{menu_id: '3', title: '点位维护', path: '/pages/SecondPhase/kmxk/PointSave'}
]}
]
}