Skip to content

Commit

Permalink
Mer testfix
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Dec 4, 2024
1 parent e8dc9bb commit 33104f0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@ data class IkkeAktiveInntekter(
val ingenEndringer
get() =
barnetillegg.isEmpty() &&
utvidetBarnetrygd.isEmpty() &&
kontantstøtte.isEmpty() &&
småbarnstillegg.isEmpty() &&
årsinntekter.isEmpty()
utvidetBarnetrygd.isEmpty() &&
kontantstøtte.isEmpty() &&
småbarnstillegg.isEmpty() &&
årsinntekter.isEmpty()
}

data class Grunnlagsinnhentingsfeil(
Expand Down Expand Up @@ -384,7 +384,7 @@ data class PeriodeAndreVoksneIHusstanden(
val totalAntallHusstandsmedlemmer: Int,
@Schema(
description =
"Detaljer om husstandsmedlemmer som bor hos BP for gjeldende periode. " +
"Detaljer om husstandsmedlemmer som bor hos BP for gjeldende periode. " +
"Antall hustandsmedlemmer er begrenset til maks 10 personer",
)
val husstandsmedlemmer: List<AndreVoksneIHusstandenDetaljerDto> = emptyList(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ fun Barnetilsyn.tilStønadTilBarnetilsynDto(): StønadTilBarnetilsynDto =
id = this.id,
periode = DatoperiodeDto(this.fom, this.tom),
skolealder =
when (this.under_skolealder) {
true -> Skolealder.UNDER
false -> Skolealder.OVER
else -> null
},
when (this.under_skolealder) {
true -> Skolealder.UNDER
false -> Skolealder.OVER
else -> null
},
tilsynstype =
when (this.omfang) {
Tilsynstype.IKKE_ANGITT -> null
else -> this.omfang
},
when (this.omfang) {
Tilsynstype.IKKE_ANGITT -> null
else -> this.omfang
},
kilde = this.kilde,
)

Expand All @@ -56,7 +56,7 @@ fun Underholdskostnad.harIkkeBarnetilsynITabellFraFør(personident: String) =
.first()
.personident
?.verdi == personident &&
this.barnetilsyn.isEmpty()
this.barnetilsyn.isEmpty()

fun BarnDto.annetBarnMedSammeNavnOgFødselsdatoEksistererFraFør(behandling: Behandling) =
behandling.underholdskostnader
Expand All @@ -78,11 +78,11 @@ fun BarnetilsynGrunnlagDto.tilBarnetilsyn(u: Underholdskostnad) =
kilde = Kilde.OFFENTLIG,
omfang = this.tilsynstype ?: Tilsynstype.IKKE_ANGITT,
under_skolealder =
when (this.skolealder) {
Skolealder.OVER -> false
Skolealder.UNDER -> true
else -> null
},
when (this.skolealder) {
Skolealder.OVER -> false
Skolealder.UNDER -> true
else -> null
},
)

fun Set<Underholdskostnad>.justerePerioderEtterVirkningsdato() = forEach { it.justerePerioder() }
Expand Down Expand Up @@ -182,8 +182,8 @@ fun Behandling.aktivereBarnetilsynHvisIngenEndringerMåAksepteres() {

log.info {
"Ikke-aktive grunnlag type ${Grunnlagsdatatype.BOFORHOLD} med id ${ikkeaktivtGrunnlag.id} " +
" for rolle ${rolleInnhentetFor.rolletype} i behandling ${this.id} har ingen " +
"endringer som må aksepteres av saksbehandler. Aktiverer automatisk det nyinnhenta grunnlaget."
" for rolle ${rolleInnhentetFor.rolletype} i behandling ${this.id} har ingen " +
"endringer som må aksepteres av saksbehandler. Aktiverer automatisk det nyinnhenta grunnlaget."
}

ikkeaktivtGrunnlag.aktiv = LocalDateTime.now()
Expand All @@ -194,9 +194,10 @@ fun Behandling.aktivereBarnetilsynHvisIngenEndringerMåAksepteres() {

private fun Behandling.aktivereOriginaltBarnetilsynsgrunnlagHvisAktivertForAlleBarn() {
val grunnlagsdatatype = Grunnlagsdatatype.BARNETILSYN
val nyesteOriginaleBarnetilsynsgrunnlag = grunnlagsdatatype.innhentesForRolle(this)?.let {
this.henteNyesteGrunnlag(Grunnlagstype(grunnlagsdatatype, false), it)
}
val nyesteOriginaleBarnetilsynsgrunnlag =
grunnlagsdatatype.innhentesForRolle(this)?.let {
this.henteNyesteGrunnlag(Grunnlagstype(grunnlagsdatatype, false), it)
}

nyesteOriginaleBarnetilsynsgrunnlag?.let {
if (nyesteOriginaleBarnetilsynsgrunnlag.aktiv == null &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ class VedtakTilBehandlingBidragTest : CommonVedtakTilBehandlingTest() {

private fun Behandling.validerGrunnlag() {
assertSoftly(grunnlagListe) {
size shouldBe 16
size shouldBe 15
filtrerEtterTypeOgIdent(
Grunnlagsdatatype.SKATTEPLIKTIGE_INNTEKTER,
testdataBM.ident,
Expand Down

0 comments on commit 33104f0

Please sign in to comment.