-
Notifications
You must be signed in to change notification settings - Fork 2
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
Tsff 817 tilpasninger fordel #1503
Conversation
@@ -72,7 +72,7 @@ public Response oppdaterJournalpost(OppdaterJournalpostRequest oppdaterJournalpo | |||
} | |||
var oppdaterJournalpostResponse = new OppdaterJournalpostResponse(); | |||
oppdaterJournalpostResponse.setJournalpostId(journalpostId); | |||
return Response.accepted().entity(oppdaterJournalpostResponse).build(); | |||
return Response.ok().entity(oppdaterJournalpostResponse).build(); |
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.
k9-Fordel feiler om den får 202 her, den venter 200
case "M" -> "MidlertidigJournalført"; | ||
case "A" -> "Avbrutt"; | ||
default -> "MidlertidigJournalført"; | ||
case "J" -> "EndeligJournalført"; |
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.
Disse hendelsestypene stemte ikke helt med det som står dokumentert, og ble dermed sortert ut i k9-Fordel: https://confluence.adeo.no/display/BOA/Joarkhendelser#
Jeg vet ikke helt hvordan dette vil slå ut på den andre testene, men prøver denne kombinasjonen for nå. Tar gjerne imot forslag til andre konfigurasjoner.
}; | ||
} | ||
|
||
private BehandlingsTema tilBehandlingsTema(JournalpostModell modell) { | ||
return switch (modell.getDokumentModellList().isEmpty() ? DokumenttypeId.UDEFINERT : modell.getDokumentModellList().get(0).getDokumentType()) { | ||
return switch (modell.getDokumentModellList().isEmpty() ? DokumenttypeId.UDEFINERT : modell.getDokumentModellList().getFirst().getDokumentType()) { |
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.
Compiler warning
f807989
to
ce40831
Compare
ce40831
to
40c2124
Compare
No description provided.