物料库存
This commit is contained in:
@@ -1,99 +1 @@
|
||||
import request from './request.js'
|
||||
|
||||
/**
|
||||
* 人工组盘
|
||||
*/
|
||||
// 点位编码
|
||||
export const getPressCode = () => request({
|
||||
url:'api/pda/group/getPressCode',
|
||||
data: {}
|
||||
})
|
||||
// 获取载具类型
|
||||
export const getVehicleType = () => request({
|
||||
url:'api/pda/group/getVehicleType',
|
||||
data: {}
|
||||
})
|
||||
// 人工组盘-确认
|
||||
export const groupmanual = (vcode, vtype, pcode, weight) => request({
|
||||
url:'api/pda/group/manual',
|
||||
data: {
|
||||
vehicle_code: vcode,
|
||||
vehicle_type: vtype,
|
||||
point_code: pcode,
|
||||
material_weight: weight
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* 混碾搬运
|
||||
*/
|
||||
// 获取混碾机数据
|
||||
export const getBlendingCode = () => request({
|
||||
url:'api/pda/move/getBlendingCode',
|
||||
data: {}
|
||||
})
|
||||
// 确认
|
||||
export const sendTask = (vcode, spcode) => request({
|
||||
url:'api/pda/move/sendTask',
|
||||
data: {
|
||||
vehicle_code: vcode,
|
||||
start_point_code: spcode,
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* 人工分拣
|
||||
*/
|
||||
// 呼叫木盘
|
||||
// 呼叫木盘刷新
|
||||
export const callingWoodenPalletTaskShow = () => request({
|
||||
url:'api/pda/manualSorting/callingWoodenPalletTaskShow',
|
||||
data: {}
|
||||
})
|
||||
// 呼叫木盘任务
|
||||
export const callingWoodenPalletTask = () => request({
|
||||
url:'api/pda/manualSorting/callingWoodenPalletTask',
|
||||
data: {}
|
||||
})
|
||||
|
||||
|
||||
// 呼叫满料
|
||||
// 呼叫满料刷新
|
||||
export const callingMaterialTaskShow = () => request({
|
||||
url:'api/pda/manualSorting/callingMaterialTaskShow',
|
||||
data: {}
|
||||
})
|
||||
// 呼叫满料确认
|
||||
export const callingMaterialTask = () => request({
|
||||
url:'/api/pda/manualSorting/callingMaterialTask',
|
||||
data: {}
|
||||
})
|
||||
|
||||
// 空盘入库
|
||||
// 空盘入库刷新
|
||||
export const emptyDiskIntoStorageShow = () => request({
|
||||
url:'api/pda/manualSorting/emptyDiskIntoStorageShow',
|
||||
data: {}
|
||||
})
|
||||
// 空盘入库确认
|
||||
export const emptyDiskIntoStorageTask = () => request({
|
||||
url:'api/pda/manualSorting/emptyDiskIntoStorageTask',
|
||||
data: {}
|
||||
})
|
||||
|
||||
// 压机搬运
|
||||
// 压机叫料
|
||||
export const pressTask = (dcode, vcode, qty, id) => request({
|
||||
url:'api/pda/pressSendMaterial/pressTask',
|
||||
data: {
|
||||
device_code: dcode,
|
||||
vehicle_code: vcode,
|
||||
qty: qty,
|
||||
user_id: id
|
||||
}
|
||||
})
|
||||
// 搬运起点
|
||||
export const pressPointList = () => request({
|
||||
url:'api/pda/pressSendMaterial/pressPointList',
|
||||
data: {}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user