brotherton-erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.js

35 lines
968 B
JavaScript
Raw Normal View History

2013-11-20 07:29:58 +00:00
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
2013-05-13 10:29:50 +00:00
wn.query_reports["Monthly Attendance Sheet"] = {
"filters": [
{
"fieldname":"month",
"label": wn._("Month"),
2013-05-13 10:29:50 +00:00
"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"),
2013-05-13 10:29:50 +00:00
"fieldtype": "Link",
"options": "Fiscal Year",
"default": sys_defaults.fiscal_year,
},
{
"fieldname":"employee",
"label": wn._("Employee"),
2013-05-13 10:29:50 +00:00
"fieldtype": "Link",
"options": "Employee"
},
{
"fieldname":"company",
"label": wn._("Company"),
2013-05-13 10:29:50 +00:00
"fieldtype": "Link",
"options": "Company",
"default": wn.defaults.get_default("company")
2013-05-13 10:29:50 +00:00
}
]
}