-
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.
chore: split nasjonal and utenlandsk ferdigstillingServices
- Loading branch information
Showing
13 changed files
with
242 additions
and
164 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
125 changes: 125 additions & 0 deletions
125
...ain/kotlin/no/nav/sykdig/digitalisering/papirsykmelding/NasjonalFerdigstillingsService.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,125 @@ | ||
package no.nav.sykdig.digitalisering.papirsykmelding | ||
|
||
import net.logstash.logback.argument.StructuredArguments | ||
import no.nav.sykdig.LoggingMeta | ||
import no.nav.sykdig.applog | ||
import no.nav.sykdig.digitalisering.ferdigstilling.GosysService | ||
import no.nav.sykdig.digitalisering.ferdigstilling.oppgave.NasjonalOppgaveResponse | ||
import no.nav.sykdig.digitalisering.ferdigstilling.oppgave.OppgaveClient | ||
import no.nav.sykdig.digitalisering.helsenett.SykmelderService | ||
import no.nav.sykdig.digitalisering.papirsykmelding.api.model.FerdigstillRegistrering | ||
import no.nav.sykdig.digitalisering.papirsykmelding.api.model.Veileder | ||
import no.nav.sykdig.digitalisering.papirsykmelding.db.model.NasjonalManuellOppgaveDAO | ||
import no.nav.sykdig.digitalisering.sykmelding.service.JournalpostService | ||
import no.nav.sykdig.securelog | ||
import org.springframework.stereotype.Service | ||
import java.time.LocalDateTime | ||
import java.time.format.DateTimeFormatter | ||
|
||
@Service | ||
class NasjonalFerdigstillingsService( | ||
private val journalpostService: JournalpostService, | ||
private val nasjonalCommonService: NasjonalCommonService, | ||
private val sykmelderService: SykmelderService, | ||
private val oppgaveClient: OppgaveClient, | ||
private val gosysService: GosysService, | ||
) { | ||
|
||
val log = applog() | ||
val securelog = securelog() | ||
|
||
|
||
suspend fun ferdigstillOppgave( | ||
ferdigstillRegistrering: FerdigstillRegistrering, | ||
beskrivelse: String?, | ||
loggingMeta: LoggingMeta, | ||
oppgaveId: String, | ||
) { | ||
oppgaveClient.ferdigstillNasjonalOppgave(oppgaveId, ferdigstillRegistrering.sykmeldingId, ferdigstillRegistrering, loggingMeta, beskrivelse) | ||
} | ||
|
||
suspend fun ferdigstillNasjonalAvvistOppgave( | ||
lokalOppgave: NasjonalManuellOppgaveDAO, | ||
eksternOppgave: NasjonalOppgaveResponse, | ||
navEnhet: String, | ||
avvisningsgrunn: String?, | ||
veilederIdent: String, | ||
) { | ||
if (lokalOppgave.oppgaveId == null) { | ||
log.error("Ingen oppgave tilgjengelig med oppgaveId ${lokalOppgave.oppgaveId} ") | ||
return | ||
} | ||
// dette er nok ikke mulig | ||
if (lokalOppgave.fnr == null) { | ||
log.error("Fant ikke fnr for oppgave med id ${lokalOppgave.oppgaveId}. kan ikke avvise oppgave") | ||
return | ||
} | ||
|
||
val sykmeldingId = lokalOppgave.sykmeldingId | ||
val oppgaveId = lokalOppgave.oppgaveId | ||
val jounalpostId = lokalOppgave.journalpostId | ||
val dokumentInfoId = lokalOppgave.dokumentInfoId | ||
val loggingMeta = nasjonalCommonService.getLoggingMeta(lokalOppgave.sykmeldingId, lokalOppgave) | ||
val sykmelder = sykmelderService.getSykmelderForAvvistOppgave(lokalOppgave.papirSmRegistrering.behandler?.hpr, lokalOppgave.sykmeldingId, lokalOppgave.oppgaveId) | ||
|
||
|
||
val ferdigstillRegistrering = | ||
FerdigstillRegistrering( | ||
oppgaveId = oppgaveId, | ||
journalpostId = jounalpostId, | ||
dokumentInfoId = dokumentInfoId, | ||
pasientFnr = lokalOppgave.fnr, | ||
sykmeldingId = sykmeldingId, | ||
sykmelder = sykmelder, | ||
navEnhet = navEnhet, | ||
veileder = Veileder(veilederIdent), | ||
avvist = true, | ||
oppgave = eksternOppgave, | ||
) | ||
journalpostService.ferdigstillNasjonalJournalpost(ferdigstillRegistrering, null, loggingMeta) | ||
ferdigstillOppgave( | ||
ferdigstillRegistrering = ferdigstillRegistrering, | ||
beskrivelse = lagAvvisOppgavebeskrivelse( | ||
opprinneligBeskrivelse = eksternOppgave.beskrivelse, | ||
veileder = Veileder(veilederIdent), | ||
navEnhet = navEnhet, | ||
avvisSykmeldingReason = avvisningsgrunn, | ||
), | ||
loggingMeta = loggingMeta, | ||
oppgaveId = oppgaveId.toString(), | ||
) | ||
} | ||
|
||
fun lagAvvisOppgavebeskrivelse( | ||
avvisSykmeldingReason: String?, | ||
opprinneligBeskrivelse: String?, | ||
veileder: Veileder, | ||
navEnhet: String, | ||
timestamp: LocalDateTime? = null, | ||
): String { | ||
val oppdatertBeskrivelse = | ||
when { | ||
!avvisSykmeldingReason.isNullOrEmpty() -> | ||
"Avvist papirsykmelding med årsak: $avvisSykmeldingReason" | ||
|
||
else -> "Avvist papirsykmelding uten oppgitt årsak." | ||
} | ||
val formatter = DateTimeFormatter.ofPattern("dd.MM.yyyy HH:mm") | ||
val formattedTimestamp = (timestamp ?: LocalDateTime.now()).format(formatter) | ||
return "--- $formattedTimestamp ${veileder.veilederIdent}, $navEnhet ---\n$oppdatertBeskrivelse\n\n$opprinneligBeskrivelse" | ||
} | ||
|
||
|
||
fun ferdigstillOgSendOppgaveTilGosys(oppgaveId: String, authorization: String, eksisterendeOppgave: NasjonalManuellOppgaveDAO) { | ||
val sykmeldingId = eksisterendeOppgave.sykmeldingId | ||
val loggingMeta = nasjonalCommonService.getLoggingMeta(sykmeldingId, eksisterendeOppgave) | ||
log.info( | ||
"Sender nasjonal oppgave med id $oppgaveId til Gosys {}", | ||
StructuredArguments.fields(loggingMeta), | ||
) | ||
val navIdent = nasjonalCommonService.getNavIdent().veilederIdent | ||
gosysService.sendOppgaveTilGosys(oppgaveId, sykmeldingId, navIdent) | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.