diff --git a/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/autorisering/InnloggetArbeidsgiver.kt b/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/autorisering/InnloggetArbeidsgiver.kt index e4ce3f22..031152a3 100644 --- a/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/autorisering/InnloggetArbeidsgiver.kt +++ b/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/autorisering/InnloggetArbeidsgiver.kt @@ -43,6 +43,10 @@ data class InnloggetArbeidsgiver( fun getSortingOrderForPageable(sortingOrder: SortingOrder): Sort.Order { when (sortingOrder) { + SortingOrder.TILTAKSTYPE_ASC -> return Sort.Order.asc("refusjonsgrunnlag.tilskuddsgrunnlag.tiltakstype") + SortingOrder.TILTAKSTYPE_DESC -> return Sort.Order.desc("refusjonsgrunnlag.tilskuddsgrunnlag.tiltakstype") + SortingOrder.BEDRIFT_ASC -> return Sort.Order.asc("refusjonsgrunnlag.tilskuddsgrunnlag.bedriftNavn") + SortingOrder.BEDRIFT_DESC-> return Sort.Order.desc("refusjonsgrunnlag.tilskuddsgrunnlag.bedriftNavn") SortingOrder.DELTAKER_ASC -> return Sort.Order.asc("refusjonsgrunnlag.tilskuddsgrunnlag.deltakerFornavn") SortingOrder.DELTAKER_DESC -> return Sort.Order.desc("refusjonsgrunnlag.tilskuddsgrunnlag.deltakerFornavn") SortingOrder.PERIODE_ASC -> return Sort.Order.asc("refusjonsgrunnlag.tilskuddsgrunnlag.tilskuddTom") @@ -165,7 +169,6 @@ data class InnloggetArbeidsgiver( } refusjonService.gjørBeregning(refusjon, this) refusjonService.oppdaterSistEndret(refusjon) - refusjonRepository.save(refusjon) } diff --git a/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/refusjon/SortingOrder.kt b/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/refusjon/SortingOrder.kt index f160d897..05e26247 100644 --- a/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/refusjon/SortingOrder.kt +++ b/src/main/kotlin/no/nav/arbeidsgiver/tiltakrefusjon/refusjon/SortingOrder.kt @@ -1,5 +1,5 @@ package no.nav.arbeidsgiver.tiltakrefusjon.refusjon enum class SortingOrder { - DELTAKER_ASC, DELTAKER_DESC, PERIODE_ASC, PERIODE_DESC, STATUS_ASC, STATUS_DESC, FRISTFORGODKJENNING_ASC, FRISTFORGODKJENNING_DESC,LØPENUMMER_ASC,LØPENUMMER_DESC -} \ No newline at end of file + TILTAKSTYPE_ASC, TILTAKSTYPE_DESC, BEDRIFT_ASC, BEDRIFT_DESC, DELTAKER_ASC, DELTAKER_DESC, PERIODE_ASC, PERIODE_DESC, STATUS_ASC, STATUS_DESC, FRISTFORGODKJENNING_ASC, FRISTFORGODKJENNING_DESC,LØPENUMMER_ASC,LØPENUMMER_DESC +}