From fbff76f178e73331a176f61b4834a58f8a773be4 Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Wed, 9 Nov 2022 15:18:34 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E5=88=B0?= =?UTF-8?q?=E8=B4=A6=E5=BC=80=E7=A5=A8=E6=89=B9=E9=87=8F=E5=BC=80=E7=A5=A8?= =?UTF-8?q?=20=20=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/ArriveModule.vue | 2 +- .../modules/ConfirmModule.vue | 2 +- .../modules/InvoicingModule.vue | 2 +- .../modules/BatchInvoicingModule.vue | 146 ++++++++++++------ 4 files changed, 102 insertions(+), 50 deletions(-) diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveModule.vue index a195ad4..f680842 100644 --- a/src/views/financialManagement/arriveAndInvoicing/modules/ArriveModule.vue +++ b/src/views/financialManagement/arriveAndInvoicing/modules/ArriveModule.vue @@ -148,7 +148,7 @@ export default { if(!amount) return let obj = this.calcOtherNumber(amount) this.$nextTick(() => { - this.form.setFieldsValue( {tax:obj.noTaxAmount,noTaxAmount: obj.tax}) + this.form.setFieldsValue( {tax:obj.tax,noTaxAmount: obj.noTaxAmount}) }) }, edit(record) { diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/ConfirmModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/ConfirmModule.vue index abe43c7..6dbe22e 100644 --- a/src/views/financialManagement/arriveAndInvoicing/modules/ConfirmModule.vue +++ b/src/views/financialManagement/arriveAndInvoicing/modules/ConfirmModule.vue @@ -137,7 +137,7 @@ export default { if(!amount) return let obj = this.calcOtherNumber(amount) this.$nextTick(() => { - this.form.setFieldsValue( {tax:obj.noTaxAmount,noTaxAmount: obj.tax}) + this.form.setFieldsValue( {tax:obj.tax,noTaxAmount: obj.noTaxAmount}) }) }, add(projectInfo, isFirst) { diff --git a/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue b/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue index b94125c..41027cc 100644 --- a/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue +++ b/src/views/financialManagement/arriveAndInvoicing/modules/InvoicingModule.vue @@ -166,7 +166,7 @@ export default { if(!amount) return let obj = this.calcOtherNumber(amount) this.$nextTick(() => { - this.form.setFieldsValue( {tax:obj.noTaxAmount,noTaxAmount: obj.tax}) + this.form.setFieldsValue( {tax:obj.tax,noTaxAmount: obj.noTaxAmount}) }) }, add() { diff --git a/src/views/packManagement/modules/BatchInvoicingModule.vue b/src/views/packManagement/modules/BatchInvoicingModule.vue index 8df21c2..9c1b298 100644 --- a/src/views/packManagement/modules/BatchInvoicingModule.vue +++ b/src/views/packManagement/modules/BatchInvoicingModule.vue @@ -1,13 +1,13 @@ + + + @@ -99,16 +104,16 @@