Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oppgrader felles for endringer i beregninger #615

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<properties>
<java.version>21</java.version>
<kotlin.version>2.0.21</kotlin.version>
<bidrag-felles.version>2024.11.25.120349</bidrag-felles.version>
<bidrag-beregn-felles.version>2024.11.25.120521</bidrag-beregn-felles.version>
<bidrag-felles.version>2024.11.28.115919</bidrag-felles.version>
<bidrag-beregn-felles.version>2024.11.28.084432</bidrag-beregn-felles.version>
<h2.version>2.3.232</h2.version>
<logback-encoder.version>8.0</logback-encoder.version>
<token-support.version>3.2.0</token-support.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class VedtakserviceBidragTest : CommonVedtakTilBehandlingTest() {
val request = opprettVedtakRequest
request.type shouldBe Vedtakstype.FASTSETTELSE
withClue("Grunnlagliste skal inneholde ${request.grunnlagListe.size} grunnlag") {
request.grunnlagListe shouldHaveSize 167
request.grunnlagListe shouldHaveSize 161
}
}

Expand Down Expand Up @@ -262,7 +262,7 @@ class VedtakserviceBidragTest : CommonVedtakTilBehandlingTest() {
}
}
validerNotater(behandling)
hentGrunnlagstyper(Grunnlagstype.SJABLON_SJABLONTALL) shouldHaveSize 31
hentGrunnlagstyper(Grunnlagstype.SJABLON_SJABLONTALL) shouldHaveSize 26
hentGrunnlagstyper(Grunnlagstype.SJABLON_BIDRAGSEVNE) shouldHaveSize 3
hentGrunnlagstyper(Grunnlagstype.SJABLON_MAKS_FRADRAG) shouldHaveSize 2
hentGrunnlagstyper(Grunnlagstype.SJABLON_MAKS_TILSYN) shouldHaveSize 3
Expand Down Expand Up @@ -766,8 +766,8 @@ private fun OpprettVedtakRequestDto.validerSluttberegning() {
assertSoftly(sluttberegningPeriode) {
val innhold = innholdTilObjekt<SluttberegningBarnebidrag>()
innhold.resultatVisningsnavn!!.intern shouldBe "Kostnadsberegnet bidrag"
innhold.beregnetBeløp shouldBe BigDecimal("6121.53")
innhold.resultatBeløp shouldBe BigDecimal("6120")
innhold.beregnetBeløp shouldBe BigDecimal("5741.53")
innhold.resultatBeløp shouldBe BigDecimal("5740")
it.grunnlagsreferanseListe shouldHaveSize 8
hentGrunnlagstyperForReferanser(Grunnlagstype.PERSON_SØKNADSBARN, it.grunnlagsreferanseListe) shouldHaveSize 1
hentGrunnlagstyperForReferanser(Grunnlagstype.PERSON_SØKNADSBARN, it.grunnlagsreferanseListe).first().referanse shouldBe søknadsbarn1Grunnlag.referanse
Expand All @@ -782,21 +782,21 @@ private fun OpprettVedtakRequestDto.validerSluttberegning() {
assertSoftly(hentGrunnlagstyperForReferanser(Grunnlagstype.DELBEREGNING_BIDRAGSEVNE, sluttberegningPeriode.grunnlagsreferanseListe).first()) {
val innhold = innholdTilObjekt<DelberegningBidragsevne>()
innhold.beløp shouldBe BigDecimal("9482.45")
it.grunnlagsreferanseListe shouldHaveSize 14
it.grunnlagsreferanseListe shouldHaveSize 11
}

assertSoftly(hentGrunnlagstyperForReferanser(Grunnlagstype.DELBEREGNING_BIDRAGSPLIKTIGES_ANDEL, sluttberegningPeriode.grunnlagsreferanseListe).first()) {
val innhold = innholdTilObjekt<DelberegningBidragspliktigesAndel>()
innhold.andelBeløp shouldBe BigDecimal("7132.53")
it.grunnlagsreferanseListe shouldHaveSize 10
innhold.andelBeløp shouldBe BigDecimal("6752.53")
it.grunnlagsreferanseListe shouldHaveSize 6
}

assertSoftly(hentGrunnlagstyperForReferanser(Grunnlagstype.DELBEREGNING_UNDERHOLDSKOSTNAD, sluttberegningPeriode.grunnlagsreferanseListe).first()) {
val innhold = innholdTilObjekt<DelberegningUnderholdskostnad>()
innhold.underholdskostnad shouldBe BigDecimal("8559.04")
innhold.underholdskostnad shouldBe BigDecimal("8103.04")
innhold.nettoTilsynsutgift shouldBe BigDecimal("1287.04")
innhold.barnetilsynMedStønad shouldBe BigDecimal("630.00")
it.grunnlagsreferanseListe shouldHaveSize 6
it.grunnlagsreferanseListe shouldHaveSize 7
}

assertSoftly(hentGrunnlagstyperForReferanser(Grunnlagstype.DELBEREGNING_SAMVÆRSFRADRAG, sluttberegningPeriode.grunnlagsreferanseListe).first()) {
Expand Down
Loading