This commit is contained in:
2025-08-07 13:20:35 +08:00
parent 830e196a4b
commit 8666891fcb
7 changed files with 560 additions and 1 deletions

View File

@@ -221,3 +221,27 @@ export const getPlate = (vcode) => request({
url:'api/pda/iosIn/getPlate',
data: {vehicle_code: vcode}
})
// 空载具出入库
// 空载具入库
export const vehicleInConfirm = (sectcode, sitecode) => request({
url:'api/pda/iosIn/vehicleInConfirm',
data: {sect_code: sectcode, site_code: sitecode}
})
// 空载具出库
export const iosOutvehicleOutConfirm = (sid, siteCode) => request({
url:'api/pda/iosOut/vehicleOutConfirm',
data: {sect_id: sid, siteCode: siteCode}
})
// 手工叫料/退料
// 手工叫料
export const checkoutbillcallMaterial = (dcode, scode, mcode, type) => request({
url:'api/checkoutbill/callMaterial',
data: {device_code: dcode, struct_code: scode, material_code: mcode, task_type: type}
})
// 手工叫料
export const checkoutbillBackMaterial = (dcode, vcode, type) => request({
url:'api/checkoutbill/BackMaterial',
data: {device_code: dcode, vehicle_code: vcode, task_type: type}
})