Skip to content

Commit

Permalink
B - Faser bort alle kall mot pesys
Browse files Browse the repository at this point in the history
  • Loading branch information
dskarpas committed Jun 3, 2024
1 parent 71b6754 commit 73b9594
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ class PensjonsinformasjonService(private val pensjonsinformasjonClient: Pensjons
//Nå er vi dypt inne i prefill SED også sjekker vi om vi får hentet ut noe Pensjonsinformasjon
//hvis det inne inneholder noe data så feiler vi!
//**********************************************

val pendata: Pensjonsinformasjon = pensjonsinformasjonClient.hentAltPaaFNR(fnr)
val pendata = if( environment in listOf("test", "q1")) {
logger.debug("Henter ikke vedtak i q1")
return Pensjonsinformasjon()
} else {
val pendata: Pensjonsinformasjon = pensjonsinformasjonClient.hentAltPaaFNR(fnr)
}

if (pendata.brukersSakerListe == null) {
throw PensjoninformasjonException("Ingen gyldig brukerSakerListe")
Expand Down

0 comments on commit 73b9594

Please sign in to comment.