From 9406c07c420943f5f7b9d399c282114bf967bd4a 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 --- .../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 fa99ff8e42c..db73972bfb8 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, } )