Skip to content

Commit

Permalink
ktlinting
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Dec 9, 2024
1 parent 821b106 commit b955768
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ data class InntektDtoV2(
) {
@get:Schema(description = "Avrundet månedsbeløp for barnetillegg")
val månedsbeløp: BigDecimal?
get() = if (Inntektsrapportering.BARNETILLEGG == rapporteringstype) {
beløp.divide(BigDecimal(12), 0, RoundingMode.HALF_UP)
} else null
get() =
if (Inntektsrapportering.BARNETILLEGG == rapporteringstype) {
beløp.divide(BigDecimal(12), 0, RoundingMode.HALF_UP)
} else {
null
}
}

data class InntekterDtoV2(
Expand Down Expand Up @@ -167,7 +170,7 @@ data class OppdatereManuellInntekt(
val ident: Personident,
@Schema(
description =
"Ident til barnet en ytelse gjelder for. " +
"Ident til barnet en ytelse gjelder for. " +
"sBenyttes kun for ytelser som er koblet til ett spesifikt barn, f.eks kontantstøtte",
type = "String",
example = "12345678910",
Expand Down

0 comments on commit b955768

Please sign in to comment.