新增点位管理
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
|
||||
}
|
||||
})
|
||||
@@ -210,4 +210,19 @@ export const materialList = () => {
|
||||
export const getInventoryMaterialInfo = (code) => {
|
||||
let res = [{"material_code":"FJB","material_name":"负极板","point_code":"01-09-01","point_name":"01排09列01层","vehicle_code":"T202312060006","vehicle_type":"1"}]
|
||||
return res
|
||||
}
|
||||
export const getGhsPointList = () => {
|
||||
let res = [
|
||||
{
|
||||
"point_code": "GHS0101",
|
||||
"vehicle_name": "负涂片极板/真黑金/6-DZM-13.2",
|
||||
"group_id": "1739900219769884672",
|
||||
"material_qty": 9942
|
||||
}
|
||||
]
|
||||
return res
|
||||
}
|
||||
export const changePointQty = (id, qty) => {
|
||||
let res = {"message":"涂板线入库请求成功"}
|
||||
return res
|
||||
}
|
||||
Reference in New Issue
Block a user