From e1d35a64da1a170a157fe9c6bced5471962240c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 5 Mar 2023 22:16:07 +0800 Subject: [PATCH] Revised the account shown in the journal. --- src/accounting/templates/accounting/report/journal.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounting/templates/accounting/report/journal.html b/src/accounting/templates/accounting/report/journal.html index a5e71a4..33e114f 100644 --- a/src/accounting/templates/accounting/report/journal.html +++ b/src/accounting/templates/accounting/report/journal.html @@ -107,7 +107,7 @@ First written: 2023/3/4 {{ item.transaction.date|accounting_format_date }} {{ item.currency.name }} - {{ item.account }} + {{ item.account.title|title }} {{ "" if item.summary is none else item.summary }} {{ "" if not item.is_debit else item.amount|accounting_format_amount }} {{ "" if item.is_debit else item.amount|accounting_format_amount }} @@ -123,7 +123,7 @@ First written: 2023/3/4
{{ item.transaction.date|accounting_format_date }} - {{ item.account.title }} + {{ item.account.title|title }} {% if item.currency_code != accounting_default_currency_code() %} {{ item.currency_code }} {% endif %}