-
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.
Merge pull request #806 from navikt/ny-utbetalingsgenerator
Ny utbetalingsgenerator
- Loading branch information
Showing
53 changed files
with
1,029 additions
and
183 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
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 |
---|---|---|
|
@@ -12,5 +12,4 @@ class CustomUnleashStrategies { | |
fun strategies(): List<Strategy> { | ||
return listOf(ByEnvironmentStrategy()) | ||
} | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
src/main/kotlin/no/nav/familie/ef/iverksett/iverksetting/domene/TilkjentYtelse.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
4 changes: 2 additions & 2 deletions
4
src/main/kotlin/no/nav/familie/ef/iverksett/økonomi/OppdragClient.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
33 changes: 33 additions & 0 deletions
33
.../no/nav/familie/ef/iverksett/økonomi/simulering/kontroll/SimuleringskontrollRepository.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,33 @@ | ||
package no.nav.familie.ef.iverksett.økonomi.simulering.kontroll | ||
|
||
import no.nav.familie.ef.iverksett.iverksetting.domene.Simulering | ||
import no.nav.familie.ef.iverksett.repository.InsertUpdateRepository | ||
import no.nav.familie.ef.iverksett.repository.RepositoryInterface | ||
import no.nav.familie.kontrakter.felles.simulering.BeriketSimuleringsresultat | ||
import org.springframework.data.annotation.Id | ||
import org.springframework.data.relational.core.mapping.Column | ||
import org.springframework.stereotype.Repository | ||
import java.util.UUID | ||
|
||
@Repository | ||
interface SimuleringskontrollRepository : | ||
RepositoryInterface<Simuleringskontroll, UUID>, | ||
InsertUpdateRepository<Simuleringskontroll> | ||
|
||
data class Simuleringskontroll( | ||
@Id | ||
val behandlingId: UUID, | ||
@Column("input") | ||
val input: SimuleringskontrollInput, | ||
@Column("resultat") | ||
val resultat: SimuleringskontrollResultat, | ||
) | ||
|
||
data class SimuleringskontrollInput( | ||
val simulering: Simulering, | ||
val resultat: BeriketSimuleringsresultat, | ||
) | ||
|
||
data class SimuleringskontrollResultat( | ||
val resultat: BeriketSimuleringsresultat, | ||
) |
Oops, something went wrong.