Skip to content

Commit

Permalink
Merge pull request #335 from navikt/debug/fiks-filtering-tomdato
Browse files Browse the repository at this point in the history
Fikset feil i kontroll på tildato kontantstøtte
  • Loading branch information
rinnan17 authored Apr 24, 2024
2 parents b05cc8c + 88c8ba8 commit 6899ddf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ class OppdaterKontantstotte(

// Kontantstøtte fra ks-sak
kontantstotteResponse.ksSakPerioder.forEach { ks ->
if (ks.fomMåned.isBefore(YearMonth.of(personIdOgPeriode.periodeTil.year, personIdOgPeriode.periodeTil.month))) {
if (ks.fomMåned.isBefore(
YearMonth.of(personIdOgPeriode.periodeTil.year, personIdOgPeriode.periodeTil.month).plusMonths(1),
)
) {
antallPerioderFunnet++
persistenceService.opprettKontantstotte(
KontantstotteBo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ class HentKontantstøtteService(

// Kontantstøtte fra ks-sak
kontantstøtteRespons.ksSakPerioder.forEach { ks ->
if (ks.fomMåned.isBefore(YearMonth.of(personIdOgPeriodeRequest.periodeTil.year, personIdOgPeriodeRequest.periodeTil.month))) {
if (ks.fomMåned.isBefore(
YearMonth.of(personIdOgPeriodeRequest.periodeTil.year, personIdOgPeriodeRequest.periodeTil.month).plusMonths(1),
)
) {
kontantstøtteListe.add(
KontantstøtteGrunnlagDto(
partPersonId = personIdOgPeriodeRequest.personId,
Expand Down

0 comments on commit 6899ddf

Please sign in to comment.