Skip to content

Commit

Permalink
Sjekker samordning før løpende (#6356)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjodn authored Nov 15, 2024
1 parent ecb4ac5 commit 914f9c1
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@ class AarligInntektsjusteringJobbService(
runBlocking {
vedtakKlient.sakHarLopendeVedtakPaaDato(sakId, loependeFom.atDay(1), HardkodaSystembruker.omregning)
}
if (!vedtak.erLoepende) {
oppdaterKjoering(kjoering, KjoeringStatus.FERDIGSTILT, sakId, "Sak er ikke løpende")
return@inTransaction
}

val forrigeBehandling = hentForrigeBehandling(sakId)

Expand All @@ -125,6 +121,11 @@ class AarligInntektsjusteringJobbService(
return@inTransaction
}

if (!vedtak.erLoepende) {
oppdaterKjoering(kjoering, KjoeringStatus.FERDIGSTILT, sakId, "Sak er ikke løpende")
return@inTransaction
}

val avkortingSjekk = hentAvkortingSjekk(sakId, loependeFom, forrigeBehandling.id)

if (avkortingSjekk.harInntektForAar) {
Expand Down

0 comments on commit 914f9c1

Please sign in to comment.