Skip to content

Commit

Permalink
Update the version of UgandaEMR Reports and fix message for detectabl…
Browse files Browse the repository at this point in the history
…e 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
  • Loading branch information
ssmusoke authored and slubwama committed Nov 22, 2018
1 parent e9591d5 commit 5c233fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public void install() throws Exception {
install(Flags.OVERDUE_FOR_SECOND_DNA_PCR);
install(Flags.DUE_FOR_RAPID_TEST);
install(Flags.OVERDUE_FOR_RAPID_TEST);
install(Flags.HAS_UNSUPRESSED_VIRAL_LOAD);
install(Flags.HAS_DETECTABLE_VIRAL_LOAD);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ public String uuid() {
}
};

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

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

@Override
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<xformsVersion>4.3.9</xformsVersion>

<!-- core configuration library -->
<ugandaemrReportsVersion>2.0.3</ugandaemrReportsVersion>
<ugandaemrReportsVersion>2.0.6</ugandaemrReportsVersion>

<!-- Open Web Apps -->
<sysadminVersion>1.1</sysadminVersion>
Expand Down

0 comments on commit 5c233fe

Please sign in to comment.