fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
@@ -29,7 +29,7 @@ class AttendanceViolationStudentResolverService
}
$classStudents = $classStudentsQuery
->where('school_year', $schoolYear)
->where('student_class.school_year', $schoolYear)
->get()
->toArray();
@@ -53,7 +53,7 @@ class AttendanceViolationStudentResolverService
}
$classStudents = $classStudentsQuery
->where('school_year', $schoolYear)
->where('student_class.school_year', $schoolYear)
->get()
->toArray();
@@ -368,4 +368,4 @@ class AttendanceViolationStudentResolverService
return [$studentCodeToId, $existingIds];
}
}
}