Skip to content
Snippets Groups Projects

Virus visit column changes

Merged Carlos Vega requested to merge virus_visit_column_changes into master
2 unresolved threads
Files
6
@@ -19,6 +19,17 @@ def bool_to_yes_no_null(val):
return "NO"
def virus_test_to_str(test, date):
if test is None and date is not None:
return "Inconclusive"
if test is None:
return "N/A"
if test:
return "Positive"
else:
return "Negative"
def flying_team_to_str(flying_team):
result = ""
if flying_team is not None:
Loading