This commit is contained in:
2025-09-17 13:18:40 +08:00
parent 31bfde4fbb
commit 0a8a7b1f17
6 changed files with 74 additions and 41 deletions

View File

@@ -78,6 +78,11 @@ export const getMaterialTypes = () => request({
url:'api/hand/getMaterialTypes',
data: {}
})
// 1.3根据点位查询物料
export const selectMaterialByPointCode = (pcode) => request({
url:'api/hand/selectMaterialByPointCode',
data: {point_code: pcode}
})
// 人工取货
// 1.1根据点位查询物料信息
@@ -91,7 +96,7 @@ export const comfirmGetting = (pcode, arr) => request({
data: {point_code: pcode, data: arr}
})
// 点位维护
// 库存锁定解锁
// 1.1查询缓冲区点位库存
export const getPointInfo = (rcode, pcode, mcode) => request({
url:'api/hand/getPointInfo',
@@ -107,6 +112,11 @@ export const unlock = (arr) => request({
url:'api/hand/unlock',
data: {data: arr}
})
// 1.4查询所有区域
export const getRegions = () => request({
url:'api/hand/getRegions',
data: {}
})
// 定点任务
// 1.1根据区域查询点位
@@ -154,6 +164,11 @@ export const selectRegionInfo = (rcode) => request({
url:'api/hand/selectRegionInfo',
data: {region_code: rcode}
})
// 1.2查询所有管制区域
export const getChargeRegions = () => request({
url:'api/hand/getChargeRegions',
data: {}
})
// 1.3进入
export const inArea = (obj) => request({
url:'api/hand/inArea',