修改料盅重量
This commit is contained in:
@@ -204,3 +204,21 @@ export const loamCompareDoCheck = (pcode, code) => post('api/pda/manual/loamComp
|
||||
point_code: pcode,
|
||||
vehicle_code: code
|
||||
})
|
||||
/**
|
||||
* 修改料盅重量/数量
|
||||
*/
|
||||
export const updateInfo = (code) => post('api/pda/manual/updateInfo/getInfo', {
|
||||
vehicle_code: code,
|
||||
vehicle_type: '1'
|
||||
})
|
||||
export const updateWeight = (code, weight) => post('api/pda/manual/updateInfo/updateWeight', {
|
||||
vehicle_code: code,
|
||||
vehicle_type: '1',
|
||||
current_weight: weight
|
||||
})
|
||||
export const updateQty = (code, qty, weight) => post('api/pda/manual/updateInfo/updateQty', {
|
||||
vehicle_code: code,
|
||||
vehicle_type: '1',
|
||||
current_qty: qty,
|
||||
current_weight: weight
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user