add 人工出入库

This commit is contained in:
2025-12-01 09:54:23 +08:00
parent 1e46c520a1
commit 7230e6acd3
7 changed files with 287 additions and 1 deletions

View File

@@ -156,4 +156,14 @@ export const empVehicleOut = (code, type) => request({
export const pointToPoint = (code1, code2, vcode, type, is) => request({
url:'api/pda/schPoint/pointToPoint',
data: {point_code1: code1, point_code2: code2, vehicle_code: vcode, task_type: type, is_vehicle: is}
})
// 手工入库确认
export const handIn = (code, point, id) => request({
url:'api/pda/iosIn/handIn',
data: {storagevehicle_code: code, point_code: point, sect_id: id}
})
// 手工出库确认
export const handOut = (code, point) => request({
url:'api/pda/iosOut/handOut',
data: {storagevehicle_code: code, point_code: point}
})