25 lines
742 B
JavaScript
25 lines
742 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
/* eslint-disable */
|
|
|
|
frappe.query_reports["Expiring Memberships"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname": "fiscal_year",
|
|
"label": __("Fiscal Year"),
|
|
"fieldtype": "Link",
|
|
"options": "Fiscal Year",
|
|
"default": frappe.defaults.get_user_default("fiscal_year"),
|
|
"reqd": 1
|
|
},
|
|
{
|
|
"fieldname":"month",
|
|
"label": __("Month"),
|
|
"fieldtype": "Select",
|
|
"options": "Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug\nSep\nOct\nNov\nDec",
|
|
"default": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov",
|
|
"Dec"][frappe.datetime.str_to_obj(frappe.datetime.get_today()).getMonth()],
|
|
}
|
|
]
|
|
}
|