add 出库分拣

This commit is contained in:
2025-11-10 18:59:16 +08:00
parent 5a4f83bfd9
commit 84df82529d
13 changed files with 192 additions and 12 deletions

View File

@@ -136,4 +136,12 @@ export const addTaskV2 = (Value, point1, point2) => request({
export const dictDetail = (code) => request({
url:'api/dict/dictDetail?code=' + code + '&page=0&size=9999',
method: 'GET'
})
export const getOutAndReturnNumByReturnVehicleCode = (code) => request({
url:'api/pda/iosOut/getOutAndReturnNumByReturnVehicleCode',
data: {return_vehicle_code: code}
})
export const outSortingSubmit = (code, vcode, ost) => request({
url:'api/pda/iosOut/outSortingSubmit',
data: {return_vehicle_code: code, out_vehicle_code: vcode, out_struct_code: ost}
})