We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfdc0d7 commit 572c3fcCopy full SHA for 572c3fc
src/main/kotlin/no/nav/eessi/pensjon/journalforing/JournalforingService.kt
@@ -464,8 +464,11 @@ class JournalforingService(
464
euxCaseId: String
465
) : Tema {
466
return if (gcpStorageService.gjennyFinnes(euxCaseId)) {
467
- val blob = gcpStorageService.hentFraGjenny(euxCaseId,)
468
- if (blob?.contains("BARNEP") == true) EYBARNEP else OMSTILLING
+ val blob = gcpStorageService.hentFraGjenny(euxCaseId)
+ if (blob?.contains("BARNEP") == true) EYBARNEP else {
469
+ logger.info("$euxCaseId gir tema omstilling")
470
+ OMSTILLING
471
+ }
472
} else {
473
val ufoereAlder = if (fnr != null && !fnr.erNpid) Period.between(fnr.getBirthDate(), LocalDate.now()).years in 19..61 else false
474
if (saktype == SakType.UFOREP || bucType == P_BUC_03 && saktype == null) UFORETRYGD
0 commit comments