货架盘点、导航
This commit is contained in:
@@ -133,4 +133,26 @@ export const manualSortingPackingTask = (code, qty, sqty) => request({
|
||||
qty: qty,
|
||||
surplus_quantity: sqty
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* 货架盘点
|
||||
*/
|
||||
// 物料查询
|
||||
export const shelfMaterialQuery = (code) => request({
|
||||
url:'api/pda/shelf/materialQuery',
|
||||
data: {
|
||||
material_code: code
|
||||
}
|
||||
})
|
||||
// 确认
|
||||
export const shelfUpdateData = (code, status, vcode, qty, id) => request({
|
||||
url:'api/pda/shelf/updateData',
|
||||
data: {
|
||||
point_code: code,
|
||||
point_status: status,
|
||||
vehicle_code: vcode,
|
||||
material_qty: qty,
|
||||
material_id: id
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user