Skip to content

Commit

Permalink
TFP-5719: Endrer kontrakt til å tåle tall opp til 500% stilling (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
pekern authored Mar 6, 2024
1 parent 983816d commit a70467a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
public record ArbeidsforholdInntektsmeldinger(@NotNull List<@Valid @NotNull ArbeidsforholdInntektsmelding> arbeidsforholdInntektsmelding) {

public record ArbeidsforholdInntektsmelding(@NotNull @Pattern(regexp = "\\d{9}|\\d{13}") String arbeidsgiverIdent,
@NotNull @Digits(integer = 5, fraction = 2) @DecimalMin("0.00") @DecimalMax("100.00") BigDecimal stillingsprosent,
@NotNull @Digits(integer = 5, fraction = 2) @DecimalMin("0.00") @DecimalMax("500.00") BigDecimal stillingsprosent,
@NotNull Boolean erInntektsmeldingMottatt) {}
}

0 comments on commit a70467a

Please sign in to comment.