From a8ddf6180b8a8e91f63f9bc5216e7c6a3eae576a Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 21 Sep 2020 14:02:34 +0800 Subject: [PATCH] fixed switched total validation from amount to bank in amount --- resources/assets/js/components/NewInvoice.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/components/NewInvoice.vue b/resources/assets/js/components/NewInvoice.vue index 36e25ef3..99a86a70 100644 --- a/resources/assets/js/components/NewInvoice.vue +++ b/resources/assets/js/components/NewInvoice.vue @@ -594,13 +594,14 @@ export default { tax, service_charge, amount, + bia, rate } = this.booking_details this.form.formData.marking = marking this.tax = tax this.service_charge = service_charge - this.amount = amount + this.amount = bia this.rate = rate } },