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
|
2017-11-02 18:12:14 +05:30
|
|
|
from frappe.utils import cint
|
2013-03-25 17:52:14 +05:30
|
|
|
|
|
|
|
def boot_session(bootinfo):
|
|
|
|
"""boot session - send website info if guest"""
|
2014-05-31 10:36:04 +05:30
|
|
|
|
|
|
|
bootinfo.custom_css = frappe.db.get_value('Style Settings', None, 'custom_css') or ''
|
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
|
|
|
update_page_info(bootinfo)
|
|
|
|
|
2013-09-03 17:36:41 +05:30
|
|
|
load_country_and_currency(bootinfo)
|
2017-08-02 18:16:13 +05:30
|
|
|
bootinfo.sysdefaults.territory = frappe.db.get_single_value('Selling Settings',
|
2017-09-14 15:03:45 +05:30
|
|
|
'territory')
|
2017-08-02 18:16:13 +05:30
|
|
|
bootinfo.sysdefaults.customer_group = frappe.db.get_single_value('Selling Settings',
|
2017-09-14 15:03:45 +05:30
|
|
|
'customer_group')
|
2017-11-02 18:12:14 +05:30
|
|
|
bootinfo.sysdefaults.allow_stale = cint(frappe.db.get_single_value('Accounts Settings',
|
|
|
|
'allow_stale'))
|
2018-02-26 07:53:41 +01:00
|
|
|
bootinfo.sysdefaults.quotation_valid_till = cint(frappe.db.get_single_value('Selling Settings',
|
|
|
|
'default_valid_till'))
|
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
|
2018-09-21 10:20:52 +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:
|
2018-09-21 10:20:52 +05:30
|
|
|
bootinfo.setup_complete = frappe.db.sql("""SELECT `name`
|
|
|
|
FROM `tabCompany`
|
|
|
|
LIMIT 1""") and 'Yes' or 'No'
|
2014-05-31 10:36:04 +05:30
|
|
|
|
2019-07-04 22:46:16 +05:30
|
|
|
bootinfo.docs += frappe.db.sql("""select name, default_currency, cost_center, default_selling_terms, default_buying_terms,
|
2019-03-01 12:33:19 +05:30
|
|
|
default_letter_head, default_bank_account, enable_perpetual_inventory, country from `tabCompany`""",
|
2015-05-19 12:00:34 +05:30
|
|
|
as_dict=1, update={"doctype":":Company"})
|
2013-09-03 17:36:41 +05:30
|
|
|
|
2018-05-16 11:02:26 +05:30
|
|
|
party_account_types = frappe.db.sql(""" select name, ifnull(account_type, '') from `tabParty Type`""")
|
|
|
|
bootinfo.party_account_types = frappe._dict(party_account_types)
|
|
|
|
|
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)]
|
|
|
|
|
2016-03-22 14:52:25 +05:30
|
|
|
bootinfo.docs += frappe.db.sql("""select name, fraction, fraction_units,
|
|
|
|
number_format, smallest_currency_fraction_value, symbol from tabCurrency
|
2015-11-16 19:05:46 +05:30
|
|
|
where enabled=1""", as_dict=1, update={"doctype":":Currency"})
|
2013-09-03 17:36:41 +05:30
|
|
|
|
2014-05-31 10:36:04 +05:30
|
|
|
def update_page_info(bootinfo):
|
|
|
|
bootinfo.page_info.update({
|
|
|
|
"Chart of Accounts": {
|
|
|
|
"title": "Chart of Accounts",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Account"
|
2014-05-31 10:36:04 +05:30
|
|
|
},
|
|
|
|
"Chart of Cost Centers": {
|
|
|
|
"title": "Chart of Cost Centers",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Cost Center"
|
2014-05-31 10:36:04 +05:30
|
|
|
},
|
|
|
|
"Item Group Tree": {
|
|
|
|
"title": "Item Group Tree",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Item Group"
|
2014-05-31 10:36:04 +05:30
|
|
|
},
|
|
|
|
"Customer Group Tree": {
|
|
|
|
"title": "Customer Group Tree",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Customer Group"
|
2014-05-31 10:36:04 +05:30
|
|
|
},
|
|
|
|
"Territory Tree": {
|
|
|
|
"title": "Territory Tree",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Territory"
|
2014-05-31 10:36:04 +05:30
|
|
|
},
|
|
|
|
"Sales Person Tree": {
|
|
|
|
"title": "Sales Person Tree",
|
2016-06-21 13:19:17 +05:30
|
|
|
"route": "Tree/Sales Person"
|
2014-05-31 10:36:04 +05:30
|
|
|
}
|
|
|
|
})
|