diff --git a/src/config/getData3.js b/src/config/getData3.js index 243f2df..852ff60 100644 --- a/src/config/getData3.js +++ b/src/config/getData3.js @@ -27,3 +27,23 @@ export const confirmGroupBucketAndBag = (mst, dtl) => post('api/pda/set/bucket/c mst: mst, dtl: dtl }) + +/** 粉料移库-2024/12/04 */ +// 1.1物料库存查询 +export const moveQueryMaterialList = (code, page, size) => post('api/pda/st/move/queryMaterialList', { + material_code: code, + page: page, + size: size +}) +// export const moveQueryMaterialList = (code, page, size) => { +// let res = { +// code: '1', +// rows: [{turnout_sect_name: 'turnout_sect_name', turnout_struct_code: 'turnout_struct_code', storagevehicle_code: 'storagevehicle_code', material_code: 'material_code', material_name: 'material_name', pcsn: 'pcsn', stockrecord_id: '1', quality_scode: '01', ivt_level: '01', is_active: '01', qty: '100', qty_unit_name: 'pc'}] +// } +// return res +// } +// 1.2确认 +export const moveConfirm = (code, dtl) => post('api/pda/st/move/confirm', { + point_code: code, + dtl: dtl +}) diff --git a/src/pages/login/Home.vue b/src/pages/login/Home.vue index edcc332..7bb5d40 100644 --- a/src/pages/login/Home.vue +++ b/src/pages/login/Home.vue @@ -78,6 +78,7 @@
配粉间桶标签打印
异常桶标签打印
软废清洗入库
| 库区 | +
|---|
| {{e.turnout_sect_name}} | +
| 货位 | +载具号 | +物料编码 | +物料名称 | +批次 | +品质类型 | +库存等级 | +是否可用 | +重量 | +重量单位 | +
|---|---|---|---|---|---|---|---|---|---|
| {{e.turnout_struct_code}} | +{{e.storagevehicle_code}} | +{{e.material_code}} | +{{ e.material_name }} | +{{ e.pcsn }} | +{{ ['待检品', '合格品', '', '中间品'][Number(e.quality_scode)] }} | +{{ ['一级', '二级', '三级', '四级', '五级'][Number(e.ivt_level) - 1] }} | +{{ ['不可用', '可用'][Number(e.is_active)] }} | +{{ e.qty }} | +{{ e.qty_unit_name }} | +