From 3ef4fa51dcdede9d0dce0444a76106b18e971b52 Mon Sep 17 00:00:00 2001 From: SowmyaArunachalam Date: Wed, 14 Jan 2026 12:49:30 +0530 Subject: [PATCH] fix: add other charges in total (cherry picked from commit 9406c07c420943f5f7b9d399c282114bf967bd4a) --- .../report/item_wise_sales_register/item_wise_sales_register.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py index d326541631a..78aa90ab947 100644 --- a/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py +++ b/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py @@ -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, } )