Skip to content

Commit

Permalink
Merge pull request #40105 from GursheenK/tax-amount-label
Browse files Browse the repository at this point in the history
fix(minor): tax amount label according to party type
  • Loading branch information
GursheenK authored Feb 26, 2024
2 parents 75f8464 + 9c8d103 commit 3658c47
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 3658c47

Please sign in to comment.