From 5746e2a3d663ff4fe8cdf334275a2888ce0add33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Tue, 28 Feb 2023 15:52:30 +0800 Subject: [PATCH] Added a missing amount filter to the debit entries of the transaction form. --- .../transaction/transfer/include/form-currency-item.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounting/templates/accounting/transaction/transfer/include/form-currency-item.html b/src/accounting/templates/accounting/transaction/transfer/include/form-currency-item.html index 3ccd592..78dc00f 100644 --- a/src/accounting/templates/accounting/transaction/transfer/include/form-currency-item.html +++ b/src/accounting/templates/accounting/transaction/transfer/include/form-currency-item.html @@ -57,7 +57,7 @@ First written: 2023/2/25 account_text = entry_form.account_text, summary_data = "" if entry_form.summary.data is none else entry_form.summary.data, summary_errors = entry_form.summary.errors, - amount_data = "" if entry_form.amount.data is none else entry_form.amount.data, + amount_data = "" if entry_form.amount.data is none else entry_form.amount.data|accounting_txn_format_amount_input, amount_errors = entry_form.amount.errors, amount_text = entry_form.amount.data|accounting_txn_format_amount, entry_errors = entry_form.all_errors %}