[views] cleaned up, added ganttview

This commit is contained in:
Rushabh Mehta 2013-06-05 17:14:52 +05:30
parent 9c8ed8b71f
commit c4f08ef456
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
wn.views.calendar["Leave Application"] = wn.views.Calendar.extend({
wn.views.calendar["Leave Application"] = {
field_map: {
"start": "from_date",
"end": "to_date",
@ -14,4 +14,4 @@ wn.views.calendar["Leave Application"] = wn.views.Calendar.extend({
}
},
get_events_method: "hr.doctype.leave_application.leave_application.get_events"
})
}

View File

@ -1,4 +1,4 @@
wn.views.calendar["Time Log"] = wn.views.Calendar.extend({
wn.views.calendar["Time Log"] = {
field_map: {
"start": "from_time",
"end": "to_time",
@ -7,4 +7,4 @@ wn.views.calendar["Time Log"] = wn.views.Calendar.extend({
"allDay": "allDay"
},
get_events_method: "projects.doctype.time_log.time_log.get_events"
})
}