From 2cfdcc1af47d32173608bb1afa2c55610ebeb9b3 Mon Sep 17 00:00:00 2001 From: ljain112 Date: Tue, 10 Feb 2026 12:54:46 +0530 Subject: [PATCH] refactor: update labels for tax withholding reports columns to improve clarity --- .../tax_withholding_details.py | 18 +++++++++--------- .../tds_computation_summary.py | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py b/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py index e485dac114b..ed4a223311b 100644 --- a/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py +++ b/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py @@ -154,17 +154,11 @@ def get_columns(filters): "width": 60, }, { - "label": _("Total Amount"), + "label": _("Taxable Amount"), "fieldname": "total_amount", "fieldtype": "Currency", "width": 120, }, - { - "label": _("Base Total"), - "fieldname": "base_total", - "fieldtype": "Currency", - "width": 120, - }, { "label": _("Tax Amount"), "fieldname": "tax_amount", @@ -172,10 +166,16 @@ def get_columns(filters): "width": 120, }, { - "label": _("Grand Total"), + "label": _("Grand Total (Company Currency)"), + "fieldname": "base_total", + "fieldtype": "Currency", + "width": 150, + }, + { + "label": _("Grand Total (Transaction Currency)"), "fieldname": "grand_total", "fieldtype": "Currency", - "width": 120, + "width": 170, }, { "label": _("Reference Date"), diff --git a/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py b/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py index 49bf556da66..59296602b3d 100644 --- a/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py +++ b/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py @@ -106,7 +106,7 @@ def get_columns(filters): "width": 120, }, { - "label": _("Total Amount"), + "label": _("Total Taxable Amount"), "fieldname": "total_amount", "fieldtype": "Float", "width": 120,