Skip to content

Commit

Permalink
Repopuler resten av revurderinger med stønadsdato
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen committed Oct 19, 2023
1 parent b107ebf commit fc36232
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ public List<Oppgave> hentOppgaver(BehandlingId behandlingId) {


public List<Oppgave> hentAktiveRevurderingOppgaverMedStønadsdatoFør(LocalDate fom) {
return entityManager.createQuery("FROM Oppgave o where o.aktiv = :aktiv and o.behandlingType = :bt and o.førsteStønadsdag is not null and o.førsteStønadsdag < :frist", Oppgave.class)
return entityManager.createQuery("FROM Oppgave o where o.aktiv = :aktiv and o.behandlingType = :bt and o.førsteStønadsdag is not null and o.førsteStønadsdag >= :frist", Oppgave.class)
.setParameter("aktiv", true)
.setParameter("bt", BehandlingType.REVURDERING)
.setParameter("frist", fom)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<sonar.projectName>fp-los</sonar.projectName>
<sonar.projectKey>navikt_fplos</sonar.projectKey>

<fp-kontrakter.version>7.1.2</fp-kontrakter.version>
<fp-kontrakter.version>7.1.3</fp-kontrakter.version>
<felles.version>5.1.2</felles.version>
<prosesstask.version>4.0.0</prosesstask.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public Response synkroniserHendelserTilbake(@NotNull @Valid List<EnkelBehandling
@Operation(description = "Oppretter task for synkronisering av behandling med fpsak", tags = "admin")
@BeskyttetRessurs(actionType = ActionType.CREATE, resourceType = ResourceType.DRIFT)
public Response synkroniserAapneRevurderinger() {
var behandlinger = oppgaveRepository.hentAktiveRevurderingOppgaverMedStønadsdatoFør(LocalDate.now().minusMonths(3)).stream()
var behandlinger = oppgaveRepository.hentAktiveRevurderingOppgaverMedStønadsdatoFør(LocalDate.now().minusMonths(4)).stream()
.map(Oppgave::getBehandlingId)
.map(b -> new SynkroniseringHendelseTaskOppretterTjeneste.KildeBehandlingId(Kildesystem.FPSAK, b))
.toList();
Expand Down

0 comments on commit fc36232

Please sign in to comment.