load some conf data in boot
diff --git a/erpnext/startup/event_handlers.py b/erpnext/startup/event_handlers.py
index f7908c0..0c5eae1 100644
--- a/erpnext/startup/event_handlers.py
+++ b/erpnext/startup/event_handlers.py
@@ -85,8 +85,8 @@
# load subscription info
import conf
- if hasattr(conf, 'max_users'): bootinfo['max_users'] = conf.max_users
- if hasattr(conf, 'expires_on'): bootinfo['expires_on'] = conf.expires_on
+ for key in ['max_users', 'expires_on', 'max_space', 'status']:
+ if hasattr(conf, key): bootinfo[key] = getattr(conf, key)
company = webnotes.conn.sql("select name, default_currency from `tabCompany`", as_dict=1)
company_dict = {}
@@ -95,8 +95,6 @@
bootinfo['company'] = company_dict
-
-
def get_letter_heads():
"""load letter heads with startup"""
import webnotes