summaryrefslogtreecommitdiff
path: root/taskapp/utilities/request.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskapp/utilities/request.py')
-rw-r--r--taskapp/utilities/request.py28
1 files changed, 24 insertions, 4 deletions
diff --git a/taskapp/utilities/request.py b/taskapp/utilities/request.py
index 41370f8..85bd8e6 100644
--- a/taskapp/utilities/request.py
+++ b/taskapp/utilities/request.py
@@ -7,8 +7,8 @@ def create_request(to,by,role,task=None,assigned_user=None):
to - a list of users to which the notification is to be sent
by - sender of request
role - a two character field which represents the role requested
- task - a requesting task (useful for sending admins a request to give Pynts to the user, assigning a user to a task)
- assigned_user - user to whom the Pynts/Task is assigned to(useful for sending admins a request to give Pynts to the user, assigning a user to a task)
+ task - a requesting task (useful for sending admins a request to give Pynts to the user)
+ assigned_user - user to whom the Pynts/Task is assigned to(useful for sending admins a request to give Pynts to the user)
"""
req = Request(creation_date=datetime.now())
req.by = by
@@ -16,8 +16,28 @@ def create_request(to,by,role,task=None,assigned_user=None):
req.save()
req.to = to
req.role = role
- if task not None:
+ if task is not None:
req.task = task
- if assigned_user not None:
+ if assigned_user is not None:
req.assigned_user = assigned_user
req.save()
+
+def reply_to_request(request_id, reply):
+ """
+ makes a request replied with the given reply.
+ arguments:
+ request_id - a number denoting the id of the Request object
+ reply - a boolean value to be given as reply (True/False)
+ """
+ try:
+ request = Request.objects.get(id = request_id)
+ except Request.DoesNotExist:
+ return False #No such request exist
+ if request.replied is not True:
+ request.reply = reply
+ request.replied = True
+ request.read = True
+ request.reply_date = datetime.now()
+ request.save()
+ return True #Reply has been added successfully
+ return False #Already replied