diff --git a/erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html b/erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html index c1c611ee3a3..8a6968ee373 100644 --- a/erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html +++ b/erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html @@ -44,7 +44,7 @@ {% endfor %} Total (debit) - {{ gl | sum(attribute='debit') }} + {{ gl | sum(attribute='debit') | round(2) }} Credit @@ -61,7 +61,7 @@ {% endfor %} Total (credit) - {{ gl | sum(attribute='credit') }} + {{ gl | sum(attribute='credit') | round(2) }} Narration: {{ gl[0].remarks }}