mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
19 lines
516 B
JavaScript
19 lines
516 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
frappe.query_reports["Campaign Efficiency"] = {
|
|
filters: [
|
|
{
|
|
fieldname: "from_date",
|
|
label: __("From Date"),
|
|
fieldtype: "Date",
|
|
default: erpnext.utils.get_fiscal_year(frappe.datetime.get_today(), true)[1],
|
|
},
|
|
{
|
|
fieldname: "to_date",
|
|
label: __("To Date"),
|
|
fieldtype: "Date",
|
|
default: erpnext.utils.get_fiscal_year(frappe.datetime.get_today(), true)[2],
|
|
},
|
|
],
|
|
};
|