fix(identite): warn user why he's redirected to identity path

This commit is contained in:
Colin Darie 2023-07-07 14:16:44 +02:00
parent 4b4075d6c4
commit 57fa4a6be9
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
3 changed files with 13 additions and 1 deletions

View file

@ -103,7 +103,11 @@ module Users
@dossier.update!(autorisation_donnees: true, identity_updated_at: Time.zone.now)
flash.notice = t('.identity_saved')
if dossier.en_construction?
redirect_to demande_dossier_path(@dossier)
else
redirect_to brouillon_dossier_path(@dossier)
end
else
flash.now.alert = @dossier.individual.errors.full_messages
render :identite
@ -432,8 +436,10 @@ module Users
def ensure_dossier_can_be_filled
if !dossier.autorisation_donnees
if dossier.procedure.for_individual
flash.alert = t('users.dossiers.fill_identity.individual')
redirect_to identite_dossier_path(dossier)
else
flash.alert = t('users.dossiers.fill_identity.siret')
redirect_to siret_dossier_path(dossier)
end
end

View file

@ -750,6 +750,9 @@ en:
no_access: "You do not have access to this file"
no_longer_editable: "Your file can no longer be edited"
en_construction_submitted: "The modifications have already been submitted"
fill_identity:
individual: Complete the identity of the applicant to continue.
siret: Complete the identification of the establishment to continue.
create_commentaire:
message_send: "Your message has been sent to the instructor in charge of your file."
cloned_success: "Your file has been duplicated. Please review it then you can submit it"

View file

@ -760,6 +760,9 @@ fr:
no_access: "Vous navez pas accès à ce dossier"
no_longer_editable: "Votre dossier ne peut plus être modifié"
en_construction_submitted: "Les modifications ont déjà été déposées"
fill_identity:
individual: Complétez lidentité du déposant du dossier pour poursuivre.
siret: Complétez lidentification de létablissement pour poursuivre.
create_commentaire:
message_send: "Votre message a bien été envoyé à linstructeur en charge de votre dossier."
cloned_success: "Votre dossier a bien été dupliqué. Vous pouvez maintenant le vérifier, ladapter puis le déposer."