47 lines
1.6 KiB
Python
Raw Normal View History

2013-11-20 12:59:58 +05:30
# 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 15:47:51 +05:30
import frappe
def boot_session(bootinfo):
"""boot session - send website info if guest"""
2014-02-14 15:47:51 +05:30
import frappe
2014-02-26 12:35:33 +05:30
bootinfo['custom_css'] = frappe.db.get_value('Style Settings', None, 'custom_css') or ''
bootinfo['website_settings'] = frappe.get_doc('Website Settings')
2014-02-14 15:47:51 +05:30
if frappe.session['user']!='Guest':
bootinfo['letter_heads'] = get_letter_heads()
load_country_and_currency(bootinfo)
2014-03-28 16:44:37 +05:30
bootinfo['notification_settings'] = frappe.get_doc("Notification Control",
2014-04-01 12:21:06 +05:30
"Notification Control")
# if no company, show a dialog box to create a new company
2014-02-26 12:35:33 +05:30
bootinfo["customer_count"] = frappe.db.sql("""select count(*) from tabCustomer""")[0][0]
2013-06-26 17:20:12 +05:30
if not bootinfo["customer_count"]:
2014-02-26 12:35:33 +05:30
bootinfo['setup_complete'] = frappe.db.sql("""select name from
2013-06-26 17:20:12 +05:30
tabCompany limit 1""") and 'Yes' or 'No'
2014-02-26 12:35:33 +05:30
bootinfo['docs'] += frappe.db.sql("""select name, default_currency, cost_center
from `tabCompany`""", as_dict=1, update={"doctype":":Company"})
def load_country_and_currency(bootinfo):
country = frappe.db.get_default("country")
if country and frappe.db.exists("Country", country):
bootinfo["docs"] += [frappe.get_doc("Country", country)]
2014-02-26 12:35:33 +05:30
bootinfo["docs"] += frappe.db.sql("""select * from tabCurrency
where ifnull(enabled,0)=1""", as_dict=1, update={"doctype":":Currency"})
def get_letter_heads():
2014-02-14 15:47:51 +05:30
import frappe
2014-02-26 12:35:33 +05:30
ret = frappe.db.sql("""select name, content from `tabLetter Head`
where ifnull(disabled,0)=0""")
return dict(ret)
2013-09-21 15:16:47 +05:30