Skip to content

Commit

Permalink
Kontrakt 9 1 15 (#2085)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen authored Jun 5, 2024
1 parent 8540e9c commit 650628f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<sonar.projectName>fp-los</sonar.projectName>
<sonar.projectKey>navikt_fplos</sonar.projectKey>

<fp-kontrakter.version>9.1.12</fp-kontrakter.version>
<fp-kontrakter.version>9.1.15</fp-kontrakter.version>
<felles.version>7.2.0</felles.version>
<prosesstask.version>5.0.9</prosesstask.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ public FpsakOppgaveEgenskapFinner(LosBehandlingDto behandling) {
if (harBehandlingsegenskap(behandling, LokalBehandlingEgenskap.BARE_FAR_RETT)) {
this.andreKriterier.add(AndreKriterierType.BARE_FAR_RETT);
}
if (Optional.ofNullable(behandling.foreldrepengerDto()).filter(LosBehandlingDto.LosForeldrepengerDto::sykdomsvurdering).isPresent()) {
this.andreKriterier.add(AndreKriterierType.VURDER_SYKDOM);
}
if (behandling.behandlingsårsaker().stream().anyMatch(Behandlingsårsak.PLEIEPENGER::equals)) {
this.andreKriterier.add(AndreKriterierType.PLEIEPENGER);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@ApplicationScoped
public class AnsattTjeneste {

private static final LRUCache<String, String> ANSATT_NAVN = new LRUCache<>(1000, TimeUnit.MILLISECONDS.convert(25, TimeUnit.HOURS));
private static final LRUCache<String, String> ANSATT_NAVN = new LRUCache<>(1000, TimeUnit.MILLISECONDS.convert(24 * 7, TimeUnit.HOURS));
private static final LRUCache<String, List<String>> ANSATT_ENHETER = new LRUCache<>(1000, TimeUnit.MILLISECONDS.convert(25, TimeUnit.HOURS));

private EnhetstilgangTjeneste enhetstilgangTjeneste;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static LosBehandlingDto lagLosBehandlingDto(LosFagsakEgenskaperDto fagsakEgenska
return new LosBehandlingDto(UUID.randomUUID(), Kildesystem.FPSAK, "42", Ytelse.FORELDREPENGER, new AktørId("1234"), Behandlingstype.KLAGE,
Behandlingsstatus.UTREDES, LocalDateTime.now(), "0001", LocalDate.now(), "z999999", List.of(dto),
Optional.ofNullable(behandlingsårsaker).orElse(List.of()), false, true, sakegenskaper, fagsakEgenskaperDto,
new LosBehandlingDto.LosForeldrepengerDto(LocalDate.now(), false, false), List.of(), null);
new LosBehandlingDto.LosForeldrepengerDto(LocalDate.now()), List.of(), null);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static LosBehandlingDto behandlingFpsak(boolean berørt) {
new no.nav.vedtak.hendelser.behandling.AktørId(aktørId.getId()), Behandlingstype.FØRSTEGANGS, Behandlingsstatus.OPPRETTET,
behandlingOpprettet, "4406", behandlingstidFrist, "saksbehandler", OppgaveTestUtil.aksjonspunkter(),
berørt ? List.of(Behandlingsårsak.BERØRT) : List.of(), false, false, List.of(),null,
new LosBehandlingDto.LosForeldrepengerDto(førsteUttaksDag(), false, false), List.of(), null);
new LosBehandlingDto.LosForeldrepengerDto(førsteUttaksDag()), List.of(), null);
}

public static LocalDate førsteUttaksDag() {
Expand Down

0 comments on commit 650628f

Please sign in to comment.