add 子卷入库页

This commit is contained in:
2025-01-08 10:03:41 +08:00
parent 02e7bad05f
commit 5ce6209db5
4 changed files with 161 additions and 0 deletions

View File

@@ -304,6 +304,10 @@ export const doSubRollWeightBinding = (cn, pw, rw) => request({
url:'api/pda/slitter/doSubRollWeightBinding',
data: {container_name: cn, paper_weight: pw, roll_weight: rw}
})
export const doSubRollWeightBindingTip = (cn) => request({
url:'api/pda/slitter/doSubRollWeightBindingTip',
data: {container_name: cn}
})
/**
* 分切上轴
*/
@@ -326,3 +330,14 @@ export const doUpShaftToSlitterByDevice = (area, code) => request({
url:'api/pda/slitter/doUpShaftToSlitterByDevice',
data: {area: area, device_code: code}
})
/**
* 子卷入库(生产管理)
*/
export const zjInBound = (code) => request({
url:'api/pdmBiSubpackagerelation/zjInBound',
data: {container_name: code}
})
export const zjInBoundConfirm = (code) => request({
url:'api/pdmBiSubpackagerelation/zjInBoundConfirm',
data: {search: code}
})

View File

@@ -74,6 +74,7 @@ export const allAuthority = () => {
{menu_id: '5', title: '人工烘烤', path: '/pages/SecondPhase/production/ManmadeBake'},
{menu_id: '6', title: '子卷质检', path: '/pages/SecondPhase/production/ZjCheck'},
{menu_id: '8', title: '子卷装箱', path: '/pages/SecondPhase/production/ZjContainer'},
{menu_id: '8', title: '子卷入库', path: '/pages/SecondPhase/production/ZjInStore'},
{menu_id: '8', title: '标签打印', path: '/pages/SecondPhase/production/PrintTable'}
]},
{menu_id: '5', path: 'RF03', title: '分切管理', sonTree: [
@@ -245,4 +246,16 @@ export const queryDeviceByarea = () => {
data: [{value: '01', text: 'a'}, {value: '02', text: 'bc'}]
}
return res
}
export const zjInBound = () => {
let res = {
content: [{package_box_sn: '01'}, {package_box_sn: '02'}]
}
return res
}
export const doSubRollWeightBindingTip = () => {
let res = {
tip: '111111'
}
return res
}