Rushabh Mehta | b21eb9a | 2013-02-28 18:42:46 +0530 | [diff] [blame] | 1 | # For license information, please see license.txt |
2 | |||||
3 | from __future__ import unicode_literals | ||||
4 | import webnotes | ||||
5 | |||||
6 | @webnotes.whitelist() | ||||
7 | def get_time_log_list(doctype, txt, searchfield, start, page_len, filters): | ||||
8 | return webnotes.conn.get_values("Time Log", filters, ["name", "activity_type", "owner"], debug=True) |