From 6f756160b16300125411b2402245cea0e312e564 Mon Sep 17 00:00:00 2001 From: Brent Logan Date: Tue, 9 Dec 2025 13:36:33 -0800 Subject: [PATCH 1/2] Add afternoon time and adjust descriptions --- .../onprc_ehr/notification/DataValidationNotification.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java b/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java index 8268a7fc0..3a01061df 100644 --- a/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java +++ b/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java @@ -48,19 +48,19 @@ public String getEmailSubject(Container c) @Override public String getCronString() { - return "0 25 6 * * ?"; + return "0 25 6/13 * * ?"; } @Override public String getScheduleDescription() { - return "every day at 6:25AM"; + return "every day at 6:25AM and 3:50PM"; } @Override public String getDescription() { - return "The report is designed to identify potential problems with the EHR data. It is similar to Colony Alerts, except it is limited to alerts that indicate a true problem in the data itself."; + return "The report identifies potential problems with the EHR data. Although similar to Colony Alerts, it is limited to problems in the data itself."; } @Override From 3e816a754d2a1b7928215688ffd2ac76ab4585da Mon Sep 17 00:00:00 2001 From: Brent Logan Date: Tue, 9 Dec 2025 16:17:07 -0800 Subject: [PATCH 2/2] Finalize afternoon time and adjust descriptions --- .../onprc_ehr/notification/DataValidationNotification.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java b/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java index 3a01061df..6e5cda088 100644 --- a/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java +++ b/onprc_ehr/src/org/labkey/onprc_ehr/notification/DataValidationNotification.java @@ -48,13 +48,13 @@ public String getEmailSubject(Container c) @Override public String getCronString() { - return "0 25 6/13 * * ?"; + return "0 50 6/15 * * ?"; } @Override public String getScheduleDescription() { - return "every day at 6:25AM and 3:50PM"; + return "every day at 6:50AM and 3:50PM"; } @Override @@ -119,7 +119,7 @@ public String getMessageBodyHTML(Container c, User u) //only send if there are alerts if (!msg.isEmpty()) { - msg.insert(0, "This email contains a series of automatic alerts designed to identify problems in the EHR data. It was run on: " + getDateFormat(c).format(now) + " at " + _timeFormat.format(now) + ".

"); + msg.insert(0, "This email contains a series of automatic alerts identifying problems in the EHR data. It was run on: " + getDateFormat(c).format(now) + " at " + _timeFormat.format(now) + ".

"); } return msg.toString();