mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #2702
This commit is contained in:
parent
7431e18e4b
commit
b4af70421d
@ -304,6 +304,8 @@ class TagRepository implements TagRepositoryInterface
|
||||
TransactionType::WITHDRAWAL => '0',
|
||||
TransactionType::DEPOSIT => '0',
|
||||
TransactionType::TRANSFER => '0',
|
||||
TransactionType::RECONCILIATION => '0',
|
||||
TransactionType::OPENING_BALANCE => '0',
|
||||
];
|
||||
|
||||
/** @var array $journal */
|
||||
|
@ -105,6 +105,7 @@ return [
|
||||
'sum_withdrawals' => 'Sum of withdrawals',
|
||||
'sum_deposits' => 'Sum of deposits',
|
||||
'sum_transfers' => 'Sum of transfers',
|
||||
'sum_reconciliations' => 'Sum of reconciliations',
|
||||
'reconcile' => 'Reconcile',
|
||||
'account_on_spectre' => 'Account (Spectre)',
|
||||
'account_on_ynab' => 'Account (YNAB)',
|
||||
|
@ -60,10 +60,18 @@
|
||||
<td>{{ trans('list.sum_deposits') }}</td>
|
||||
<td> {{ sums.Deposit|formatAmount }}</td>
|
||||
</tr>
|
||||
{% if sums.Transfer != 0 %}
|
||||
<tr>
|
||||
<td>{{ trans('list.sum_transfers') }}</td>
|
||||
<td> {{ sums.Transfer|formatAmount }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
{% if sums.Reconciliation != 0 %}
|
||||
<tr>
|
||||
<td>{{ trans('list.sum_reconciliations') }}</td>
|
||||
<td> {{ sums.Reconciliation|formatAmount }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
@ -81,8 +89,6 @@
|
||||
<div class="box">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">{{ 'location'|_ }}</h3>
|
||||
|
||||
|
||||
<div class="box-tools pull-right">
|
||||
<div class="btn-group">
|
||||
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-ellipsis-v"></i></button>
|
||||
@ -132,7 +138,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
{% include 'list/groups' %}
|
||||
{% include 'list.groups' with {showBudget:true, showCategory: true} %}
|
||||
|
||||
{% if periods|length > 0 %}
|
||||
<p>
|
||||
|
Loading…
Reference in New Issue
Block a user