-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lag egen løype for gyldige begrunnelser fortsatt innvilget (#3984)
### 💰 Hva skal gjøres, og hvorfor? [Favro](https://favro.com/organization/98c34fb974ce445eac854de0/1844bbac3b6605eacc8f5543?card=NAV-15590) Lager egen løype når vi finner gyldige begrunnelser når vedtaksperiodetypen er fortsatt innvilget. I denne løypa bryr vi oss kun hva vi har i denne perioden, og ikke hva vi hadde i forrige periode eller behandling. ### ✅ Checklist _Har du husket alle punktene i listen?_ - [ ] Jeg har testet mine endringer i henhold til akseptansekriteriene 🕵️ - [ ] Jeg har config- eller sql-endringer. I så fall, husk manuell deploy til miljø for å verifisere endringene. - [x] Jeg har skrevet tester --------- Co-authored-by: Kristine Steine <[email protected]>
- Loading branch information
1 parent
165323b
commit ea9cdcc
Showing
5 changed files
with
126 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...ba/sak/kjerne/vedtak/vedtaksperiode/vedtakBegrunnelseProdusent/FortsattInnvilgetFilter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package no.nav.familie.ba.sak.kjerne.vedtak.vedtaksperiode.vedtakBegrunnelseProdusent | ||
|
||
import erLikVilkårOgUtdypendeVilkårIPeriode | ||
import no.nav.familie.ba.sak.kjerne.autovedtak.fødselshendelse.Resultat | ||
import no.nav.familie.ba.sak.kjerne.brev.brevBegrunnelseProdusent.GrunnlagForBegrunnelse | ||
import no.nav.familie.ba.sak.kjerne.brev.domene.SanityPeriodeResultat | ||
import no.nav.familie.ba.sak.kjerne.grunnlag.personopplysninger.Person | ||
import no.nav.familie.ba.sak.kjerne.vedtak.begrunnelser.IVedtakBegrunnelse | ||
|
||
fun hentFortsattInnvilgetBegrunnelserPerPerson( | ||
begrunnelseGrunnlagPerPerson: Map<Person, IBegrunnelseGrunnlagForPeriode>, | ||
grunnlag: GrunnlagForBegrunnelse, | ||
): Map<Person, Set<IVedtakBegrunnelse>> { | ||
val fagsakType = grunnlag.behandlingsGrunnlagForVedtaksperioder.fagsakType | ||
|
||
val standardbegrunnelserIngenEndring = grunnlag.sanityBegrunnelser | ||
.filterValues { it.erGjeldendeForFagsakType(fagsakType) } | ||
.filterValues { it.periodeResultat == SanityPeriodeResultat.INGEN_ENDRING } | ||
|
||
val eøsBegrunnelserIngenEndring = grunnlag.sanityEØSBegrunnelser | ||
.filterValues { it.erGjeldendeForFagsakType(fagsakType) } | ||
.filterValues { it.periodeResultat == SanityPeriodeResultat.INGEN_ENDRING } | ||
|
||
return begrunnelseGrunnlagPerPerson.mapValues { (person, begrunnelseGrunnlag) -> | ||
val begrunnelseGrunnlagForPerson = begrunnelseGrunnlag.dennePerioden | ||
|
||
val oppfylteVilkårresultater = | ||
begrunnelseGrunnlagForPerson.vilkårResultater.filter { it.resultat == Resultat.OPPFYLT }.toList() | ||
|
||
val standardbegrunnelseSomMatcherVilkår = standardbegrunnelserIngenEndring | ||
.filterValues { it.erGjeldendeForRolle(person, fagsakType) } | ||
.filterValues { it.erLikVilkårOgUtdypendeVilkårIPeriode(oppfylteVilkårresultater) } | ||
|
||
val eøsBegrunnelserSomMatcherKompetanse = eøsBegrunnelserIngenEndring | ||
.filterValues { it.erLikKompetanseIPeriode(begrunnelseGrunnlag) } | ||
|
||
standardbegrunnelseSomMatcherVilkår.keys.toSet() + | ||
eøsBegrunnelserSomMatcherKompetanse.keys.toSet() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
...st/resources/no/nav/familie/ba/sak/cucumber/begrunnelsetekster/forstatt_innvilget.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# language: no | ||
# encoding: UTF-8 | ||
|
||
Egenskap: Gyldige begrunnelser for fortsatt innvilget | ||
|
||
Bakgrunn: | ||
Gitt følgende fagsaker for begrunnelse | ||
| FagsakId | Fagsaktype | | ||
| 1 | NORMAL | | ||
|
||
Gitt følgende behandling | ||
| BehandlingId | FagsakId | ForrigeBehandlingId | Behandlingsresultat | Behandlingsårsak | | ||
| 1 | 1 | | ENDRET_UTBETALING | NYE_OPPLYSNINGER | | ||
| 2 | 1 | 1 | FORTSATT_INNVILGET | NYE_OPPLYSNINGER | | ||
|
||
Og følgende persongrunnlag for begrunnelse | ||
| BehandlingId | AktørId | Persontype | Fødselsdato | | ||
| 1 | 1 | SØKER | 31.10.1987 | | ||
| 1 | 2 | BARN | 19.02.2011 | | ||
| 2 | 1 | SØKER | 31.10.1987 | | ||
| 2 | 2 | BARN | 19.02.2011 | | ||
|
||
Scenario: Skal gi begrunnelser som passer med | ||
Og følgende dagens dato 20.09.2023 | ||
Og lag personresultater for begrunnelse for behandling 1 | ||
Og lag personresultater for begrunnelse for behandling 2 | ||
|
||
Og legg til nye vilkårresultater for begrunnelse for behandling 1 | ||
| AktørId | Vilkår | Utdypende vilkår | Fra dato | Til dato | Resultat | Er eksplisitt avslag | | ||
| 1 | LOVLIG_OPPHOLD | | 31.10.1987 | | OPPFYLT | Nei | | ||
| 1 | BOSATT_I_RIKET | | 31.10.1987 | 14.06.2023 | OPPFYLT | Nei | | ||
| 1 | BOSATT_I_RIKET | VURDERT_MEDLEMSKAP | 15.06.2023 | | OPPFYLT | Nei | | ||
|
||
| 2 | GIFT_PARTNERSKAP,LOVLIG_OPPHOLD,BOR_MED_SØKER | | 19.02.2011 | | OPPFYLT | Nei | | ||
| 2 | BOSATT_I_RIKET | | 19.02.2011 | 14.06.2023 | OPPFYLT | Nei | | ||
| 2 | UNDER_18_ÅR | | 19.02.2011 | 18.02.2029 | OPPFYLT | Nei | | ||
| 2 | BOSATT_I_RIKET | VURDERT_MEDLEMSKAP | 15.06.2023 | | OPPFYLT | Nei | | ||
|
||
Og legg til nye vilkårresultater for begrunnelse for behandling 2 | ||
| AktørId | Vilkår | Utdypende vilkår | Fra dato | Til dato | Resultat | Er eksplisitt avslag | | ||
| 1 | LOVLIG_OPPHOLD | | 31.10.1987 | | OPPFYLT | Nei | | ||
| 1 | BOSATT_I_RIKET | | 31.10.1987 | 14.06.2023 | OPPFYLT | Nei | | ||
| 1 | BOSATT_I_RIKET | VURDERT_MEDLEMSKAP | 15.06.2023 | | OPPFYLT | Nei | | ||
|
||
| 2 | GIFT_PARTNERSKAP,LOVLIG_OPPHOLD,BOR_MED_SØKER | | 19.02.2011 | | OPPFYLT | Nei | | ||
| 2 | BOSATT_I_RIKET | | 19.02.2011 | 14.06.2023 | OPPFYLT | Nei | | ||
| 2 | UNDER_18_ÅR | | 19.02.2011 | 18.02.2029 | OPPFYLT | Nei | | ||
| 2 | BOSATT_I_RIKET | VURDERT_MEDLEMSKAP | 15.06.2023 | | OPPFYLT | Nei | | ||
|
||
Og med andeler tilkjent ytelse for begrunnelse | ||
| AktørId | BehandlingId | Fra dato | Til dato | Beløp | Ytelse type | Prosent | Sats | | ||
| 2 | 1 | 01.03.2011 | 28.02.2019 | 970 | ORDINÆR_BARNETRYGD | 100 | 970 | | ||
| 2 | 1 | 01.03.2019 | 28.02.2023 | 1054 | ORDINÆR_BARNETRYGD | 100 | 1054 | | ||
| 2 | 1 | 01.03.2023 | 30.06.2023 | 1083 | ORDINÆR_BARNETRYGD | 100 | 1083 | | ||
| 2 | 1 | 01.07.2023 | 31.01.2029 | 1310 | ORDINÆR_BARNETRYGD | 100 | 1310 | | ||
| 2 | 2 | 01.03.2011 | 28.02.2019 | 970 | ORDINÆR_BARNETRYGD | 100 | 970 | | ||
| 2 | 2 | 01.03.2019 | 28.02.2023 | 1054 | ORDINÆR_BARNETRYGD | 100 | 1054 | | ||
| 2 | 2 | 01.03.2023 | 30.06.2023 | 1083 | ORDINÆR_BARNETRYGD | 100 | 1083 | | ||
| 2 | 2 | 01.07.2023 | 31.01.2029 | 1310 | ORDINÆR_BARNETRYGD | 100 | 1310 | | ||
|
||
Når begrunnelsetekster genereres for behandling 2 | ||
|
||
Så forvent følgende standardBegrunnelser | ||
| Fra dato | Til dato | VedtaksperiodeType | Regelverk Inkluderte Begrunnelser | Inkluderte Begrunnelser | Ekskluderte Begrunnelser | | ||
| | | FORTSATT_INNVILGET | | FORTSATT_INNVILGET_MEDLEM_I_FOLKETRYGDEN | FORTSATT_INNVILGET_SØKER_BOSATT_I_RIKET, FORTSATT_INNVILGET_FORVARING_GIFT, FORTSATT_INNVILGET_FORTSATT_AVTALE_OM_DELT_BOSTED | | ||
| | | FORTSATT_INNVILGET | EØS_FORORDNINGEN | | FORTSATT_INNVILGET_PRIMÆRLAND_STANDARD | |