Skip to content

Commit

Permalink
Må beregne!
Browse files Browse the repository at this point in the history
  • Loading branch information
Oddsor committed Dec 13, 2023
1 parent 3ade579 commit 81e767c
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,19 @@ data class InnloggetSaksbehandler(
fun settManueltMinusbeløp(id: String, minusBeløp: Int) {
val korreksjon: Korreksjon = korreksjonRepository.findByIdOrNull(id) ?: throw RessursFinnesIkkeException()
sjekkLesetilgang(korreksjon)
val beregning = beregnRefusjonsbeløp(
inntekter = korreksjon.refusjonsgrunnlag.inntektsgrunnlag!!.inntekter.toList(),
tilskuddsgrunnlag = korreksjon.refusjonsgrunnlag.tilskuddsgrunnlag,
tidligereUtbetalt = 0,
korrigertBruttoLønn = korreksjon.refusjonsgrunnlag.endretBruttoLønn,
fratrekkRefunderbarSum = korreksjon.refusjonsgrunnlag.refunderbarBeløp,
forrigeRefusjonMinusBeløp = minusBeløp,
tilskuddFom = korreksjon.refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddFom,
harFerietrekkForSammeMåned = false,
sumUtbetaltVarig = korreksjon.refusjonsgrunnlag.sumUtbetaltVarig,
)
korreksjon.refusjonsgrunnlag.forrigeRefusjonMinusBeløp = minusBeløp
korreksjon.refusjonsgrunnlag.beregning = beregning
korreksjonRepository.save(korreksjon)
}

Expand Down

0 comments on commit 81e767c

Please sign in to comment.