Merge pull request #52605 from frappe/mergify/bp/version-16-hotfix/pr-52593

refactor: update labels for tax withholding reports columns to improve clarity (backport #52593)
This commit is contained in:
ruthra kumar
2026-02-10 18:30:52 +05:30
committed by GitHub
2 changed files with 10 additions and 10 deletions

View File

@@ -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"),

View File

@@ -106,7 +106,7 @@ def get_columns(filters):
"width": 120,
},
{
"label": _("Total Amount"),
"label": _("Total Taxable Amount"),
"fieldname": "total_amount",
"fieldtype": "Float",
"width": 120,