2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt"
|
2013-03-25 17:52:14 +05:30
|
|
|
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2013-03-25 17:52:14 +05:30
|
|
|
|
|
|
|
def boot_session(bootinfo):
|
|
|
|
"""boot session - send website info if guest"""
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2014-05-31 10:36:04 +05:30
|
|
|
|
|
|
|
bootinfo.custom_css = frappe.db.get_value('Style Settings', None, 'custom_css') or ''
|
|
|
|
bootinfo.website_settings = frappe.get_doc('Website Settings')
|
2013-03-25 17:52:14 +05:30
|
|
|
|
2014-02-14 15:47:51 +05:30
|
|
|
if frappe.session['user']!='Guest':
|
2014-05-31 10:36:04 +05:30
|
|
|
bootinfo.letter_heads = get_letter_heads()
|
|
|
|
|
|
|
|
update_page_info(bootinfo)
|
|
|
|
|
2013-09-03 17:36:41 +05:30
|
|
|
load_country_and_currency(bootinfo)
|
2014-05-31 10:36:04 +05:30
|
|
|
|
|
|
|
bootinfo.notification_settings = frappe.get_doc("Notification Control",
|
2014-04-01 12:21:06 +05:30
|
|
|
"Notification Control")
|
2014-05-31 10:36:04 +05:30
|
|
|
|
2013-03-25 17:52:14 +05:30
|
|
|
# if no company, show a dialog box to create a new company
|
2014-05-31 10:36:04 +05:30
|
|
|
bootinfo.customer_count = frappe.db.sql("""select count(*) from tabCustomer""")[0][0]
|
2013-06-26 17:20:12 +05:30
|
|
|
|
2014-05-31 10:36:04 +05:30
|
|
|
if not bootinfo.customer_count:
|
|
|
|
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-05-31 10:36:04 +05:30
|
|
|
|
2015-05-19 12:00:34 +05:30
|
|
|
bootinfo.docs += frappe.db.sql("""select name, default_currency, cost_center,
|
|
|
|
default_terms, default_letter_head from `tabCompany`""",
|
|
|
|
as_dict=1, update={"doctype":":Company"})
|
2013-09-03 17:36:41 +05:30
|
|
|
|
|
|
|
def load_country_and_currency(bootinfo):
|
2014-04-04 12:16:26 +05:30
|
|
|
country = frappe.db.get_default("country")
|
|
|
|
if country and frappe.db.exists("Country", country):
|
2014-05-31 10:36:04 +05:30
|
|
|
bootinfo.docs += [frappe.get_doc("Country", country)]
|
|
|
|
|
|
|
|
bootinfo.docs += frappe.db.sql("""select * from tabCurrency
|
2013-09-03 17:36:41 +05:30
|
|
|
where ifnull(enabled,0)=1""", as_dict=1, update={"doctype":":Currency"})
|
|
|
|
|
2013-03-25 17:52:14 +05:30
|
|
|
def get_letter_heads():
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2014-05-31 10:36:04 +05:30
|
|
|
ret = frappe.db.sql("""select name, content from `tabLetter Head`
|
2013-03-25 17:52:14 +05:30
|
|
|
where ifnull(disabled,0)=0""")
|
|
|
|
return dict(ret)
|
2014-05-31 10:36:04 +05:30
|
|
|
|
|
|
|
def update_page_info(bootinfo):
|
|
|
|
bootinfo.page_info.update({
|
|
|
|
"Chart of Accounts": {
|
|
|
|
"title": "Chart of Accounts",
|
|
|
|
"route": "Accounts Browser/Account"
|
|
|
|
},
|
|
|
|
"Chart of Cost Centers": {
|
|
|
|
"title": "Chart of Cost Centers",
|
|
|
|
"route": "Accounts Browser/Cost Center"
|
|
|
|
},
|
|
|
|
"Item Group Tree": {
|
|
|
|
"title": "Item Group Tree",
|
|
|
|
"route": "Sales Browser/Item Group"
|
|
|
|
},
|
|
|
|
"Customer Group Tree": {
|
|
|
|
"title": "Customer Group Tree",
|
|
|
|
"route": "Sales Browser/Customer Group"
|
|
|
|
},
|
|
|
|
"Territory Tree": {
|
|
|
|
"title": "Territory Tree",
|
|
|
|
"route": "Sales Browser/Territory"
|
|
|
|
},
|
|
|
|
"Sales Person Tree": {
|
|
|
|
"title": "Sales Person Tree",
|
|
|
|
"route": "Sales Browser/Sales Person"
|
|
|
|
}
|
|
|
|
})
|