货架盘点、导航

This commit is contained in:
2023-10-18 11:28:56 +08:00
parent da825de783
commit 7e6856e6a3
6 changed files with 156 additions and 9 deletions

View File

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