From 13ac14b4a998172b99c1e783e45a02b0efab83bd Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 30 Nov 2021 09:19:08 +0100 Subject: [PATCH] Confirm transaction, preview invoice inserted --- .../GddSend/TransactionConfirmation.vue | 34 +++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue b/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue index b6025e8a7..5886c69c5 100644 --- a/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue +++ b/frontend/src/views/Pages/SendOverview/GddSend/TransactionConfirmation.vue @@ -32,8 +32,33 @@ - {{transactions}} - {{$n(balance, 'decimal')}}, {{ $n(decay, 'decimal') }}, {{ $n(amount, 'decimal') }} + + + + + aktueller Kontostand + {{$n(balance, 'decimal')}} + + + + Dein Betrag + - {{$n(amount, 'decimal')}} + + + + + Vergänglichkeit + - {{$n(decay, 'decimal')}} + + + + + + neuer Kontostand + ~ {{$n(balance - amount - decay, 'decimal')}} + + + {{ $t('form.cancel') }} @@ -59,6 +84,11 @@ export default { default: () => [], }, }, + data() { + return { + decay: this.transactions[0].balance, + } + }, }