-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lager prosess-søknadsfrist i v2-versjon. (#6722)
* Lager prosess-søknadsfrist i v2-versjon. * Rydding * Legger inn bruk av object-hash igjen * Flytter tester inn i story * rydding * rydding * Bruker panel for ungdomsytelse * Fiks imports * Fikset diverse
- Loading branch information
1 parent
53d2e18
commit 6569417
Showing
30 changed files
with
1,954 additions
and
104 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
10 changes: 10 additions & 0 deletions
10
packages/v2/backend/src/k9sak/kodeverk/AksjonspunktType.ts
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,10 @@ | ||
import type { AksjonspunktDto } from '@navikt/k9-sak-typescript-client'; | ||
|
||
export type AksjonspunktType = NonNullable<AksjonspunktDto['aksjonspunktType']>; | ||
type AksjonspunktTypeName = 'MANUELL' | 'AUTOPUNKT' | 'OVERSTYRING' | 'SAKSBEHANDLEROVERSTYRING'; | ||
export const aksjonspunktType: Readonly<Record<AksjonspunktTypeName, AksjonspunktType>> = { | ||
MANUELL: 'MANU', | ||
AUTOPUNKT: 'AUTO', | ||
OVERSTYRING: 'OVST', | ||
SAKSBEHANDLEROVERSTYRING: 'SAOV', | ||
}; |
10 changes: 10 additions & 0 deletions
10
packages/v2/backend/src/k9sak/kodeverk/KravDokumentStatus.ts
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,10 @@ | ||
import type { KravDokumentMedSøktePerioder } from '@navikt/k9-sak-typescript-client'; | ||
|
||
export type KravDokumentStatusType = KravDokumentMedSøktePerioder['type']; | ||
|
||
export const kravDokumentStatusType: Readonly< | ||
Record<KravDokumentMedSøktePerioder['type'], KravDokumentMedSøktePerioder['type']> | ||
> = { | ||
INNTEKTSMELDING: 'INNTEKTSMELDING', | ||
SØKNAD: 'SØKNAD', | ||
}; |
42 changes: 42 additions & 0 deletions
42
packages/v2/backend/src/k9sak/kodeverk/behandling/VilkårType.ts
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,42 @@ | ||
type VilkarTypeName = | ||
| 'OMSORGENFORVILKARET' | ||
| 'MEDLEMSKAPSVILKARET' | ||
| 'MEDISINSKEVILKÅR_UNDER_18_ÅR' | ||
| 'MEDISINSKEVILKÅR_18_ÅR' | ||
| 'ALDERSVILKARET' | ||
| 'SOKNADSFRISTVILKARET' | ||
| 'OPPTJENINGSVILKARET' | ||
| 'SOKERSOPPLYSNINGSPLIKT' | ||
| 'BEREGNINGSGRUNNLAGVILKARET' | ||
| 'UNNTAKSVILKARET' | ||
| 'UTVIDETRETTVILKARET' | ||
| 'OMP_OMSORGENFORVILKARET' | ||
| 'PLEIEPENGER_LIVETS_SLUTTFASE' | ||
| 'ALDERSVILKAR_BARN' | ||
| 'LANGVARIG_SYKDOM' | ||
| 'NØDVENDIG_OPPLÆRING' | ||
| 'GODKJENT_OPPLÆRINGSINSTITUSJON' | ||
| 'GJENNOMGÅ_OPPLÆRING' | ||
| 'UNGDOMSPROGRAMVILKARET'; | ||
|
||
export const vilkarType: Readonly<Record<VilkarTypeName, string>> = { | ||
OMSORGENFORVILKARET: 'K9_VK_1', | ||
MEDLEMSKAPSVILKARET: 'FP_VK_2', | ||
MEDISINSKEVILKÅR_UNDER_18_ÅR: 'K9_VK_2_a', | ||
MEDISINSKEVILKÅR_18_ÅR: 'K9_VK_2_b', | ||
ALDERSVILKARET: 'K9_VK_3', | ||
SOKNADSFRISTVILKARET: 'FP_VK_3', | ||
OPPTJENINGSVILKARET: 'FP_VK_23', | ||
SOKERSOPPLYSNINGSPLIKT: 'FP_VK_34', | ||
BEREGNINGSGRUNNLAGVILKARET: 'FP_VK_41', | ||
UNNTAKSVILKARET: 'K9_VILKÅRET', | ||
UTVIDETRETTVILKARET: 'K9_VK_9_6', | ||
OMP_OMSORGENFORVILKARET: 'K9_VK_1', | ||
PLEIEPENGER_LIVETS_SLUTTFASE: 'K9_VK_16', | ||
ALDERSVILKAR_BARN: 'K9_VK_5_3', | ||
LANGVARIG_SYKDOM: 'K9_VK_17', | ||
NØDVENDIG_OPPLÆRING: 'K9_VK_20', | ||
GODKJENT_OPPLÆRINGSINSTITUSJON: 'K9_VK_21', | ||
GJENNOMGÅ_OPPLÆRING: 'K9_VK_22', | ||
UNGDOMSPROGRAMVILKARET: 'UNG_VK_XXX', | ||
}; |
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
20 changes: 20 additions & 0 deletions
20
packages/v2/gui/src/prosess/vilkar-soknadsfrist/SoknadsfristVilkarProsessIndex.module.css
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,20 @@ | ||
.contentContainer { | ||
flex: 1; | ||
} | ||
|
||
.sideMenuContainer { | ||
margin: 0 32px 0 0; | ||
} | ||
|
||
.sideMenuContainer > div { | ||
height: auto; | ||
} | ||
|
||
.mainContainerWithSideMenu { | ||
display: flex; | ||
margin-left: -32px; | ||
} | ||
|
||
.warningIcon { | ||
margin-left: 1rem; | ||
} |
8 changes: 8 additions & 0 deletions
8
...ges/v2/gui/src/prosess/vilkar-soknadsfrist/SoknadsfristVilkarProsessIndex.module.d.css.ts
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,8 @@ | ||
declare const styles: { | ||
readonly "contentContainer": string; | ||
readonly "mainContainerWithSideMenu": string; | ||
readonly "sideMenuContainer": string; | ||
readonly "warningIcon": string; | ||
}; | ||
export = styles; | ||
|
Oops, something went wrong.