From e32e2126f44203fae63fb8f06fe2ec06a95cc0bc Mon Sep 17 00:00:00 2001 From: robert schouten Date: Thu, 3 Nov 2016 08:10:30 +0800 Subject: [PATCH] gantt fix --- erpnext/projects/doctype/timesheet/timesheet_calendar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/projects/doctype/timesheet/timesheet_calendar.js b/erpnext/projects/doctype/timesheet/timesheet_calendar.js index 47333512cb6..b22cd09f7f9 100644 --- a/erpnext/projects/doctype/timesheet/timesheet_calendar.js +++ b/erpnext/projects/doctype/timesheet/timesheet_calendar.js @@ -1,7 +1,7 @@ frappe.views.calendar["Timesheet"] = { field_map: { - "start": "from_time", - "end": "to_time", + "start": "start_date", + "end": "end_date", "name": "parent", "id": "name", "title": "name", @@ -29,4 +29,4 @@ frappe.views.calendar["Timesheet"] = { } ], get_events_method: "erpnext.projects.doctype.timesheet.timesheet.get_events" -} \ No newline at end of file +}