空管入库

This commit is contained in:
2022-10-12 10:35:42 +08:00
parent 545bb8f0af
commit 92e9b329b8
4 changed files with 95 additions and 30 deletions

View File

@@ -0,0 +1,28 @@
import request from './request.js'
/**
* 空管入库
*/
// 1.1生产区域下拉框查询
export const queryProductArea = () => request({
url:'api/pda/raw/queryProductArea',
data: {}
})
// 1.2空纸管库设备物料初始化查询
export const queryMaterialInfo = (code, mcode, area) => request({
url:'api/pda/empty/queryMaterialInfo',
data: {
point_code: code,
material_code: mcode,
product_area: area
}
})
// 1.3入库确认
export const emptyConfirm = (jo, qty, code) => request({
url:'api/pda/empty/confirm',
data: {
raw_jo: jo,
qty: qty,
material_code: code
}
})