This commit is contained in:
James Cole
2017-09-25 06:14:37 +02:00
parent 4ec830a2e3
commit 1a81cd45f2
3 changed files with 9 additions and 1 deletions

View File

@@ -81,7 +81,13 @@
<tfoot>
<tr>
<td colspan="2" style="text-align: right;"><em>{{ 'sum'|_ }}:</em></td>
<td>{{ sum|formatAmount }}</td>
<td>
{% if inverseAmount %}
{{ (sum*-1)|formatAmount }}
{% else %}
{{ sum|formatAmount }}
{% endif %}
</td>
</tr>
</tfoot>
</table>

View File

@@ -8,6 +8,7 @@
</div>
<div class="modal-body">
{% set hideDestination = true %}
{% set inverseAmount = true %}
{% include 'popup/list/journals' %}
</div>
<div class="modal-footer">

View File

@@ -10,6 +10,7 @@
{% set hideBudget = true %}
{% set hideSource = true %}
{% set accountPerspective = account %}
{% set inverseAmount = true %}
{% include 'popup/list/journals' %}
</div>
<div class="modal-footer">