Skip to content

Commit

Permalink
Merge pull request #397 from navikt/feature/fjern-avrunding
Browse files Browse the repository at this point in the history
Fjerner avrunding av beløp for barnetillegg. Skal gjøres i bidrag-beh…
  • Loading branch information
rinnan17 authored Dec 9, 2024
2 parents 35744b8 + 2d588c1 commit 6f67789
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import no.nav.bidrag.grunnlag.util.GrunnlagUtil.Companion.evaluerFeilmelding
import no.nav.bidrag.grunnlag.util.GrunnlagUtil.Companion.evaluerFeiltype
import no.nav.bidrag.transport.behandling.grunnlag.response.BarnetilleggGrunnlagDto
import no.nav.bidrag.transport.behandling.grunnlag.response.FeilrapporteringDto
import java.math.RoundingMode

class HentBarnetilleggService(private val pensjonConsumer: PensjonConsumer) {

Expand Down Expand Up @@ -74,7 +73,7 @@ class HentBarnetilleggService(private val pensjonConsumer: PensjonConsumer) {
barnetilleggType = Barnetilleggstype.PENSJON.toString(),
periodeFra = it.fom,
periodeTil = it.tom.plusMonths(1).withDayOfMonth(1) ?: null,
beløpBrutto = it.beloep.setScale(0, RoundingMode.HALF_UP),
beløpBrutto = it.beloep,
barnType = if (it.erFellesbarn) BarnType.FELLES.toString() else BarnType.SÆRKULL.toString(),
),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class HentBarnetilleggServiceMockTest {
{ assertThat(barnetilleggPensjonListe).isNotNull() },
{ assertThat(barnetilleggPensjonListe.grunnlagListe).isNotEmpty() },
{ assertThat(barnetilleggPensjonListe.grunnlagListe).hasSize(2) },
{ assertThat(barnetilleggPensjonListe.grunnlagListe[0].beløpBrutto).isEqualTo(BigDecimal.valueOf(1001)) },
{ assertThat(barnetilleggPensjonListe.grunnlagListe[1].beløpBrutto).isEqualTo(BigDecimal.valueOf(2003)) },
{ assertThat(barnetilleggPensjonListe.grunnlagListe[0].beløpBrutto).isEqualTo(BigDecimal.valueOf(1001.45)) },
{ assertThat(barnetilleggPensjonListe.grunnlagListe[1].beløpBrutto).isEqualTo(BigDecimal.valueOf(2002.5)) },
{ assertThat(barnetilleggPensjonListe.feilrapporteringListe).isEmpty() },
)
}
Expand Down

0 comments on commit 6f67789

Please sign in to comment.