Skip to content

Commit 5c233fe

Browse files
ssmusokeslubwama
authored andcommitted
Update the version of UgandaEMR Reports and fix message for detectable viral load (#361)
* Concept for pill balances * Concept for ART Pills Balance Concept for ART Pills Balance * Added pill balances to enable capture of that detail for those that may need it * Add WHO staging to Last ART Visit status widget * Correct the concept for the stickyNote * Corrected the spelling of Diabetes for the reason for next appointment Added a numbering for 'Other Specify' option in reason for next appointment to be consistent with the rest of the other options * Update the reporting compatibility module to the latest snapshot which fixes an issue for not being able to delete saved searches see https://trello.com/c/93fLIp5J * Added flag for unsupressed viral load * Fix the sample data for checking exposed infants without a final outcome... I wonder how it was working all along * Cleanup alignment for OI, Potential Side effects and Other meds dispensed * Added co-morbidities required for ISS * Other Occupation and Other Gender Concepts * Improve the performance of the "Has Unsupressed Viral Load" flag query * Corrected the concept for the new pill balance field * Updated the module versions to those in Reference application 2.8. Noteable are HTML Form Entry which creates a fix for adding multiple encounters on the same date * Add a fix for numeric data saved for ART Care grouping concept 99162 on the ART summary page - see Trello card https://trello.com/c/lJkfbxqG * Added the OpenMRS system administration owa as well as updating the SDK version which can deploy OWAs * Updated the fingerprint module to 1.0.4 which is the latest released version * Fix for exposed infant sample data for missing final outcome after 18 months - needed for all sample babies * Corrected the name of the liquibase changeset to fix the stickynote concept * Improve the performance of the HAS_UNSUPRESSED_VIRAL_LOAD patient flag query * Newly released verisons of UgandaEMR reports and fingerprint modules * Update to the latest version of the reports module * Correct message and meaning for detectable viral load flag as unsupressed has a different meaning * Update to released version of UgandaEMR reports
1 parent e9591d5 commit 5c233fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

api/src/main/java/org/openmrs/module/aijar/api/deploy/bundle/UgandaEMRPatientFlagMetadataBundle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ public void install() throws Exception {
4444
install(Flags.OVERDUE_FOR_SECOND_DNA_PCR);
4545
install(Flags.DUE_FOR_RAPID_TEST);
4646
install(Flags.OVERDUE_FOR_RAPID_TEST);
47-
install(Flags.HAS_UNSUPRESSED_VIRAL_LOAD);
47+
install(Flags.HAS_DETECTABLE_VIRAL_LOAD);
4848
}
4949
}

api/src/main/java/org/openmrs/module/aijar/metadata/core/Flags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ public String uuid() {
590590
}
591591
};
592592

593-
public static FlagDescriptor HAS_UNSUPRESSED_VIRAL_LOAD = new FlagDescriptor() {
593+
public static FlagDescriptor HAS_DETECTABLE_VIRAL_LOAD = new FlagDescriptor() {
594594
@Override
595595
public String criteria() {
596596
return " SELECT non_suppressed.patient_id, non_suppressed.value_numeric, DATE_FORMAT((non_suppressed.obs_datetime), '%d. %b. %Y')\n" +
@@ -603,7 +603,7 @@ public String criteria() {
603603

604604
@Override
605605
public String message() {
606-
return "Un-supressed Viral Load of ${1} from ${2} due for IAC";
606+
return "Detectable Viral Load of ${1} from ${2} may be due for IAC";
607607
}
608608

609609
@Override

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<xformsVersion>4.3.9</xformsVersion>
106106

107107
<!-- core configuration library -->
108-
<ugandaemrReportsVersion>2.0.3</ugandaemrReportsVersion>
108+
<ugandaemrReportsVersion>2.0.6</ugandaemrReportsVersion>
109109

110110
<!-- Open Web Apps -->
111111
<sysadminVersion>1.1</sysadminVersion>

0 commit comments

Comments
 (0)