Skip to content

Commit

Permalink
Revert fpsakendringer
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen committed Oct 10, 2023
1 parent ef4c5ee commit 2a799bb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public FpsakOppgaveEgenskapFinner(LosBehandlingDto behandling) {
}
var aksjonspunkter = behandling.aksjonspunkt().stream().map(Aksjonspunkt::aksjonspunktFra).toList();

// Ved behov ta med && !matchAksjonspunkt(aksjonspunkter, Aksjonspunkt::erForeslåVedtak)
if (matchAksjonspunkt(aksjonspunkter, Aksjonspunkt::erTilBeslutter)) {
this.andreKriterier.add(AndreKriterierType.TIL_BESLUTTER);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public class Aksjonspunkt {

public static final String MANUELT_SATT_PÅ_VENT_KODE = "7001";
public static final String PÅ_VENT_KODEGRUPPE_STARTS_WITH = "7";
public static final Set<String> FORESLÅ_VEDTAK_KODE = Set.of("5015", "5018", "5028");
public static final String TIL_BESLUTTER_KODE = "5016";
protected static final List<String> REGISTRER_PAPIRSØKNAD_KODE = asList("5012", "5040", "5057", "5096");
protected static final List<String> VURDER_FORMKRAV_GRUPPE = List.of("5082");
Expand Down Expand Up @@ -76,10 +75,6 @@ public boolean erTilBeslutter() {
return TIL_BESLUTTER_KODE.equals(definisjonKode) && erAktiv();
}

public boolean erForeslåVedtak() {
return FORESLÅ_VEDTAK_KODE.contains(definisjonKode) && erAktiv();
}

public boolean erRegistrerPapirSøknad() {
return REGISTRER_PAPIRSØKNAD_KODE.contains(definisjonKode) && erAktiv();
}
Expand Down

0 comments on commit 2a799bb

Please sign in to comment.