Skip to content

Commit

Permalink
Resultatkode
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Feb 5, 2024
1 parent 168c430 commit 8e2dbd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import no.nav.bidrag.beregn.forskudd.core.dto.InntektPeriodeCore
import no.nav.bidrag.beregn.forskudd.core.dto.SivilstandPeriodeCore
import no.nav.bidrag.beregn.forskudd.core.dto.SoknadBarnCore
import no.nav.bidrag.domene.enums.beregning.Avvikstype
import no.nav.bidrag.domene.enums.beregning.ResultatkodeForskudd
import no.nav.bidrag.domene.enums.beregning.Resultatkode
import no.nav.bidrag.domene.enums.inntekt.Inntektstype
import no.nav.bidrag.domene.enums.person.Bostatuskode
import no.nav.bidrag.domene.enums.person.Sivilstandskode
Expand Down Expand Up @@ -222,7 +222,7 @@ object TestUtil {
Periode(LocalDate.parse("2017-01-01"), LocalDate.parse("2018-01-01")),
ResultatBeregning(
BigDecimal.valueOf(1600),
ResultatkodeForskudd.FORHØYET_FORSKUDD_100_PROSENT,
Resultatkode.FORHØYET_FORSKUDD_100_PROSENT,
"REGEL 1",
byggSjablonPeriodeNavnVerdiListe(),
),
Expand All @@ -244,7 +244,7 @@ object TestUtil {
Periode(LocalDate.parse("2018-01-01"), LocalDate.parse("2019-01-01")),
ResultatBeregning(
BigDecimal.valueOf(1200),
ResultatkodeForskudd.ORDINÆRT_FORSKUDD_75_PROSENT,
Resultatkode.ORDINÆRT_FORSKUDD_75_PROSENT,
"REGEL 2",
byggSjablonPeriodeNavnVerdiListe(),
),
Expand All @@ -264,7 +264,7 @@ object TestUtil {
),
ResultatPeriode(
Periode(LocalDate.parse("2019-01-01"), LocalDate.parse("2020-01-01")),
ResultatBeregning(BigDecimal.valueOf(0), ResultatkodeForskudd.AVSLAG, "REGEL 11", byggSjablonPeriodeNavnVerdiListe()),
ResultatBeregning(BigDecimal.valueOf(0), Resultatkode.AVSLAG, "REGEL 11", byggSjablonPeriodeNavnVerdiListe()),
GrunnlagBeregning(
listOf(
Inntekt(INNTEKT_REFERANSE_3, "INNTEKTSOPPLYSNINGER_ARBEIDSGIVER", BigDecimal.valueOf(500000)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import no.nav.bidrag.beregn.forskudd.core.dto.BeregnetForskuddResultatCore
import no.nav.bidrag.beregn.forskudd.core.dto.ResultatBeregningCore
import no.nav.bidrag.beregn.forskudd.core.dto.ResultatPeriodeCore
import no.nav.bidrag.commons.service.sjablon.Sjablontall
import no.nav.bidrag.domene.enums.beregning.ResultatkodeForskudd
import no.nav.bidrag.domene.enums.beregning.Resultatkode
import no.nav.bidrag.domene.enums.grunnlag.Grunnlagstype
import no.nav.bidrag.domene.enums.inntekt.Inntektsrapportering
import no.nav.bidrag.domene.enums.person.Bostatuskode
Expand Down Expand Up @@ -207,7 +207,7 @@ object TestUtil {
resultat =
ResultatBeregningCore(
belop = BigDecimal.valueOf(100),
kode = ResultatkodeForskudd.FORHØYET_FORSKUDD_100_PROSENT.name,
kode = Resultatkode.FORHØYET_FORSKUDD_100_PROSENT,
regel = "REGEL 1",
),
grunnlagsreferanseListe =
Expand Down Expand Up @@ -253,7 +253,7 @@ object TestUtil {
resultat =
ResultatBeregning(
belop = BigDecimal.valueOf(100),
kode = ResultatkodeForskudd.FORHØYET_FORSKUDD_100_PROSENT,
kode = Resultatkode.FORHØYET_FORSKUDD_100_PROSENT,
regel = "REGEL 1",
),
grunnlagsreferanseListe =
Expand Down

0 comments on commit 8e2dbd5

Please sign in to comment.