143 lines
3.1 KiB
JavaScript
143 lines
3.1 KiB
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
/* eslint-disable */
|
|
|
|
frappe.query_reports["Issue Analytics"] = {
|
|
"filters": [
|
|
{
|
|
fieldname: "company",
|
|
label: __("Company"),
|
|
fieldtype: "Link",
|
|
options: "Company",
|
|
default: frappe.defaults.get_user_default("Company"),
|
|
reqd: 1
|
|
},
|
|
{
|
|
fieldname: "based_on",
|
|
label: __("Based On"),
|
|
fieldtype: "Select",
|
|
options: ["Customer", "Issue Type", "Issue Priority", "Assigned To"],
|
|
default: "Customer",
|
|
reqd: 1
|
|
},
|
|
{
|
|
fieldname: "from_date",
|
|
label: __("From Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.defaults.get_global_default("year_start_date"),
|
|
reqd: 1
|
|
},
|
|
{
|
|
fieldname:"to_date",
|
|
label: __("To Date"),
|
|
fieldtype: "Date",
|
|
default: frappe.defaults.get_global_default("year_end_date"),
|
|
reqd: 1
|
|
},
|
|
{
|
|
fieldname: "range",
|
|
label: __("Range"),
|
|
fieldtype: "Select",
|
|
options: [
|
|
{ "value": "Weekly", "label": __("Weekly") },
|
|
{ "value": "Monthly", "label": __("Monthly") },
|
|
{ "value": "Quarterly", "label": __("Quarterly") },
|
|
{ "value": "Yearly", "label": __("Yearly") }
|
|
],
|
|
default: "Monthly",
|
|
reqd: 1
|
|
},
|
|
{
|
|
fieldname: "status",
|
|
label: __("Status"),
|
|
fieldtype: "Select",
|
|
options:[
|
|
"",
|
|
{label: __('Open'), value: 'Open'},
|
|
{label: __('Replied'), value: 'Replied'},
|
|
{label: __('Resolved'), value: 'Resolved'},
|
|
{label: __('Closed'), value: 'Closed'}
|
|
]
|
|
},
|
|
{
|
|
fieldname: "priority",
|
|
label: __("Issue Priority"),
|
|
fieldtype: "Link",
|
|
options: "Issue Priority"
|
|
},
|
|
{
|
|
fieldname: "customer",
|
|
label: __("Customer"),
|
|
fieldtype: "Link",
|
|
options: "Customer"
|
|
},
|
|
{
|
|
fieldname: "project",
|
|
label: __("Project"),
|
|
fieldtype: "Link",
|
|
options: "Project"
|
|
},
|
|
{
|
|
fieldname: "assigned_to",
|
|
label: __("Assigned To"),
|
|
fieldtype: "Link",
|
|
options: "User"
|
|
}
|
|
],
|
|
after_datatable_render: function(datatable_obj) {
|
|
$(datatable_obj.wrapper).find(".dt-row-0").find('input[type=checkbox]').click();
|
|
},
|
|
get_datatable_options(options) {
|
|
return Object.assign(options, {
|
|
checkboxColumn: true,
|
|
events: {
|
|
onCheckRow: function(data) {
|
|
if (data && data.length) {
|
|
row_name = data[2].content;
|
|
row_values = data.slice(3).map(function(column) {
|
|
return column.content;
|
|
})
|
|
entry = {
|
|
'name': row_name,
|
|
'values': row_values
|
|
}
|
|
|
|
let raw_data = frappe.query_report.chart.data;
|
|
let new_datasets = raw_data.datasets;
|
|
|
|
var found = false;
|
|
|
|
for(var i=0; i < new_datasets.length; i++){
|
|
if (new_datasets[i].name == row_name){
|
|
found = true;
|
|
new_datasets.splice(i,1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found){
|
|
new_datasets.push(entry);
|
|
}
|
|
|
|
let new_data = {
|
|
labels: raw_data.labels,
|
|
datasets: new_datasets
|
|
}
|
|
|
|
setTimeout(() => {
|
|
frappe.query_report.chart.update(new_data)
|
|
},500)
|
|
|
|
|
|
setTimeout(() => {
|
|
frappe.query_report.chart.draw(true);
|
|
}, 1000)
|
|
|
|
frappe.query_report.raw_chart_data = new_data;
|
|
}
|
|
},
|
|
}
|
|
});
|
|
}
|
|
};
|