From 7a9d2b644f48050e367360cd2354c3075e891ac2 Mon Sep 17 00:00:00 2001 From: MagnusRom Date: Tue, 22 Oct 2024 11:58:29 +0200 Subject: [PATCH] =?UTF-8?q?Lagt=20til=202=20nye=20sorterings=20rekkef?= =?UTF-8?q?=C3=B8lge=20valg=20s=C3=A5=20man=20kan=20filtrere=20p=C3=A5=20T?= =?UTF-8?q?iltakstype=20og=20Bedrift?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Millad Dagdoni <42534421+d142796@users.noreply.github.com> --- .../tiltakrefusjon/autorisering/InnloggetArbeidsgiver.kt | 5 ++++- .../nav/arbeidsgiver/tiltakrefusjon/refusjon/SortingOrder.kt | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) 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 +}