From 8ae090563dacdb644cad3922bb74e144ea38df40 Mon Sep 17 00:00:00 2001 From: Betsy Carina Traran Date: Wed, 18 Dec 2024 13:32:39 +0100 Subject: [PATCH] Lagt til forventet sluttdato for inst --- .../sammendrag/kriterier/BestillingKriterieMapper.tsx | 2 ++ .../stegVelger/steg/steg1/paneler/Institusjonsopphold.tsx | 1 + .../main/js/src/components/fagsystem/inst/form/Form.tsx | 7 +++++++ .../js/src/components/fagsystem/inst/form/validation.tsx | 1 + .../src/components/fagsystem/inst/visning/InstVisning.tsx | 4 ++++ 5 files changed, 15 insertions(+) diff --git a/apps/dolly-frontend/src/main/js/src/components/bestilling/sammendrag/kriterier/BestillingKriterieMapper.tsx b/apps/dolly-frontend/src/main/js/src/components/bestilling/sammendrag/kriterier/BestillingKriterieMapper.tsx index 99670b44fbf..f7007ca852c 100644 --- a/apps/dolly-frontend/src/main/js/src/components/bestilling/sammendrag/kriterier/BestillingKriterieMapper.tsx +++ b/apps/dolly-frontend/src/main/js/src/components/bestilling/sammendrag/kriterier/BestillingKriterieMapper.tsx @@ -1722,6 +1722,7 @@ const mapInst = (bestillingData, data) => { institusjonstype: i.institusjonstype, varighet: i.varighet, startdato: i.startdato, + forventetSluttdato: i.forventetSluttdato, sluttdato: i.sluttdato, }) }) @@ -1739,6 +1740,7 @@ const mapInst = (bestillingData, data) => { obj('Institusjonstype', showLabel('institusjonstype', inst.institusjonstype)), obj('Varighet', inst.varighet && showLabel('varighet', inst.varighet)), obj('Startdato', formatDate(inst.startdato)), + obj('Forventet sluttdato', formatDate(inst.forventetSluttdato)), obj('Sluttdato', formatDate(inst.sluttdato)), ]) }) diff --git a/apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Institusjonsopphold.tsx b/apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Institusjonsopphold.tsx index e27f9d27424..5e56a522c17 100644 --- a/apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Institusjonsopphold.tsx +++ b/apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg1/paneler/Institusjonsopphold.tsx @@ -33,6 +33,7 @@ InstitusjonsoppholdPanel.initialValues = ({ set, del, has }) => ({ { institusjonstype: runningE2ETest() ? 'AS' : '', startdato: runningE2ETest() ? new Date() : '', + forventetSluttdato: '', sluttdato: '', }, ]) diff --git a/apps/dolly-frontend/src/main/js/src/components/fagsystem/inst/form/Form.tsx b/apps/dolly-frontend/src/main/js/src/components/fagsystem/inst/form/Form.tsx index f5c031ba7a7..14f890c9eb0 100644 --- a/apps/dolly-frontend/src/main/js/src/components/fagsystem/inst/form/Form.tsx +++ b/apps/dolly-frontend/src/main/js/src/components/fagsystem/inst/form/Form.tsx @@ -15,6 +15,7 @@ import { useFormContext } from 'react-hook-form' export const initialValues = { institusjonstype: '', startdato: '', + forventetSluttdato: '', sluttdato: '', } export const instAttributt = 'instdata' @@ -56,6 +57,12 @@ export const InstForm = () => { excludeDates={excludeDates} maxDate={maxDate} /> + + )}