Skip to content

Commit

Permalink
🏷️ Legg til dagligBelop og manedligBelop på NyttInntektsforholdPeriode
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Solheim <[email protected]>
  • Loading branch information
jonashas and MartinMekk committed Oct 24, 2024
1 parent 500c3f1 commit 40efbbd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ data class NyttInntektsforholdPeriode(
val vilkarsgrunnlagId: UUID?,
val organisasjonsnummer: String,
val skjaeringstidspunkt: LocalDate,
val dagligBelop: Double,
val manedligBelop: Double,
)

data class Arbeidsgiver(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ data class Person(
vilkarsgrunnlagId = it.vilkarsgrunnlagId,
organisasjonsnummer = it.organisasjonsnummer,
skjaeringstidspunkt = it.skjaeringstidspunkt,
dagligBelop = it.dagligBelop,
manedligBelop = it.manedligBelop,
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ query HentSnapshot($fnr: String!) {
organisasjonsnummer
vilkarsgrunnlagId
skjaeringstidspunkt
dagligBelop
manedligBelop
}
generasjoner {
id
Expand Down
2 changes: 2 additions & 0 deletions spesialist-api/src/main/resources/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ type GraphQLInntektsmelding implements GraphQLHendelse {
}

type GraphQLNyttInntektsforholdPeriode {
dagligBelop: Float!
fom: LocalDate!
id: UUID!
manedligBelop: Float!
organisasjonsnummer: String!
skjaeringstidspunkt: LocalDate!
tom: LocalDate!
Expand Down
2 changes: 2 additions & 0 deletions spesialist-api/src/test/schema_til_bruk_fra_tester.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,10 @@ type Notater {
}

type NyttInntektsforholdPeriode {
dagligBelop: Float!
fom: LocalDate!
id: UUID!
manedligBelop: Float!
organisasjonsnummer: String!
skjaeringstidspunkt: LocalDate!
tom: LocalDate!
Expand Down

0 comments on commit 40efbbd

Please sign in to comment.