Skip to content

Commit

Permalink
Merge pull request #43291 from frappe/mergify/copy/develop/pr-43213
Browse files Browse the repository at this point in the history
fix: Payment Ledger Report currency fieldtype fix (copy #43213)
  • Loading branch information
ruthra-kumar authored Sep 19, 2024
2 parents 729c3c6 + 67c6010 commit 444f085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/accounts/report/payment_ledger/payment_ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def get_columns(self):
)
)
self.columns.append(
dict(label=_("Currency"), fieldname="currency", fieldtype="Currency", hidden=True)
dict(label=_("Currency"), fieldname="currency", fieldtype="Link", options="Currency", hidden=True)
)

def run(self):
Expand Down

0 comments on commit 444f085

Please sign in to comment.