Skip to content

Commit

Permalink
Beregning særbidrag nullbar beløp felt (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 authored Aug 20, 2024
1 parent 8c319e6 commit 0713131
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 @@ -22,6 +22,6 @@ data class ResultatPeriode(

@Schema(description = "Resultatet av en beregning")
data class ResultatBeregning(
@Schema(description = "Resultat beløp") var beløp: BigDecimal,
@Schema(description = "Resultat beløp. Er null hvis resultatet er avslag") var beløp: BigDecimal?,
@Schema(description = "Resultat kode") var resultatkode: Resultatkode,
)
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data class SluttberegningSærbidrag(
override val periode: ÅrMånedsperiode,
val beregnetBeløp: BigDecimal,
val resultatKode: Resultatkode,
val resultatBeløp: BigDecimal,
val resultatBeløp: BigDecimal?,
) : Sluttberegning

@Deprecated("", replaceWith = ReplaceWith("DelberegningSumInntekt"))
Expand Down

0 comments on commit 0713131

Please sign in to comment.