blob: d198ead92be8597ddba4beb81b89cd93478175b8 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302// License: GNU General Public License v3. See license.txt
3
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304frappe.provide('erpnext');
Rushabh Mehta8c309be2012-01-20 13:47:16 +05305
Rushabh Mehtaa9209432012-05-07 18:00:57 +05306// add toolbar icon
Rushabh Mehta8c309be2012-01-20 13:47:16 +05307$(document).bind('toolbar_setup', function() {
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05308 frappe.app.name = "ERPNext";
Rushabh Mehta8a40c132014-04-15 16:30:55 +05309
Anand Doshi88a15152015-01-21 18:24:44 +053010 $('.navbar-home').html('ERPNext');
Rushabh Mehtae8dd4162014-08-22 15:21:27 +053011
Anand Doshi8f9e6312015-02-26 20:27:41 +053012 $('[data-link="docs"]').attr("href", "https://manual.erpnext.com")
Anand Doshi859cb722012-04-10 11:35:19 +053013});
Rushabh Mehta4c36d732015-01-01 15:59:34 +053014
15// doctypes created via tree
Rushabh Mehtaf5f0d5a2015-03-09 15:47:15 +053016$.extend(frappe.create_routes, {
17 "Customer Group": "Sales Browser/Customer Group",
18 "Territory": "Sales Browser/Territory",
19 "Item Group": "Sales Browser/Item Group",
20 "Sales Person": "Sales Browser/Sales Person",
21 "Account": "Accounts Browser/Account",
22 "Cost Center": "Accounts Browser/Cost Center"
23});
24
25// preferred modules for breadcrumbs
26$.extend(frappe.breadcrumbs.preferred, {
27 "Item Group": "Stock",
28 "Customer Group": "Selling",
29 "Supplier Type": "Buying",
30 "Territory": "Selling",
31 "Sales Person": "Selling",
32 "Sales Partner": "Selling",
33 "Brand": "Selling"
34});