Skip to content

Commit

Permalink
Merge pull request #745 from cbrianbet/feat/new-reporting-layer
Browse files Browse the repository at this point in the history
Fixed hts partner bug
  • Loading branch information
cbrianbet authored Jun 12, 2024
2 parents 9148122 + 4eedf01 commit 051cfff
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export class GetUptakeByAgeSexHandler
uptakeByAgeSexSql = `${uptakeByAgeSexSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export class GetUptakeByCountyHandler
uptakeByCountySql = `${uptakeByCountySql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByEntrypointHandler
uptakeByEntryPointSql = `${uptakeByEntryPointSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByMonthsSinceLastTestHandler
uptakeByPopulationTypeSql = `${uptakeByPopulationTypeSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByPartnerHandler
uptakeByPartnerSql = `${uptakeByPartnerSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

if (query.fromDate) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export class GetUptakeByPopulationTypeHandler implements IQueryHandler<GetUptake
uptakeByPopulationTypeSql = `${uptakeByPopulationTypeSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByTbScreenedHandler
uptakeByTBScreenedSql = `${uptakeByTBScreenedSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export class GetUptakeByTBScreeningHandler
uptakeByClientTestedAsSql = `${uptakeByClientTestedAsSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

if (query.facility) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByTestedasHandler
uptakeByClientTestedAsSql = `${uptakeByClientTestedAsSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class GetUptakeByTestingStrategyHandler
uptakeByPopulationTypeSql = `${uptakeByPopulationTypeSql} and PartnerName IN ('${query.partner
.toString()
.replace(/,/g, "','")}')`;
params.push(query.partner);
}

// if(query.month) {
Expand Down

0 comments on commit 051cfff

Please sign in to comment.