[Fix] Default selling settings not fetched on customer quick entry form (#10243)

This commit is contained in:
rohitwaghchaure 2017-08-02 18:16:13 +05:30 committed by Makarand Bauskar
parent 3a512af0e2
commit ec9430dae7

View File

@ -16,8 +16,10 @@ def boot_session(bootinfo):
update_page_info(bootinfo)
load_country_and_currency(bootinfo)
bootinfo.sysdefaults.territory = get_root_of('Territory')
bootinfo.sysdefaults.customer_group = get_root_of('Customer Group')
bootinfo.sysdefaults.territory = frappe.db.get_single_value('Selling Settings',
'territory') or get_root_of('Territory')
bootinfo.sysdefaults.customer_group = frappe.db.get_single_value('Selling Settings',
'customer_group') or get_root_of('Customer Group')
bootinfo.notification_settings = frappe.get_doc("Notification Control",
"Notification Control")