Skip to content

Commit

Permalink
Returnerer behandlingsstatus i søkeresultat
Browse files Browse the repository at this point in the history
  • Loading branch information
mbolstad committed Oct 7, 2024
1 parent 22ce48c commit f8bb99c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package no.nav.k9.los.nyoppgavestyring.søkeboks

import com.fasterxml.jackson.annotation.JsonFormat
import no.nav.k9.los.domene.modell.BehandlingStatus
import no.nav.k9.los.domene.modell.BehandlingType
import no.nav.k9.los.domene.modell.FagsakYtelseType
import no.nav.k9.los.domene.modell.Saksbehandler
Expand Down Expand Up @@ -31,6 +32,7 @@ data class SøkeboksOppgaveDto(
val journalpostId: String?,
val opprettetTidspunkt: LocalDateTime?,
val oppgavestatus: OppgavestatusMedNavn,
val behandlingsstatus: BehandlingStatus?,
val oppgavebehandlingsUrl: String?,
val reservasjonsnøkkel: String,
val reservertAvSaksbehandlerNavn: String?,
Expand All @@ -50,6 +52,7 @@ data class SøkeboksOppgaveDto(
journalpostId = oppgaveV3.hentVerdi("journalpostId"),
opprettetTidspunkt = oppgaveV3.hentVerdi("registrertDato")?.let { LocalDateTime.parse(it) },
oppgavestatus = OppgavestatusMedNavn.valueOf(oppgaveV3.status),
behandlingsstatus = oppgaveV3.hentVerdi("behandlingsstatus")?.let { BehandlingStatus.fraKode(it) },
oppgavebehandlingsUrl = oppgaveV3.getOppgaveBehandlingsurl(),
reservasjonsnøkkel = oppgaveV3.reservasjonsnøkkel,
reservertAvSaksbehandlerNavn = reservertAv?.navn,
Expand Down

0 comments on commit f8bb99c

Please sign in to comment.