Skip to content

Commit

Permalink
Feifiks andre voksne i husstanden
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Dec 4, 2024
1 parent 2a730a2 commit 3668f97
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ class Dtomapper(
erAktivert: Boolean = true,
): List<AndreVoksneIHusstandenDetaljerDto> {
val grunnlag = if (erAktivert) hentSisteAktiv() else hentSisteIkkeAktiv()
val behandling = firstOrNull()?.behandling ?: return emptyList()

val boforholdAndreVoksneIHusstanden =
grunnlag.find { it.type == Grunnlagsdatatype.BOFORHOLD_ANDRE_VOKSNE_I_HUSSTANDEN && !it.erBearbeidet }
Expand All @@ -751,6 +752,9 @@ class Dtomapper(
.konvertereData<List<RelatertPersonGrunnlagDto>>()
?.filter { it.relasjon != Familierelasjon.BARN }
?.filter {
it.fødselsdato == null ||
it.fødselsdato!!.withDayOfMonth(1).isBefore(behandling.virkningstidspunktEllerSøktFomDato.minusYears(18))
}?.filter {
it.borISammeHusstandDtoListe.any { p ->
val periodeBorHosBP = ÅrMånedsperiode(p.periodeFra!!.withDayOfMonth(1), p.periodeTil?.withDayOfMonth(1)?.minusDays(1))
val periodeBPErInnenfor =
Expand Down

0 comments on commit 3668f97

Please sign in to comment.