Skip to content

Commit

Permalink
Snu sortering (#4076)
Browse files Browse the repository at this point in the history
Ser ut som dette blir sortert omvendt av det vi ønsker:

![image](https://github.com/navikt/familie-ba-sak/assets/17828446/012ad998-b5b7-4630-ac5b-601946249cb5)

Jeg ønsker at de eldste skal komme først. Endre så vi ikke sorterer
decending.
  • Loading branch information
halvorbmundal authored Oct 12, 2023
1 parent 1288f0c commit af611d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ fun hentVedtaksperiodeRaderForGyldigeBegrunnelser(vedtaksperioder: List<Vedtaksp
}

private fun Set<PersonResultat>.sorterPåFøselsdato(persongrunnlag: PersonopplysningGrunnlag) =
this.sortedByDescending { personresultat -> persongrunnlag.personer.single { personresultat.aktør == it.aktør }.fødselsdato }
this.sortedBy { personresultat -> persongrunnlag.personer.single { personresultat.aktør == it.aktør }.fødselsdato }

fun hentTekstValgteBegrunnelser(
behandlingId: Long?,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,4 @@ private fun hentVedtaksperiodeRader(vedtaksperioder: List<VedtaksperiodeMedBegru
}

private fun Set<PersonResultat>.sorterPåFøselsdato(persongrunnlag: PersonopplysningGrunnlag) =
this.sortedByDescending { personresultat -> persongrunnlag.personer.single { personresultat.aktør == it.aktør }.fødselsdato }
this.sortedBy { personresultat -> persongrunnlag.personer.single { personresultat.aktør == it.aktør }.fødselsdato }

0 comments on commit af611d0

Please sign in to comment.