Skip to content

Commit

Permalink
Fix filter condition in getIverksatteInnvilgedeSøknader function
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnav990 committed Mar 4, 2024
1 parent 3306bdd commit ed3fc8b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/søknad/søknadUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,12 @@ export function getIverksatteInnvilgedeSøknader(sak: Sak) {
);
})
.map((s) => {
const behandling = sak.behandlinger.filter((b) => b.status === SøknadsbehandlingStatus.IVERKSATT_INNVILGET);
const behandling = sak.behandlinger.filter(
(b) => b.søknad.id === s.id && b.status === SøknadsbehandlingStatus.IVERKSATT_INNVILGET,
);

if (behandling.length !== 1) {
throw new Error('Forventet at en søknad kun av 1 iverksatt innvilget behandling');
throw new Error('Forventet at en søknad kun har 1 iverksatt innvilget behandling');
}

const vedtakForBehandling = sak.vedtak.find((v) => v.behandlingId === behandling[0].id);
Expand Down

0 comments on commit ed3fc8b

Please sign in to comment.