Skip to content
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

EY-4805 nytt navn for inntektsjustering oppgave type #6543

Merged
merged 5 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ class InntektsjusteringSelvbetjeningService(
oppgaveService.opprettOppgave(
sakId = SakId(mottattInntektsjustering.sak.sakId),
kilde = OppgaveKilde.BRUKERDIALOG,
type = OppgaveType.MOTTATT_INNTEKTSJUSTERING,
merknad = "Mottatt inntektsjustering",
type = OppgaveType.INNTEKTSOPPLYSNING,
merknad = "Ny inntektsopplysning",
referanse = mottattInntektsjustering.journalpostId,
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ class OppgaveService(
OppgaveType.MANGLER_SOEKNAD,
OppgaveType.GENERELL_OPPGAVE,
OppgaveType.AARLIG_INNTEKTSJUSTERING,
OppgaveType.MOTTATT_INNTEKTSJUSTERING,
OppgaveType.INNTEKTSOPPLYSNING,
OppgaveType.MANUELL_UTSENDING_BREV,
-> {
logger.info(
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
UPDATE oppgave
SET type = 'INNTEKTSOPPLYSNING'
WHERE type like 'MOTTATT_INNTEKTSJUSTERING'
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ class InntektsjusteringSelvbetjeningServiceTest {
oppgaveService.opprettOppgave(
sakId = SakId(123L),
kilde = OppgaveKilde.BRUKERDIALOG,
type = OppgaveType.MOTTATT_INNTEKTSJUSTERING,
merknad = "Mottatt inntektsjustering",
type = OppgaveType.INNTEKTSOPPLYSNING,
merknad = "Ny inntektsopplysning",
referanse = "123",
frist = null,
saksbehandler = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { opprettManuellInntektsjustering as opprettManuellInntektsjusteringApi }
import Spinner from '~shared/Spinner'
import { mapResult } from '~shared/api/apiUtils'
import { ApiErrorAlert } from '~ErrorBoundary'
import { MottattInntektsjusteringModal } from '~components/oppgavebenk/oppgaveModal/MottattInntektsjusteringModal'
import { InntektsopplysningModal } from '~components/oppgavebenk/oppgaveModal/InntektsopplysningModal'
import { AktivitetspliktOppgaveHandling } from '~components/oppgavebenk/oppgaveModal/aktivitetsplikt/AktivitetspliktOppgaveHandling'

export const HandlingerForOppgave = ({
Expand Down Expand Up @@ -186,8 +186,8 @@ export const HandlingerForOppgave = ({
<AktivitetspliktInfo6MndVarigUnntakModal oppgave={oppgave} oppdaterStatus={oppdaterStatus} />
)
)
case Oppgavetype.MOTTATT_INNTEKTSJUSTERING:
return <MottattInntektsjusteringModal oppgave={oppgave} oppdaterStatus={oppdaterStatus} />
case Oppgavetype.INNTEKTSOPPLYSNING:
return <InntektsopplysningModal oppgave={oppgave} oppdaterStatus={oppdaterStatus} />
case Oppgavetype.AARLIG_INNTEKTSJUSTERING:
return mapResult(opprettManuellRevurderingStatus, {
initial: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const OPPGAVETYPEFILTER: Record<OppgavetypeFilterKeys, string> = {
GENERELL_OPPGAVE: 'Generell oppgave',
MANUELL_UTSENDING_BREV: 'Manuell brevutsending',
AARLIG_INNTEKTSJUSTERING: 'Årlig inntektsjustering',
MOTTATT_INNTEKTSJUSTERING: 'Mottatt inntektsjustering',
INNTEKTSOPPLYSNING: 'Inntektsopplysning',
} as const

export const FRISTFILTER = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface Props {
oppdaterStatus: (oppgaveId: string, status: Oppgavestatus) => void
}

export const MottattInntektsjusteringModal = ({ oppgave, oppdaterStatus }: Props) => {
export const InntektsopplysningModal = ({ oppgave, oppdaterStatus }: Props) => {
const innloggetSaksbehandler = useInnloggetSaksbehandler()

const [open, setOpen] = useState<boolean>(false)
Expand Down Expand Up @@ -53,7 +53,7 @@ export const MottattInntektsjusteringModal = ({ oppgave, oppdaterStatus }: Props
aria-labelledby="modal-heading"
width="medium"
onClose={() => setOpen(false)}
header={{ heading: 'Mottatt inntektsjustering' }}
header={{ heading: 'Ny inntektsopplysning' }}
>
<Modal.Body>
<VStack gap="4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,19 @@ export const OppgavetypeTag = ({ oppgavetype }: { oppgavetype: Oppgavetype }) =>

case Oppgavetype.GJENOPPRETTING_ALDERSOVERGANG:
return <Tag variant="alt3-moderate">Gjenoppretting</Tag>

case Oppgavetype.AKTIVITETSPLIKT:
case Oppgavetype.AKTIVITETSPLIKT_12MND:
case Oppgavetype.AKTIVITETSPLIKT_REVURDERING:
case Oppgavetype.AKTIVITETSPLIKT_INFORMASJON_VARIG_UNNTAK:
return <Tag variant="alt3-filled">Aktivitetsplikt</Tag>

case Oppgavetype.GENERELL_OPPGAVE:
return <Tag variant="info">Generell oppgave</Tag>

case Oppgavetype.AARLIG_INNTEKTSJUSTERING:
return <Tag variant="info">Årlig inntektsjustering</Tag>

case Oppgavetype.MOTTATT_INNTEKTSJUSTERING:
return <Tag variant="alt3">Mottatt inntektsjustering</Tag>

case Oppgavetype.INNTEKTSOPPLYSNING:
return <Tag variant="alt3">Inntektsopplysning</Tag>
case Oppgavetype.MANUELL_UTSENDING_BREV:
return <Tag variant="info">Manuell brevutsending</Tag>

default:
return <Tag variant="error-filled">Ukjent oppgave</Tag>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export enum Oppgavetype {
AKTIVITETSPLIKT_INFORMASJON_VARIG_UNNTAK = 'AKTIVITETSPLIKT_INFORMASJON_VARIG_UNNTAK',
GENERELL_OPPGAVE = 'GENERELL_OPPGAVE',
AARLIG_INNTEKTSJUSTERING = 'AARLIG_INNTEKTSJUSTERING',
MOTTATT_INNTEKTSJUSTERING = 'MOTTATT_INNTEKTSJUSTERING',
INNTEKTSOPPLYSNING = 'INNTEKTSOPPLYSNING',
MANUELL_UTSENDING_BREV = 'MANUELL_UTSENDING_BREV',
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ enum class OppgaveType {
AKTIVITETSPLIKT_REVURDERING,
AKTIVITETSPLIKT_INFORMASJON_VARIG_UNNTAK,
GENERELL_OPPGAVE,
MOTTATT_INNTEKTSJUSTERING,
INNTEKTSOPPLYSNING,
AARLIG_INNTEKTSJUSTERING,
MANUELL_UTSENDING_BREV,
;
Expand Down