Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dragutin-nav committed Apr 22, 2024
1 parent dc8ae7a commit df61444
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class DokumentService(

val referanse = vedtak.getReferanse();

val oyeblikksbildeForVedtak = oyeblikksbildeService.hentOyeblikksbildeForVedtak(vedtak.id)
val oyeblikksbildeForVedtak = oyeblikksbildeService.hentOyeblikksbildeForVedtakJournalforing(vedtak.id)
val behovsVurderingData =
oyeblikksbildeForVedtak.firstOrNull { it.oyeblikksbildeType == OyeblikksbildeType.EGENVURDERING }
val registreringData =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ public List<OyeblikksbildeDto> hentOyeblikksbildeForVedtak(long vedtakId) {
return oyeblikksbildeRepository.hentOyeblikksbildeForVedtak(vedtakId);
}

public List<OyeblikksbildeDto> hentOyeblikksbildeForVedtakJournalforing(long vedtakId) {
return oyeblikksbildeRepository.hentOyeblikksbildeForVedtak(vedtakId);
}

public void lagreJournalfortDokumentId(long vedtakId, String dokumentId, OyeblikksbildeType oyeblikksbildeType) {
oyeblikksbildeRepository.lagreJournalfortDokumentId(vedtakId, dokumentId, oyeblikksbildeType);
}
Expand Down

0 comments on commit df61444

Please sign in to comment.