add物料扣减

This commit is contained in:
2026-01-23 18:10:55 +08:00
parent e0bb2d84f7
commit 9ab6c333c7
11 changed files with 301 additions and 7 deletions

View File

@@ -123,3 +123,15 @@ export const selectMaterial = (code) => request({
url:'api/handheld/selectMaterial',
data: {pointCode: code}
})
// 查询托盘物料信息
export const getGroupByVehicleCode = (code) => request({
url:'api/handheld/getGroupByVehicleCode',
data: {vehicle_code: code}
})
// 托盘物料信息修改
export const materialUpdate = (code, arr) => request({
url:'api/handheld/materialUpdate',
data: {vehicle_code: code, materials: arr}
})