Merge pull request #51834 from frappe/mergify/bp/version-16-hotfix/pr-51742

fix: add other charges in total (backport #51742)
This commit is contained in:
ruthra kumar
2026-01-19 11:34:22 +05:30
committed by GitHub

View File

@@ -105,7 +105,7 @@ def _execute(filters=None, additional_table_columns=None, additional_conditions=
{
"total_tax": total_tax,
"total_other_charges": total_other_charges,
"total": d.base_net_amount + total_tax,
"total": d.base_net_amount + total_tax + total_other_charges,
"currency": company_currency,
}
)