Skip to content

Commit

Permalink
Legg til sortering etter navn
Browse files Browse the repository at this point in the history
Co-authored-by: Tonje Mjøvik Myran <[email protected]>
Co-authored-by: Eivind Havnelid Røyrvik <[email protected]>
Co-authored-by: Sindre Sægrov <[email protected]>
  • Loading branch information
4 people committed Jan 14, 2025
1 parent 4ae4ac9 commit 52da5ad
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,13 @@ internal fun Behandling.tilBehandlingDTO(): BehandlingDTO =
vilkår =
behandler.regelverk
.regelsettAvType(RegelsettType.Vilkår)
.map { it.tilRegelsettDTO(opplysninger, avklaringer) },
.map { it.tilRegelsettDTO(opplysninger, avklaringer) }
.sortedBy { it.navn },
fastsettelser =
behandler.regelverk
.regelsettAvType(RegelsettType.Fastsettelse)
.map { it.tilRegelsettDTO(opplysninger, avklaringer) },
.map { it.tilRegelsettDTO(opplysninger, avklaringer) }
.sortedBy { it.navn },
kreverTotrinnskontroll = this.kreverTotrinnskontroll(),
avklaringer = generelleAvklaringer.map { it.tilAvklaringDTO() },
opplysninger = opplysninger.map { it.tilOpplysningDTO() },
Expand Down

0 comments on commit 52da5ad

Please sign in to comment.