Skip to content

Commit

Permalink
Oppdaterer data på refusjonser som og er for tidlig
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiaslundmark committed Nov 7, 2023
1 parent 1ebc5a8 commit c6cb977
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class RefusjonService(
}

fun settTotalBeløpUtbetalteVarigLønnstilskudd(refusjon: Refusjon) {
if(refusjon.status == RefusjonStatus.KLAR_FOR_INNSENDING && refusjon.refusjonsgrunnlag.tilskuddsgrunnlag.tiltakstype == Tiltakstype.VARIG_LONNSTILSKUDD) {
if((refusjon.status == RefusjonStatus.KLAR_FOR_INNSENDING || refusjon.status == RefusjonStatus.FOR_TIDLIG) && refusjon.refusjonsgrunnlag.tilskuddsgrunnlag.tiltakstype == Tiltakstype.VARIG_LONNSTILSKUDD) {
val alleUtbetalteVarige =
refusjonRepository.findAllByDeltakerFnrAndBedriftNrAndStatusInAndRefusjonsgrunnlag_Tilskuddsgrunnlag_Tiltakstype(
refusjon.deltakerFnr,
Expand Down Expand Up @@ -272,7 +272,7 @@ class RefusjonService(
}

fun settOmFerieErTrukketForSammeMåned(refusjon: Refusjon) {
if (refusjon.status == RefusjonStatus.KLAR_FOR_INNSENDING) {
if (refusjon.status == RefusjonStatus.KLAR_FOR_INNSENDING || refusjon.status == RefusjonStatus.FOR_TIDLIG) {
val statuser = listOf(RefusjonStatus.UTBETALT, RefusjonStatus.SENDT_KRAV, RefusjonStatus.GODKJENT_MINUSBELØP, RefusjonStatus.GODKJENT_NULLBELØP)
refusjonRepository.findAllByRefusjonsgrunnlag_Tilskuddsgrunnlag_AvtaleNrAndStatusIn(refusjon.refusjonsgrunnlag.tilskuddsgrunnlag.avtaleNr, statuser)
.filter { YearMonth.from(it.refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddFom) == YearMonth.from(refusjon.refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddFom) }
Expand Down

0 comments on commit c6cb977

Please sign in to comment.