commit | 3658c4754f610d17d7dc1b7f7cbe894a91167a7f | [log] [tgz] |
---|---|---|
author | Gursheen Kaur Anand <40693548+GursheenK@users.noreply.github.com> | Mon Feb 26 10:33:32 2024 +0530 |
committer | GitHub <noreply@github.com> | Mon Feb 26 10:33:32 2024 +0530 |
tree | 1b9446792a26ca19f6d5c2b973247282279e5cd6 | |
parent | 75f8464724382ac703a16ee3fd73de2c9bb56d13 [diff] | |
parent | 9c8d103d8af85e52095071d43d8b8a03bdbf3255 [diff] |
Merge pull request #40105 from GursheenK/tax-amount-label fix(minor): tax amount label according to party type
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 0e3acd7..b18570b 100644 --- a/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py +++ b/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py
@@ -242,7 +242,7 @@ "width": 120, }, { - "label": _("Tax Amount"), + "label": _("TDS Amount") if filters.get("party_type") == "Supplier" else _("TCS Amount"), "fieldname": "tax_amount", "fieldtype": "Float", "width": 120,