diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index ddb10f0e5f..1b1116e55b 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -524,7 +524,7 @@ class BaseDocument(object): def cast(self, val, df): if df.fieldtype in ("Currency", "Float", "Percent"): - val = flt(val, self.precision(df.fieldname)) + val = flt(val) elif df.fieldtype in ("Int", "Check"): val = cint(val)