烘烤工序质检不合格/新增母卷决策页面/新增冷却区生箔详情页面

This commit is contained in:
2025-06-10 13:24:24 +08:00
parent 9b0835a7b5
commit 1e59224993
8 changed files with 304 additions and 27 deletions

View File

@@ -142,6 +142,17 @@ export const bakingquery = (pcode) => request({
point_code: pcode
}
})
// 质检不合格
export const inCoolOrOven = (pcode, cname, temp, hours, type) => request({
url: 'api/pda/baking/inCoolOrOven',
data: {
point_code: pcode,
container_name: cname,
temperature: temp,
hours: hours,
type: type,
}
})
/**
* 人工烘烤

View File

@@ -558,6 +558,26 @@ export const updatePackagePoint = (ivt, code) => request({
* 分切暂存维护(二期-分切管理)
*/
export const cutCacheInventory = (code, type) => request({
url:'/api/pda/slitter/cutCacheInventory',
url:'api/pda/slitter/cutCacheInventory',
data: {point_code: code, type: type}
})
/**
* 母卷决策
*/
export const bakingReBake = (code, type) => request({
url:'api/pda/baking/reBake',
data: {container_name: code, type: type}
})
/**
* 冷却区生箔详情
*/
export const rawQuery = (pcode, cname, parea, page, size) => request({
url:'api/pda/raw/query',
data: {
point_code: pcode,
container_name: cname,
product_area: parea,
page: page,
size: size
}
})

View File

@@ -82,7 +82,9 @@ export const allAuthority = () => {
{menu_id: '8', title: '子卷装箱', path: '/pages/SecondPhase/production/ZjContainer'},
{menu_id: '8', title: '木箱库存', path: '/pages/SecondPhase/production/BoxStock'},
{menu_id: '8', title: '子卷入库', path: '/pages/SecondPhase/production/ZjInStore'},
{menu_id: '8', title: '标签打印', path: '/pages/SecondPhase/production/PrintTable'}
{menu_id: '8', title: '标签打印', path: '/pages/SecondPhase/production/PrintTable'},
{menu_id: '8', title: '母卷决策', path: '/pages/SecondPhase/production/MjMake'},
{menu_id: '8', title: '冷却区生箔详情', path: '/pages/SecondPhase/production/SboCool'}
]},
{menu_id: '5', path: 'RF03', title: '分切管理', sonTree: [
{menu_id: '1', title: '分切上料', path: '/pages/SecondPhase/slitting/SlittingFeeding'},