Skip to content

Commit

Permalink
Fiks presedens på null tom sjekk (#4006)
Browse files Browse the repository at this point in the history
Vi sjekker om tom er null først, flytter opp tom sjekken i when
  • Loading branch information
UyQuangNguyen authored Sep 25, 2023
1 parent ce8263f commit 6c9da78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ class BrevPeriodeGenerator(

fom = if (skalBrukeNyBegrunnelseLogikk) this.hentFomTekst() else this.hentFomTekstGammel(),
tom = when {
minimertVedtaksperiode.type == Vedtaksperiodetype.AVSLAG && skalBrukeNyBegrunnelseLogikk -> "til og med $tomDato "
minimertVedtaksperiode.type == Vedtaksperiodetype.FORTSATT_INNVILGET -> ""
tomDato.isNullOrBlank() -> ""
minimertVedtaksperiode.type == Vedtaksperiodetype.FORTSATT_INNVILGET -> ""
minimertVedtaksperiode.type == Vedtaksperiodetype.AVSLAG && skalBrukeNyBegrunnelseLogikk -> "til og med $tomDato "
brevPeriodeType == BrevPeriodeType.INGEN_UTBETALING -> ""
brevPeriodeType == BrevPeriodeType.INNVILGELSE_INGEN_UTBETALING -> " til $tomDato"
else -> "til $tomDato "
Expand Down

0 comments on commit 6c9da78

Please sign in to comment.