木箱称重

This commit is contained in:
2024-07-01 09:06:54 +08:00
parent 253814f08f
commit 9e94621f11
4 changed files with 114 additions and 1 deletions

View File

@@ -175,4 +175,15 @@ export const sendSubVolumeToNBJ = (code) => request({
export const toCleanCutCacheInventory = (code) => request({
url:'api/pda/slitter/toCleanCutCacheInventory',
data: {point_code: code}
})
/**
* 木箱称重
*/
export const boxinfogetBoxInfo = (code) => request({
url:'api/boxinfogetBoxInfo',
data: {box_no: code}
})
export const saveBoxInfo = (code, weight) => request({
url:'api/boxinfo/saveBoxInfo',
data: {box_no: code, box_weight: weight}
})

View File

@@ -91,7 +91,8 @@ export const authority = () => {
]},
{menu_id: '7', path: 'RF06', title: '成品入库', sonTree: [
{menu_id: '1', title: '退货入库', path: '/pages/SecondPhase/finished/ReturnToStore'},
{menu_id: '2', title: '异常口入库', path: '/pages/SecondPhase/finished/abnorToStore'}
{menu_id: '2', title: '异常口入库', path: '/pages/SecondPhase/finished/abnorToStore'},
{menu_id: '2', title: '木箱称重', path: '/pages/SecondPhase/finished/BoxWeight'}
]}
]
}