diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 6b66324554..65fb42066f 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -13,7 +13,7 @@ from frappe.model.document import Document class Company(Document): def onload(self): - self.get("__onload").transactions_exist = self.check_if_transactions_exist() + self.get("__onload")["transactions_exist"] = self.check_if_transactions_exist() def check_if_transactions_exist(self): exists = False