From 172e326a35d1a25856dfdcd69de699a80e3ec76c Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 22 Jun 2024 13:06:31 +0800 Subject: [PATCH] Fix a problem in merge conflict done wrong --- .../elements/CustomerTransactionHistorySectionComponent.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue index 98446217..d1b121f0 100644 --- a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue +++ b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue @@ -13,7 +13,7 @@
@@ -128,8 +128,8 @@ export default { this.key ++; }, - downloadTransaction(paramItem) { - let url = this.route('company.transaction.export', this.id, showingPreciseAmount); + downloadTransaction(paramItem, showingPreciseAmount) { + let url = this.route('company.transaction.export', paramItem.id, showingPreciseAmount); if(window.LARAVEL_VAPOR_ENABLED){ return fetch(url, { method: 'GET',