From: Dan Marsden Date: Tue, 27 Jun 2017 22:41:41 +0000 (+1200) Subject: Improve messages in cron, check end of session correctly. X-Git-Url: https://git.cameron1729.xyz/?a=commitdiff_plain;h=3e34bb349e0f531bfab0f72dc3e9a75be15fd02d;p=moodle-mod_attendance.git Improve messages in cron, check end of session correctly. --- diff --git a/classes/task/notify.php b/classes/task/notify.php index a5a8a3c..115779b 100644 --- a/classes/task/notify.php +++ b/classes/task/notify.php @@ -48,6 +48,9 @@ class notify extends \core\task\scheduled_task { if (empty($lastrun)) { $lastrun = 0; } + if (!empty($lastrun)) { + mtrace("Get warnings to send for sessions that have ended since: ".userdate($lastrun)); + } $orderby = 'ORDER BY cm.id, atl.studentid, n.warningpercent ASC'; $records = attendance_get_users_to_notify(array(), $orderby, $lastrun, true); diff --git a/locallib.php b/locallib.php index 0814bba..ab27a19 100644 --- a/locallib.php +++ b/locallib.php @@ -763,7 +763,7 @@ function attendance_get_users_to_notify($courseids = array(), $orderby = '', $si GROUP BY attendanceid, setnumber) stm ON (stm.setnumber = ats.statusset AND stm.attendanceid = ats.attendanceid) {$joingroup} - WHERE ats.sessdate >= {$sincetime} {$where} + WHERE (ats.sessdate + ats.duration) >= {$sincetime} {$where} AND ats.lasttaken != 0 GROUP BY uniqueid, a.id, a.name, a.course, c.fullname, atl.studentid, n.id, n.warningpercent, n.emailsubject, n.emailcontent, n.emailcontentformat, n.warnafter,