Skip to content

Commit

Permalink
Alle kan legge tilbake oppgaver som ikke er ferdigstilt. Man skal kun…
Browse files Browse the repository at this point in the history
… se oppgaver som er ferdig
  • Loading branch information
ssaegrov committed Dec 11, 2024
1 parent cc83298 commit ed93765
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/components/oppgave-liste-valg/OppgaveListeValg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ export function OppgaveListeValg({ oppgave }: { oppgave: IListeOppgave }) {
oppgave.tilstand === "KLAR_TIL_KONTROLL" ||
(oppgave.tilstand === "UNDER_KONTROLL" && minBeslutterOppgaver);

const kanLeggeTilbakeOppgave =
oppgave.behandlerIdent &&
oppgave.tilstand !== "FERDIG_BEHANDLET" &&
oppgave.tilstand !== "BEHANDLES_I_ARENA";

const kanSeOppgave =
oppgave.tilstand === "FERDIG_BEHANDLET" || oppgave.tilstand === "BEHANDLES_I_ARENA";

return (
<>
<Button
Expand Down Expand Up @@ -67,7 +75,7 @@ export function OppgaveListeValg({ oppgave }: { oppgave: IListeOppgave }) {
</Form>
)}

{!kanTildeleOgBehandleOppgave && (
{kanSeOppgave && (
<RemixLink
to={`/oppgave/${oppgave.oppgaveId}/se`}
asButtonVariant="tertiary-neutral"
Expand All @@ -77,7 +85,7 @@ export function OppgaveListeValg({ oppgave }: { oppgave: IListeOppgave }) {
</RemixLink>
)}

{minSaksbehandlerOppgave && oppgave.tilstand !== "FERDIG_BEHANDLET" && (
{kanLeggeTilbakeOppgave && (
<Form method="post">
<input name="_action" value="legg-tilbake-oppgave" hidden={true} readOnly={true} />
<input name="oppgaveId" value={oppgave.oppgaveId} hidden={true} readOnly={true} />
Expand Down

0 comments on commit ed93765

Please sign in to comment.