From ea6d1b7afdf3f855794feb14b02d5859505791be Mon Sep 17 00:00:00 2001 From: omair saleh Date: Sun, 19 Dec 2021 20:55:20 +0800 Subject: [PATCH] fix purchase order input bug --- .../bookings/forms/EditBookingAmountFormComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/vue/components/bookings/forms/EditBookingAmountFormComponent.vue b/resources/assets/vue/components/bookings/forms/EditBookingAmountFormComponent.vue index bc3bd591..20e2d27b 100644 --- a/resources/assets/vue/components/bookings/forms/EditBookingAmountFormComponent.vue +++ b/resources/assets/vue/components/bookings/forms/EditBookingAmountFormComponent.vue @@ -55,7 +55,7 @@ }, methods: { submitForm(){ - this.parameters = {fix_amount : parseFloat((this.parameters.fix_amount).toString().replace(',', ''))} + this.parameters = {fix_amount : parseFloat((this.fix_amount).toString().replace(',', ''))} this.submit(this.route('api.booking.booking_amount.update', this.data.id), 'put', this.section, true, true) }, successHandler(){