Skip to content
Snippets Groups Projects
Commit cd26c2df authored by Nico Vermaas's avatar Nico Vermaas
Browse files

solved bug in filtered_tasks

parent 9121d737
No related branches found
No related tags found
2 merge requests!223Master,!222Sdc 436 validation
...@@ -44,7 +44,7 @@ def convert_quality_to_shortlist_for_template(task): ...@@ -44,7 +44,7 @@ def convert_quality_to_shortlist_for_template(task):
list.append(str(task.quality_json['sensitivity'])) list.append(str(task.quality_json['sensitivity']))
list.append(str(task.quality_json['observing-conditions'])) list.append(str(task.quality_json['observing-conditions']))
#url = '{ <a href="' + task.quality_json['plots'][0]["path"] + '">Diagnostic Plots</a> }' #url = '{ <a href="' + task.quality_json['plots'][0]["path"] + '">Diagnostic Plots</a> }'
list.append("Diagnostic Plots") list.append("Diagnostic Plots (todo)")
except Exception as err: except Exception as err:
pass pass
......
...@@ -25,7 +25,7 @@ class TaskTable(tables.Table): ...@@ -25,7 +25,7 @@ class TaskTable(tables.Table):
class Meta: class Meta:
model = Task model = Task
template_name = "django_tables2/bootstrap4.html" template_name = "django_tables2/bootstrap4.html"
fields = ("id", "workflow","filter","priority","status","project","sas_id","resume","actions","buttons") fields = ("id", "workflow","filter","priority","status","quality","project","sas_id","resume","actions","buttons")
# columns that need specific rendering # columns that need specific rendering
status = StatusColumn() status = StatusColumn()
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 1.0.0 (1 apr 2021 - 16:00) <p class="footer"> Version 1.0.0 (2 apr 2021 - 6:00)
</div> </div>
......
...@@ -9,6 +9,6 @@ ...@@ -9,6 +9,6 @@
<th>Sensitivity</th> <th>Sensitivity</th>
<th>Conditions</th> <th>Conditions</th>
<th>Diagnostic plots</th> <th>Diagnostic plots</th>
<th>Current Quality</th> <th>Current Q</th>
<th>Choose a Quality</th> <th>Choose a Quality</th>
</tr> </tr>
\ No newline at end of file
...@@ -59,6 +59,7 @@ class TaskFilter(filters.FilterSet): ...@@ -59,6 +59,7 @@ class TaskFilter(filters.FilterSet):
'project': ['exact', 'icontains'], 'project': ['exact', 'icontains'],
'sas_id': ['exact', 'icontains', 'in'], 'sas_id': ['exact', 'icontains', 'in'],
'status': ['exact', 'icontains', 'in', 'startswith'], 'status': ['exact', 'icontains', 'in', 'startswith'],
'quality': ['exact', 'icontains', 'in', 'startswith'],
'purge_policy': ['exact'], 'purge_policy': ['exact'],
'priority': ['exact', 'lte', 'gte'], 'priority': ['exact', 'lte', 'gte'],
'resume': ['exact'], 'resume': ['exact'],
...@@ -81,6 +82,7 @@ class TaskFilterQueryPage(filters.FilterSet): ...@@ -81,6 +82,7 @@ class TaskFilterQueryPage(filters.FilterSet):
'filter': ['exact', 'icontains'], 'filter': ['exact', 'icontains'],
'priority': ['exact', 'gte', 'lte'], 'priority': ['exact', 'gte', 'lte'],
'status': ['icontains', 'in'], 'status': ['icontains', 'in'],
'quality': ['icontains', 'in'],
'project': ['exact', 'icontains', 'in'], 'project': ['exact', 'icontains', 'in'],
'sas_id': ['exact', 'icontains', 'in'], 'sas_id': ['exact', 'icontains', 'in'],
# 'resume': ['exact'], # 'resume': ['exact'],
...@@ -215,7 +217,7 @@ class IndexView(ListView): ...@@ -215,7 +217,7 @@ class IndexView(ListView):
try: try:
filter = self.request.session['task_filter'] filter = self.request.session['task_filter']
if filter != 'all': if filter != 'all':
tasks = get_searched_tasks(filter, sort) tasks = get_filtered_tasks(filter, sort)
except: except:
pass pass
...@@ -229,7 +231,7 @@ class IndexView(ListView): ...@@ -229,7 +231,7 @@ class IndexView(ListView):
pass pass
if (search_box is not None): if (search_box is not None):
tasks = get_searched_tasks(search_box, sort) tasks = get_filtered_tasks(search_box, sort)
# only return the 'regular' tasks, and not the 'postprocessing' tasks in the GUI # only return the 'regular' tasks, and not the 'postprocessing' tasks in the GUI
# tasks = tasks.filter(task_type='regular') # tasks = tasks.filter(task_type='regular')
...@@ -283,7 +285,7 @@ class PostProcessingTasksView(ListView): ...@@ -283,7 +285,7 @@ class PostProcessingTasksView(ListView):
try: try:
filter = self.request.session['task_filter'] filter = self.request.session['task_filter']
if filter != 'all': if filter != 'all':
tasks = get_searched_tasks(filter, sort) tasks = get_filtered_tasks(filter, sort)
except: except:
pass pass
...@@ -297,7 +299,7 @@ class PostProcessingTasksView(ListView): ...@@ -297,7 +299,7 @@ class PostProcessingTasksView(ListView):
pass pass
if (search_box is not None): if (search_box is not None):
tasks = get_searched_tasks(search_box, sort) tasks = get_filtered_tasks(search_box, sort)
# only return the 'regular' tasks, and not the 'postprocessing' tasks in the GUI # only return the 'regular' tasks, and not the 'postprocessing' tasks in the GUI
tasks = tasks.filter(task_type='postprocessing') tasks = tasks.filter(task_type='postprocessing')
...@@ -351,12 +353,12 @@ class ShowQualityPage(ListView): ...@@ -351,12 +353,12 @@ class ShowQualityPage(ListView):
try: try:
filter = self.request.session['task_filter'] filter = self.request.session['task_filter']
if filter != 'all': if filter != 'all':
tasks = get_searched_tasks(filter, sort) tasks = get_filtered_tasks(filter, sort)
except: except:
pass pass
if (search_box is not None): if (search_box is not None):
tasks = get_searched_tasks(search_box, sort) tasks = get_filtered_tasks(search_box, sort)
# exclude the tasks without quality information # exclude the tasks without quality information
#tasks = tasks.exclude(outputs__isnull=True) #tasks = tasks.exclude(outputs__isnull=True)
...@@ -406,18 +408,18 @@ class ShowValidationPage(ListView): ...@@ -406,18 +408,18 @@ class ShowValidationPage(ListView):
except: except:
sort = '-creationTime' sort = '-creationTime'
tasks = Task.objects.filter(status__icontains='stored').order_by(sort) stored_tasks = Task.objects.filter(status__icontains='stored').order_by(sort)
tasks = stored_tasks
# check if there is a 'task_filter' put on the session # check if there is a 'task_filter' put on the session
try: try:
filter = self.request.session['task_filter'] filter = self.request.session['task_filter']
if filter != 'all': if filter != 'all':
tasks = get_searched_tasks(filter, sort) tasks = get_filtered_tasks(filter, sort, stored_tasks)
except: except:
pass pass
if (search_box is not None): if (search_box is not None):
tasks = get_searched_tasks(search_box, sort) tasks = get_filtered_tasks(search_box, sort, stored_tasks)
# exclude the tasks without quality information # exclude the tasks without quality information
tasks = tasks.exclude(status__icontains="failed") tasks = tasks.exclude(status__icontains="failed")
...@@ -465,18 +467,19 @@ class ShowFailuresPage(ListView): ...@@ -465,18 +467,19 @@ class ShowFailuresPage(ListView):
except: except:
sort = '-creationTime' sort = '-creationTime'
tasks = Task.objects.filter(status__icontains='failed').order_by(sort) failed_tasks = Task.objects.filter(status__icontains='failed').order_by(sort)
tasks = failed_tasks
# check if there is a 'task_filter' put on the session # check if there is a 'task_filter' put on the session
#try: try:
# filter = self.request.session['task_filter'] filter = self.request.session['task_filter']
# if filter != 'all': if filter != 'all':
# tasks = get_searched_tasks(filter, sort) tasks = get_filtered_tasks(filter, sort, failed_tasks)
#except: except:
# pass pass
if (search_box is not None): if (search_box is not None):
tasks = get_searched_tasks(search_box, sort) tasks = get_filtered_tasks(search_box, sort, failed_tasks)
paginator = Paginator(tasks, config.TASKS_PER_PAGE) # Show 50 tasks per page paginator = Paginator(tasks, config.TASKS_PER_PAGE) # Show 50 tasks per page
page = self.request.GET.get('page') page = self.request.GET.get('page')
...@@ -501,9 +504,14 @@ class ShowFailuresPage(ListView): ...@@ -501,9 +504,14 @@ class ShowFailuresPage(ListView):
return tasks return tasks
# this provides a broad range of filters for the search_box in the GUI
def get_filtered_tasks(search, sort, tasks=None):
if tasks:
tasks_to_filter = tasks
else:
tasks_to_filter = Task.objects.all()
def get_searched_tasks(search, sort): filtered_tasks = tasks_to_filter.filter(
tasks = Task.objects.filter(
Q(id__contains=search) | Q(id__contains=search) |
Q(sas_id__contains=search) | Q(sas_id__contains=search) |
Q(creationTime__icontains=search) | Q(creationTime__icontains=search) |
...@@ -511,7 +519,7 @@ def get_searched_tasks(search, sort): ...@@ -511,7 +519,7 @@ def get_searched_tasks(search, sort):
Q(status__icontains=search) | Q(status__icontains=search) |
Q(status__in=search) | Q(status__in=search) |
Q(project__icontains=search)).order_by(sort) Q(project__icontains=search)).order_by(sort)
return tasks return filtered_tasks
class TaskTables2View(SingleTableView): class TaskTables2View(SingleTableView):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment