-
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.
Transient feltutleder klar til lokal test (#1774)
* Transient feltutleder klar til lokal test * Retter diverse SQL- og typefeil. * Oppdaterer riktig SQL-fragment og oppdaterer index for å hindre parameternavnkollisjon. * Saksbehandlingstidutleder * Fjerner : fra parameternavn. * Retter SQL-syntaks. * Legger til felt- og oppgavedefinisjon for saksbehandlingstid. * Hentverdi på løpendeDurationTransientFeltutleder * Retter rekkefølge på parametere ved utregning av duration. * Saksbehandlingstid og feilfiks * Døper om saksbehandlingstid til oppgavesaksbehandlingstid siden det går saksbehandlingstid før oppgaven har blitt opprettet (f.eks. i k9-punsj). * Feltutledere for akkumulert ventetid enkeltfelter * Gjør det optional å sende med durationFelter og løpendetidfelter. * Legger til felt for "Tid siden mottatt dato". * Legger til gjenglemt fil. * Retter testfeil som skyldes bruk av felt som nå er deaktivert ved bruk i query (aktorId). --------- Co-authored-by: Stian Grenborgen <[email protected]>
- Loading branch information
Showing
34 changed files
with
764 additions
and
112 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
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
6 changes: 6 additions & 0 deletions
6
src/main/kotlin/no/nav/k9/los/nyoppgavestyring/query/db/OmrådeOgKode.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,6 @@ | ||
package no.nav.k9.los.nyoppgavestyring.query.db | ||
|
||
data class OmrådeOgKode ( | ||
val område: String?, | ||
val kode: String | ||
) |
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
9 changes: 9 additions & 0 deletions
9
src/main/kotlin/no/nav/k9/los/nyoppgavestyring/query/db/OppgavefeltEntitet.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,9 @@ | ||
package no.nav.k9.los.nyoppgavestyring.query.db | ||
|
||
import no.nav.k9.los.nyoppgavestyring.query.dto.felter.Oppgavefelt | ||
import no.nav.k9.los.spi.felter.TransientFeltutleder | ||
|
||
class OppgavefeltMedMer( | ||
val oppgavefelt: Oppgavefelt, | ||
val transientFeltutleder: TransientFeltutleder? | ||
) |
Oops, something went wrong.