Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MEPTS-1548 | LISTA DE PEDIDO DE CD4 DIFF FGH #1289

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
private final String estomatiteUlcerativaNecrotizante = "Estomatite Ulcerativa Necrotizante";
private final String candidiaseOral = "Candidiase Oral";
private final String cryptococcalMeningitis = "Meningite Criptocócica (MCC)";
private final String ccu = "Cancro do Colo do Uterino";
private final String ccu = "Cancro do Colo do Útero";

Check warning on line 22 in api/src/main/java/org/openmrs/module/eptsreports/reporting/data/converter/ObservationToConceptNameConverter.java

View check run for this annotation

Codecov / codecov/patch

api/src/main/java/org/openmrs/module/eptsreports/reporting/data/converter/ObservationToConceptNameConverter.java#L22

Added line #L22 was not covered by tests
private final String candidiaseEsofagica = "Candidiase Esofágica";
private final String herpesSimples = "Hérpes Simples";
private final String cachexia = "Caquexia";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1265,6 +1265,7 @@ public DataDefinition getPatientsTransferredInByTheEndOfPeriod() {
+ " AND p.voided = 0 "
+ " AND pg.program_id IN ( ${1}, ${2} ) "
+ " AND ps.start_date <= :endDate "
+ " AND pg.date_completed IS NULL "
+ " AND pg.location_id = :location "
+ " GROUP BY p.patient_id) pps "
+ " ON pps.patient_id = p.patient_id "
Expand All @@ -1273,7 +1274,8 @@ public DataDefinition getPatientsTransferredInByTheEndOfPeriod() {
+ " AND p.voided = 0 "
+ " AND pg.program_id IN ( ${1}, ${2} ) "
+ " AND ps.state IN ( ${28}, ${29} ) "
+ " AND ps.start_date = pps. transferred_date "
+ " AND ps.start_date = pps.transferred_date "
+ " AND pg.date_completed IS NULL "
+ " AND pg.location_id = :location "
+ " GROUP BY p.patient_id "
+ " UNION "
Expand Down