From 0ecc31dd51513daf4239203458e471e543aca8cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roaldseth?= Date: Thu, 10 Oct 2024 13:23:10 +0200 Subject: [PATCH] Grov logging av hvor mange potensielle saker til innvilgelse MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tonje Mjøvik Myran Co-authored-by: Geir André Lund Co-authored-by: Richard Andre Martinsen Co-authored-by: Eivind Havnelid Røyrvik Co-authored-by: Mette Wendy Lindberg Gulbrandsen --- .../tjenester/S\303\270knadsdataMottak.kt" | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git "a/mediator/src/main/kotlin/no/nav/dagpenger/mottak/tjenester/S\303\270knadsdataMottak.kt" "b/mediator/src/main/kotlin/no/nav/dagpenger/mottak/tjenester/S\303\270knadsdataMottak.kt" index ed988e82..eeeb0e4f 100644 --- "a/mediator/src/main/kotlin/no/nav/dagpenger/mottak/tjenester/S\303\270knadsdataMottak.kt" +++ "b/mediator/src/main/kotlin/no/nav/dagpenger/mottak/tjenester/S\303\270knadsdataMottak.kt" @@ -63,20 +63,20 @@ internal class SøknadsdataMottak( | avsluttedeArbeidsforhold=${avsluttetArbeidsforhold().isEmpty()} | rutingoppslag=${this.javaClass.simpleName} """.trimMargin() - } - if (!avtjentVerneplikt() && - !harBarn() && - !eøsArbeidsforhold() && - !eøsBostedsland() && - !harAndreYtelser() && - avsluttetArbeidsforhold().size == 1 && - ( - avsluttetArbeidsforhold().single().sluttårsak == SAGT_OPP_AV_ARBEIDSGIVER || - avsluttetArbeidsforhold().single().sluttårsak == KONTRAKT_UTGAATT - ) - ) { - logg.info { "Søknad er en mulig case for innvilgelse." } + if (!avtjentVerneplikt() && + !harBarn() && + !eøsArbeidsforhold() && + !eøsBostedsland() && + !harAndreYtelser() && + avsluttetArbeidsforhold().size == 1 && + ( + avsluttetArbeidsforhold().single().sluttårsak == SAGT_OPP_AV_ARBEIDSGIVER || + avsluttetArbeidsforhold().single().sluttårsak == KONTRAKT_UTGAATT + ) + ) { + logg.info { "Søknad er en mulig case for innvilgelse." } + } } } }