Skip to content

Commit

Permalink
Merge pull request #693 from cbrianbet/feat/new-reporting-layer
Browse files Browse the repository at this point in the history
Vl apis bug fixed
  • Loading branch information
cbrianbet authored Jan 18, 2024
2 parents 67e5367 + 1a3c58a commit 758b676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class GetVlOverallUptakeReceivedFollowTestsAllHandler implements IQueryHa
.leftJoin(
'LineListViralLoad',
'c',
'cohort.PatientidHash=c.PatientID and cohort.PatientPKHash=c.PatientPK and c.MFLCode=cohort.SiteCode',
'cohort.PatientidHash=c.PatientIDHash and cohort.PatientPKHash=c.PatientPKHash and c.MFLCode=cohort.SiteCode',
);

if (query.county) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class GetVlOverallUptakeReceivedFollowTestsHandler implements IQueryHandl
.leftJoin(
'LineListViralLoad',
'c',
'cohort.PatientidHash=c.PatientID and cohort.PatientPKHash=c.PatientPK and c.MFLCode=cohort.SiteCode',
'cohort.PatientidHash=c.PatientIDHash and cohort.PatientPKHash=c.PatientPKHash and c.MFLCode=cohort.SiteCode',
);

if (query.county) {
Expand Down

0 comments on commit 758b676

Please sign in to comment.