Skip to content
Snippets Groups Projects
Commit 6f77d7b8 authored by srosse's avatar srosse
Browse files

OO-4150: fix lazy loading in multi-blocks roll call

parent c1a15f82
No related branches found
No related tags found
No related merge requests found
......@@ -352,7 +352,8 @@ public class LectureBlockRollCallDAO {
sb.append("select rollcall from lectureblockrollcall rollcall")
.append(" inner join fetch rollcall.identity ident")
.append(" inner join fetch ident.user user")
.append(" inner join fetch rollcall.lectureBlock block");
.append(" inner join fetch rollcall.lectureBlock block")
.append(" left join fetch rollcall.absenceNotice notice");
if(searchParams.getHasAbsence() != null) {
sb.and();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment