From 3346f046ada8cd7b4c3933c227bd3af643b849a5 Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Mon, 23 Mar 2020 00:47:00 +1100 Subject: [PATCH] Don't hide postings less than 0.05 --- ledger_pyreport/jinja2/transactions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger_pyreport/jinja2/transactions.html b/ledger_pyreport/jinja2/transactions.html index 1fbcd54..4828896 100644 --- a/ledger_pyreport/jinja2/transactions.html +++ b/ledger_pyreport/jinja2/transactions.html @@ -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) %} {% if loop.first %}{{ transaction.date.strftime('%Y-%m-%d') }}{% endif %}