| # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
| # License: GNU General Public License v3. See license.txt" |
| |
| |
| import frappe |
| from frappe.utils import cint |
| |
| |
| def boot_session(bootinfo): |
| """boot session - send website info if guest""" |
| |
| bootinfo.custom_css = frappe.db.get_single_value("Style Settings", "custom_css") or "" |
| |
| if frappe.session["user"] != "Guest": |
| update_page_info(bootinfo) |
| |
| bootinfo.sysdefaults.territory = frappe.db.get_single_value("Selling Settings", "territory") |
| bootinfo.sysdefaults.customer_group = frappe.db.get_single_value( |
| "Selling Settings", "customer_group" |
| ) |
| bootinfo.sysdefaults.allow_stale = cint( |
| frappe.db.get_single_value("Accounts Settings", "allow_stale") |
| ) |
| bootinfo.sysdefaults.over_billing_allowance = frappe.db.get_single_value( |
| "Accounts Settings", "over_billing_allowance" |
| ) |
| |
| bootinfo.sysdefaults.quotation_valid_till = cint( |
| frappe.db.get_single_value("CRM Settings", "default_valid_till") |
| ) |
| |
| bootinfo.sysdefaults.allow_sales_order_creation_for_expired_quotation = cint( |
| frappe.db.get_single_value( |
| "Selling Settings", "allow_sales_order_creation_for_expired_quotation" |
| ) |
| ) |
| |
| # if no company, show a dialog box to create a new company |
| bootinfo.customer_count = frappe.db.sql("""SELECT count(*) FROM `tabCustomer`""")[0][0] |
| |
| if not bootinfo.customer_count: |
| bootinfo.setup_complete = ( |
| frappe.db.sql( |
| """SELECT `name` |
| FROM `tabCompany` |
| LIMIT 1""" |
| ) |
| and "Yes" |
| or "No" |
| ) |
| |
| bootinfo.docs += frappe.db.sql( |
| """select name, default_currency, cost_center, default_selling_terms, default_buying_terms, |
| default_letter_head, default_bank_account, enable_perpetual_inventory, country from `tabCompany`""", |
| as_dict=1, |
| update={"doctype": ":Company"}, |
| ) |
| |
| party_account_types = frappe.db.sql( |
| """ select name, ifnull(account_type, '') from `tabParty Type`""" |
| ) |
| bootinfo.party_account_types = frappe._dict(party_account_types) |
| |
| bootinfo.sysdefaults.demo_company = frappe.db.get_single_value("Global Defaults", "demo_company") |
| |
| |
| def update_page_info(bootinfo): |
| bootinfo.page_info.update( |
| { |
| "Chart of Accounts": {"title": "Chart of Accounts", "route": "Tree/Account"}, |
| "Chart of Cost Centers": {"title": "Chart of Cost Centers", "route": "Tree/Cost Center"}, |
| "Item Group Tree": {"title": "Item Group Tree", "route": "Tree/Item Group"}, |
| "Customer Group Tree": {"title": "Customer Group Tree", "route": "Tree/Customer Group"}, |
| "Territory Tree": {"title": "Territory Tree", "route": "Tree/Territory"}, |
| "Sales Person Tree": {"title": "Sales Person Tree", "route": "Tree/Sales Person"}, |
| } |
| ) |
| |
| |
| def bootinfo(bootinfo): |
| if bootinfo.get("user") and bootinfo["user"].get("name"): |
| bootinfo["user"]["employee"] = "" |
| employee = frappe.db.get_value("Employee", {"user_id": bootinfo["user"]["name"]}, "name") |
| if employee: |
| bootinfo["user"]["employee"] = employee |