From 3f6671548d5df619aabf29dae44af0c7019c5d0a Mon Sep 17 00:00:00 2001 From: lucien mollard Date: Thu, 9 Aug 2018 16:56:51 +0200 Subject: [PATCH] dossier motivation obligatory exept for acceptation --- app/views/new_gestionnaire/dossiers/_state_button.html.haml | 2 +- .../dossiers/_state_button_motivation.html.haml | 5 +++-- app/views/notification_mailer/refused_mail.html.haml | 3 +++ .../notification_mailer/without_continuation_mail.html.haml | 3 +++ 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/app/views/new_gestionnaire/dossiers/_state_button.html.haml b/app/views/new_gestionnaire/dossiers/_state_button.html.haml index 61615d8da..5769317c5 100644 --- a/app/views/new_gestionnaire/dossiers/_state_button.html.haml +++ b/app/views/new_gestionnaire/dossiers/_state_button.html.haml @@ -37,7 +37,7 @@ %span.icon.without-continuation .description %h4 Classer sans suite - L'usager ne recevra aucune notification + L'usager sera notifié que son dossier a été classé sans suite %li{ onclick: "DS.showMotivation('refuse');" } %span.icon.refuse .description diff --git a/app/views/new_gestionnaire/dossiers/_state_button_motivation.html.haml b/app/views/new_gestionnaire/dossiers/_state_button_motivation.html.haml index 1c4a79335..c1bbfa66f 100644 --- a/app/views/new_gestionnaire/dossiers/_state_button_motivation.html.haml +++ b/app/views/new_gestionnaire/dossiers/_state_button_motivation.html.haml @@ -4,8 +4,8 @@ #{popup_title} = form_tag(terminer_gestionnaire_dossier_path(dossier.procedure, dossier), method: :post, class: 'form') do - = text_area :dossier, :motivation, class: 'motivation-text-area', placeholder: 'Rédigez votre motivation ici (facultative)' - if title == 'Accepter' + = text_area :dossier, :motivation, class: 'motivation-text-area', placeholder: 'Rédigez votre motivation ici (facultative)', required: false %p.help L'acceptation du dossier envoie automatiquement une attestation à l'usager. @@ -26,7 +26,8 @@ %ul - unspecified_annotations_privees.each do |unspecified_annotations_privee| %li= unspecified_annotations_privee.libelle - + - else + = text_area :dossier, :motivation, class: 'motivation-text-area', placeholder: 'Rédigez votre motivation ici (obligatoire)', required: true .text-right %span.button{ onclick: 'DS.motivationCancel();' } Annuler = button_tag 'Valider la décision', name: :process_action, value: process_action, class: 'button primary', title: title, data: { confirm: confirm } diff --git a/app/views/notification_mailer/refused_mail.html.haml b/app/views/notification_mailer/refused_mail.html.haml index dc198cead..79f5991c6 100644 --- a/app/views/notification_mailer/refused_mail.html.haml +++ b/app/views/notification_mailer/refused_mail.html.haml @@ -4,6 +4,9 @@ %p Votre dossier nº --numéro du dossier-- a été refusé le --date de décision--. +%p + Le motif de refus est le suivant : --motivation-- + %p Pour en savoir plus sur le motif du refus, vous pouvez consulter votre dossier et les éventuels messages de l'administration à cette adresse : --lien dossier-- diff --git a/app/views/notification_mailer/without_continuation_mail.html.haml b/app/views/notification_mailer/without_continuation_mail.html.haml index ac98bc1a0..c0721aee1 100644 --- a/app/views/notification_mailer/without_continuation_mail.html.haml +++ b/app/views/notification_mailer/without_continuation_mail.html.haml @@ -4,6 +4,9 @@ %p Votre dossier nº --numéro du dossier-- a été classé sans suite le --date de décision--. +%p + Le motif est le suivant : --motivation-- + %p Pour en savoir plus sur les raisons de ce classement sans suite, vous pouvez consulter votre dossier et les éventuels messages de l'administration à cette adresse : --lien dossier--