Skip to content
Merged
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 @@ -48,19 +48,19 @@ public String getEmailSubject(Container c)
@Override
public String getCronString()
{
return "0 25 6 * * ?";
return "0 50 6/15 * * ?";
}

@Override
public String getScheduleDescription()
{
return "every day at 6:25AM";
return "every day at 6:50AM 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
Expand Down Expand Up @@ -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) + ".<p>");
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) + ".<p>");
}

return msg.toString();
Expand Down