Skip to content

Commit

Permalink
r - Sender inn Saktype i steder for GjennySaktype
Browse files Browse the repository at this point in the history
Co-authored-by: [email protected]
  • Loading branch information
MariamPervez committed Sep 24, 2024
1 parent e0279d0 commit a45060d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,14 @@ class JournalpostService(private val journalpostKlient: JournalpostKlient) {
): OpprettJournalpostRequestBase {
logger.info("Oppretter OpprettJournalpostRequest for ${sedHendelse.rinaSakId}")

if(tema == EYBARNEP || tema == OMSTILLING) {
if (tema == EYBARNEP || tema == OMSTILLING) {
logger.info("Tema er $tema oppretter journalpost som kan overtas av gjenny")
val gjennyTema = if (fnr?.erUnderAlder(20) == true)
EYBARNEP else OMSTILLING

return OpprettJournalpostRequestGjenny(
bruker = fnr?.let { Bruker(id = it.value) },
tema = tema,
bruker = fnr.let { it?.let { it1 -> Bruker(id = it1.value) } },
tema = gjennyTema,
dokumenter = dokumenter
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package no.nav.eessi.pensjon.listeners
import no.nav.eessi.pensjon.eux.EuxService
import no.nav.eessi.pensjon.eux.model.BucType.P_BUC_02
import no.nav.eessi.pensjon.eux.model.SedHendelse
import no.nav.eessi.pensjon.eux.model.buc.SakType
import no.nav.eessi.pensjon.eux.model.buc.SakType.*
import no.nav.eessi.pensjon.gcp.GcpStorageService
import no.nav.eessi.pensjon.gcp.GjennySak
import no.nav.eessi.pensjon.journalforing.JournalforingService
Expand Down Expand Up @@ -111,8 +113,8 @@ class SedMottattListener(
val fdato = personidentifiseringService.hentFodselsDato(identifisertPerson, alleSedIBucList.plus(kansellerteSeder))

if (bucType == P_BUC_02 ) {
val gjennyTema = if (Period.between(fdato, LocalDate.now()).years > 19) OMSTILLING else EYBARNEP
gcpStorageService.lagre(sedHendelse.rinaSakId, GjennySak(sedHendelse.rinaSakId, gjennyTema.kode))
val gjennyTema = if (Period.between(fdato, LocalDate.now()).years > 19) OMSORG else BARNEP
gcpStorageService.lagre(sedHendelse.rinaSakId, GjennySak(sedHendelse.rinaSakId, gjennyTema.name))
}

val saksInfoSamlet = hentSaksInformasjonForEessi(
Expand Down

0 comments on commit a45060d

Please sign in to comment.