50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
|
# ERPNext: Copyright 2013 Web Notes Technologies Pvt Ltd
|
||
|
# GNU General Public License. See "license.txt"
|
||
|
|
||
|
|
||
|
from __future__ import unicode_literals
|
||
|
import webnotes
|
||
|
import home
|
||
|
|
||
|
def boot_session(bootinfo):
|
||
|
"""boot session - send website info if guest"""
|
||
|
import webnotes
|
||
|
import webnotes.model.doc
|
||
|
|
||
|
bootinfo['custom_css'] = webnotes.conn.get_value('Style Settings', None, 'custom_css') or ''
|
||
|
bootinfo['website_settings'] = webnotes.model.doc.getsingle('Website Settings')
|
||
|
|
||
|
if webnotes.session['user']=='Guest':
|
||
|
bootinfo['website_menus'] = webnotes.conn.sql("""select label, url, custom_page,
|
||
|
parent_label, parentfield
|
||
|
from `tabTop Bar Item` where parent='Website Settings' order by idx asc""", as_dict=1)
|
||
|
bootinfo['startup_code'] = \
|
||
|
webnotes.conn.get_value('Website Settings', None, 'startup_code')
|
||
|
else:
|
||
|
bootinfo['letter_heads'] = get_letter_heads()
|
||
|
|
||
|
import webnotes.model.doctype
|
||
|
bootinfo['notification_settings'] = webnotes.doc("Notification Control",
|
||
|
"Notification Control").get_values()
|
||
|
|
||
|
bootinfo['modules_list'] = webnotes.conn.get_global('modules_list')
|
||
|
|
||
|
# if no company, show a dialog box to create a new company
|
||
|
bootinfo['setup_complete'] = webnotes.conn.sql("""select name from
|
||
|
tabCompany limit 1""") and 'Yes' or 'No'
|
||
|
|
||
|
# load subscription info
|
||
|
import conf
|
||
|
for key in ['max_users', 'expires_on', 'max_space', 'status', 'developer_mode']:
|
||
|
if hasattr(conf, key): bootinfo[key] = getattr(conf, key)
|
||
|
|
||
|
bootinfo['docs'] += webnotes.conn.sql("select name, default_currency from `tabCompany`",
|
||
|
as_dict=1, update={"doctype":":Company"})
|
||
|
|
||
|
def get_letter_heads():
|
||
|
"""load letter heads with startup"""
|
||
|
import webnotes
|
||
|
ret = webnotes.conn.sql("""select name, content from `tabLetter Head`
|
||
|
where ifnull(disabled,0)=0""")
|
||
|
return dict(ret)
|
||
|
|