Skip to content

Commit

Permalink
Changed the alert time. (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
kollil authored Aug 22, 2024
1 parent 831e0f1 commit 7b55b02
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ public String getEmailSubject(Container c)
@Override
public String getCronString()
{
return "0 0 16 * * ?";
return "0 0 6 * * ?";
}

@Override
public String getScheduleDescription()
{
return "every day at 4:00PM";
return "every day at 6:00AM";
}

@Override
Expand Down Expand Up @@ -119,7 +119,7 @@ private void MedsEndDateAlert(Container c, User u, final StringBuilder msg, fina
TableSelector ts = new TableSelector(ti, null, new Sort("date"));
long count = ts.getRowCount();
if (count == 0) {
msg.append("<b>There are no other meds except E-85760 (Medroxyprogesterone injectable 150mg/ml) and E-Y7735 (Diet - Weekly Multivitamin) with missing end dates!</b><hr>");
msg.append("<b>There are no meds ordered except E-85760 (Medroxyprogesterone injectable 150mg/ml) and E-Y7735 (Diet - Weekly Multivitamin) with missing end dates!</b><hr>");
}
else if (count > 0)
{
Expand Down

0 comments on commit 7b55b02

Please sign in to comment.