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-04-17 07:10:37 +00:00
|
|
|
pscript['onload_Sales Browser'] = function(wrapper){
|
2013-05-23 10:33:49 +00:00
|
|
|
wn.ui.make_app_page({
|
|
|
|
parent: wrapper,
|
|
|
|
})
|
|
|
|
|
2013-04-19 07:31:32 +00:00
|
|
|
wrapper.appframe.add_module_icon("Selling")
|
2012-11-13 11:14:27 +00:00
|
|
|
|
2012-04-17 07:10:37 +00:00
|
|
|
wrapper.appframe.add_button('Refresh', function() {
|
|
|
|
wrapper.make_tree();
|
|
|
|
}, 'icon-refresh');
|
|
|
|
|
2013-05-23 10:33:49 +00:00
|
|
|
|
|
|
|
$(wrapper)
|
|
|
|
.find(".layout-side-section")
|
|
|
|
.html('<div class="text-muted">Click on a link to get options to expand \
|
|
|
|
get options Add / Edit / Delete.</div>')
|
|
|
|
|
2012-04-17 07:10:37 +00:00
|
|
|
wrapper.make_tree = function() {
|
|
|
|
var ctype = wn.get_route()[1] || 'Territory';
|
2013-07-29 14:00:39 +00:00
|
|
|
return wn.call({
|
2012-12-12 10:56:39 +00:00
|
|
|
method: 'selling.page.sales_browser.sales_browser.get_children',
|
|
|
|
args: {ctype: ctype},
|
|
|
|
callback: function(r) {
|
|
|
|
var root = r.message[0]["value"];
|
2013-05-23 10:33:49 +00:00
|
|
|
erpnext.sales_chart = new erpnext.SalesChart(ctype, root,
|
|
|
|
$(wrapper)
|
|
|
|
.find(".layout-main-section")
|
|
|
|
.css({
|
|
|
|
"min-height": "300px",
|
|
|
|
"padding-bottom": "25px"
|
|
|
|
}));
|
2012-12-12 10:56:39 +00:00
|
|
|
}
|
|
|
|
});
|
2012-04-17 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wrapper.make_tree();
|
|
|
|
}
|
|
|
|
|
|
|
|
pscript['onshow_Sales Browser'] = function(wrapper){
|
|
|
|
// set route
|
|
|
|
var ctype = wn.get_route()[1] || 'Territory';
|
2012-07-12 04:24:43 +00:00
|
|
|
|
2012-11-13 11:14:27 +00:00
|
|
|
wrapper.appframe.set_title(ctype+' Tree')
|
2012-04-17 07:10:37 +00:00
|
|
|
|
|
|
|
if(erpnext.sales_chart && erpnext.sales_chart.ctype != ctype) {
|
|
|
|
wrapper.make_tree();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
erpnext.SalesChart = Class.extend({
|
2013-05-23 10:33:49 +00:00
|
|
|
init: function(ctype, root, parent) {
|
|
|
|
$(parent).empty();
|
2012-04-17 07:10:37 +00:00
|
|
|
var me = this;
|
|
|
|
me.ctype = ctype;
|
|
|
|
this.tree = new wn.ui.Tree({
|
2013-05-23 10:33:49 +00:00
|
|
|
parent: $(parent),
|
2012-12-12 10:56:39 +00:00
|
|
|
label: root,
|
2012-04-17 07:10:37 +00:00
|
|
|
args: {ctype: ctype},
|
|
|
|
method: 'selling.page.sales_browser.sales_browser.get_children',
|
|
|
|
click: function(link) {
|
|
|
|
if(me.cur_toolbar)
|
|
|
|
$(me.cur_toolbar).toggle(false);
|
|
|
|
|
|
|
|
if(!link.toolbar)
|
|
|
|
me.make_link_toolbar(link);
|
|
|
|
|
|
|
|
if(link.toolbar) {
|
|
|
|
me.cur_toolbar = link.toolbar;
|
|
|
|
$(me.cur_toolbar).toggle(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.tree.rootnode.$a
|
2012-12-12 10:56:39 +00:00
|
|
|
.data('node-data', {value: root, expandable:1})
|
2012-04-17 07:10:37 +00:00
|
|
|
.click();
|
|
|
|
},
|
|
|
|
make_link_toolbar: function(link) {
|
|
|
|
var data = $(link).data('node-data');
|
|
|
|
if(!data) return;
|
|
|
|
|
|
|
|
link.toolbar = $('<span class="tree-node-toolbar"></span>').insertAfter(link);
|
|
|
|
|
|
|
|
// edit
|
2012-08-24 06:45:44 +00:00
|
|
|
var node_links = [];
|
|
|
|
|
2012-12-06 06:39:52 +00:00
|
|
|
if (wn.model.can_read(this.ctype)) {
|
|
|
|
node_links.push('<a onclick="erpnext.sales_chart.open();">Edit</a>');
|
2012-08-24 06:45:44 +00:00
|
|
|
}
|
2012-04-17 07:10:37 +00:00
|
|
|
|
|
|
|
if(data.expandable) {
|
2012-08-24 06:45:44 +00:00
|
|
|
if (wn.boot.profile.can_create.indexOf(this.ctype) !== -1 ||
|
|
|
|
wn.boot.profile.in_create.indexOf(this.ctype) !== -1) {
|
|
|
|
node_links.push('<a onclick="erpnext.sales_chart.new_node();">Add Child</a>');
|
|
|
|
}
|
2012-04-17 07:10:37 +00:00
|
|
|
}
|
2012-12-06 06:39:52 +00:00
|
|
|
|
|
|
|
if (wn.model.can_write(this.ctype)) {
|
|
|
|
node_links.push('<a onclick="erpnext.sales_chart.rename()">Rename</a>');
|
|
|
|
};
|
|
|
|
|
|
|
|
if (wn.model.can_delete(this.ctype)) {
|
|
|
|
node_links.push('<a onclick="erpnext.sales_chart.delete()">Delete</a>');
|
|
|
|
};
|
2012-08-24 06:45:44 +00:00
|
|
|
|
|
|
|
link.toolbar.append(node_links.join(" | "));
|
2012-04-17 07:10:37 +00:00
|
|
|
},
|
|
|
|
new_node: function() {
|
|
|
|
var me = this;
|
2013-07-22 11:45:01 +00:00
|
|
|
|
|
|
|
var fields = [
|
|
|
|
{fieldtype:'Data', fieldname: 'name_field',
|
|
|
|
label:'New ' + me.ctype + ' Name', reqd:true},
|
|
|
|
{fieldtype:'Select', fieldname:'is_group', label:'Group Node', options:'No\nYes',
|
|
|
|
description: "Further nodes can be only created under 'Group' type nodes"},
|
|
|
|
{fieldtype:'Button', fieldname:'create_new', label:'Create New' }
|
|
|
|
]
|
|
|
|
|
|
|
|
if(me.ctype == "Sales Person") {
|
|
|
|
fields.splice(-1, 0, {fieldtype:'Link', fieldname:'employee', label:'Employee',
|
|
|
|
options:'Employee', description: "Please enter Employee Id of this sales parson"});
|
|
|
|
}
|
|
|
|
|
2012-04-17 07:10:37 +00:00
|
|
|
// the dialog
|
|
|
|
var d = new wn.ui.Dialog({
|
|
|
|
title:'New ' + me.ctype,
|
2013-07-22 11:45:01 +00:00
|
|
|
fields: fields
|
2012-04-17 07:10:37 +00:00
|
|
|
})
|
|
|
|
|
2012-12-06 06:39:52 +00:00
|
|
|
d.set_value("is_group", "No");
|
2012-04-17 07:10:37 +00:00
|
|
|
// create
|
|
|
|
$(d.fields_dict.create_new.input).click(function() {
|
|
|
|
var btn = this;
|
|
|
|
$(btn).set_working();
|
|
|
|
var v = d.get_values();
|
|
|
|
if(!v) return;
|
|
|
|
|
|
|
|
var node = me.selected_node();
|
|
|
|
|
|
|
|
v.parent = node.data('label');
|
|
|
|
v.ctype = me.ctype;
|
|
|
|
|
2013-07-29 14:00:39 +00:00
|
|
|
return wn.call({
|
2012-04-17 07:10:37 +00:00
|
|
|
method: 'selling.page.sales_browser.sales_browser.add_node',
|
|
|
|
args: v,
|
|
|
|
callback: function() {
|
|
|
|
$(btn).done_working();
|
|
|
|
d.hide();
|
|
|
|
node.trigger('reload');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
d.show();
|
|
|
|
},
|
|
|
|
selected_node: function() {
|
|
|
|
return this.tree.$w.find('.tree-link.selected');
|
2012-12-06 06:39:52 +00:00
|
|
|
},
|
|
|
|
open: function() {
|
|
|
|
var node = this.selected_node();
|
|
|
|
wn.set_route("Form", this.ctype, node.data("label"));
|
|
|
|
},
|
|
|
|
rename: function() {
|
|
|
|
var node = this.selected_node();
|
|
|
|
wn.model.rename_doc(this.ctype, node.data('label'), function(new_name) {
|
|
|
|
node.data('label', new_name).find(".tree-label").html(new_name);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
delete: function() {
|
|
|
|
var node = this.selected_node();
|
|
|
|
wn.model.delete_doc(this.ctype, node.data('label'), function() {
|
|
|
|
node.parent().remove();
|
|
|
|
});
|
|
|
|
},
|
2012-05-07 12:30:57 +00:00
|
|
|
});
|