add母卷重量维护\烘烤区域母卷详情,修改烘烤工序、生箔工序

This commit is contained in:
2025-06-26 19:44:08 +08:00
parent 23403350e5
commit 244fcbbaae
15 changed files with 779 additions and 195 deletions

View File

@@ -25,10 +25,11 @@ export const queryRawFoil = (pcode, cname, parea, page, size) => request({
* 生箔工序
*/
// 生箔工序初始化查询
export const queryRawFoilList = (pcode, cname, page, size) => request({
export const queryRawFoilList = (pcode, parea, cname, page, size) => request({
url: 'api/pda/raw/queryRawFoilList',
data: {
point_code: pcode,
product_area: parea,
container_name: cname,
page: page,
size: size
@@ -151,7 +152,18 @@ export const inCoolOrOven = (pcode, cname, temp, hours, type) => request({
container_name: cname,
temperature: temp,
hours: hours,
type: type,
type: type
}
})
// 定点入箱
export const inHotByPoint = (code, cn, temp, hours, ncode) => request({
url: 'api/pda/baking/inHotByPoint',
data: {
point_code: code,
container_name: cn,
temperature: temp,
hours: hours,
next_point_code: ncode
}
})

View File

@@ -587,4 +587,27 @@ export const rawQuery = (pcode, cname, parea, page, size) => request({
page: page,
size: size
}
})
/**
* 烘烤区域母卷详情
*/
export const queryHotPoints = (pcode, cname, parea, page, size) => request({
url:'api/pda/baking/queryHotPoints',
data: {
point_code: pcode,
container_name: cname,
product_area: parea,
page: page,
size: size
}
})
/**
* 母卷重量维护
*/
export const confirmWeight = (cname, weight) => request({
url:'api/pda/raw/confirmWeight',
data: {
container_name: cname,
weight: weight
}
})

View File

@@ -18,6 +18,7 @@ export const allAuthority = () => {
{menu_id: '1', title: '生箔生产进度', path: '/pages/SecondPhase/production/SboProdProgress'},
{menu_id: '2', title: '生箔工序', path: '/pages/SecondPhase/production/SboProcess'},
{menu_id: '3', title: '烘烤工序', path: '/pages/SecondPhase/production/BakeProcess'},
{menu_id: '3', title: '烘烤区域母卷详情', path: '/pages/SecondPhase/production/BakeDetail'},
// {menu_id: '4', title: '表处工序', path: '/pages/SecondPhase/production/SurfaceProcess'},
{menu_id: '5', title: '人工烘烤', path: '/pages/SecondPhase/production/ManmadeBake'},
{menu_id: '6', title: '子卷质检', path: '/pages/SecondPhase/production/ZjCheck'},
@@ -27,7 +28,8 @@ export const allAuthority = () => {
{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/MjMake'},
{menu_id: '8', title: '冷却区生箔详情', path: '/pages/SecondPhase/production/SboCool'}
{menu_id: '8', title: '冷却区生箔详情', path: '/pages/SecondPhase/production/SboCool'},
{menu_id: '8', title: '母卷重量维护', path: '/pages/SecondPhase/production/MjWeight'},
]},
{menu_id: '5', path: 'RF03', title: '分切管理', sonTree: [
{menu_id: '1', title: '分切上料', path: '/pages/SecondPhase/slitting/SlittingFeeding'},
@@ -220,4 +222,12 @@ export const twoQueryBoxIvt = (code) => {
export const showManualView = (code) => {
let res = [{resource_name: 'B60FQ00003', up_or_down: '1', qzz_size: '6', status: '01', qzz_generation: '5', start_time: '2025-03-11 15:24:26'}]
return res
}
export const queryHotPoints = () => {
let res = {
"data":[{"container_name":"2222222","product_area":"A4","point_code":"A4_HK_01_3","roll_status":"未烘烤"}],
"size":"1",
"message":"查询成功!",
}
return res
}