@@ -37,6 +37,7 @@ data class PersonOversiktStatus(
37
37
val behandlerBerOmBistandUbehandlet : Boolean = false ,
38
38
val arbeidsuforhetVurderAvslagUbehandlet : Boolean = false ,
39
39
val friskmeldingTilArbeidsformidlingFom : LocalDate ? = null ,
40
+ val isAktivArbeidsuforhetVurdering : Boolean = false ,
40
41
) {
41
42
constructor (fnr: String ) : this (
42
43
null , fnr = fnr, null , null , null ,
@@ -135,59 +136,45 @@ fun PersonOversiktStatus.applyHendelse(
135
136
OversikthendelseType .MOTEBEHOV_SVAR_MOTTATT -> this .copy(
136
137
motebehovUbehandlet = true ,
137
138
)
138
-
139
139
OversikthendelseType .MOTEBEHOV_SVAR_BEHANDLET -> this .copy(
140
140
motebehovUbehandlet = false ,
141
141
)
142
-
143
142
OversikthendelseType .OPPFOLGINGSPLANLPS_BISTAND_MOTTATT -> this .copy(
144
143
oppfolgingsplanLPSBistandUbehandlet = true ,
145
144
)
146
-
147
145
OversikthendelseType .OPPFOLGINGSPLANLPS_BISTAND_BEHANDLET -> this .copy(
148
146
oppfolgingsplanLPSBistandUbehandlet = false ,
149
147
)
150
-
151
148
OversikthendelseType .DIALOGMOTESVAR_MOTTATT -> this .copy(
152
149
dialogmotesvarUbehandlet = true ,
153
150
)
154
-
155
151
OversikthendelseType .DIALOGMOTESVAR_BEHANDLET -> this .copy(
156
152
dialogmotesvarUbehandlet = false ,
157
153
)
158
-
159
154
OversikthendelseType .BEHANDLERDIALOG_SVAR_MOTTATT -> this .copy(
160
155
behandlerdialogSvarUbehandlet = true ,
161
156
)
162
-
163
157
OversikthendelseType .BEHANDLERDIALOG_SVAR_BEHANDLET -> this .copy(
164
158
behandlerdialogSvarUbehandlet = false ,
165
159
)
166
-
167
160
OversikthendelseType .BEHANDLERDIALOG_MELDING_UBESVART_MOTTATT -> this .copy(
168
161
behandlerdialogUbesvartUbehandlet = true ,
169
162
)
170
-
171
163
OversikthendelseType .BEHANDLERDIALOG_MELDING_UBESVART_BEHANDLET -> this .copy(
172
164
behandlerdialogUbesvartUbehandlet = false ,
173
165
)
174
-
175
166
OversikthendelseType .BEHANDLERDIALOG_MELDING_AVVIST_MOTTATT -> this .copy(
176
167
behandlerdialogAvvistUbehandlet = true ,
177
168
)
178
-
179
169
OversikthendelseType .BEHANDLERDIALOG_MELDING_AVVIST_BEHANDLET -> this .copy(
180
170
behandlerdialogAvvistUbehandlet = false ,
181
171
)
182
-
183
172
OversikthendelseType .AKTIVITETSKRAV_VURDER_STANS_MOTTATT -> this .copy(
184
173
aktivitetskravVurderStansUbehandlet = true ,
185
174
)
186
-
187
175
OversikthendelseType .AKTIVITETSKRAV_VURDER_STANS_BEHANDLET -> this .copy(
188
176
aktivitetskravVurderStansUbehandlet = false ,
189
177
)
190
-
191
178
OversikthendelseType .BEHANDLER_BER_OM_BISTAND_MOTTATT -> this .copy(
192
179
behandlerBerOmBistandUbehandlet = true
193
180
)
0 commit comments