mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Refer to correct field name.
This commit is contained in:
		| @@ -69,11 +69,11 @@ | ||||
|                                             {% for rtt in rt.transactions %} | ||||
|                                                 <li> | ||||
|                                                     {# normal amount + comma#} | ||||
|                                                     {{ formatAmountBySymbol(rtt['amount'],rtt['currency_symbol'],rtt['currency_dp']) }}{% if rtt['foreign_amount'] == null %},{% endif %} | ||||
|                                                     {{ formatAmountBySymbol(rtt['amount'],rtt['currency_symbol'],rtt['currency_decimal_places']) }}{% if rtt['foreign_amount'] == null %},{% endif %} | ||||
|  | ||||
|                                                     {# foreign amount + comma #} | ||||
|                                                     {% if null != rtt['foreign_amount'] %} | ||||
|                                                         ({{ formatAmountBySymbol(rtt['foreign_amount'],rtt['foreign_currency_symbol'],rtt['foreign_currency_dp']) }}), | ||||
|                                                         ({{ formatAmountBySymbol(rtt['foreign_amount'],rtt['foreign_currency_symbol'],rtt['foreign_currency_decimal_places']) }}), | ||||
|                                                     {% endif %} | ||||
|                                                     <a href="{{ route('accounts.show', rtt['source_id']) }}">{{ rtt['source_name'] }}</a> | ||||
|                                                     → | ||||
|   | ||||
| @@ -112,9 +112,9 @@ | ||||
|                                     <a href="{{ route('accounts.show', [transaction.destination_id]) }}">{{ transaction.destination_name }}</a> | ||||
|                                 </td> | ||||
|                                 <td> | ||||
|                                     {{ formatAmountBySymbol(transaction.amount,transaction.currency_symbol,transaction.currency_dp) }} | ||||
|                                     {{ formatAmountBySymbol(transaction.amount,transaction.currency_symbol,transaction.currency_decimal_places) }} | ||||
|                                     {% if null != transaction.foreign_amount %} | ||||
|                                         ({{ formatAmountBySymbol(transaction.foreign_amount,transaction.foreign_currency_symbol,transaction.foreign_currency_dp) }}) | ||||
|                                         ({{ formatAmountBySymbol(transaction.foreign_amount,transaction.foreign_currency_symbol,transaction.foreign_currency_decimal_places) }}) | ||||
|                                     {% endif %} | ||||
|                                 </td> | ||||
|                                 <td data-value="{% for meta in transaction.meta %}{% if meta.name == 'category_name' %}{{ meta.category_id }}{% endif %}{% endfor %}"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user