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

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

@@ -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
}
})