Skip to content

Commit

Permalink
Merge pull request #50 from navikt/a_i_tr_utfall
Browse files Browse the repository at this point in the history
Added utfall for AnkeITrygderetten
  • Loading branch information
flexable777 authored Oct 11, 2022
2 parents 85a011d + b0a5203 commit 0802c47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/main/kotlin/no/nav/klage/kodeverk/TypeTilUtfall.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,13 @@ val typeTilUtfall = mapOf(
UGUNST,
INNSTILLING_AVVIST,
),
//TODO: Fiks liste etter funksjonell avklaring.
Type.ANKE_I_TRYGDERETTEN to setOf(
TRUKKET,
RETUR,
OPPHEVET,
MEDHOLD,
DELVIS_MEDHOLD,
STADFESTELSE,
UGUNST,
AVVIST,
HEVET,
HENVIST,
),
)
4 changes: 3 additions & 1 deletion src/main/kotlin/no/nav/klage/kodeverk/Utfall.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ enum class Utfall(override val id: String, override val navn: String, override v
UGUNST("7", "Ugunst (Ugyldig)", "Ugunst (Ugyldig)"),
AVVIST("8", "Avvist", "Avvist"),
INNSTILLING_STADFESTELSE("9", "Innstilling: Stadfestelse", "Innstilling: Stadfestelse"),
INNSTILLING_AVVIST("10", "Innstilling: Avvist", "Innstilling: Avvist");
INNSTILLING_AVVIST("10", "Innstilling: Avvist", "Innstilling: Avvist"),
HEVET("11", "Hevet", "Hevet"),
HENVIST("12", "Henvist", "Henvist");


override fun toString(): String {
Expand Down

0 comments on commit 0802c47

Please sign in to comment.