brotherton-erpnext/erpnext/startup/boot.py

55 lines
1.9 KiB
Python
Raw Normal View History

2013-11-20 07:29:58 +00:00
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt"
from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
import frappe
def boot_session(bootinfo):
"""boot session - send website info if guest"""
2014-02-14 10:17:51 +00:00
import frappe
import frappe.model.doc
2014-02-14 10:17:51 +00:00
bootinfo['custom_css'] = frappe.conn.get_value('Style Settings', None, 'custom_css') or ''
bootinfo['website_settings'] = frappe.model.doc.getsingle('Website Settings')
2014-02-14 10:17:51 +00:00
if frappe.session['user']!='Guest':
bootinfo['letter_heads'] = get_letter_heads()
load_country_and_currency(bootinfo)
2014-02-14 10:17:51 +00:00
import frappe.model.doctype
bootinfo['notification_settings'] = frappe.doc("Notification Control",
"Notification Control").get_values()
# if no company, show a dialog box to create a new company
2014-02-14 10:17:51 +00:00
bootinfo["customer_count"] = frappe.conn.sql("""select count(*) from tabCustomer""")[0][0]
2013-06-26 11:50:12 +00:00
if not bootinfo["customer_count"]:
2014-02-14 10:17:51 +00:00
bootinfo['setup_complete'] = frappe.conn.sql("""select name from
2013-06-26 11:50:12 +00:00
tabCompany limit 1""") and 'Yes' or 'No'
# load subscription info
2014-02-14 10:17:51 +00:00
from frappe import conf
2013-09-06 07:12:54 +00:00
for key in ['max_users', 'expires_on', 'max_space', 'status', 'commercial_support']:
2013-09-24 11:47:39 +00:00
if key in conf: bootinfo[key] = conf.get(key)
2014-02-14 10:17:51 +00:00
bootinfo['docs'] += frappe.conn.sql("""select name, default_currency, cost_center
from `tabCompany`""", as_dict=1, update={"doctype":":Company"})
def load_country_and_currency(bootinfo):
if bootinfo.control_panel.country and \
2014-02-14 10:17:51 +00:00
frappe.conn.exists("Country", bootinfo.control_panel.country):
bootinfo["docs"] += [frappe.doc("Country", bootinfo.control_panel.country)]
2014-02-14 10:17:51 +00:00
bootinfo["docs"] += frappe.conn.sql("""select * from tabCurrency
where ifnull(enabled,0)=1""", as_dict=1, update={"doctype":":Currency"})
def get_letter_heads():
2014-02-14 10:17:51 +00:00
import frappe
ret = frappe.conn.sql("""select name, content from `tabLetter Head`
where ifnull(disabled,0)=0""")
return dict(ret)
2013-09-21 09:46:47 +00:00