fixed to timesheet patch

This commit is contained in:
Rushabh Mehta 2013-03-04 15:47:42 +05:30
parent d2b91bc644
commit 040e599e99

View File

@ -10,7 +10,7 @@ def execute():
if not webnotes.conn.exists("Task", tsd.task_id): if not webnotes.conn.exists("Task", tsd.task_id):
tsd.task_id = None tsd.task_id = None
tl = webnotes.doc({ tl = webnotes.bean({
"doctype": "Time Log", "doctype": "Time Log",
"status": "Draft", "status": "Draft",
"from_time": ts.doc.timesheet_date + " " + tsd.act_start_time, "from_time": ts.doc.timesheet_date + " " + tsd.act_start_time,
@ -22,4 +22,7 @@ def execute():
"file_list": ts.doc.file_list, "file_list": ts.doc.file_list,
"_user_tags": ts.doc._user_tags "_user_tags": ts.doc._user_tags
}) })
tl.insert() tl.make_obj()
tl.controller.set_status()
tl.controller.calculate_total_hours()
tl.doc.insert()