New test cases

This commit is contained in:
gamonoid
2017-09-24 14:32:12 +02:00
parent d440aa8fc9
commit 638e909d46
2 changed files with 32 additions and 1 deletions

View File

@@ -32,7 +32,8 @@ class AttendanceActionManager extends SubActionManager
//Find any open punch
$attendance = new Attendance();
$attendance->Load(
"employee = ? and DATE_FORMAT( in_time, '%Y-%m-%d' ) = ? and (out_time is NULL or out_time = '0000-00-00 00:00:00')",
"employee = ? and DATE_FORMAT( in_time, '%Y-%m-%d' ) = ?
and (out_time is NULL or out_time = '0000-00-00 00:00:00')",
array($employee->id,$date)
);