Revert "fix: set proper currency format"

This reverts PR https://github.com/frappe/erpnext/pull/42458
This reverts commit 2533808f1e.

(cherry picked from commit 316470eee4)
This commit is contained in:
Devin Slauenwhite
2025-08-02 11:14:55 -04:00
committed by Mergify
parent b93cfc5d83
commit 03550066a7

View File

@@ -130,7 +130,6 @@ class PaymentLedger:
)
def get_columns(self):
company_currency = frappe.get_cached_value("Company", self.filters.get("company"), "default_currency")
options = None
self.columns.append(
dict(
@@ -195,7 +194,7 @@ class PaymentLedger:
label=_("Amount"),
fieldname="amount",
fieldtype="Currency",
options=company_currency,
options="Company:company:default_currency",
width="100",
)
)