Skip to content

Commit

Permalink
Merge pull request #43213 from sameer55chauhan/patch-4
Browse files Browse the repository at this point in the history
fix: Payment Ledger Report currency fieldtype fix
  • Loading branch information
ruthra-kumar authored Sep 19, 2024
2 parents 953b579 + ad2d6a1 commit 34d159b
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 @@ -210,7 +210,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 34d159b

Please sign in to comment.