修改料盅重量

This commit is contained in:
2024-07-02 14:56:49 +08:00
parent 9a02329210
commit 32d7a6f38b
4 changed files with 133 additions and 2 deletions

View File

@@ -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
})