Skip to content

Commit

Permalink
Fikser feil i logikk for aksjonspunkt (#6545)
Browse files Browse the repository at this point in the history
* Fikser feil i logikk for aksjonspunkt

* sjekke om periode er definert før bruk
  • Loading branch information
hallvardastark authored Sep 4, 2024
1 parent d4141e2 commit f298bcf
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,12 @@ OppholdINorgeOgAdresserFaktaPanel.buildInitialValues = (
parents.push(createParent(false, personopplysninger.annenPart));
}

const filteredAp = periode?.aksjonspunkter.includes(aksjonspunktCodes.AVKLAR_OM_BRUKER_ER_BOSATT)
? aksjonspunkter
: aksjonspunkter.filter(ap => ap.definisjon.kode === aksjonspunktCodes.AVKLAR_FORTSATT_MEDLEMSKAP);
const filteredAp = aksjonspunkter.filter(
ap =>
ap.definisjon.kode === aksjonspunktCodes.AVKLAR_OM_BRUKER_ER_BOSATT ||
(periode?.aksjonspunkter.includes(aksjonspunktCodes.AVKLAR_OM_BRUKER_ER_BOSATT) &&
ap.definisjon.kode === aksjonspunktCodes.AVKLAR_FORTSATT_MEDLEMSKAP),
);

return {
opphold,
Expand Down

0 comments on commit f298bcf

Please sign in to comment.