brotherton-erpnext/erpnext/hr/report/recruitment_analytics/recruitment_analytics.js
Anurag Mishra ce5b490f66
feat : Recruitment analytics (#21732)
* feat: recruitment_anlytics

* fix: filters

* feat: added missing column designation

Co-authored-by: Marica <maricadsouza221197@gmail.com>
2020-07-23 12:04:58 +05:30

23 lines
537 B
JavaScript

// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt
/* eslint-disable */
frappe.query_reports["Recruitment Analytics"] = {
"filters": [
{
"fieldname":"company",
"label": __("Company"),
"fieldtype": "Link",
"options": "Company",
"default": frappe.defaults.get_user_default("Company"),
"reqd": 1
},
{
"fieldname":"on_date",
"label": __("On Date"),
"fieldtype": "Date",
"default": frappe.datetime.now_date(),
"reqd": 1,
},
]
};