Merge branch 'master' of github.com:webnotes/erpnext
This commit is contained in:
commit
563eb9c43b
@ -31,8 +31,10 @@ You will have to set your origin in git remote
|
||||
|
||||
## Forums
|
||||
|
||||
- [User / Functional](http://groups.google.com/group/erpnext-user-forum)
|
||||
- [Technical](http://groups.google.com/group/wnframework)
|
||||
Please join our forums for more questions:
|
||||
|
||||
- [Developer Forum](http://groups.google.com/group/erpnext-developer-forum)
|
||||
- [User Forum](http://groups.google.com/group/erpnext-user-forum)
|
||||
|
||||
## License
|
||||
|
||||
|
@ -85,8 +85,8 @@ def boot_session(bootinfo):
|
||||
|
||||
# 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 @@ def boot_session(bootinfo):
|
||||
|
||||
bootinfo['company'] = company_dict
|
||||
|
||||
|
||||
|
||||
def get_letter_heads():
|
||||
"""load letter heads with startup"""
|
||||
import webnotes
|
||||
|
Loading…
Reference in New Issue
Block a user