2012-02-23 07:05:32 +00:00
|
|
|
// ERPNext - web based ERP (http://erpnext.com)
|
|
|
|
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-01-20 08:17:16 +00:00
|
|
|
/* toolbar settings */
|
|
|
|
wn.provide('erpnext.toolbar');
|
|
|
|
|
|
|
|
erpnext.toolbar.setup = function() {
|
2012-02-21 11:56:50 +00:00
|
|
|
// modules
|
|
|
|
erpnext.toolbar.add_modules();
|
|
|
|
|
2012-01-20 08:17:16 +00:00
|
|
|
// profile
|
2013-01-07 10:09:54 +00:00
|
|
|
$('#toolbar-user').append('<li><a href="#Form/Profile/'+user+'">'
|
|
|
|
+wn._("My Settings")+'...</a></li>');
|
2012-02-21 11:56:50 +00:00
|
|
|
|
2012-02-27 11:47:48 +00:00
|
|
|
$('.navbar .pull-right').append('\
|
2013-01-07 10:09:54 +00:00
|
|
|
<li><a href="#!messages" title="'+wn._('Unread Messages')
|
|
|
|
+'"><span class="navbar-new-comments"></span></a></li>');
|
2012-01-20 08:17:16 +00:00
|
|
|
|
|
|
|
// help
|
2012-02-27 11:47:48 +00:00
|
|
|
$('.navbar .pull-right').prepend('<li class="dropdown">\
|
2012-02-21 05:49:24 +00:00
|
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#" \
|
2013-01-07 10:09:54 +00:00
|
|
|
onclick="return false;">'+wn._('Help')+'<b class="caret"></b></a>\
|
2012-01-20 08:17:16 +00:00
|
|
|
<ul class="dropdown-menu" id="toolbar-help">\
|
|
|
|
</ul></li>')
|
|
|
|
|
2013-01-07 10:09:54 +00:00
|
|
|
$('#toolbar-help').append('<li><a href="https://erpnext.com/manual" target="_blank">'
|
|
|
|
+wn._('Documentation')+'</a></li>')
|
2012-01-20 08:17:16 +00:00
|
|
|
|
2013-01-07 10:09:54 +00:00
|
|
|
$('#toolbar-help').append('<li><a href="http://groups.google.com/group/erpnext-user-forum" target="_blank">'
|
|
|
|
+wn._('Forum')+'</a></li>')
|
2012-01-20 08:17:16 +00:00
|
|
|
|
|
|
|
$('#toolbar-help').append('<li><a href="http://www.providesupport.com?messenger=iwebnotes" target="_blank">\
|
2013-01-07 10:09:54 +00:00
|
|
|
'+wn._('Live Chat')+'</a></li>')
|
2012-01-20 08:17:16 +00:00
|
|
|
|
2012-04-30 10:13:34 +00:00
|
|
|
erpnext.toolbar.set_new_comments();
|
2012-02-20 11:01:55 +00:00
|
|
|
}
|
|
|
|
|
2012-02-21 11:56:50 +00:00
|
|
|
erpnext.toolbar.add_modules = function() {
|
|
|
|
$('<li class="dropdown">\
|
|
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#"\
|
2013-01-07 10:09:54 +00:00
|
|
|
onclick="return false;">'+wn._('Modules')+'<b class="caret"></b></a>\
|
2012-02-28 13:26:56 +00:00
|
|
|
<ul class="dropdown-menu modules">\
|
2012-02-21 11:56:50 +00:00
|
|
|
</ul>\
|
2012-02-27 11:47:48 +00:00
|
|
|
</li>').prependTo('.navbar .nav:first');
|
2012-02-28 13:26:56 +00:00
|
|
|
|
2012-12-22 02:12:04 +00:00
|
|
|
var modules_list = wn.user.get_desktop_items();
|
2012-02-28 13:26:56 +00:00
|
|
|
|
|
|
|
// add to dropdown
|
2012-12-21 16:10:19 +00:00
|
|
|
for(var i in modules_list) {
|
|
|
|
var m = modules_list[i]
|
2012-02-29 05:25:43 +00:00
|
|
|
|
2012-12-24 12:37:35 +00:00
|
|
|
if(m!='Setup' && wn.boot.profile.allow_modules.indexOf(m)!=-1 && wn.modules[m]) {
|
2012-02-29 05:25:43 +00:00
|
|
|
args = {
|
|
|
|
module: m,
|
2012-12-21 09:30:29 +00:00
|
|
|
module_page: wn.modules[m].link,
|
2013-01-07 10:09:54 +00:00
|
|
|
module_label: wn._(wn.modules[m].label || m)
|
2012-02-29 05:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$('.navbar .modules').append(repl('<li><a href="#!%(module_page)s" \
|
|
|
|
data-module="%(module)s">%(module_label)s</a></li>', args));
|
2012-02-28 13:26:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup for system manager
|
|
|
|
if(user_roles.indexOf("System Manager")!=-1) {
|
|
|
|
$('.navbar .modules').append('<li class="divider"></li>\
|
2013-01-07 10:09:54 +00:00
|
|
|
<li><a href="#!Setup" data-module="Setup">'+wn._('Setup')+'</a></li>');
|
2012-02-28 13:26:56 +00:00
|
|
|
}
|
|
|
|
|
2012-02-21 11:56:50 +00:00
|
|
|
}
|
|
|
|
|
2012-04-30 10:13:34 +00:00
|
|
|
erpnext.toolbar.set_new_comments = function(new_comments) {
|
|
|
|
var navbar_nc = $('.navbar-new-comments');
|
2012-11-13 06:12:42 +00:00
|
|
|
if(cint(new_comments)) {
|
2012-04-30 10:13:34 +00:00
|
|
|
navbar_nc.addClass('navbar-new-comments-true')
|
2012-11-13 06:12:42 +00:00
|
|
|
navbar_nc.text(new_comments);
|
2012-04-30 10:13:34 +00:00
|
|
|
} else {
|
|
|
|
navbar_nc.removeClass('navbar-new-comments-true');
|
|
|
|
navbar_nc.text(0);
|
|
|
|
}
|
2013-01-07 10:09:54 +00:00
|
|
|
}
|