Merge pull request #51742 from aerele/item-wise-sales-register

fix: add other charges in total
This commit is contained in:
ruthra kumar
2026-01-19 11:13:51 +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_tax": total_tax,
"total_other_charges": total_other_charges, "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, "currency": company_currency,
} }
) )