2015-03-03 09:25:30 +00:00
|
|
|
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.provide('erpnext');
|
2012-01-20 08:17:16 +00:00
|
|
|
|
2015-03-09 10:17:15 +00:00
|
|
|
// preferred modules for breadcrumbs
|
|
|
|
$.extend(frappe.breadcrumbs.preferred, {
|
|
|
|
"Item Group": "Stock",
|
|
|
|
"Customer Group": "Selling",
|
2018-04-19 13:07:53 +00:00
|
|
|
"Supplier Group": "Buying",
|
2015-03-09 10:17:15 +00:00
|
|
|
"Territory": "Selling",
|
|
|
|
"Sales Person": "Selling",
|
|
|
|
"Sales Partner": "Selling",
|
2020-09-21 07:30:43 +00:00
|
|
|
"Brand": "Stock",
|
|
|
|
"Maintenance Schedule": "Support",
|
|
|
|
"Maintenance Visit": "Support"
|
2015-03-09 10:17:15 +00:00
|
|
|
});
|
2019-07-10 13:19:41 +00:00
|
|
|
|
|
|
|
$.extend(frappe.breadcrumbs.module_map, {
|
|
|
|
'ERPNext Integrations': 'Integrations',
|
|
|
|
'Geo': 'Settings',
|
|
|
|
'Portal': 'Website',
|
2019-07-10 13:52:16 +00:00
|
|
|
'Utilities': 'Settings',
|
2021-02-25 08:26:38 +00:00
|
|
|
'E-commerce': 'Website',
|
2019-07-10 13:52:16 +00:00
|
|
|
'Contacts': 'CRM'
|
2019-07-10 14:09:40 +00:00
|
|
|
});
|