Skip to content

Commit 267af34

Browse files
authored
HR On Call Calendar Fix (#793)
* Updated on-call phone numbers with a warning about contacting HR per ticket #20205. * Fixed issue with food deprive query in colony alerts revamp (requested via ticket #20180).
1 parent cbd22f0 commit 267af34

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

WNPRC_EHR/src/org/labkey/wnprc_ehr/notification/ColonyAlertsNotificationRevamp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1470,7 +1470,7 @@ private void getFoodDeprivesTodayAnimalUnassigned() {
14701470

14711471
// Filters data.
14721472
for (HashMap<String, String> result : unfilteredReturnArray) {
1473-
if (result.get("Id/activeAssignments/projects").contains(result.get("project"))) {
1473+
if (!result.get("Id/activeAssignments/projects").contains(result.get("project"))) {
14741474
filteredReturnArray.add(result);
14751475
}
14761476
}

WNPRC_EHR/src/org/labkey/wnprc_ehr/pages/calendars/OnCallCalendar.jsp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@
119119
In the event of an injury or potential exposure occurring on the weekend that requires a trip the UW Hospital Emergency
120120
Department, contact<br>either the Colony Management Supervisor or the Veterinarian on-call, and they will contact the
121121
appropriate HR representative.
122+
<br>
123+
<b style='color:red;'>NOTE: HR contacts should be used only for emergencies during non-business hours.</b>
122124
<br><br>
123125
</div>
124126
</div>

0 commit comments

Comments
 (0)