-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Underkjenning av tilbakekreving bruker riktig type. Lagring av attest…
…eringshistorikk skjer bare for tidligere behandlinger
- Loading branch information
Showing
33 changed files
with
311 additions
and
96 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
3 changes: 3 additions & 0 deletions
3
...main/kotlin/no/nav/su/se/bakover/common/domain/attestering/UnderkjennAttesteringsgrunn.kt
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,3 @@ | ||
package no.nav.su.se.bakover.common.domain.attestering | ||
|
||
interface UnderkjennAttesteringsgrunn |
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
4 changes: 2 additions & 2 deletions
4
...ttestering/AttesteringshistorikkDbJson.kt → ...ttestering/AttesteringshistorikkDbJson.kt
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
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
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
19 changes: 19 additions & 0 deletions
19
...n/kotlin/no/nav/su/se/bakover/domain/attestering/UnderkjennAttesteringsgrunnBehandling.kt
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,19 @@ | ||
package no.nav.su.se.bakover.domain.attestering | ||
|
||
import no.nav.su.se.bakover.common.domain.attestering.UnderkjennAttesteringsgrunn | ||
|
||
/** | ||
* Dette er valgene som kan tas, dersom man vil underkjenne | ||
* [no.nav.su.se.bakover.domain.søknadsbehandling.Søknadsbehandling], | ||
* [no.nav.su.se.bakover.domain.revurdering.Revurdering], | ||
* [no.nav.su.se.bakover.domain.klage.Klage] | ||
* | ||
* Disse feltene passer ikke ved klage. Disse vil vi endre på sikt. Må ta høyde for dette under databasen | ||
*/ | ||
enum class UnderkjennAttesteringsgrunnBehandling : UnderkjennAttesteringsgrunn { | ||
INNGANGSVILKÅRENE_ER_FEILVURDERT, | ||
BEREGNINGEN_ER_FEIL, | ||
DOKUMENTASJON_MANGLER, | ||
VEDTAKSBREVET_ER_FEIL, | ||
ANDRE_FORHOLD, | ||
} |
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
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
4 changes: 2 additions & 2 deletions
4
service/src/main/kotlin/no/nav/su/se/bakover/service/klage/UnderkjennKlageRequest.kt
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package no.nav.su.se.bakover.service.klage | ||
|
||
import no.nav.su.se.bakover.common.domain.attestering.Attestering | ||
import no.nav.su.se.bakover.common.ident.NavIdentBruker | ||
import no.nav.su.se.bakover.domain.attestering.UnderkjennAttesteringsgrunnBehandling | ||
import java.util.UUID | ||
|
||
data class UnderkjennKlageRequest( | ||
val klageId: UUID, | ||
val attestant: NavIdentBruker.Attestant, | ||
val grunn: Attestering.Underkjent.Grunn, | ||
val grunn: UnderkjennAttesteringsgrunnBehandling, | ||
val kommentar: String, | ||
) |
Oops, something went wrong.