chore: fix typo

This commit is contained in:
Gursheen Anand
2023-07-14 16:25:58 +05:30
parent 0d89bfacdb
commit b8a83f57b7

View File

@@ -127,7 +127,7 @@ def _execute(filters=None, additional_table_columns=None):
row.update( row.update(
{ {
"total_tax": total_tax, "total_tax": total_tax,
"garnd_total": inv.base_grand_total, "grand_total": inv.base_grand_total,
"rounded_total": inv.base_rounded_total, "rounded_total": inv.base_rounded_total,
"outstanding_amount": inv.outstanding_amount, "outstanding_amount": inv.outstanding_amount,
} }
@@ -193,6 +193,7 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
if not include_payments: if not include_payments:
columns += [ columns += [
_("Grand Total") + ":Currency/currency:120",
_("Rounded Total") + ":Currency/currency:120", _("Rounded Total") + ":Currency/currency:120",
_("Outstanding Amount") + ":Currency/currency:120", _("Outstanding Amount") + ":Currency/currency:120",
] ]