You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 11, 2026. It is now read-only.
cohortDsd.addColumn("HEI (6-8 weeks) without DNA PCR results", "", ReportUtils.map(publicHealthActionIndicatorLibrary.heiSixToEightWeeksMissingPCRTestsCs(), "startDate=${startDate},endDate=${endDate}"), "");
64
64
cohortDsd.addColumn("HEI (24 months) without a final documented outcome", "", ReportUtils.map(publicHealthActionIndicatorLibrary.hei24MonthsUndocumentedOutcomeCs(), "startDate=${startDate},endDate=${endDate}"), "");
65
65
cohortDsd.addColumn("Delayed viral load testing (Visited facility were eligible for vl but sample not taken)", "", ReportUtils.map(publicHealthActionIndicatorLibrary.delayedVLTestingZeroGracePeriod(), "startDate=${startDate},endDate=${endDate}"), "");
66
-
cohortDsd.addColumn("Virally Unsuppressed without Enhanced Adherence Counselling", "(No EAC past 2 weeks)", ReportUtils.map(publicHealthActionIndicatorLibrary.txCUrrUnsuppressedWithoutEACCs(), "startDate=${startDate},endDate=${endDate}"), "");
66
+
cohortDsd.addColumn("Virally Unsuppressed without Enhanced Adherence Counselling", "(No EAC past 2 weeks)", ReportUtils.map(publicHealthActionIndicatorLibrary.txCUrrUnsuppressedWithoutEACs(), "startDate=${startDate},endDate=${endDate}"), "");
Copy file name to clipboardExpand all lines: api/src/main/java/org/openmrs/module/kenyaemr/reporting/cohort/definition/evaluator/ANCRegisterCohortDefinitionEvaluator.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ public EncounterQueryResult evaluate(EncounterQuery definition, EvaluationContex
42
42
43
43
Stringqry = "SELECT v.encounter_id\n" +
44
44
"from kenyaemr_etl.etl_mch_antenatal_visit v\n" +
45
-
"where date(v.visit_date) BETWEEN date(:startDate) AND date(:endDate);";
45
+
"where v.anc_visit_number >= 1 and date(v.visit_date) BETWEEN date(:startDate) AND date(:endDate);";
Copy file name to clipboardExpand all lines: api/src/main/java/org/openmrs/module/kenyaemr/reporting/cohort/definition/evaluator/PNCRegisterCohortDefinitionEvaluator.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ public EncounterQueryResult evaluate(EncounterQuery definition, EvaluationContex
Stringqry = "SELECT pv.encounter_id from kenyaemr_etl.etl_mch_postnatal_visit pv where date(pv.visit_date) BETWEEN date(:startDate) AND date(:endDate);";
43
+
Stringqry = "SELECT pv.encounter_id from kenyaemr_etl.etl_mch_postnatal_visit pv where pv.pnc_visit_no >= 1 and date(pv.visit_date) BETWEEN date(:startDate) AND date(:endDate);";
Copy file name to clipboardExpand all lines: api/src/main/java/org/openmrs/module/kenyaemr/reporting/data/converter/definition/evaluator/art/ETLLastVLResultValidityDataEvaluator.java
+63-27Lines changed: 63 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -35,33 +35,69 @@ public class ETLLastVLResultValidityDataEvaluator implements PersonDataEvaluator
0 commit comments