fix
This commit is contained in:
parent
9fc83eb0e7
commit
993e622f53
1 changed files with 2 additions and 1 deletions
|
@ -712,7 +712,7 @@ def getAllUserTasks(token):
|
|||
|
||||
grade = TaskGrade.all().filter("taskId = ", t.key().id()).filter("userId = ", ownerId)
|
||||
for g in grade.run():
|
||||
taskDic['grade'] = g.grade
|
||||
taskDic['grade'] = json.loads(g.to_JSON())
|
||||
if grade.count() == 0:
|
||||
taskDic['grade'] = {'taskId': t.key().id(), 'userId': ownerId, 'grade': None}
|
||||
|
||||
|
@ -724,6 +724,7 @@ def getAllUserTasks(token):
|
|||
taskDic['submitted']['total'] = total
|
||||
|
||||
basicTC = TaskComponent.all().filter("taskId = ", t.key().id()).filter("userId = ", -1).count()
|
||||
print "basic tc: " + basicTC
|
||||
allTC = TaskComponent.all().filter("taskId = ", t.key().id()).count()
|
||||
done = (basicTC/allTC) - 1
|
||||
taskDic['submitted']['done'] = done
|
||||
|
|
Loading…
Reference in a new issue