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 @@