Skip to content

Commit

Permalink
Endre månedsbeløp til valgfri og kun relevant for barnetillegg
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Dec 9, 2024
1 parent 9ad3a4d commit 821b106
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ data class InntektDtoV2(
val inntektstyper: Set<Inntektstype> = emptySet(),
val historisk: Boolean? = false,
) {
val månedsbeløp: BigDecimal get() = beløp.divide(BigDecimal(12), 0, RoundingMode.HALF_UP)
@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
}

data class InntekterDtoV2(
Expand Down Expand Up @@ -163,7 +167,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 821b106

Please sign in to comment.