diff --git a/frontend/src/components/DecayInformation.vue b/frontend/src/components/DecayInformation.vue
index 5a5e8306d..4bd5d31be 100644
--- a/frontend/src/components/DecayInformation.vue
+++ b/frontend/src/components/DecayInformation.vue
@@ -1,5 +1,42 @@
-
+
+
+
+ {{ decay ? ' ' + decay.balance + ' GDD' + ' ' + $t('decay') : '' }}
+
+
+
+
Berechnung der Vergänglichkeit
+
+
+ Seit deiner letzten Buchungstransaktion (
+
{{ $d($moment.unix(decay.decay_start), 'long') }} Uhr
+ ) sind
+
+
{{ getDuration(decay.decay_end, decay.decay_start) }}
+
+ {{ duration.years }} Jahre,
+ {{ duration.months }} Monate,
+ {{ duration.days }} Tage,
+ {{ duration.hours }} Stunden,
+ {{ duration.minutes }} Minuten,
+ {{ duration.minutes }} Sekunden
+
+ vergangen. Das entspricht einer
+
Vergänglichkeit
+ von
+
+
+
{{ decay ? decay.balance + ' GDD' : '' }}
+
+
+ Die Vergänglichkeit wird automatisch mit jeder Transaktion auf oder von deinem Konto
+ berechnet und von deinen Gradidos automatisch abgezogen.
+
+
{{ decay.decay_duration }}
+
+
+
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index 4d85269c5..3c8098346 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -19,6 +19,8 @@
"en": "English"
},
"decay": "Vergänglichkeit",
+ "resieve": "",
+
"form": {
"cancel": "Abbrechen",
"reset": "Zurücksetzen",
diff --git a/frontend/src/views/Layout/DashboardLayout_gdd.vue b/frontend/src/views/Layout/DashboardLayout_gdd.vue
index 517773892..9990b91f2 100755
--- a/frontend/src/views/Layout/DashboardLayout_gdd.vue
+++ b/frontend/src/views/Layout/DashboardLayout_gdd.vue
@@ -128,7 +128,6 @@ export default {
if (result.success) {
this.GdtBalance = Number(result.result.data.gdtSum)
this.transactions = result.result.data.transactions
- console.log('this.transactions => ', this.transactions[1].decay.decay_start)
this.balance = Number(result.result.data.decay)
this.bookedBalance = Number(result.result.data.balance)
this.transactionCount = result.result.data.count
diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue
index fdced417d..be0ccf87d 100644
--- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue
+++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue
@@ -18,16 +18,15 @@
{{ item.name ? item.name : $t('decay') }}
{{ $d($moment(item.date), 'long') }}
- {{ getTransaction(item.transaction_id) }} GDD
- {{ getTransaction(item.transaction_id).decay }} GDD
+
-
-
+
@@ -42,7 +41,7 @@
{{ $d($moment(item.date), 'long') }}
-
an:
+
{{ item.type === 'receive' ? 'von:' : 'an:' }}
{{ item.name }}
@@ -51,31 +50,9 @@
}}
{{ item.memo }}
-
- Seit deiner letzten Transaction sind
-
-
-
-
- {{
- getTransaction(item.transaction_id).decay
- ? getTransaction(item.transaction_id).decay.balance
- : 'missing'
- }}
-
- {{}} vergangen.
-
-
+
-
-
- {{ $t('transaction.more') }}
-
-
- {{ item }}
-