Skip to content

Commit

Permalink
HIV-705: Family testing bug fix (AMPATH#1047)
Browse files Browse the repository at this point in the history
  • Loading branch information
jecihjoy authored Mar 12, 2021
1 parent 97f2746 commit 06d99f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/family-history/family-history.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export class FamilyTestingService {
when reason_not_contacted = 8 then 'Phone off'
when reason_not_contacted = 9 then 'Wrong phone number'
end as reason_not_contacted
from etl.contact_tracing t1 join etl.flat_family_testing t2 on (t1.contact_id = t2.obs_group_id)
from etl.flat_family_testing t2 left join etl.contact_tracing t1 on (t1.contact_id = t2.obs_group_id)
where obs_group_id = ${params.contact_id}`;
queryParts = {
sql: sql
Expand Down

0 comments on commit 06d99f2

Please sign in to comment.