diff --git a/resources/views/accounts/reconcile/overview.twig b/resources/views/accounts/reconcile/overview.twig index b7beb0cd72..b8b33e0cb0 100644 --- a/resources/views/accounts/reconcile/overview.twig +++ b/resources/views/accounts/reconcile/overview.twig @@ -21,25 +21,25 @@
{{ 'submitted_start_balance'|_ }} (date) | -{{ startBalance|formatAmount }} | +{{ formatAmountByAccount(account, startBalance) }} |
{{ trans('firefly.selected_transactions', {count: transactionIds|length}) }} | -{{ amount|formatAmount }} | +{{ formatAmountByAccount(account, amount) }} |
{{ trans('firefly.already_cleared_transactions', {count: clearedIds|length}) }} | -{{ clearedAmount|formatAmount }} | +{{ formatAmountByAccount(account, clearedAmount) }} |
{{ 'submitted_end_balance'|_ }} (date) | -{{ endBalance|formatAmount }} | +{{ formatAmountByAccount(account, endBalance)}} |
{{ 'difference'|_ }} | - {{ difference|formatAmount }} + {{ formatAmountByAccount(account, difference) }} | @@ -67,10 +67,10 @@ {% if diffCompare > 0 %} - {{ trans('firefly.create_neg_reconcile_transaction', {amount: (difference*-1)|formatAmount})|raw }} + {{ trans('firefly.create_neg_reconcile_transaction', {amount: formatAmountByAccount(account, (difference*-1))})|raw }} {% endif %} {% if diffCompare < 0 %} - {{ trans('firefly.create_pos_reconcile_transaction', {amount: (difference*-1)|formatAmount})|raw }} + {{ trans('firefly.create_pos_reconcile_transaction', {amount: formatAmountByAccount(account, (difference*-1))})|raw }} {% endif %}