物料查询

This commit is contained in:
2023-06-29 15:26:49 +08:00
parent db2fdd3190
commit 8bb90531db
7 changed files with 150 additions and 10 deletions

View File

@@ -113,3 +113,32 @@ export const unqualReport = (id, nqty, rqty) => post('api/produceshiftorder/unqu
// 状态查询
export const orderStatus = () => get('api/produceshiftorder/orderStatus', '')
/**
* 半成品入库
*/
// 1.1仓库下拉框
export const getBcpStor = () => post('api/pda/bcp/in/getBcpStor', {})
// 1.2单据类型下拉框
export const getBillType = () => post('api/pda/bcp/in/getBillType', {})
// 1.3物料选择页面
export const getMaterial = (code) => post('api/pda/bcp/in/getMaterial', {
material_code: code
})
// 1.4入库点下拉框
export const getPoint = () => post('api/pda/bcp/in/getPoint', {})
// 1.5呼叫空载具(按钮)
export const callVehicle = () => post('api/pda/bcp/in/callVehicle', {})
// 1.6确认入库(按钮)
export const createIn = (from) => post('api/pda/bcp/in/createIn', {
from: from
})
/**
* 半成品入库管理查询
*/
// 2.1半成品入库查询
export const getAll = () => post('api/pda/bcp/in/getAll', {})
// 2.2强制确认(按钮)
export const bcpInConfirm = () => post('api/pda/bcp/in/confirm', {})