增加需求

This commit is contained in:
2025-11-13 10:23:33 +08:00
parent 7c8b5758fd
commit 4818bf0146
3 changed files with 62 additions and 16 deletions

View File

@@ -170,9 +170,18 @@ export const necessaryEmptyVehicle = (code) => request({
url:'api/pda/raw/necessaryEmptyVehicle',
data: {point_code: code}
})
export const needEmptyAxisv2 = (code, order, is, roll, height, qty) => request({
export const needEmptyAxisv2 = (code, order, is, height, qty, type, temperature, time) => request({
url:'api/pda/raw/needEmptyAxis/v2',
data: {point_code: code, order_code: order, is_call_empty: is, roll_code: roll, theory_height: height, productin_qty: qty}
data: {
point_code: code,
order_code: order,
is_call_empty: is,
theory_height: height,
productin_qty: qty,
roll_type: type,
temperature: temperature,
time: time
}
})
export const confirmBlanking = (code, option) => request({
url:'api/pda/raw/confirmBlanking',
@@ -185,7 +194,15 @@ export const getHotTempPointInfo = (code, order) => request({
})
export const doModifyRawInfos = (code, order, type, is, temperature, time, roll) => request({
url:'api/pda/baking/doModifyRawInfos',
data: {point_code: code, order_code: order, roll_type: type, is_baking: is, temperature: temperature, time: time, roll_code: roll}
data: {
point_code: code,
order_code: order,
roll_type: type,
is_baking: is,
temperature: temperature,
time: time,
roll_code: roll
}
})
export const bakingQuality = (code, quality) => request({
url:'api/pda/baking/bakingQuality',