Skip to content

Commit

Permalink
Vi ønsker å opprette im-oppgaver også for de sakene som står med 5085… (
Browse files Browse the repository at this point in the history
#6893)

Vi ønsker å opprette im-oppgaver også for de sakene som står med 5085 og manuelt på vent - men ikke for de med aksjonspunkt opprettet før april 2024
  • Loading branch information
AnjaAalerud authored Nov 21, 2024
1 parent e98b728 commit e7c0d20
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.sql.Timestamp;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
Expand Down Expand Up @@ -303,12 +304,14 @@ private List<Behandling> finnBehandlingerMedAksjonspunkt(AksjonspunktDefinisjon
" AND behandling.status =:behStatus " +
" AND aksjonspunkt.status=:status " +
" AND behandling.behandlingType = :behType" +
" AND NOT EXISTS (select 1 from Aksjonspunkt ap2 where ap2.behandling = behandling and ap2.aksjonspunktDefinisjon = :aksDef and ap2.status = :aksStatus)",
" AND aksjonspunkt.opprettetTidspunkt > :datoMedTid" +
" AND EXISTS (select 1 from Aksjonspunkt ap2 where ap2.behandling = behandling and ap2.aksjonspunktDefinisjon = :aksDef and ap2.status = :aksStatus)",
Behandling.class);
query.setParameter("aksjonspunktDef", apDef);
query.setParameter("behStatus", BehandlingStatus.UTREDES);
query.setParameter("status", AksjonspunktStatus.OPPRETTET);
query.setParameter("behType", BehandlingType.FØRSTEGANGSSØKNAD);
query.setParameter("datoMedTid", LocalDateTime.of(LocalDate.of(2024, 3, 31), LocalTime.MAX));
query.setParameter("aksDef", AksjonspunktDefinisjon.AUTO_MANUELT_SATT_PÅ_VENT);
query.setParameter("aksStatus", AksjonspunktStatus.OPPRETTET);
query.setHint(HibernateHints.HINT_READ_ONLY, "true");
Expand Down

0 comments on commit e7c0d20

Please sign in to comment.