Skip to content

Commit

Permalink
Viser fritekst boks på vedtaksiden hvis vilkåret for opplysningsplikt…
Browse files Browse the repository at this point in the history
… ikke er oppfylt
  • Loading branch information
matsbyfl committed Oct 4, 2023
1 parent 283cf4c commit c268f02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions client/src/mocks/data/vurderteVilkår.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export function vurderteVilkår_JA(
beskrivelse: 'Opplysningsplikten',
lovReferanse: 'ftrl. § 21-3',
lovdataLenke: 'https://lovdata.no/dokument/NL/lov/1997-02-28-19/KAPITTEL_8-1#%C2%A721-3',
resultatAuto: VilkårsResultat.JA,
resultatAuto: undefined,
begrunnelseAuto: undefined,
resultatSaksbehandler: undefined,
resultatSaksbehandler: VilkårsResultat.JA,
begrunnelseSaksbehandler: undefined,
grunnlag: {},
},
Expand Down Expand Up @@ -126,9 +126,9 @@ export function vurderteVilkår_IKKE_VURDERT(vilkårsvurderingId: string): Array
beskrivelse: 'Opplysningsplikten',
lovReferanse: 'frtl. § 21-3',
lovdataLenke: 'https://lovdata.no/dokument/NL/lov/1997-02-28-19/KAPITTEL_8-1#%C2%A721-3',
resultatAuto: VilkårsResultat.NEI,
resultatAuto: undefined,
begrunnelseAuto: undefined,
resultatSaksbehandler: undefined,
resultatSaksbehandler: VilkårsResultat.NEI,
begrunnelseSaksbehandler: undefined,
grunnlag: {},
},
Expand Down
6 changes: 5 additions & 1 deletion client/src/saksbilde/barnebriller/steg/vedtak/Vedtak.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,12 @@ export const Vedtak: React.FC = () => {
sak.data.status === OppgaveStatusType.TILDELT_SAKSBEHANDLER &&
(status === VilkårsResultat.NEI || sak?.data.utbetalingsmottaker?.kontonummer !== undefined)

const opplysningspliktVilkår = sak.data.vilkårsvurdering?.vilkår.find(
(vilkår) => vilkår.vilkårId === 'MEDLEMMETS_OPPLYSNINGSPLIKT'
)

const visFritekstFelt =
sak.data.vilkårsgrunnlag?.opplysningsplikt.vilkårOppfylt === VilkårsResultat.NEI &&
opplysningspliktVilkår?.resultatSaksbehandler === VilkårsResultat.NEI &&
sak.data.status === OppgaveStatusType.TILDELT_SAKSBEHANDLER

return (
Expand Down

0 comments on commit c268f02

Please sign in to comment.