From d9fa098ae5a654bab5ff201fb85755a08c27ee43 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 22 Nov 2017 18:03:32 +0100 Subject: [PATCH] Fix view things. [skip ci] --- resources/views/accounts/reconcile/overview.twig | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 @@ - + - + - + - + @@ -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 %}
{{ '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) }}