-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VurderLivshendelse tar i bruk minimal restfagsak #1001
Conversation
Tar i bruk minimal restfagsak for vurderlivshendelse, siden KS ikke hadde tjenesten som henter hele fagsaken og den minimale gir oss alt vi trenger
@@ -172,6 +172,8 @@ data class RestMinimalFagsak( | |||
class RestVisningBehandling( | |||
val behandlingId: Long, | |||
val opprettetTidspunkt: LocalDateTime, | |||
val kategori: BehandlingKategori, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leveres av både ks og ba
@@ -172,6 +172,8 @@ data class RestMinimalFagsak( | |||
class RestVisningBehandling( | |||
val behandlingId: Long, | |||
val opprettetTidspunkt: LocalDateTime, | |||
val kategori: BehandlingKategori, | |||
val underkategori: BehandlingUnderkategori?, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Denne er null for KS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kan vi dokumentere dette gjennom typer? F.eks:
sealed class RestVisningBehandling(
val behandlingId: Long,
val opprettetTidspunkt: LocalDateTime,
val kategori: BehandlingKategori,
val aktiv: Boolean,
val årsak: String? = null,
val type: String,
val status: String,
val resultat: String? = null,
val vedtaksdato: LocalDateTime? = null
) {
data class Ba(
val underkategori: BehandlingUnderkategori
) : RestVisningBehandling(
behandlingId,
opprettetTidspunkt,
kategori,
aktiv,
årsak,
type,
status,
resultat,
vedtaksdato
)
data class Ks : RestVisningBehandling(
behandlingId,
opprettetTidspunkt,
kategori,
aktiv,
årsak,
type,
status,
resultat,
vedtaksdato
)
}
Fikser bug for vurder livshendelse for Kontantstøtte. Tar i bruk minimal restfagsak for vurderlivshendelse. KS hadde ikke tjenesten som henter hele restfagsaken, men den minimale gir oss alt vi trenger.