Skip to content

Commit

Permalink
sender med oppgaveId under innvilg/godkjenn/avvis også, trenger det i…
Browse files Browse the repository at this point in the history
… backend
  • Loading branch information
di0nys1us committed Dec 2, 2024
1 parent acae218 commit db6fd24
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
15 changes: 11 additions & 4 deletions client/src/io/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,31 +227,38 @@ export const putVedtak = async (
sakId: number | string,
status: VedtakStatusType,
problemsammendrag: string,
oppgaveId?: string,
oppgaveVersjon?: number
) => {
return put(
`${baseUrl}/api/sak/${sakId}/vedtak`,
{ status, problemsammendrag },
{ status, problemsammendrag, oppgaveId },
oppgaveVersjon ? { 'If-Match': toWeakETag(oppgaveVersjon) } : undefined
)
}

export const putFerdigstillBestilling = async (sakId: number | string, beskjed?: string, oppgaveVersjon?: number) => {
export const putFerdigstillBestilling = async (
sakId: number | string,
beskjed?: string,
oppgaveId?: string,
oppgaveVersjon?: number
) => {
return put(
`${baseUrl}/api/bestilling/${sakId}/ferdigstilling`,
{ beskjed },
{ beskjed, oppgaveId },
oppgaveVersjon ? { 'If-Match': toWeakETag(oppgaveVersjon) } : undefined
)
}

export const putAvvisBestilling = async (
sakId: number | string,
tilbakemelding: AvvisBestilling,
oppgaveId?: string,
oppgaveVersjon?: number
) => {
return put(
`${baseUrl}/api/bestilling/${sakId}/avvisning`,
{ tilbakemelding },
{ tilbakemelding, oppgaveId },
oppgaveVersjon ? { 'If-Match': toWeakETag(oppgaveVersjon) } : undefined
)
}
Expand Down
6 changes: 4 additions & 2 deletions client/src/saksbilde/bestillingsordning/BestillingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ export function BestillingCard({ bestilling, oppgave }: BestillingCardProps) {
}

setLoading(true)
await putFerdigstillBestilling(sakId, utleveringMerknad, oppgave?.versjon).catch(() => setLoading(false))
await putFerdigstillBestilling(sakId, utleveringMerknad, oppgave?.oppgaveId, oppgave?.versjon).catch(() =>
setLoading(false)
)
setLoading(false)
setVisOpprettOrdreModal(false)
logAmplitudeEvent(amplitude_taxonomy.BESTILLING_FERDIGSTILT)
Expand All @@ -74,7 +76,7 @@ export function BestillingCard({ bestilling, oppgave }: BestillingCardProps) {

const avvisBestilling = async (tilbakemelding: AvvisBestilling) => {
setLoading(true)
await putAvvisBestilling(sakId, tilbakemelding, oppgave?.versjon).catch(() => setLoading(false))
await putAvvisBestilling(sakId, tilbakemelding, oppgave?.oppgaveId, oppgave?.versjon).catch(() => setLoading(false))
setLoading(false)
setVisAvvisModal(false)
logAmplitudeEvent(amplitude_taxonomy.BESTILLING_AVVIST)
Expand Down
4 changes: 2 additions & 2 deletions client/src/saksbilde/venstremeny/VedtakCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export function VedtakCard({ sak, oppgave }: VedtakCardProps) {
const opprettVedtak = async (data: VedtakFormValues) => {
const { problemsammendrag } = data
setLoading(true)
await putVedtak(sakId, VedtakStatusType.INNVILGET, problemsammendrag, oppgave?.versjon).catch(() =>
setLoading(false)
await putVedtak(sakId, VedtakStatusType.INNVILGET, problemsammendrag, oppgave?.oppgaveId, oppgave?.versjon).catch(
() => setLoading(false)
)
setLoading(false)
setVisVedtakModal(false)
Expand Down

0 comments on commit db6fd24

Please sign in to comment.