2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt"
|
2013-03-25 12:22:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2013-03-25 12:22:14 +00:00
|
|
|
|
|
|
|
def boot_session(bootinfo):
|
|
|
|
"""boot session - send website info if guest"""
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2013-03-25 12:22:14 +00:00
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
bootinfo['custom_css'] = frappe.db.get_value('Style Settings', None, 'custom_css') or ''
|
2014-03-31 18:07:40 +00:00
|
|
|
bootinfo['website_settings'] = frappe.get_doc('Website Settings')
|
2013-03-25 12:22:14 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
if frappe.session['user']!='Guest':
|
2013-03-25 12:22:14 +00:00
|
|
|
bootinfo['letter_heads'] = get_letter_heads()
|
2013-09-03 12:06:41 +00:00
|
|
|
|
|
|
|
load_country_and_currency(bootinfo)
|
|
|
|
|
2014-03-28 11:14:37 +00:00
|
|
|
bootinfo['notification_settings'] = frappe.get_doc("Notification Control",
|
2013-03-25 12:22:14 +00:00
|
|
|
"Notification Control").get_values()
|
2013-04-03 09:51:44 +00:00
|
|
|
|
2013-03-25 12:22:14 +00:00
|
|
|
# if no company, show a dialog box to create a new company
|
2014-02-26 07:05:33 +00:00
|
|
|
bootinfo["customer_count"] = frappe.db.sql("""select count(*) from tabCustomer""")[0][0]
|
2013-06-26 11:50:12 +00:00
|
|
|
|
|
|
|
if not bootinfo["customer_count"]:
|
2014-02-26 07:05:33 +00:00
|
|
|
bootinfo['setup_complete'] = frappe.db.sql("""select name from
|
2013-06-26 11:50:12 +00:00
|
|
|
tabCompany limit 1""") and 'Yes' or 'No'
|
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
bootinfo['docs'] += frappe.db.sql("""select name, default_currency, cost_center
|
2013-04-19 10:51:55 +00:00
|
|
|
from `tabCompany`""", as_dict=1, update={"doctype":":Company"})
|
2013-09-03 12:06:41 +00:00
|
|
|
|
|
|
|
def load_country_and_currency(bootinfo):
|
|
|
|
if bootinfo.control_panel.country and \
|
2014-02-26 07:05:33 +00:00
|
|
|
frappe.db.exists("Country", bootinfo.control_panel.country):
|
2014-03-28 11:14:37 +00:00
|
|
|
bootinfo["docs"] += [frappe.get_doc("Country", bootinfo.control_panel.country)]
|
2013-09-03 12:06:41 +00:00
|
|
|
|
2014-02-26 07:05:33 +00:00
|
|
|
bootinfo["docs"] += frappe.db.sql("""select * from tabCurrency
|
2013-09-03 12:06:41 +00:00
|
|
|
where ifnull(enabled,0)=1""", as_dict=1, update={"doctype":":Currency"})
|
|
|
|
|
2013-03-25 12:22:14 +00:00
|
|
|
def get_letter_heads():
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2014-02-26 07:05:33 +00:00
|
|
|
ret = frappe.db.sql("""select name, content from `tabLetter Head`
|
2013-03-25 12:22:14 +00:00
|
|
|
where ifnull(disabled,0)=0""")
|
|
|
|
return dict(ret)
|
2013-09-21 09:46:47 +00:00
|
|
|
|