Skip to content

Commit

Permalink
Feilfiks lesemodus vedtak bidrag
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Dec 3, 2024
1 parent cb760c7 commit b96483e
Showing 1 changed file with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,11 @@ class UnderholdService(
underholdskostnad = underholdskostnad,
)
underholdskostnad.barnetilsyn.add(barnetilsyn)
underholdskostnadRepository.save(underholdskostnad).barnetilsyn.last()
underholdskostnadRepository
.save(underholdskostnad)
.barnetilsyn
.sortedBy { it.id }
.last()
}

return OppdatereUnderholdResponse(
Expand Down Expand Up @@ -221,7 +225,13 @@ class UnderholdService(
underholdskostnad = underholdskostnad,
)
underholdskostnad.faktiskeTilsynsutgifter.add(faktiskTilsynsutgift)
underholdskostnadRepository.save(underholdskostnad).faktiskeTilsynsutgifter.last()
val uSaved =
underholdskostnadRepository
.save(underholdskostnad)
uSaved
.faktiskeTilsynsutgifter
.sortedBy { it.id }
.last()
}
return OppdatereUnderholdResponse(
faktiskTilsynsutgift = dtomapper.tilFaktiskTilsynsutgiftDto(oppdatertFaktiskTilsynsutgift),
Expand Down Expand Up @@ -257,7 +267,11 @@ class UnderholdService(
underholdskostnad = underholdskostnad,
)
underholdskostnad.tilleggsstønad.add(tilleggsstønad)
underholdskostnadRepository.save(underholdskostnad).tilleggsstønad.last()
underholdskostnadRepository
.save(underholdskostnad)
.tilleggsstønad
.sortedBy { it.id }
.last()
}

return OppdatereUnderholdResponse(
Expand Down

0 comments on commit b96483e

Please sign in to comment.