Skip to content

Commit

Permalink
Revert "Vurder livshendelsetask for KS trengte behandlingstype (#1113)"
Browse files Browse the repository at this point in the history
This reverts commit 6012bd2.
  • Loading branch information
stigebil committed Jun 19, 2024
1 parent 6012bd2 commit 82b018c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import no.nav.familie.baks.mottak.util.fristFerdigstillelse
import no.nav.familie.http.client.AbstractRestClient
import no.nav.familie.kontrakter.felles.Ressurs
import no.nav.familie.kontrakter.felles.Tema
import no.nav.familie.kontrakter.felles.oppgave.Behandlingstype
import no.nav.familie.kontrakter.felles.oppgave.FinnOppgaveRequest
import no.nav.familie.kontrakter.felles.oppgave.FinnOppgaveResponseDto
import no.nav.familie.kontrakter.felles.oppgave.IdentGruppe
Expand Down Expand Up @@ -74,7 +73,7 @@ class OppgaveClient
beskrivelse = dto.beskrivelse,
enhetsnummer = dto.enhetsId,
behandlingstema = dto.behandlingstema,
behandlingstype = dto.behandlingstype?.value,
behandlingstype = null,
behandlesAvApplikasjon = dto.behandlesAvApplikasjon,
)

Expand Down Expand Up @@ -230,5 +229,4 @@ data class OppgaveVurderLivshendelseDto(
val enhetsId: String? = null,
val behandlesAvApplikasjon: String? = null,
val tema: Tema,
val behandlingstype: Behandlingstype?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import no.nav.familie.baks.mottak.integrasjoner.Sivilstand
import no.nav.familie.kontrakter.felles.Behandlingstema
import no.nav.familie.kontrakter.felles.Tema
import no.nav.familie.kontrakter.felles.objectMapper
import no.nav.familie.kontrakter.felles.oppgave.Behandlingstype
import no.nav.familie.kontrakter.felles.oppgave.Oppgave
import no.nav.familie.kontrakter.felles.oppgave.OppgaveResponse
import no.nav.familie.kontrakter.felles.oppgave.Oppgavetype
Expand Down Expand Up @@ -330,22 +329,13 @@ class VurderLivshendelseService(
): OppgaveResponse {
log.info("Oppretter oppgave for aktørId=$aktørId")

val behandlingstype =
when (behandlingstema) {
Behandlingstema.KontantstøtteEØS -> Behandlingstype.EØS
Behandlingstema.Kontantstøtte -> Behandlingstype.NASJONAL
// Oppgave krever at man sender med behandlingstype for Kontantstøtte, men ikke Barnetrygd
else -> null
}

return oppgaveClient.opprettVurderLivshendelseOppgave(
OppgaveVurderLivshendelseDto(
aktørId = aktørId,
beskrivelse = beskrivelse,
saksId = fagsakId.toString(),
behandlingstema = behandlingstema.value,
tema = tema,
behandlingstype = behandlingstype,
),
)
}
Expand Down

0 comments on commit 82b018c

Please sign in to comment.