Skip to content

Commit

Permalink
Grov logging av hvor mange potensielle saker til innvilgelse
Browse files Browse the repository at this point in the history
Co-authored-by: Tonje Mjøvik Myran <[email protected]>
Co-authored-by: Geir André Lund <[email protected]>
Co-authored-by: Richard Andre Martinsen <[email protected]>
Co-authored-by: Eivind Havnelid Røyrvik <[email protected]>
Co-authored-by: Mette Wendy Lindberg Gulbrandsen <[email protected]>
  • Loading branch information
6 people committed Oct 10, 2024
1 parent 0e529e9 commit b5faa12
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import mu.KotlinLogging
import mu.withLoggingContext
import no.nav.dagpenger.mottak.Aktivitetslogg
import no.nav.dagpenger.mottak.Aktivitetslogg.Aktivitet.Behov.Behovtype
import no.nav.dagpenger.mottak.AvsluttetArbeidsforhold.Sluttårsak.KONTRAKT_UTGAATT
import no.nav.dagpenger.mottak.AvsluttetArbeidsforhold.Sluttårsak.SAGT_OPP_AV_ARBEIDSGIVER
import no.nav.dagpenger.mottak.InnsendingMediator
import no.nav.dagpenger.mottak.meldinger.søknadsdata.Søknadsdata

Expand Down Expand Up @@ -63,8 +65,18 @@ internal class SøknadsdataMottak(
""".trimMargin()
}

if (avtjentVerneplikt() && avsluttetArbeidsforhold().isEmpty() && !harBarn() && !harAndreYtelser()) {
logg.info { "Søknad er en mulig Viggo." }
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." }
}
}
}
Expand Down

0 comments on commit b5faa12

Please sign in to comment.