Don't hide postings less than 0.05
This commit is contained in:
parent
74313108ed
commit
3346f046ad
@ -61,7 +61,7 @@
|
||||
{% endif %}
|
||||
|
||||
{% for transaction in transactions %}
|
||||
{% for posting in transaction.postings if (posting.amount.amount >= 0.05 or posting.amount.amount < -0.05) and posting.account != account %}
|
||||
{% for posting in transaction.postings if posting.account != account %}
|
||||
{% set amount = posting.exchange(report_currency, transaction.date) %}
|
||||
<tr>
|
||||
<td>{% if loop.first %}{{ transaction.date.strftime('%Y-%m-%d') }}{% endif %}</td>
|
||||
|
Reference in New Issue
Block a user