fix: add other charges in total

(cherry picked from commit 9406c07c42)
This commit is contained in:
SowmyaArunachalam
2026-01-14 12:49:30 +05:30
committed by Mergify
parent cce32507d9
commit 3ef4fa51dc

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,
}
)