-
Notifications
You must be signed in to change notification settings - Fork 12
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
Lisätään sijoitusehdotuksen hylkäyksen syy hakemuksen muistiinpanoihin #6000
Conversation
@@ -786,6 +793,10 @@ data class PlacementProposalConfirmationUpdate( | |||
val otherReason: String?, | |||
) | |||
|
|||
data class AcceptPlacementProposalRequest( | |||
val rejectReasons: Map<PlacementPlanRejectReason, String> |
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.
Tämän voisi nimetä uudelleen:
val rejectReasons: Map<PlacementPlanRejectReason, String> | |
val rejectReasonTranslations: Map<PlacementPlanRejectReason, String> |
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.
👍
.forEach { | ||
val reason = | ||
when (it.unitRejectReason) { | ||
PlacementPlanRejectReason.OTHER -> it.unitRejectOtherReason |
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.
Pitäiskö tässä prefixata muistiinpanon sisältöä hieman, jotta se on yksiselitteisempi:
Niin, että muistiinpanon sisällöksi tulee esim.
"Sijoitusehdotus hylätty - Päiväkoti täynnä" (Tampere; REASON_1)
"Sijoitusehdotus hylätty - Sisäilma tai muu rakenteellinen syy" (Tampere; REASON_2)
"Sijoitusehdotus hylätty - Muu syy: Emme hyväksy maanantaisin lähetettyjä hakemuksia lainkaan" (OTHER)
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.
👍
Kun johtaja hylkää sijoitusehdotuksen ja kirjaa hylkäykseen syyn, teksti katoaa, kun palveluohjaus palauttaa sijoitusehdotuksen sieltä johtajan tarkistettavana tilasta taaksepäin.
Tämän muutoksen myötä palveluohjaus näkee hylkäyksen syyn hakemuksen muistiinpanoista.