From bb84c2650647c8c5f4237b2c95dbda5d2a94d6da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E7=8E=B2?= <8702040+cai-ling@user.noreply.gitee.com> Date: Tue, 26 Nov 2024 17:21:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E6=8D=AE=E5=85=A5=E5=BA=93=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/entry/group-to-store.vue | 140 ++++++++++++++++++++------------- utils/getData2.js | 26 +++++- 2 files changed, 109 insertions(+), 57 deletions(-) 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 +})