From 37e98768ed15d73f92b06c979ab43fad48a85673 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Mon, 15 Jul 2024 17:59:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E9=94=AE=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/style/layout.css | 5 +++ pages/management/alloc-maintenance.vue | 8 ++--- pages/management/in-storage.vue | 2 ++ pages/management/receive-confirm.vue | 44 ++++++++++++++++++++++---- 4 files changed, 49 insertions(+), 10 deletions(-) diff --git a/common/style/layout.css b/common/style/layout.css index da0cfd2..2196518 100644 --- a/common/style/layout.css +++ b/common/style/layout.css @@ -551,6 +551,11 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] { border: 1px solid #21D0F2; border-radius: 12px } +.pop_label { + font-size: 14px; + line-height: 14px; + color: #fff; +} /** 日历 */ .uni-calendar__header { height: 40px !important; diff --git a/pages/management/alloc-maintenance.vue b/pages/management/alloc-maintenance.vue index 3c6d3cc..143352b 100644 --- a/pages/management/alloc-maintenance.vue +++ b/pages/management/alloc-maintenance.vue @@ -6,10 +6,10 @@ - + - + @@ -22,8 +22,8 @@ 序号 单据编号 业务日期 - 调入组织 调出组织 + 调入组织 调入仓库 调出仓库 状态 @@ -36,8 +36,8 @@ {{i+1}} {{e.djbh}} {{e.ywrq}} - {{e.drkcmc}} {{e.dckcmc}} + {{e.drkcmc}} {{e.drckmc}} {{e.dcckmc}} {{e.djzt}} diff --git a/pages/management/in-storage.vue b/pages/management/in-storage.vue index f8c88c9..4c38935 100644 --- a/pages/management/in-storage.vue +++ b/pages/management/in-storage.vue @@ -68,6 +68,7 @@ 单位 库位 数量 + 总数 {{crType === 'IN'? '已入数量':'已出数量'}} 剩余数量 库存 @@ -91,6 +92,7 @@ {{el.jldw}} {{el.kwbm}} {{el.sl}} + {{el.wlzs}} {{el.czsl}} {{el.sysl}} {{el.kcsl}} diff --git a/pages/management/receive-confirm.vue b/pages/management/receive-confirm.vue index 1e02b24..2ea456e 100644 --- a/pages/management/receive-confirm.vue +++ b/pages/management/receive-confirm.vue @@ -52,6 +52,7 @@ + @@ -70,9 +71,11 @@ 物料名称 单位 订单量 + 总数 本次送货数量 收货组织 件数 + 是否质检 收货数量 收货仓库编码 收货仓库名称 @@ -93,11 +96,13 @@ {{el.wlmc}} {{el.jldw}} {{el.ddsl}} + {{el.wlzs}} {{el.bcshsl}} {{el.zzmc}} {{el.num}} + {{['否', '是'][Number(el.sfzj)]}} - + {{el.ckbm}} @@ -120,9 +125,11 @@ {{el.wlmc}} {{el.jldw}} {{el.ddsl}} + {{el.wlzs}} {{el.bcshsl}} {{el.zzmc}} {{el.num}} + {{['否', '是'][Number(el.sfzj)]}} {{el.shsl}} {{el.ckbm}} {{el.ckmc}} @@ -143,12 +150,26 @@ - 修改{{modalObj.title}} - - + {{modalObj.title}} + + + + + 收货仓库 + + + + + + 收货库位 + + + + + @@ -205,7 +226,8 @@ disabled: false, value1: '', range1: [], - val2: '' + val2: '', + val3: '' }; }, onLoad () { @@ -353,9 +375,12 @@ }, // 修改调出仓库弹窗 checkWarehouse (type, title, e) { - this.modalObj = {type: type, title: title, id: e.flid} + if (type === 1) { + this.modalObj = {type: type, title: title, id: e.flid} this.value = e.ckbm + } else if (type === 2) { + this.modalObj = {type: type, title: title} } this.show = true }, @@ -376,6 +401,13 @@ obj = e } }) + } else if (this.modalObj.type === 2) { + this.dataList2.map(e => { + e.ckbm = this.value + e.ckmc = mc + e.kwmc = this.val3 + obj = e + }) } this.show = false this._receiptBillUpdate(obj)