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
|
2012-09-21 14:16:24 +00:00
|
|
|
|
2015-01-29 12:39:11 +00:00
|
|
|
frappe.pages['purchase-analytics'].on_page_load = function(wrapper) {
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.ui.make_app_page({
|
2012-09-21 14:16:24 +00:00
|
|
|
parent: wrapper,
|
2014-04-14 10:55:30 +00:00
|
|
|
title: __('Purchase Analytics'),
|
2012-09-21 14:16:24 +00:00
|
|
|
single_column: true
|
2014-05-28 09:42:36 +00:00
|
|
|
});
|
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
new erpnext.PurchaseAnalytics(wrapper);
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2013-11-13 11:25:38 +00:00
|
|
|
|
2015-03-09 10:17:15 +00:00
|
|
|
frappe.breadcrumbs.add("Buying");
|
2012-09-21 14:16:24 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
erpnext.PurchaseAnalytics = frappe.views.TreeGridReport.extend({
|
2012-09-21 14:16:24 +00:00
|
|
|
init: function(wrapper) {
|
|
|
|
this._super({
|
2014-04-14 10:55:30 +00:00
|
|
|
title: __("Purchase Analytics"),
|
2012-09-21 14:16:24 +00:00
|
|
|
page: wrapper,
|
|
|
|
parent: $(wrapper).find('.layout-main'),
|
2014-12-23 12:26:47 +00:00
|
|
|
page: wrapper.page,
|
2014-05-28 09:42:36 +00:00
|
|
|
doctypes: ["Item", "Item Group", "Supplier", "Supplier Type", "Company", "Fiscal Year",
|
|
|
|
"Purchase Invoice", "Purchase Invoice Item",
|
|
|
|
"Purchase Order", "Purchase Order Item[Purchase Analytics]",
|
2013-01-24 13:08:30 +00:00
|
|
|
"Purchase Receipt", "Purchase Receipt Item[Purchase Analytics]"],
|
2012-09-21 14:16:24 +00:00
|
|
|
tree_grid: { show: true }
|
|
|
|
});
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
this.tree_grids = {
|
|
|
|
"Supplier Type": {
|
2014-04-14 10:55:30 +00:00
|
|
|
label: __("Supplier Type / Supplier"),
|
2014-05-28 09:42:36 +00:00
|
|
|
show: true,
|
2012-09-21 14:16:24 +00:00
|
|
|
item_key: "supplier",
|
2014-05-28 09:42:36 +00:00
|
|
|
parent_field: "parent_supplier_type",
|
2012-09-21 14:16:24 +00:00
|
|
|
formatter: function(item) {
|
2013-06-04 05:53:42 +00:00
|
|
|
// return repl('<a href="#Report/stock-invoices/customer=%(enc_value)s">%(value)s</a>', {
|
2012-09-21 14:16:24 +00:00
|
|
|
// value: item.name,
|
|
|
|
// enc_value: encodeURIComponent(item.name)
|
|
|
|
// });
|
|
|
|
return item.name;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Supplier": {
|
2014-04-14 10:55:30 +00:00
|
|
|
label: __("Supplier"),
|
2014-05-28 09:42:36 +00:00
|
|
|
show: false,
|
2012-09-21 14:16:24 +00:00
|
|
|
item_key: "supplier",
|
|
|
|
formatter: function(item) {
|
|
|
|
return item.name;
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
},
|
2012-09-21 14:16:24 +00:00
|
|
|
"Item Group": {
|
|
|
|
label: "Item",
|
2014-05-28 09:42:36 +00:00
|
|
|
show: true,
|
|
|
|
parent_field: "parent_item_group",
|
2012-09-21 14:16:24 +00:00
|
|
|
item_key: "item_code",
|
|
|
|
formatter: function(item) {
|
|
|
|
return item.name;
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
},
|
2012-09-21 14:16:24 +00:00
|
|
|
"Item": {
|
|
|
|
label: "Item",
|
2014-05-28 09:42:36 +00:00
|
|
|
show: false,
|
2012-09-21 14:16:24 +00:00
|
|
|
item_key: "item_code",
|
|
|
|
formatter: function(item) {
|
|
|
|
return item.name;
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
},
|
2012-09-21 14:16:24 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
setup_columns: function() {
|
|
|
|
this.tree_grid = this.tree_grids[this.tree_type];
|
|
|
|
|
|
|
|
var std_columns = [
|
2015-02-03 12:25:52 +00:00
|
|
|
{id: "_check", name: __("Plot"), field: "_check", width: 30,
|
2012-09-21 14:16:24 +00:00
|
|
|
formatter: this.check_formatter},
|
|
|
|
{id: "name", name: this.tree_grid.label, field: "name", width: 300,
|
|
|
|
formatter: this.tree_formatter},
|
|
|
|
{id: "total", name: "Total", field: "total", plot: false,
|
|
|
|
formatter: this.currency_formatter}
|
|
|
|
];
|
|
|
|
|
2014-05-28 09:42:36 +00:00
|
|
|
this.make_date_range_columns();
|
2012-09-21 14:16:24 +00:00
|
|
|
this.columns = std_columns.concat(this.columns);
|
|
|
|
},
|
|
|
|
filters: [
|
2014-06-03 07:32:18 +00:00
|
|
|
{fieldtype:"Select", label: __("Tree Type"), fieldname: "tree_type",
|
|
|
|
options:["Supplier Type", "Supplier", "Item Group", "Item"],
|
2012-09-21 14:16:24 +00:00
|
|
|
filter: function(val, item, opts, me) {
|
|
|
|
return me.apply_zero_filter(val, item, opts, me);
|
|
|
|
}},
|
2014-06-03 07:32:18 +00:00
|
|
|
{fieldtype:"Select", label: __("Based On"), fieldname: "based_on",
|
|
|
|
options:["Purchase Invoice", "Purchase Order", "Purchase Receipt"]},
|
|
|
|
{fieldtype:"Select", label: __("Value or Qty"), fieldname: "value_or_qty",
|
|
|
|
options:["Value", "Quantity"]},
|
|
|
|
{fieldtype:"Select", label: __("Company"), link:"Company", fieldname: "company",
|
|
|
|
default_value: __("Select Company...")},
|
|
|
|
{fieldtype:"Date", label: __("From Date"), fieldname: "from_date"},
|
|
|
|
{fieldtype:"Date", label: __("To Date"), fieldname: "to_date"},
|
|
|
|
{fieldtype:"Select", label: __("Range"), fieldname: "range",
|
|
|
|
options:[{label: __("Daily"), value: "Daily"}, {label: __("Weekly"), value: "Weekly"},
|
|
|
|
{label: __("Monthly"), value: "Monthly"}, {label: __("Quarterly"), value: "Quarterly"},
|
2015-01-01 10:55:43 +00:00
|
|
|
{label: __("Yearly"), value: "Yearly"}]}
|
2012-09-21 14:16:24 +00:00
|
|
|
],
|
|
|
|
setup_filters: function() {
|
|
|
|
var me = this;
|
|
|
|
this._super();
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2013-07-23 05:31:27 +00:00
|
|
|
this.trigger_refresh_on_change(["value_or_qty", "tree_type", "based_on", "company"]);
|
2013-03-07 10:05:36 +00:00
|
|
|
|
2014-05-28 09:42:36 +00:00
|
|
|
this.show_zero_check()
|
2012-09-21 14:16:24 +00:00
|
|
|
this.setup_plot_check();
|
|
|
|
},
|
|
|
|
init_filter_values: function() {
|
|
|
|
this._super();
|
2012-11-28 11:42:18 +00:00
|
|
|
this.filter_inputs.range.val('Monthly');
|
2012-09-21 14:16:24 +00:00
|
|
|
},
|
|
|
|
prepare_data: function() {
|
|
|
|
var me = this;
|
|
|
|
if (!this.tl) {
|
|
|
|
// add 'Not Set' Supplier & Item
|
|
|
|
// Add 'All Supplier Types' Supplier Type
|
|
|
|
// (Supplier / Item are not mandatory!!)
|
|
|
|
// Set parent supplier type for tree view
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
$.each(frappe.report_dump.data["Supplier Type"], function(i, v) {
|
2014-06-03 07:32:18 +00:00
|
|
|
v['parent_supplier_type'] = __("All Supplier Types")
|
2012-09-21 14:16:24 +00:00
|
|
|
})
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.report_dump.data["Supplier Type"] = [{
|
2014-05-28 09:42:36 +00:00
|
|
|
name: __("All Supplier Types"),
|
2012-09-21 14:16:24 +00:00
|
|
|
id: "All Supplier Types",
|
2014-02-14 10:17:51 +00:00
|
|
|
}].concat(frappe.report_dump.data["Supplier Type"]);
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.report_dump.data["Supplier"].push({
|
2014-05-28 09:42:36 +00:00
|
|
|
name: __("Not Set"),
|
2014-06-03 07:32:18 +00:00
|
|
|
parent_supplier_type: __("All Supplier Types"),
|
2012-09-21 14:16:24 +00:00
|
|
|
id: "Not Set",
|
|
|
|
});
|
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.report_dump.data["Item"].push({
|
2014-05-28 09:42:36 +00:00
|
|
|
name: __("Not Set"),
|
2012-09-21 14:16:24 +00:00
|
|
|
parent_item_group: "All Item Groups",
|
|
|
|
id: "Not Set",
|
|
|
|
});
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2013-01-24 13:08:30 +00:00
|
|
|
if (!this.tl || !this.tl[this.based_on]) {
|
|
|
|
this.make_transaction_list(this.based_on, this.based_on + " Item");
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
|
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
if(!this.data || me.item_type != me.tree_type) {
|
|
|
|
if(me.tree_type=='Supplier') {
|
2014-02-14 10:17:51 +00:00
|
|
|
var items = frappe.report_dump.data["Supplier"];
|
2012-09-21 14:16:24 +00:00
|
|
|
} if(me.tree_type=='Supplier Type') {
|
|
|
|
var items = this.prepare_tree("Supplier", "Supplier Type");
|
|
|
|
} else if(me.tree_type=="Item Group") {
|
|
|
|
var items = this.prepare_tree("Item", "Item Group");
|
|
|
|
} else if(me.tree_type=="Item") {
|
2014-02-14 10:17:51 +00:00
|
|
|
var items = frappe.report_dump.data["Item"];
|
2012-09-21 14:16:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
me.item_type = me.tree_type
|
|
|
|
me.parent_map = {};
|
|
|
|
me.item_by_name = {};
|
|
|
|
me.data = [];
|
|
|
|
|
|
|
|
$.each(items, function(i, v) {
|
|
|
|
var d = copy_dict(v);
|
|
|
|
|
|
|
|
me.data.push(d);
|
|
|
|
me.item_by_name[d.name] = d;
|
|
|
|
if(d[me.tree_grid.parent_field]) {
|
|
|
|
me.parent_map[d.name] = d[me.tree_grid.parent_field];
|
|
|
|
}
|
|
|
|
me.reset_item_values(d);
|
2014-05-28 09:42:36 +00:00
|
|
|
});
|
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
this.set_indent();
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
} else {
|
|
|
|
// otherwise, only reset values
|
|
|
|
$.each(this.data, function(i, d) {
|
|
|
|
me.reset_item_values(d);
|
|
|
|
});
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
this.prepare_balances();
|
|
|
|
if(me.tree_grid.show) {
|
2014-05-28 09:42:36 +00:00
|
|
|
this.set_totals(false);
|
2012-09-21 14:16:24 +00:00
|
|
|
this.update_groups();
|
|
|
|
} else {
|
|
|
|
this.set_totals(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
prepare_balances: function() {
|
|
|
|
var me = this;
|
|
|
|
var from_date = dateutil.str_to_obj(this.from_date);
|
|
|
|
var to_date = dateutil.str_to_obj(this.to_date);
|
|
|
|
var is_val = this.value_or_qty == 'Value';
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2013-01-24 13:08:30 +00:00
|
|
|
$.each(this.tl[this.based_on], function(i, tl) {
|
2014-05-28 09:42:36 +00:00
|
|
|
if (me.is_default('company') ? true : tl.company === me.company) {
|
2012-09-21 14:16:24 +00:00
|
|
|
var posting_date = dateutil.str_to_obj(tl.posting_date);
|
|
|
|
if (posting_date >= from_date && posting_date <= to_date) {
|
2014-05-28 09:42:36 +00:00
|
|
|
var item = me.item_by_name[tl[me.tree_grid.item_key]] ||
|
2013-01-24 13:08:30 +00:00
|
|
|
me.item_by_name['Not Set'];
|
2015-02-23 11:28:30 +00:00
|
|
|
item[me.column_map[tl.posting_date].field] += (is_val ? tl.base_net_amount : tl.qty);
|
2012-09-21 14:16:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
update_groups: function() {
|
|
|
|
var me = this;
|
|
|
|
|
|
|
|
$.each(this.data, function(i, item) {
|
|
|
|
var parent = me.parent_map[item.name];
|
|
|
|
while(parent) {
|
2014-06-03 07:32:18 +00:00
|
|
|
var parent_group = me.item_by_name[parent];
|
2014-05-28 09:42:36 +00:00
|
|
|
|
2012-09-21 14:16:24 +00:00
|
|
|
$.each(me.columns, function(c, col) {
|
|
|
|
if (col.formatter == me.currency_formatter) {
|
2014-05-28 09:42:36 +00:00
|
|
|
parent_group[col.field] =
|
2012-09-21 14:16:24 +00:00
|
|
|
flt(parent_group[col.field])
|
|
|
|
+ flt(item[col.field]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
parent = me.parent_map[parent];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
set_totals: function(sort) {
|
|
|
|
var me = this;
|
|
|
|
var checked = false;
|
2014-05-28 09:42:36 +00:00
|
|
|
$.each(this.data, function(i, d) {
|
2012-09-21 14:16:24 +00:00
|
|
|
d.total = 0.0;
|
|
|
|
$.each(me.columns, function(i, col) {
|
2014-05-28 09:42:36 +00:00
|
|
|
if(col.formatter==me.currency_formatter && !col.hidden && col.field!="total")
|
2012-09-21 14:16:24 +00:00
|
|
|
d.total += d[col.field];
|
|
|
|
if(d.checked) checked = true;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
if(sort)this.data = this.data.sort(function(a, b) { return b.total - a.total; });
|
|
|
|
|
|
|
|
if(!this.checked) {
|
|
|
|
this.data[0].checked = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
get_plot_points: function(item, col, idx) {
|
2014-05-28 09:42:36 +00:00
|
|
|
return [[dateutil.str_to_obj(col.id).getTime(), item[col.field]],
|
2012-09-21 14:16:24 +00:00
|
|
|
[dateutil.user_to_obj(col.name).getTime(), item[col.field]]];
|
|
|
|
}
|
2014-05-28 09:42:36 +00:00
|
|
|
});
|