diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js index 068cdaa8..8059f585 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js @@ -45,7 +45,7 @@ $.fancybox.defaults.iframe.css.width = '800px'; // Define date filter for vue templates Vue.filter('date', (value) => { - return dayjs(value).format('DD.MM.YYYY'); + return dayjs(value).format('DD.MM.YY'); }); // Store diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Events.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Events.vue index 2c5c20fc..3f1f8c94 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Events.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/Events.vue @@ -7,7 +7,8 @@ Buchungsdatum Reisedatum - Reise + Reise + Vorgang Preis offen Status @@ -19,14 +20,15 @@ {{ formatBookingDate(event.dateBooking) }} {{ event.dateTravel | date }} {{ event.product }} + {{ event.bookingNumber }} {{ formatCurrency(event.price) }} {{ calculateBalance(event) }} {{ status[event.status] }} - + Bestätigung - + Reiseinfos @@ -80,7 +82,7 @@ import {mapState, mapMutations, mapGetters} from 'vuex' if (!date) { return '-' } - return dayjs(date).format('DD.MM.YYYY') + return dayjs(date).format('DD.MM.YY') }, getDownloadUrl (event, type) { return this.config.myEpApiBaseUrl