brotherton-erpnext/erpnext/startup/boot.py

70 lines
2.2 KiB
Python
Raw Normal View History

# Copyright (c) 2015, Frappe 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
2014-05-31 05:06:04 +00:00
bootinfo.custom_css = frappe.db.get_value('Style Settings', None, 'custom_css') or ''
bootinfo.website_settings = frappe.get_doc('Website Settings')
2014-02-14 10:17:51 +00:00
if frappe.session['user']!='Guest':
2014-05-31 05:06:04 +00:00
update_page_info(bootinfo)
load_country_and_currency(bootinfo)
2014-05-31 05:06:04 +00:00
bootinfo.notification_settings = frappe.get_doc("Notification Control",
2014-04-01 06:51:06 +00:00
"Notification Control")
2014-05-31 05:06:04 +00:00
# if no company, show a dialog box to create a new company
bootinfo.customer_count = frappe.db.sql("""select count(*) from tabCustomer""")[0][0]
2013-06-26 11:50:12 +00:00
2014-05-31 05:06:04 +00:00
if not bootinfo.customer_count:
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-05-31 05:06:04 +00:00
bootinfo.docs += frappe.db.sql("""select name, default_currency, cost_center, default_terms,
default_letter_head, default_bank_account, enable_perpetual_inventory 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):
2014-05-31 05:06:04 +00:00
bootinfo.docs += [frappe.get_doc("Country", country)]
bootinfo.docs += frappe.db.sql("""select name, fraction, fraction_units,
number_format, smallest_currency_fraction_value, symbol from tabCurrency
where enabled=1""", as_dict=1, update={"doctype":":Currency"})
2014-05-31 05:06:04 +00:00
def update_page_info(bootinfo):
bootinfo.page_info.update({
"Chart of Accounts": {
"title": "Chart of Accounts",
"route": "Tree/Account"
2014-05-31 05:06:04 +00:00
},
"Chart of Cost Centers": {
"title": "Chart of Cost Centers",
"route": "Tree/Cost Center"
2014-05-31 05:06:04 +00:00
},
"Item Group Tree": {
"title": "Item Group Tree",
"route": "Tree/Item Group"
2014-05-31 05:06:04 +00:00
},
"Customer Group Tree": {
"title": "Customer Group Tree",
"route": "Tree/Customer Group"
2014-05-31 05:06:04 +00:00
},
"Territory Tree": {
"title": "Territory Tree",
"route": "Tree/Territory"
2014-05-31 05:06:04 +00:00
},
"Sales Person Tree": {
"title": "Sales Person Tree",
"route": "Tree/Sales Person"
2014-05-31 05:06:04 +00:00
}
})