mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-10 22:06:52 +00:00
Revert "fix: set proper currency format"
This reverts PR https://github.com/frappe/erpnext/pull/42458 This reverts commit2533808f1e. (cherry picked from commit316470eee4)
This commit is contained in:
committed by
Mergify
parent
b93cfc5d83
commit
03550066a7
@@ -130,7 +130,6 @@ class PaymentLedger:
|
|||||||
)
|
)
|
||||||
|
|
||||||
def get_columns(self):
|
def get_columns(self):
|
||||||
company_currency = frappe.get_cached_value("Company", self.filters.get("company"), "default_currency")
|
|
||||||
options = None
|
options = None
|
||||||
self.columns.append(
|
self.columns.append(
|
||||||
dict(
|
dict(
|
||||||
@@ -195,7 +194,7 @@ class PaymentLedger:
|
|||||||
label=_("Amount"),
|
label=_("Amount"),
|
||||||
fieldname="amount",
|
fieldname="amount",
|
||||||
fieldtype="Currency",
|
fieldtype="Currency",
|
||||||
options=company_currency,
|
options="Company:company:default_currency",
|
||||||
width="100",
|
width="100",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user