Skip to content

Commit

Permalink
merge + ktlinting
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Nov 28, 2024
1 parent 14f03be commit ba39e16
Show file tree
Hide file tree
Showing 11 changed files with 966 additions and 941 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ open class Rolle(
open var person: Person? = null,
) {
val personident get() = person?.ident?.let { Personident(it) } ?: this.ident?.let { Personident(it) }

override fun toString(): String =
"Rolle(id=$id, behandling=${behandling.id}, rolletype=$rolletype, ident=$ident, fødselsdato=$fødselsdato, opprettet=$opprettet, navn=$navn, deleted=$deleted, innbetaltBeløp=$innbetaltBeløp)"
}
Expand Down Expand Up @@ -113,7 +114,7 @@ fun Rolle.henteLagretSivilstandshistorikk(behandling: Behandling): Set<Sivilstan
jsonListeTilObjekt<SivilstandUtenBehandling>(
forrigeSivilstandshistorikk ?: oppdateringAvBoforholdFeilet(
"Fant ikke tidligere lagret sivilstandshistorikk for " +
"bidragsmottaker i behandling ${behandling.id}",
"bidragsmottaker i behandling ${behandling.id}",
),
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,10 @@ data class IkkeAktiveInntekter(
val ingenEndringer
get() =
barnetillegg.isEmpty() &&
utvidetBarnetrygd.isEmpty() &&
kontantstøtte.isEmpty() &&
småbarnstillegg.isEmpty() &&
årsinntekter.isEmpty()
utvidetBarnetrygd.isEmpty() &&
kontantstøtte.isEmpty() &&
småbarnstillegg.isEmpty() &&
årsinntekter.isEmpty()
}

data class Grunnlagsinnhentingsfeil(
Expand Down Expand Up @@ -361,7 +361,7 @@ data class PeriodeAndreVoksneIHusstanden(
val totalAntallHusstandsmedlemmer: Int,
@Schema(
description =
"Detaljer om husstandsmedlemmer som bor hos BP for gjeldende periode. " +
"Detaljer om husstandsmedlemmer som bor hos BP for gjeldende periode. " +
"Antall hustandsmedlemmer er begrenset til maks 10 personer",
)
val husstandsmedlemmer: List<AndreVoksneIHusstandenDetaljerDto> = emptyList(),
Expand Down Expand Up @@ -521,23 +521,26 @@ fun Grunnlagsdatatype.tilInntektrapporteringYtelse() =

fun Grunnlagsdatatype.innhentesForRolle(behandling: Behandling) =
when (this) {
Grunnlagsdatatype.BARNETILSYN -> when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}

Grunnlagsdatatype.BOFORHOLD -> when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}

Grunnlagsdatatype.BOFORHOLD_ANDRE_VOKSNE_I_HUSSTANDEN -> when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}
Grunnlagsdatatype.BARNETILSYN ->
when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}

Grunnlagsdatatype.BOFORHOLD ->
when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}

Grunnlagsdatatype.BOFORHOLD_ANDRE_VOKSNE_I_HUSSTANDEN ->
when (this.behandlingstypeMotRolletyper[behandling.tilType()]!!.first()) {
Rolletype.BIDRAGSMOTTAKER -> behandling.bidragsmottaker
Rolletype.BIDRAGSPLIKTIG -> behandling.bidragspliktig
else -> null
}

else -> null
}
}
142 changes: 73 additions & 69 deletions src/main/kotlin/no/nav/bidrag/behandling/service/GrunnlagService.kt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class NotatOpplysningerService(
.hentAlleBearbeidaBoforhold(
behandling.virkningstidspunktEllerSøktFomDato,
behandling.husstandsmedlem,
Grunnlagsdatatype.BOFORHOLD.innhentesForRolle(behandling)!!,
Grunnlagsdatatype.BOFORHOLD.innhentesForRolle(behandling)!!,
)

val opplysningerSivilstand =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class NotatService {
behandling = behandling,
rolle = rolle,
innhold = notattekst,
type = notattype
type = notattype,
),
)
}
Expand Down Expand Up @@ -79,8 +79,7 @@ class NotatService {
fun henteUnderholdsnotat(
behandling: Behandling,
rolle: Rolle,
): String? =
behandling.notater.find { it.rolle.id == rolle.id!! && Notattype.UNDERHOLDSKOSTNAD == it.type }?.innhold
): String? = behandling.notater.find { it.rolle.id == rolle.id!! && Notattype.UNDERHOLDSKOSTNAD == it.type }?.innhold

fun henteInntektsnotat(
behandling: Behandling,
Expand Down
Loading

0 comments on commit ba39e16

Please sign in to comment.