子卷拼盘

This commit is contained in:
2025-09-02 18:02:26 +08:00
parent fb69bce080
commit 2fb927c499
5 changed files with 417 additions and 280 deletions

View File

@@ -587,4 +587,18 @@ export const doCallTubeShaftShow = (code) => request({
export const doCallTubeShaft = (code, row) => request({
url:'api/pda/slitter/doCallTubeShaft',
data: {device_code: code, row: row}
})
})
/**
* 子卷拼单(二期-分切管理)
*/
// 1、查询可用点位
export const getConmbinationlnfo = (parea) => request({
url:'/api/pda/slitter/getConmbinationlnfo',
data: {product_area: parea}
})
// 2、拼单
export const conCombination = (rows) => request({
url:'api/pda/slitter/conCombination',
data: {rows: rows}
})