Skip to content
Snippets Groups Projects
Commit d3197ce4 authored by Mario Raciti's avatar Mario Raciti
Browse files

TMSS-692: Cleanup

parent 5db90bfe
No related branches found
No related tags found
1 merge request!410Resolve TMSS-692
......@@ -15,10 +15,11 @@ def _get_subs_and_durations_from_project(project_pk: int) -> {}:
# Get SUBs related to the project
scheduling_unit_blueprints = models.SchedulingUnitBlueprint.objects.filter(draft__scheduling_set__project__pk=project_pk)
# TODO: Split into total, prio A, prio B? See TMSS-592.
total_duration, total_succeeded_duration, total_not_cancelled, total_failed_duration = timedelta(), timedelta(), timedelta(), timedelta()
total_duration, total_succeeded_duration, total_failed_duration = timedelta(), timedelta(), timedelta()
subs_succeeded, subs_failed = [], []
for sub in scheduling_unit_blueprints: # Distinguish between succeeded and failed observations
# TODO: Use QA workflow flag instead of the finished status? See TMSS-592.
if sub.status == 'finished': # Succeeded observations
total_succeeded_duration += sub.duration
subs_succeeded.append({'id': sub.pk, 'name': sub.name, 'duration': sub.duration})
......@@ -27,10 +28,10 @@ def _get_subs_and_durations_from_project(project_pk: int) -> {}:
subs_failed.append({'id': sub.pk, 'name': sub.name, 'duration': sub.duration})
total_duration += sub.duration # Total duration without considering the status of the obs.
total_not_cancelled = total_duration-total_failed_duration # Calculate not_cancelled duration
total_not_cancelled = total_duration - total_failed_duration # Calculate not_cancelled duration
durations = {'total': total_duration, 'total_succeeded': total_succeeded_duration, 'total_not_cancelled': total_not_cancelled,
'total_failed': total_failed_duration, 'scheduling_unit_blueprints_finished': subs_succeeded,
'scheduling_unit_blueprints_failed': subs_failed}
'total_failed': total_failed_duration, 'scheduling_unit_blueprints_finished': subs_succeeded,
'scheduling_unit_blueprints_failed': subs_failed}
return durations
......
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