mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 10:16:49 +00:00
Fix a transaction currency bug.
This commit is contained in:
@@ -57,11 +57,12 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="hide-balance_before" style="text-align: right;">{{ formatAmountByCurrency(transaction.currency, transaction.before) }}</td>
|
<td class="hide-balance_before" style="text-align: right;">
|
||||||
|
{{ formatAmountByCurrency(transaction.transactionCurrency, transaction.before) }}</td>
|
||||||
<td class="hide-amount" style="text-align: right;">
|
<td class="hide-amount" style="text-align: right;">
|
||||||
{{ transaction|transactionAmount }}
|
{{ transaction|transactionAmount }}
|
||||||
</td>
|
</td>
|
||||||
<td class="hide-balance_after" style="text-align: right;">{{ formatAmountByCurrency(transaction.currency, transaction.after) }}</td>
|
<td class="hide-balance_after" style="text-align: right;">{{ formatAmountByCurrency(transaction.transactionCurrency, transaction.after) }}</td>
|
||||||
|
|
||||||
<td class="hide-date">{{ transaction.date.formatLocalized(monthAndDayFormat) }}</td>
|
<td class="hide-date">{{ transaction.date.formatLocalized(monthAndDayFormat) }}</td>
|
||||||
<td class="hide-book_date">
|
<td class="hide-book_date">
|
||||||
|
Reference in New Issue
Block a user