Skip to content

Commit

Permalink
F - Sjekker om vi har en npid før vi henter fdato
Browse files Browse the repository at this point in the history
  • Loading branch information
dskarpas committed Dec 13, 2024
1 parent 120c6ef commit 18c89b9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ class JournalforingService(
val aktoerId = identifisertPerson?.aktoerId

//henter først tema da denne også er i bruk for tildeltJoarkEnhet
val alder = identifisertPerson?.personRelasjon?.fnr?.getAge() ?: identifisertPerson?.personRelasjon?.alder()
val alder = if(identifisertPerson?.fnr?.erNpid == true){
identifisertPerson.personRelasjon?.alder()
}
else identifisertPerson?.personRelasjon?.fnr?.getAge()

val tema = hentTemaService.hentTema(
sedHendelse,
Expand Down

0 comments on commit 18c89b9

Please sign in to comment.