新增点位管理

This commit is contained in:
2024-06-04 15:33:24 +08:00
parent bf2502b927
commit 7737ded5e5
9 changed files with 152 additions and 3 deletions

View File

@@ -80,3 +80,21 @@ export const getInventoryMaterialInfo = (code) => request({
material_code: code
}
})
/**
* 点位管理
*/
// 点位编码列表
export const getGhsPointList = () => request({
url:'api/pda/getGhsPointList',
data: {}
})
// 更改固化室库存
export const changePointQty = (id, qty) => request({
url:'api/pda/changePointQty',
data: {
group_id: id,
qty: qty
}
})