货架盘点

This commit is contained in:
2023-10-18 10:13:33 +08:00
parent b1afa0cc48
commit 12f5b32eaf
4 changed files with 38 additions and 3 deletions

View File

@@ -126,10 +126,11 @@ export const manualSortingPackingTaskShow = () => request({
data: {}
})
// 确认
export const manualSortingPackingTask = (code, qty) => request({
export const manualSortingPackingTask = (code, qty, sqty) => request({
url:'/api/pda/manualSorting/packingTask',
data: {
vehicle_code: code,
qty: qty
qty: qty,
surplus_quantity: sqty
}
})