Skip to content

Commit

Permalink
Fiks lint feil
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Nov 27, 2023
1 parent e1ba758 commit 92ddfcc
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 89 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@ class ForskuddBeregning {
referanse = "Mottatt_SoknadsbarnInfo_SB" + soknadBarn.id,
type = Grunnlagstype.PERSON,
innhold =
POJONode(
SoknadsBarnNode(
ident = soknadBarn.ident ?: "",
navn = soknadBarn.navn ?: "",
fødselsdato = fødselsdato,
POJONode(
SoknadsBarnNode(
ident = soknadBarn.ident ?: "",
navn = soknadBarn.navn ?: "",
fødselsdato = fødselsdato,
),
),
),
)


private fun prepareBostatus(
husstandsBarnPerioder: List<HusstandsBarnPeriodeModel>,
knadsbarn: Grunnlag,
Expand All @@ -53,14 +52,14 @@ class ForskuddBeregning {
referanse = "Mottatt_Bostatus_" + it.datoFom.toCompactString(),
type = Grunnlagstype.BOSTATUS,
innhold =
POJONode(
BostatusNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
rolle = "SOKNADSBARN",
bostatusKode = it.bostatus?.name
POJONode(
BostatusNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
rolle = "SOKNADSBARN",
bostatusKode = it.bostatus?.name,
),
),
),
)
}

