diff --git a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue index f2651b67..e80cf976 100644 --- a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue +++ b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue @@ -13,7 +13,7 @@
{{ showingPreciseAmount ? 'Showing Precise Transaction' : 'Show Precise Transaction'}} - {{ showingPreciseAmount ? 'Download Precise Transaction' : 'Download Transaction'}} + {{ showingPreciseAmount ? 'Download Precise Transaction' : 'Download Transaction'}}
@@ -128,8 +128,8 @@ export default { this.key ++; }, - downloadTransaction(paramItem, paramShowingPreciseAmount) { - let url = this.route('company.transaction.export', paramItem.id, paramShowingPreciseAmount); + downloadTransaction(paramId, paramShowingPreciseAmount) { + let url = this.route('company.transaction.export', paramId, paramShowingPreciseAmount); if(window.LARAVEL_VAPOR_ENABLED){ return fetch(url, { method: 'GET',