-
Notifications
You must be signed in to change notification settings - Fork 0
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
Nav 23517 validere saksbehandler opp mot enhet #1587
Nav 23517 validere saksbehandler opp mot enhet #1587
Conversation
@@ -31,8 +31,11 @@ class OppdaterAnsvarligSaksbehandlerTask( | |||
val oppgave = oppgaveService.finnOppgaveForBehandlingUtenOppgaveType(behandlingId) | |||
val prioritet = oppgavePrioritetService.utledOppgaveprioritet(behandlingId, oppgave) | |||
|
|||
if (oppgave.tilordnetRessurs != behandling.ansvarligSaksbehandler || oppgave.prioritet != prioritet) { | |||
try { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if-sjekken kan beholdes rundt hele greia - for vi trenger ikke å "oppdatere" oppgaven dersom det ikke er noen endringer - det skaper litt støy i oppgaven (får generert en ekstra rad med tekst hver gang den oppdateres)
…kke er noe endring
46731c8
to
8820381
Compare
oppgaveService.patchOppgave(oppgave.copy(tilordnetRessurs = behandling.ansvarligSaksbehandler, prioritet = prioritet)) | ||
} catch (e: Exception) { | ||
oppgaveService.patchOppgave(oppgave.copy(prioritet = prioritet)) | ||
log.info("Kunne ikke oppdatere tilordnetRessurs. Mulig årsak kan være at eneht på oppgaven og enhet hos saksbehandleren er IKKE det samme!") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logge som warning?
Typo : eneht -> enhet
Erstattet if-statement med en try-catch slik at oppgaven oppdateres uten feil selv om enhet på oppgaven og enhet på den nye saksbehandleren ikke samsvarer.