Skip to content

Commit

Permalink
Feilfiks hente bps evne grunnlag (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 authored Oct 25, 2024
1 parent ebe7807 commit e9c3a52
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,17 +278,24 @@ fun List<GrunnlagDto>.finnDelberegningBidragsevne(grunnlagsreferanseListe: List<
it.referanse,
)
} ?: return null
val delberegningBoforhold =
find {
it.type == Grunnlagstype.DELBEREGNING_BOFORHOLD &&
delberegningBidragspliktigesAndel.grunnlagsreferanseListe.contains(
it.referanse,
)
} ?: return null
val delberegningVoksneIHusstand =
find {
it.type == Grunnlagstype.DELBEREGNING_VOKSNE_I_HUSSTAND &&
delberegningBidragspliktigesAndel.grunnlagsreferanseListe.contains(
delberegningBoforhold.grunnlagsreferanseListe.contains(
it.referanse,
)
}?.innholdTilObjekt<DelberegningVoksneIHustand>() ?: return null
val delberegningBarnIHusstanden =
find {
it.type == Grunnlagstype.DELBEREGNING_BARN_I_HUSSTAND &&
delberegningBidragspliktigesAndel.grunnlagsreferanseListe.contains(
delberegningBoforhold.grunnlagsreferanseListe.contains(
it.referanse,
)
}?.innholdTilObjekt<DelberegningBarnIHusstand>() ?: return null
Expand Down

0 comments on commit e9c3a52

Please sign in to comment.