From 05d682abb6d0ca242f7980f04b8227fb89455719 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Mon, 3 Jul 2023 20:28:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8A=E6=88=90=E5=93=81=E7=9B=98=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/getData2.js | 19 ++ .../semi-finished-check-search.vue | 204 +++++++++++++----- .../semifinished/semi-finished-check.vue | 83 ++++--- .../semifinished/semi-finished-outstore.vue | 96 +++------ src/style/layout.styl | 7 + 5 files changed, 264 insertions(+), 145 deletions(-) diff --git a/src/config/getData2.js b/src/config/getData2.js index 5733370..00b5fc9 100644 --- a/src/config/getData2.js +++ b/src/config/getData2.js @@ -253,3 +253,22 @@ export const checkConfirmOffer = (row) => post('api/pda/bcp/check/confirmOffer', export const checkConfirmFinance = (row) => post('api/pda/bcp/check/confirmFinance', { row: row }) + +/** + * 半成品拼盘 + */ +// 1.1仓库下拉框 +export const bcpShutGetBcpStor = () => post('api/pda/bcp/shut/getBcpStor', {}) +// 1.2单据类型下拉框 +export const bcpShutGetBillType = () => post('api/pda/bcp/shut/getBillType', {}) +// 1.3半成品拼盘页面 +export const bcpShutGetdtl = (id, btime, etime, code, scode, stcode) => post('api/pda/bcp/shut/getdtl', { + stor_id: id, + begin_time: btime, + end_time: etime, + material_code: code, + bill_type: scode, + storagevehicle_id_in: stcode +}) +// 1.4拼盘完成(按钮) +export const bcpShutConfirm = () => post('api/pda/bcp/shut/confirm', {}) diff --git a/src/pages/modules/semifinished/semi-finished-check-search.vue b/src/pages/modules/semifinished/semi-finished-check-search.vue index 5f0769a..c7282dc 100644 --- a/src/pages/modules/semifinished/semi-finished-check-search.vue +++ b/src/pages/modules/semifinished/semi-finished-check-search.vue @@ -6,11 +6,11 @@
仓库
- + :key="item.stor_id" + :label="item.stor_name" + :value="item.stor_id">
@@ -27,56 +27,43 @@ -
-
业务类型
-
- - - - -
-
物料
- +
载具号
- +
货位号
- +
盘点位
- + + v-for="item in options2" + :key="item.point_code" + :label="item.point_name" + :value="item.point_code">
-
- - - - - +
+ + + + +
@@ -95,7 +82,6 @@ 重量(kg) 盘点重量(kg) 盘点数量 - 单重(g) 是否异常 盘点状态 盘点站台 @@ -107,25 +93,29 @@ - - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 - 序号 + + {{ i + 1 }} + {{e.struct_name}} + {{e.storagevehicle_code}} + {{e.material_code}} + {{e.material_spec}} + {{e.qty | numeric(3)}} + {{e.base_qty | numeric(3)}} + + {{ ['正常', '盘亏', '盘盈'][Number(e.check_resultI)] }} + 生成 + 盘点中 + 已盘点 + 异常处理中 + 异常处理完成 + 确认完成 + {{ e.checkpoint_id }} + {{ e.is_down }} + {{e.check_code}} + 计划盘点 + 临时盘点 + {{ e.create_name }} + {{ e.create_time }} @@ -136,16 +126,122 @@