新增点位管理
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user