2018-05-26 03:56:03 +00:00
|
|
|
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
|
|
// For license information, please see license.txt
|
2020-05-13 05:17:36 +00:00
|
|
|
/* eslint-disable */
|
2018-05-26 03:56:03 +00:00
|
|
|
|
2020-05-13 05:17:36 +00:00
|
|
|
frappe.query_reports["Employee Analytics"] = {
|
2019-11-06 09:11:16 +00:00
|
|
|
"filters": [
|
|
|
|
{
|
|
|
|
"fieldname":"company",
|
|
|
|
"label": __("Company"),
|
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Company",
|
|
|
|
"default": frappe.defaults.get_user_default("Company"),
|
|
|
|
"reqd": 1
|
|
|
|
},
|
2020-05-13 05:17:36 +00:00
|
|
|
{
|
|
|
|
"fieldname":"parameter",
|
|
|
|
"label": __("Parameter"),
|
|
|
|
"fieldtype": "Select",
|
|
|
|
"options": ["Branch","Grade","Department","Designation", "Employment Type"],
|
|
|
|
"reqd": 1
|
|
|
|
}
|
2019-11-06 09:11:16 +00:00
|
|
|
]
|
2020-05-13 05:17:36 +00:00
|
|
|
};
|