Expand All @@ -85,23 +84,23 @@ class ForskuddBeregning {
referanse = "Mottatt_Inntekt_${it.inntektType}_${it.rolle}_${it.datoFom.toCompactString()}",
type = Grunnlagstype.INNTEKT,
innhold =
POJONode(
InntektNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
rolle = it.rolle,
inntektType = it.inntektType,
belop = it.belop,
POJONode(
InntektNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
rolle = it.rolle,
inntektType = it.inntektType,
belop = it.belop,
),
),
),
)
} +
barnetillegg
.map {
Grunnlag(
referanse = "Mottatt_Inntekt_TG" + it.datoFom.toCompactString(),
type = Grunnlagstype.INNTEKT,
innhold =
barnetillegg
.map {
Grunnlag(
referanse = "Mottatt_Inntekt_TG" + it.datoFom.toCompactString(),
type = Grunnlagstype.INNTEKT,
innhold =
POJONode(
InntektNode(
datoFom = it.datoFom.toNoString(),
Expand All @@ -111,14 +110,14 @@ class ForskuddBeregning {
belop = it.belop,
),
),
)
} +
utvidetbarnetrygd
.map {
Grunnlag(
referanse = "Mottatt_Inntekt_UB" + it.datoFom.toCompactString(),
type = Grunnlagstype.INNTEKT,
innhold =
)
} +
utvidetbarnetrygd
.map {
Grunnlag(
referanse = "Mottatt_Inntekt_UB" + it.datoFom.toCompactString(),
type = Grunnlagstype.INNTEKT,
innhold =
POJONode(
InntektNode(
datoFom = it.datoFom.toNoString(),
Expand All @@ -128,23 +127,22 @@ class ForskuddBeregning {
belop = it.belop,
),
),
)
}

)
}

private fun prepareSivilstand(sivilstand: List<SivilstandModel>): List<Grunnlag> =
sivilstand.map {
Grunnlag(
referanse = "Mottatt_Sivilstand_" + it.datoFom.toCompactString(),
type = Grunnlagstype.SIVILSTAND,
innhold =
POJONode(
SivilstandNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
sivilstand = it.sivilstand.name,
POJONode(
SivilstandNode(
datoFom = it.datoFom.toNoString(),
datoTil = it.datoTom?.toNoString(),
sivilstand = it.sivilstand.name,
),
),
),
)
}

Expand Down Expand Up @@ -218,7 +216,7 @@ class ForskuddBeregning {
periode = ÅrMånedsperiode(b.virkningsDato, b.datoTom),
søknadsbarnReferanse = søknadsbarn.referanse,
grunnlagListe =
listOf(søknadsbarn) +
listOf(søknadsbarn) +
prepareBarnIHusstand(b) +
prepareBostatus(b.husstandsBarnPerioder, søknadsbarn) +
prepareInntekterForBeregning(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ data class BehandlingBeregningModel private constructor(
mapOrAccumulate(inntekter.filter { it.taMed }) {
InntektModel(
inntektType =
it.inntektType
?: raise("InntektType kan ikke være null"),
it.inntektType
?: raise("InntektType kan ikke være null"),
belop = it.belop,
rolle = roller.rolleType(it.ident),
datoFom =
it.datoFom?.toLocalDate()
?: raise("Inntekts Dato Fra må fylles ut"),
it.datoFom?.toLocalDate()
?: raise("Inntekts Dato Fra må fylles ut"),
datoTom = it.datoTom?.toLocalDate(),
)
}
Expand All @@ -93,8 +93,8 @@ data class BehandlingBeregningModel private constructor(
mapOrAccumulate(barnetillegg) {
BarnetilleggModel(
datoFom =
it.datoFom?.toLocalDate()
?: raise("Barnetillegg Dato Fra må fylles ut"),
it.datoFom?.toLocalDate()
?: raise("Barnetillegg Dato Fra må fylles ut"),
datoTom = it.datoTom?.toLocalDate(),
belop = it.barnetillegg,
)
Expand All @@ -104,8 +104,8 @@ data class BehandlingBeregningModel private constructor(
mapOrAccumulate(utvidetbarnetrygd) {
UtvidetbarnetrygdModel(
datoFom =
it.datoFom?.toLocalDate()
?: raise("Utvidetbarnetrygd Dato Fra må fylles ut"),
it.datoFom?.toLocalDate()
?: raise("Utvidetbarnetrygd Dato Fra må fylles ut"),
datoTom = it.datoTom?.toLocalDate(),
belop = it.belop,
)
Expand All @@ -118,8 +118,8 @@ data class BehandlingBeregningModel private constructor(
) {
HusstandsBarnPeriodeModel(
datoFom =
it.datoFom?.toLocalDate()
?: raise("HusstandsBarnPeriode Dato Fra må fylles ut"),
it.datoFom?.toLocalDate()
?: raise("HusstandsBarnPeriode Dato Fra må fylles ut"),
datoTom = it.datoTom?.toLocalDate(),
referanseTilBarn = it.husstandsBarn.ident,
bostatus = it.bostatus,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,16 @@ class BehandlingBeregnForskuddController(
datoFom2: LocalDate,
datoTom2: LocalDate?,
) = (datoFom1 === null || datoFom1 > datoFom2 || datoFom1.isEqual(datoFom2)) && (
(datoTom2 == null && datoTom1 == null) ||
(datoTom1 != null && (datoTom2 == null || datoTom1 < datoTom2 || datoTom1.isEqual(
datoTom2
)))
(datoTom2 == null && datoTom1 == null) ||
(
datoTom1 != null && (
datoTom2 == null || datoTom1 < datoTom2 ||
datoTom1.isEqual(
datoTom2,
)
)
)
)

@Suppress("unused")
@PostMapping("/behandling/{behandlingId}/beregn")
Expand Down Expand Up @@ -73,7 +78,7 @@ class BehandlingBeregnForskuddController(
var søknadsbarn =
forskuddBeregning.lagePersonobjektForSøknadsbarn(
it,
fødselsdatoSøknadsbarn
fødselsdatoSøknadsbarn,
)

val payload = forskuddBeregning.toPayload(behandlingModel, søknadsbarn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ class VisningsnavnController {
@GetMapping("/visningsnavn")
fun hentVisningsnavn(): Map<String, String> {
return Inntektsrapportering.entries.associate { it.name to it.visningsnavn.intern } +
Bostatuskode.entries.associate { it.name to it.visningsnavn.intern } +
Sivilstandskode.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeSærtilskudd.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeBarnebidrag.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeForskudd.entries.associate { it.name to it.visningsnavn.intern }

Bostatuskode.entries.associate { it.name to it.visningsnavn.intern } +
Sivilstandskode.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeSærtilskudd.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeBarnebidrag.entries.associate { it.name to it.visningsnavn.intern } +
ResultatkodeForskudd.entries.associate { it.name to it.visningsnavn.intern }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fun Set<SivilstandDto>.toSivilstandDomain(behandling: Behandling) =
it.datoTom?.toDate(),
it.sivilstand,
it.kilde,
it.id
it.id,
)
}.toMutableSet()

Expand Down Expand Up @@ -209,13 +209,13 @@ fun CreateRolleDto.toRolle(behandling: Behandling): Rolle =
Rolle(
behandling,
rolleType =
when (this.rolleType) {
CreateRolleRolleType.BIDRAGS_MOTTAKER -> Rolletype.BIDRAGSMOTTAKER
CreateRolleRolleType.BIDRAGS_PLIKTIG -> Rolletype.BIDRAGSPLIKTIG
CreateRolleRolleType.REELL_MOTTAKER -> Rolletype.REELMOTTAKER
CreateRolleRolleType.BARN -> Rolletype.BARN
CreateRolleRolleType.FEILREGISTRERT -> Rolletype.FEILREGISTRERT
},
when (this.rolleType) {
CreateRolleRolleType.BIDRAGS_MOTTAKER -> Rolletype.BIDRAGSMOTTAKER
CreateRolleRolleType.BIDRAGS_PLIKTIG -> Rolletype.BIDRAGSPLIKTIG
CreateRolleRolleType.REELL_MOTTAKER -> Rolletype.REELMOTTAKER
CreateRolleRolleType.BARN -> Rolletype.BARN
CreateRolleRolleType.FEILREGISTRERT -> Rolletype.FEILREGISTRERT
},
this.ident,
this.fodtDato,
this.opprettetDato,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ class ForskuddBeregningTest {
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident1",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato2.toLocalDate(),
tilDato2.toLocalDate(),
"ident2",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
),
)
Expand All @@ -61,7 +61,7 @@ class ForskuddBeregningTest {
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
),
)
Expand All @@ -86,19 +86,19 @@ class ForskuddBeregningTest {
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident1",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident2",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
),
)
Expand Down Expand Up @@ -138,19 +138,19 @@ class ForskuddBeregningTest {
fraDato1.toLocalDate(),
tilDato1.toLocalDate(),
"ident",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato2.toLocalDate(),
tilDato2.toLocalDate(),
"ident1",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato3.toLocalDate(),
tilDato3.toLocalDate(),
"ident2",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
),
)
Expand Down Expand Up @@ -186,13 +186,13 @@ class ForskuddBeregningTest {
fraDato.toLocalDate(),
tilDato.toLocalDate(),
"ident",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
HusstandsBarnPeriodeModel(
fraDato1.toLocalDate(),
tilDato1.toLocalDate(),
"ident1",
Bostatuskode.MED_FORELDER
Bostatuskode.MED_FORELDER,
),
),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class BoforholdControllerTest : KontrollerTestRunner() {
null,
null,
Bostatuskode.MED_FORELDER,
Kilde.OFFENTLIG
)
Kilde.OFFENTLIG,
),
)
val husstandsBarn =
setOf(HusstandsbarnDto(behandling.body!!.id, true, perioder, "ident", null))
Expand Down

0 comments on commit 92ddfcc

Please sign in to comment.