Skip to content
Open
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 @@ -24,6 +24,7 @@ public static final class Apps {
public static final String APPOINTMENT_SCHEDULING_HOME = "appointmentschedulingui.app";
public static final String DISPENSING = "dispensing.app"; // This is the legacy, form-based dispensing app
public static final String MEDICATION_DISPENSING = "medicationDispensing.app"; // This is the new, MFE-based dispensing app
public static final String HIV_MEDICATION_DISPENSING = "hivMedicationDispensing.app"; // This is the new, MFE-based dispensing app
public static final String APPOINTMENTS = "appointments.app"; // This is the new, MFE-based appointments app
public static final String PATIENT_APPOINTMENTS_SUMMARY = "pih.app.appointements.summary"; // o2 dashboard widget showing summary of appointments from new MFE-based appointments app
public static final String DISPENSING_SUMMARY = "pih.app.dispensing.summary";
Expand Down Expand Up @@ -391,6 +392,7 @@ public static final class EncounterTemplates {
Apps.REPORTS,
Apps.DISPENSING,
Apps.MEDICATION_DISPENSING,
Apps.HIV_MEDICATION_DISPENSING,
Apps.ED_TRIAGE,
Apps.ED_TRIAGE_QUEUE,
Apps.CHW_MGMT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2986,7 +2986,17 @@ private void enableHIVProgram() {
)),
"pihcore", "dashboardwidgets/labResults", firstColumnIndex++));


// HIV DISPENSED MEDS
apps.add(addToHivDashboardFirstColumn(app(CustomAppLoaderConstants.Apps.HIV_MEDICATION_DISPENSING,
"pih.app.medicationDispensing.title",
"fas fa-fw fa-pills",
"spa/dispensing",
"App: dispensing.app.dispense",
objectNode(
"maxDatesToShow", 5,
"detailsUrl", "pihcore/meds/dispensingSummary.page?patientId={{patient.uuid}}"
)),
"pihcore", "dashboardwidgets/medsDispensed", firstColumnIndex++));
// SECOND COLUMN

// Current Enrollment
Expand Down