Skip to content

Commit

Permalink
Merge pull request #40109 from frappe/mergify/bp/version-15-hotfix/pr…
Browse files Browse the repository at this point in the history
…-40105

fix(minor): tax amount label according to party type (backport #40105)
  • Loading branch information
GursheenK authored Feb 26, 2024
2 parents 93f6439 + d541ba3 commit e68d2d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def get_columns(filters):
"width": 120,
},
{
"label": _("Tax Amount"),
"label": _("TDS Amount") if filters.get("party_type") == "Supplier" else _("TCS Amount"),
"fieldname": "tax_amount",
"fieldtype": "Float",
"width": 120,
Expand Down

0 comments on commit e68d2d1

Please sign in to comment.