Skip to content

Commit

Permalink
Changes the covid lab ticker to return the test name and the lab number
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Nov 1, 2021
1 parent 5a89f7f commit 599bc82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/covid/lab.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,9 @@ def get_covid_result_ticker(patient):
'date_str' : timestamp.strftime('%d/%m/%Y %H:%M'),
'timestamp' : timestamp,
'name' : _get_covid_test(test).OBSERVATION_NAME,
'value' : result_string
'value' : result_string,
'test_name' : test.test_name,
'lab_number': test.lab_number
}
)

Expand Down

0 comments on commit 599bc82

Please sign in to comment.