Skip to content

Commit

Permalink
Merge pull request #11728 from hzi-braunschweig/bugfix-11421-No_possi…
Browse files Browse the repository at this point in the history
…bility_to_display_archived_events_in_bulk_mode

fixed #11421 again
  • Loading branch information
ChristopherRiedel committed Mar 24, 2023
2 parents 8abcc64 + 2d32ba3 commit 3527138
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -524,8 +524,8 @@ public List<EventIndexDto> getIndexList(EventCriteria eventCriteria, Integer fir

// Participant, Case and Death Count
List<Object[]> participantQueryList = new ArrayList<>();
CriteriaQuery<Object[]> participantCQ = cb.createQuery(Object[].class);
IterableHelper.executeBatched(eventUuids, ModelConstants.PARAMETER_LIMIT, batchedUuids -> {
CriteriaQuery<Object[]> participantCQ = cb.createQuery(Object[].class);
Root<EventParticipant> epRoot = participantCQ.from(EventParticipant.class);
Join<EventParticipant, Case> caseJoin = epRoot.join(EventParticipant.RESULTING_CASE, JoinType.LEFT);
Predicate notDeleted = cb.isFalse(epRoot.get(EventParticipant.DELETED));
Expand Down

0 comments on commit 3527138

Please sign in to comment.