33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import webnotes
|
|
from webnotes.widgets.reportview import execute as runreport
|
|
from webnotes.utils import getdate
|
|
|
|
def execute(filters=None):
|
|
priority_map = {"High": 3, "Medium": 2, "Low": 1}
|
|
|
|
todo_list = runreport(doctype="ToDo", fields=["name", "date", "description",
|
|
"priority", "reference_type", "reference_name", "assigned_by", "owner"],
|
|
filters=[["ToDo", "checked", "!=", 1]])
|
|
|
|
todo_list.sort(key=lambda todo: (priority_map.get(todo.priority, 0),
|
|
todo.date and getdate(todo.date) or getdate("1900-01-01")), reverse=True)
|
|
|
|
columns = ["ID:Link/ToDo:90", "Priority::60", "Date:Date", "Description::150",
|
|
"Assigned To/Owner:Link/Profile:120", "Assigned By:Link/Profile:120", "Reference::200"]
|
|
|
|
result = []
|
|
for todo in todo_list:
|
|
if todo.reference_type:
|
|
todo.reference = """<a href="#Form/%s/%s">%s: %s</a>""" % \
|
|
(todo.reference_type, todo.reference_name, todo.reference_type, todo.reference_name)
|
|
else:
|
|
todo.reference = None
|
|
result.append([todo.name, todo.priority, todo.date, todo.description,
|
|
todo.owner, todo.assigned_by, todo.reference])
|
|
|
|
return columns, result
|
|
|