添加功能

This commit is contained in:
2025-12-01 13:13:30 +08:00
parent a6e2ba107f
commit 702f6e6534
3 changed files with 47 additions and 10 deletions

View File

@@ -170,7 +170,7 @@ export const necessaryEmptyVehicle = (code) => request({
url:'api/pda/raw/necessaryEmptyVehicle',
data: {point_code: code}
})
export const needEmptyAxisv2 = (code, order, is, height, qty, type, temperature, time) => request({
export const needEmptyAxisv2 = (code, order, is, height, qty, type, temperature, time, isW) => request({
url:'api/pda/raw/needEmptyAxis/v2',
data: {
point_code: code,
@@ -180,7 +180,8 @@ export const needEmptyAxisv2 = (code, order, is, height, qty, type, temperature,
productin_qty: qty,
roll_type: type,
temperature: temperature,
time: time
time: time,
is_width: isW
}
})
export const confirmBlanking = (code, option) => request({
@@ -192,7 +193,7 @@ export const getHotTempPointInfo = (code, order) => request({
url:'api/pda/baking/getHotTempPointInfo',
data: {point_code: code, order_code: order}
})
export const doModifyRawInfos = (code, order, type, is, temperature, time, roll) => request({
export const doModifyRawInfos = (code, order, type, is, temperature, time, roll, isW) => request({
url:'api/pda/baking/doModifyRawInfos',
data: {
point_code: code,
@@ -201,7 +202,8 @@ export const doModifyRawInfos = (code, order, type, is, temperature, time, roll)
is_baking: is,
temperature: temperature,
time: time,
roll_code: roll
roll_code: roll,
is_width: isW
}
})
export const bakingQuality = (code, quality) => request({