diff --git a/pages/entry/group-to-store.vue b/pages/entry/group-to-store.vue index eebc9e6..da91c13 100644 --- a/pages/entry/group-to-store.vue +++ b/pages/entry/group-to-store.vue @@ -5,55 +5,73 @@ - - 载具编码 + + 合格证编码 - + + + + 载具编码 + + + + + + + + + 订单号 + {{currentData.MONumber}} + + + 物料编码 + {{currentData.material_code}} + + + 物料名称 + {{currentData.material_name}} + + + 物料规格 + {{currentData.material_spec}} + + + 单位 + {{currentData.unit_name}} + - - 关联单据 + 物料数量 + + - - + + + 组织 + {{currentData.StockOrgId}} + + + 货主 + {{currentData.OwnerId_Id}} + + + 仓库编码 + + - - - - - - - - - - - - - - - - - - - - - -
物料编码物料名称物料规格批次单重
{{e.material_code}}{{e.material_name}}{{e.material_spec}}{{e.pcsn}}{{e.single_weight}}
-
-
-
- - - +
@@ -61,7 +79,7 @@ diff --git a/utils/getData2.js b/utils/getData2.js index 7230ce9..d9d7d60 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -213,4 +213,28 @@ export const outStorageConfirm = (obj) => request({ // msg: 'ok' // } // return res -// } \ No newline at end of file +// } + +// 扫描合格证获取物料信息 +export const getCertificateInfo = (id) => request({ + url:'api/pda/outStorage/getCertificateInfo/' + id, + method: 'GET' +}) +// export const getCertificateInfo = (id) => { +// let res = { +// MONumber: '订单号', +// material_code: 'material_code', +// material_name: 'material_name', +// material_spec: 'material_spec', +// unit_name: 'unit_name', +// qty: '100', +// StockOrgId: 'StockOrgId', +// OwnerId_Id: 'OwnerId_Id' +// } +// return res +// } +// 单据入库组盘确认 +export const inStorageConfirm = (obj) => request({ + url:'api/pda/inStorage/confirm', + data: obj +})