Skip to content
Snippets Groups Projects

Virus visit column changes

Merged Carlos Vega requested to merge virus_visit_column_changes into master
Files
8
@@ -18,15 +18,16 @@ def bool_to_yes_no_null(val):
else:
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 "YES"
return "Positive"
else:
return "NO"
return "Negative"
def flying_team_to_str(flying_team):
Loading