Skip to content

Commit

Permalink
Merge pull request #241 from navikt/debug/logikk-periodeutplukk
Browse files Browse the repository at this point in the history
Rettet feil i periodelogikk
  • Loading branch information
rinnan17 authored Oct 2, 2024
2 parents fefd902 + cdd5224 commit 7e6d749
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class StønadService(val persistenceService: PersistenceService) {
val periode =
persistenceService.hentPerioderForStønad(stønad.stønadsid)
.filter { it.fom.isBefore(request.dato.plusDays(1)) && (it.til == null || it.til.isAfter(request.dato)) }
.minByOrNull { it.fom }
.maxByOrNull { it.fom }
// periode er tom hvis det ikke finnes en periode for stønaden som er aktiv på angitt dato
if (periode != null) {
løpendeBidragssakListe.add(
Expand Down

0 comments on commit 7e6d749

Please sign in to comment.