Skip to content

Commit

Permalink
Fjerner henting av utkast, fordi utkastet allerede er slettet
Browse files Browse the repository at this point in the history
Co-authored-by: Julie Hill Roa <[email protected]>
  • Loading branch information
klaramargrethehelgemo and JulieHillRoa committed Jan 2, 2025
1 parent bf57486 commit f7bdefd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
package no.nav.veilarbvedtaksstotte.service

import io.getunleash.DefaultUnleash
import org.slf4j.Logger
import org.slf4j.LoggerFactory
import no.nav.common.types.identer.Fnr
import no.nav.veilarbvedtaksstotte.client.veilarboppfolging.VeilarboppfolgingClient
import no.nav.veilarbvedtaksstotte.domain.statistikk.SakStatistikk
import no.nav.veilarbvedtaksstotte.repository.SakStatistikkRepository
import no.nav.veilarbvedtaksstotte.repository.VedtaksstotteRepository
import no.nav.veilarbvedtaksstotte.utils.SAK_STATISTIKK_PAA
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.stereotype.Service
Expand All @@ -20,10 +17,8 @@ private const val AVSENDER = "Oppfølgingsvedtak § 14 a"
class SakStatistikkService @Autowired constructor(
private val sakStatistikkRepository: SakStatistikkRepository,
private val veilarboppfolgingClient: VeilarboppfolgingClient,
private val vedtaksstotteRepository: VedtaksstotteRepository,
private val unleashClient: DefaultUnleash
) {
private val log: Logger = LoggerFactory.getLogger(SakStatistikkService::class.java)
fun fyllSakStatistikk(
aktorId: String,
oppfolgingsperiodeUuid: UUID,
Expand Down Expand Up @@ -134,17 +129,14 @@ class SakStatistikkService @Autowired constructor(

val sakId = veilarboppfolgingClient.hentOppfolgingsperiodeSak(oppfolgingsperiode.get().uuid).sakId

val utkast = vedtaksstotteRepository.hentUtkast(aktorId)
log.debug("Fra utkast: utkastOpprettet={}", utkast.utkastOpprettet)

sakStatistikkRepository.insertSakStatistikkRad(
fyllSakStatistikk(
aktorId,
oppfolgingsperiode.get().uuid,
behandlingId,
sakId,
mottattTid,
utkast.utkastOpprettet,
LocalDateTime.now(),
LocalDateTime.now(),
LocalDateTime.now(),
LocalDateTime.now(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static void setupOnce() {
BeslutteroversiktRepository beslutteroversiktRepository = new BeslutteroversiktRepository(jdbcTemplate);
authService = spy(new AuthService(aktorOppslagClient, veilarbarenaService, AuthContextHolderThreadLocal.instance(), utrullingService, poaoTilgangClient));
SakStatistikkRepository sakStatistikkRepository = new SakStatistikkRepository(jdbcTemplate);
SakStatistikkService sakStatistikkService = new SakStatistikkService(sakStatistikkRepository, veilarboppfolgingClient, vedtaksstotteRepository, unleashClient);
SakStatistikkService sakStatistikkService = new SakStatistikkService(sakStatistikkRepository, veilarboppfolgingClient, unleashClient);

oyeblikksbildeService = new OyeblikksbildeService(authService, oyeblikksbildeRepository, vedtaksstotteRepository, veilarbpersonClient, aia_backend_client, arbeidssoekerRegistretService);
MalTypeService malTypeService = new MalTypeService(arbeidssoekerRegistretService);
Expand Down

0 comments on commit f7bdefd

Please sign in to comment.