Skip to content

Commit

Permalink
Flatten spesifisert inntekt, remove InntektsMåned
Browse files Browse the repository at this point in the history
  • Loading branch information
atleno committed Jul 31, 2019
1 parent bc75154 commit 921b6a9
Showing 1 changed file with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@ import java.time.YearMonth

data class SpesifisertInntekt(
val inntektId: InntektId,
valnedsInntekter: List<MånedsInntekt>,
val avvik: List<Avvik>,
val posteringer: List<Postering>,
val ident: Aktør,
val manueltRedigert: Boolean,
val timestamp: LocalDateTime
)

data class MånedsInntekt(
val årMåned: YearMonth,
val avvikListe: List<Avvik>,
val posteringer: List<Postering>
data class Avvik(
val ident: Aktør,
val opplysningspliktig: Aktør,
val virksomhet: Aktør?,
val avvikPeriode: YearMonth,
val tekst: String
)

data class Postering(
Expand Down Expand Up @@ -67,12 +70,4 @@ enum class AktørType {
ORGANISASJON
}

data class Avvik(
val ident: Aktør,
val opplysningspliktig: Aktør,
val virksomhet: Aktør?,
val avvikPeriode: YearMonth,
val tekst: String
)

class IllegalInntektIdException(override val message: String, override val cause: Throwable?) : java.lang.RuntimeException(message, cause)

0 comments on commit 921b6a9

Please sign in to comment.