35 lines
951 B
JavaScript
35 lines
951 B
JavaScript
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
wn.query_reports["Monthly Attendance Sheet"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"month",
|
|
"label": wn._("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"][wn.datetime.str_to_obj(wn.datetime.get_today()).getMonth()],
|
|
},
|
|
{
|
|
"fieldname":"fiscal_year",
|
|
"label": wn._("Fiscal Year"),
|
|
"fieldtype": "Link",
|
|
"options": "Fiscal Year",
|
|
"default": sys_defaults.fiscal_year,
|
|
},
|
|
{
|
|
"fieldname":"employee",
|
|
"label": wn._("Employee"),
|
|
"fieldtype": "Link",
|
|
"options": "Employee"
|
|
},
|
|
{
|
|
"fieldname":"company",
|
|
"label": wn._("Company"),
|
|
"fieldtype": "Link",
|
|
"options": "Company",
|
|
"default": wn.defaults.get_default("company")
|
|
}
|
|
]
|
|
} |