Skip to content

Commit

Permalink
Hindre behandling av begrenset revurdering
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Dec 18, 2024
1 parent a046a58 commit bd697d8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ class ValiderBehandlingService(
if (request.vedtakstype == Vedtakstype.KLAGE || request.harReferanseTilAnnenBehandling) {
return "Kan ikke behandle klage eller omgjøring"
}
if (request.vedtakstype == Vedtakstype.REVURDERING) {
return "Kan ikke behandle begrenset revurdering"
}
val bp = request.bidragspliktig
if (bp == null || bp.erUkjent == true || bp.ident == null) return "Behandlingen mangler bidragspliktig"
val harBPMinstEnBidragsstønad =
Expand Down

0 comments on commit bd697d8

Please sign in to comment.