2013-02-28 13:12:46 +00:00
|
|
|
# For license information, please see license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import webnotes
|
|
|
|
|
|
|
|
@webnotes.whitelist()
|
|
|
|
def get_time_log_list(doctype, txt, searchfield, start, page_len, filters):
|
2013-05-01 06:44:57 +00:00
|
|
|
return webnotes.conn.get_values("Time Log", filters, ["name", "activity_type", "owner"])
|