呼叫空托盘、送空托盘

This commit is contained in:
2024-09-03 09:04:57 +08:00
parent 5a74ec84ea
commit e00462876d
7 changed files with 232 additions and 2 deletions

View File

@@ -230,4 +230,20 @@ export const fullVehicleOutConfirm = (code, vcode, num) => request({
vehicle_code: vcode,
residue_num: num
}
})
})
// 呼叫空托盘
export const lmzbCallEmptyVehicle = (type, code) => request({
url:'api/pda/lmzbCallEmptyVehicle',
data: {
vehicle_type: type,
point_code: code
}
})
// 送空托盘
export const sendEmptyVehicle = (type, code) => request({
url:'api/pda/sendEmptyVehicle',
data: {
vehicle_type: type,
point_code: code
}
})