Skip to content

Commit

Permalink
PEk-503 bruk spk som default tp-ordning i test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonfofanov committed Sep 16, 2024
1 parent da3a4b2 commit 1765983
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class TjenestepensjonV2025Service(
@Throws(BrukerErIkkeMedlemException::class, TpOrdningStoettesIkkeException::class)
fun simuler(request: SimulerTjenestepensjonRequestDto): Result<SimulertTjenestepensjon> {
val tpOrdningNavn = tpClient.findTPForhold(request.fnr).flatMap { it.alias }.firstOrNull()
?: "klp" //TODO throw BrukerErIkkeMedlemException()
?: "spk" //TODO throw BrukerErIkkeMedlemException()

return when (tpOrdningNavn.lowercase()) {
"spk" -> spk.simuler(request)
"klp" -> klp.simuler(request)
else -> klp.simuler(request) //TODO throw TpOrdningStoettesIkkeException(tpOrdningNavn)
else -> throw TpOrdningStoettesIkkeException(tpOrdningNavn)
}
}
}

0 comments on commit 1765983

Please sign in to comment.