mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Add running balance column.
This commit is contained in:
		| @@ -33,6 +33,9 @@ | ||||
|         <th class="hidden-xs"> </th> | ||||
|         <th>{{ trans('list.description') }}</th> | ||||
|         <th>{{ trans('list.amount') }}</th> | ||||
|         {% if config('firefly.feature_flags.running_balance_column') %} | ||||
|         <th>{{ trans('list.running_balance') }}</th> | ||||
|         {% endif %} | ||||
|         <th>{{ trans('list.date') }}</th> | ||||
|         <th>{{ trans('list.source_account') }}</th> | ||||
|         <th>{{ trans('list.destination_account') }}</th> | ||||
| @@ -250,6 +253,13 @@ | ||||
|                         {% endif %} | ||||
|                     {% endif %} | ||||
|                 </td> | ||||
|                 {% if config('firefly.feature_flags.running_balance_column') %} | ||||
|                 <td> | ||||
|                     {% if null == transaction.balance_dirty or false == transaction.balance_dirty %} | ||||
|                     {{ formatAmountBySymbol(transaction.balance_after, transaction.currency_symbol, transaction.currency_decimal_places) }} | ||||
|                     {% endif %} | ||||
|                 </td> | ||||
|                 {% endif %} | ||||
|                 <td style=" {{ style|raw }}"> | ||||
|                     {{ transaction.date.isoFormat(monthAndDayFormat) }} | ||||
|                 </td> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user