2019-03-25 10:53:45 +01:00
|
|
|
|
module Users
|
2017-06-29 14:18:12 +02:00
|
|
|
|
class DossiersController < UserController
|
2018-07-17 11:40:19 +02:00
|
|
|
|
include DossierHelper
|
2023-03-01 18:30:10 +01:00
|
|
|
|
include TurboChampsConcern
|
2018-07-17 11:40:19 +02:00
|
|
|
|
|
2019-01-07 12:17:11 +01:00
|
|
|
|
layout 'procedure_context', only: [:identite, :update_identite, :siret, :update_siret]
|
|
|
|
|
|
2021-09-07 10:37:42 +02:00
|
|
|
|
ACTIONS_ALLOWED_TO_ANY_USER = [:index, :recherche, :new, :transferer_all]
|
2023-04-03 20:00:52 +02:00
|
|
|
|
ACTIONS_ALLOWED_TO_OWNER_OR_INVITE = [:show, :destroy, :demande, :messagerie, :brouillon, :update_brouillon, :submit_brouillon, :modifier, :update, :create_commentaire, :papertrail, :restore]
|
2018-09-20 17:39:15 +02:00
|
|
|
|
|
2022-05-07 17:49:27 +02:00
|
|
|
|
before_action :ensure_ownership!, except: ACTIONS_ALLOWED_TO_ANY_USER + ACTIONS_ALLOWED_TO_OWNER_OR_INVITE
|
2018-09-20 17:39:15 +02:00
|
|
|
|
before_action :ensure_ownership_or_invitation!, only: ACTIONS_ALLOWED_TO_OWNER_OR_INVITE
|
2022-10-11 12:21:06 +02:00
|
|
|
|
before_action :ensure_dossier_can_be_updated, only: [:update_identite, :update_brouillon, :submit_brouillon, :modifier, :update]
|
|
|
|
|
before_action :forbid_invite_submission!, only: [:submit_brouillon]
|
|
|
|
|
before_action :forbid_closed_submission!, only: [:submit_brouillon]
|
2018-10-25 18:05:47 +02:00
|
|
|
|
before_action :show_demarche_en_test_banner
|
2018-11-01 13:00:35 +01:00
|
|
|
|
before_action :store_user_location!, only: :new
|
2017-06-29 14:18:12 +02:00
|
|
|
|
|
2018-07-04 11:49:24 +02:00
|
|
|
|
def index
|
2022-03-09 10:27:43 +01:00
|
|
|
|
dossiers = Dossier.includes(:procedure).order_by_updated_at.page(page)
|
|
|
|
|
dossiers_visibles = dossiers.visible_by_user
|
|
|
|
|
|
|
|
|
|
@user_dossiers = current_user.dossiers.state_not_termine.merge(dossiers_visibles)
|
|
|
|
|
@dossiers_traites = current_user.dossiers.state_termine.merge(dossiers_visibles)
|
|
|
|
|
@dossiers_close_to_expiration = current_user.dossiers.close_to_expiration.merge(dossiers_visibles)
|
|
|
|
|
@dossiers_invites = current_user.dossiers_invites.merge(dossiers_visibles)
|
|
|
|
|
@dossiers_supprimes_recemment = current_user.dossiers.hidden_by_user.merge(dossiers)
|
2022-01-05 10:40:31 +01:00
|
|
|
|
@dossiers_supprimes_definitivement = current_user.deleted_dossiers.order_by_updated_at.page(page)
|
2023-01-31 14:36:51 +01:00
|
|
|
|
@dossier_transfers = DossierTransfer.for_email(current_user.email).page(page)
|
2022-01-05 10:40:31 +01:00
|
|
|
|
@statut = statut(@user_dossiers, @dossiers_traites, @dossiers_invites, @dossiers_supprimes_recemment, @dossiers_supprimes_definitivement, @dossier_transfers, @dossiers_close_to_expiration, params[:statut])
|
2023-04-11 15:50:17 +02:00
|
|
|
|
|
2023-04-18 12:03:10 +02:00
|
|
|
|
@first_brouillon_recently_updated = current_user.dossiers.visible_by_user.brouillons_recently_updated.first
|
2018-07-04 11:49:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-08-07 11:58:10 +02:00
|
|
|
|
def show
|
|
|
|
|
if dossier.brouillon?
|
2018-09-06 09:09:23 +02:00
|
|
|
|
redirect_to brouillon_dossier_path(dossier)
|
2020-01-29 10:26:26 +01:00
|
|
|
|
return
|
2018-08-07 11:58:10 +02:00
|
|
|
|
end
|
2018-08-07 16:32:11 +02:00
|
|
|
|
|
|
|
|
|
@dossier = dossier
|
2019-12-15 22:10:35 +01:00
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.pdf do
|
|
|
|
|
@include_infos_administration = false
|
2021-02-17 19:02:31 +01:00
|
|
|
|
render(template: 'dossiers/show', formats: [:pdf])
|
2019-12-15 22:10:35 +01:00
|
|
|
|
end
|
|
|
|
|
format.all
|
|
|
|
|
end
|
2018-08-07 11:58:10 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-08-29 16:57:01 +02:00
|
|
|
|
def demande
|
2018-08-14 15:06:44 +02:00
|
|
|
|
@dossier = dossier
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-05 13:56:12 +02:00
|
|
|
|
def messagerie
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
@commentaire = Commentaire.new
|
|
|
|
|
end
|
|
|
|
|
|
2017-06-29 14:18:59 +02:00
|
|
|
|
def attestation
|
2019-11-05 16:44:28 +01:00
|
|
|
|
if dossier.attestation&.pdf&.attached?
|
2019-12-19 18:15:37 +01:00
|
|
|
|
redirect_to dossier.attestation.pdf.service_url
|
2019-11-05 16:44:28 +01:00
|
|
|
|
else
|
2021-04-17 18:49:00 +02:00
|
|
|
|
flash.notice = t('.no_longer_available')
|
2019-11-05 16:44:28 +01:00
|
|
|
|
redirect_to dossier_path(dossier)
|
2019-08-27 17:43:33 +02:00
|
|
|
|
end
|
2017-06-29 14:18:59 +02:00
|
|
|
|
end
|
|
|
|
|
|
2022-05-04 08:57:14 +02:00
|
|
|
|
def papertrail
|
|
|
|
|
raise ActionController::BadRequest if dossier.brouillon?
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
end
|
|
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
|
def identite
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
@user = current_user
|
|
|
|
|
end
|
|
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
|
def update_identite
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
|
2018-10-02 13:51:56 +02:00
|
|
|
|
if @dossier.individual.update(individual_params)
|
2021-10-04 10:04:07 +02:00
|
|
|
|
@dossier.update!(autorisation_donnees: true, identity_updated_at: Time.zone.now)
|
2021-04-17 18:49:00 +02:00
|
|
|
|
flash.notice = t('.identity_saved')
|
2018-02-08 17:13:15 +01:00
|
|
|
|
|
2018-11-27 15:56:14 +01:00
|
|
|
|
redirect_to brouillon_dossier_path(@dossier)
|
2018-02-08 17:13:15 +01:00
|
|
|
|
else
|
2018-10-02 13:51:56 +02:00
|
|
|
|
flash.now.alert = @dossier.individual.errors.full_messages
|
2018-02-08 17:13:15 +01:00
|
|
|
|
render :identite
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-04 09:43:19 +02:00
|
|
|
|
def siret
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-15 18:41:53 +02:00
|
|
|
|
def update_siret
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
|
|
|
|
|
# We use the user as the holder model object for the siret value
|
|
|
|
|
# (so that we can restore it on the form in case of error).
|
|
|
|
|
#
|
|
|
|
|
# This is the only remaining use of User#siret: it could be refactored away.
|
|
|
|
|
# However some existing users have a siret but no associated etablissement,
|
|
|
|
|
# so we would need to analyze the legacy data and decide what to do with it.
|
|
|
|
|
current_user.siret = siret_params[:siret]
|
|
|
|
|
|
|
|
|
|
siret_model = Siret.new(siret: siret_params[:siret])
|
|
|
|
|
if !siret_model.valid?
|
|
|
|
|
return render_siret_error(siret_model.errors.full_messages)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
sanitized_siret = siret_model.siret
|
2022-09-16 00:32:17 +02:00
|
|
|
|
etablissement = begin
|
|
|
|
|
APIEntrepriseService.create_etablissement(@dossier, sanitized_siret, current_user.id)
|
|
|
|
|
rescue => error
|
|
|
|
|
if error.try(:network_error?) && !APIEntrepriseService.api_up?
|
|
|
|
|
# TODO: notify ops
|
|
|
|
|
APIEntrepriseService.create_etablissement_as_degraded_mode(@dossier, sanitized_siret, current_user.id)
|
|
|
|
|
else
|
|
|
|
|
Sentry.capture_exception(error, extra: { dossier_id: @dossier.id, siret: })
|
|
|
|
|
|
|
|
|
|
# probably random error, invite user to retry
|
|
|
|
|
return render_siret_error(t('errors.messages.siret_network_error'))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-05-18 10:30:08 +02:00
|
|
|
|
if etablissement.nil?
|
2018-10-15 18:41:53 +02:00
|
|
|
|
return render_siret_error(t('errors.messages.siret_unknown'))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
current_user.update!(siret: sanitized_siret)
|
|
|
|
|
@dossier.update!(autorisation_donnees: true)
|
|
|
|
|
|
|
|
|
|
redirect_to etablissement_dossier_path
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-15 12:25:25 +02:00
|
|
|
|
def etablissement
|
|
|
|
|
@dossier = dossier
|
|
|
|
|
|
|
|
|
|
# Redirect if the user attempts to access the page URL directly
|
|
|
|
|
if !@dossier.etablissement
|
2021-04-17 18:49:00 +02:00
|
|
|
|
flash.alert = t('.no_establishment')
|
2018-10-15 12:25:25 +02:00
|
|
|
|
return redirect_to siret_dossier_path(@dossier)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-06 09:09:23 +02:00
|
|
|
|
def brouillon
|
2023-02-27 10:48:59 +01:00
|
|
|
|
session.delete(:prefill_token)
|
|
|
|
|
session.delete(:prefill_params)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
@dossier = dossier_with_champs
|
2022-11-30 11:23:04 +01:00
|
|
|
|
@dossier.valid?(context: :prefilling)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
|
|
# TODO: remove when the champs are unifed
|
|
|
|
|
if !@dossier.autorisation_donnees
|
|
|
|
|
if dossier.procedure.for_individual
|
|
|
|
|
redirect_to identite_dossier_path(@dossier)
|
|
|
|
|
else
|
2018-10-04 09:43:19 +02:00
|
|
|
|
redirect_to siret_dossier_path(@dossier)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
def submit_brouillon
|
2022-10-13 15:54:38 +02:00
|
|
|
|
@dossier = dossier_with_champs(pj_template: false)
|
2022-10-11 12:21:06 +02:00
|
|
|
|
errors = submit_dossier_and_compute_errors
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if errors.blank?
|
2020-07-01 17:31:08 +02:00
|
|
|
|
@dossier.passer_en_construction!
|
2022-12-02 18:15:43 +01:00
|
|
|
|
@dossier.process_declarative!
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_en_construction_notification(@dossier).deliver_later
|
2020-04-23 11:52:21 +02:00
|
|
|
|
@dossier.groupe_instructeur.instructeurs.with_instant_email_dossier_notifications.each do |instructeur|
|
2020-04-09 09:22:37 +02:00
|
|
|
|
DossierMailer.notify_new_dossier_depose_to_instructeur(@dossier, instructeur.email).deliver_later
|
|
|
|
|
end
|
2019-11-07 16:11:24 +01:00
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
redirect_to merci_dossier_path(@dossier)
|
|
|
|
|
else
|
|
|
|
|
flash.now.alert = errors
|
2022-10-11 10:57:14 +02:00
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.html { render :brouillon }
|
|
|
|
|
format.turbo_stream
|
2022-10-11 10:57:14 +02:00
|
|
|
|
end
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-19 14:47:09 +01:00
|
|
|
|
def extend_conservation
|
2022-04-08 13:16:08 +02:00
|
|
|
|
dossier.extend_conservation(dossier.procedure.duree_conservation_dossiers_dans_ds.months)
|
2021-12-03 16:09:51 +01:00
|
|
|
|
flash[:notice] = t('views.users.dossiers.archived_dossier', duree_conservation_dossiers_dans_ds: dossier.procedure.duree_conservation_dossiers_dans_ds)
|
|
|
|
|
redirect_back(fallback_location: dossier_path(@dossier))
|
2020-03-19 14:47:09 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-09-05 18:23:10 +02:00
|
|
|
|
def modifier
|
|
|
|
|
@dossier = dossier_with_champs
|
|
|
|
|
end
|
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
def update_brouillon
|
|
|
|
|
@dossier = dossier_with_champs
|
|
|
|
|
update_dossier_and_compute_errors
|
|
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.html { render :brouillon }
|
|
|
|
|
format.turbo_stream do
|
2023-03-01 18:30:10 +01:00
|
|
|
|
@to_show, @to_hide, @to_update = champs_to_turbo_update(champs_public_params.fetch(:champs_public_all_attributes), dossier.champs_public_all)
|
2022-10-11 12:21:06 +02:00
|
|
|
|
|
|
|
|
|
render(:update, layout: false)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-06 11:39:46 +02:00
|
|
|
|
def update
|
2022-10-13 15:54:38 +02:00
|
|
|
|
@dossier = dossier_with_champs(pj_template: false)
|
2022-09-08 11:26:18 +02:00
|
|
|
|
errors = update_dossier_and_compute_errors
|
2018-09-06 11:39:46 +02:00
|
|
|
|
|
2022-09-08 11:26:18 +02:00
|
|
|
|
if errors.present?
|
|
|
|
|
flash.now.alert = errors
|
|
|
|
|
end
|
2022-07-12 18:32:16 +02:00
|
|
|
|
|
2022-09-08 11:26:18 +02:00
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.html { render :modifier }
|
2022-10-11 10:57:14 +02:00
|
|
|
|
format.turbo_stream do
|
2023-03-01 18:30:10 +01:00
|
|
|
|
@to_show, @to_hide, @to_update = champs_to_turbo_update(champs_public_params.fetch(:champs_public_all_attributes), dossier.champs_public_all)
|
2022-10-11 10:57:14 +02:00
|
|
|
|
end
|
2018-09-06 11:39:46 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-02-27 09:49:58 +01:00
|
|
|
|
def merci
|
|
|
|
|
@dossier = current_user.dossiers.includes(:procedure).find(params[:id])
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-05 13:56:12 +02:00
|
|
|
|
def create_commentaire
|
2021-11-30 18:56:12 +01:00
|
|
|
|
@commentaire = CommentaireService.create(current_user, dossier, commentaire_params)
|
2018-09-05 13:56:12 +02:00
|
|
|
|
|
2021-11-30 18:56:12 +01:00
|
|
|
|
if @commentaire.errors.empty?
|
2020-07-22 16:34:33 +02:00
|
|
|
|
@commentaire.dossier.update!(last_commentaire_updated_at: Time.zone.now)
|
2020-04-02 10:18:23 +02:00
|
|
|
|
dossier.followers_instructeurs
|
|
|
|
|
.with_instant_email_message_notifications
|
|
|
|
|
.each do |instructeur|
|
2020-04-01 16:23:03 +02:00
|
|
|
|
DossierMailer.notify_new_commentaire_to_instructeur(dossier, instructeur.email).deliver_later
|
|
|
|
|
end
|
2021-04-17 18:49:00 +02:00
|
|
|
|
flash.notice = t('.message_send')
|
2018-09-05 13:56:12 +02:00
|
|
|
|
redirect_to messagerie_dossier_path(dossier)
|
|
|
|
|
else
|
|
|
|
|
flash.now.alert = @commentaire.errors.full_messages
|
|
|
|
|
render :messagerie
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-04-03 20:00:52 +02:00
|
|
|
|
def destroy
|
2019-02-06 19:11:55 +01:00
|
|
|
|
if dossier.can_be_deleted_by_user?
|
2023-04-03 20:00:52 +02:00
|
|
|
|
if current_user.owns?(dossier)
|
|
|
|
|
dossier.hide_and_keep_track!(current_user, :user_request)
|
|
|
|
|
elsif current_user.invite?(dossier)
|
|
|
|
|
current_user.invites.where(dossier:).destroy_all
|
|
|
|
|
end
|
2021-12-07 15:38:37 +01:00
|
|
|
|
flash.notice = t('users.dossiers.ask_deletion.soft_deleted_dossier')
|
2018-06-27 14:47:02 +02:00
|
|
|
|
redirect_to dossiers_path
|
2018-06-13 13:58:14 +02:00
|
|
|
|
else
|
2021-12-07 15:38:37 +01:00
|
|
|
|
flash.alert = t('users.dossiers.ask_deletion.undergoingreview')
|
|
|
|
|
redirect_to dossiers_path
|
2018-06-13 13:58:14 +02:00
|
|
|
|
end
|
2018-05-24 15:55:47 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-07-17 11:40:19 +02:00
|
|
|
|
def recherche
|
2020-04-03 16:07:18 +02:00
|
|
|
|
@search_terms = params[:q]
|
2020-04-03 17:15:01 +02:00
|
|
|
|
return redirect_to dossiers_path if @search_terms.blank?
|
|
|
|
|
|
|
|
|
|
@dossiers = DossierSearchService.matching_dossiers_for_user(@search_terms, current_user).page(page)
|
2018-07-17 11:40:19 +02:00
|
|
|
|
|
2020-04-03 16:07:18 +02:00
|
|
|
|
if @dossiers.present?
|
2020-04-03 17:15:01 +02:00
|
|
|
|
# we need the page condition when accessing page n with n>1 when the page has only 1 result
|
|
|
|
|
# in order to avoid an unpleasant redirection when changing page
|
|
|
|
|
if @dossiers.count == 1 && page == 1
|
|
|
|
|
redirect_to url_for_dossier(@dossiers.first)
|
|
|
|
|
else
|
|
|
|
|
render :index
|
|
|
|
|
end
|
2018-07-17 11:40:19 +02:00
|
|
|
|
else
|
2020-04-03 17:15:01 +02:00
|
|
|
|
flash.alert = "Vous n’avez pas de dossiers contenant « #{@search_terms} »."
|
2018-07-17 11:40:19 +02:00
|
|
|
|
redirect_to dossiers_path
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-01 13:00:35 +01:00
|
|
|
|
def new
|
|
|
|
|
erase_user_location!
|
|
|
|
|
|
2020-01-06 12:53:20 +01:00
|
|
|
|
begin
|
2021-06-24 11:57:05 +02:00
|
|
|
|
procedure = if params[:brouillon]
|
|
|
|
|
Procedure.publiees.or(Procedure.brouillons).find(params[:procedure_id])
|
2020-01-06 12:53:20 +01:00
|
|
|
|
else
|
2021-06-24 11:57:05 +02:00
|
|
|
|
Procedure.publiees.find(params[:procedure_id])
|
2020-01-06 12:53:20 +01:00
|
|
|
|
end
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
|
flash.alert = t('errors.messages.procedure_not_found')
|
2021-06-24 11:57:05 +02:00
|
|
|
|
return redirect_to dossiers_path
|
2018-11-01 13:00:35 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-01-07 17:59:11 +01:00
|
|
|
|
dossier = Dossier.new(
|
2021-06-24 11:57:05 +02:00
|
|
|
|
revision: params[:brouillon] ? procedure.draft_revision : procedure.active_revision,
|
2021-03-09 11:21:30 +01:00
|
|
|
|
groupe_instructeur: procedure.defaut_groupe_instructeur_for_new_dossier,
|
2020-01-06 12:55:22 +01:00
|
|
|
|
user: current_user,
|
|
|
|
|
state: Dossier.states.fetch(:brouillon)
|
|
|
|
|
)
|
2020-01-07 17:59:11 +01:00
|
|
|
|
dossier.build_default_individual
|
|
|
|
|
dossier.save!
|
2022-12-21 17:18:19 +01:00
|
|
|
|
DossierMailer.with(dossier:).notify_new_draft.deliver_later
|
2018-11-01 13:00:35 +01:00
|
|
|
|
|
|
|
|
|
if dossier.procedure.for_individual
|
|
|
|
|
redirect_to identite_dossier_path(dossier)
|
|
|
|
|
else
|
|
|
|
|
redirect_to siret_dossier_path(id: dossier.id)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-03-13 16:48:38 +01:00
|
|
|
|
def dossier_for_help
|
|
|
|
|
dossier_id = params[:id] || params[:dossier_id]
|
2022-03-09 10:27:43 +01:00
|
|
|
|
@dossier || (dossier_id.present? && Dossier.visible_by_user.find_by(id: dossier_id.to_i))
|
2019-03-13 16:48:38 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-09-07 10:37:42 +02:00
|
|
|
|
def transferer
|
|
|
|
|
@transfer = DossierTransfer.new(dossiers: [dossier])
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def transferer_all
|
|
|
|
|
@transfer = DossierTransfer.new(dossiers: current_user.dossiers)
|
|
|
|
|
end
|
|
|
|
|
|
2022-01-05 10:40:31 +01:00
|
|
|
|
def restore
|
2022-05-07 17:49:27 +02:00
|
|
|
|
dossier.restore(current_user)
|
2022-01-05 10:40:31 +01:00
|
|
|
|
flash.notice = t('users.dossiers.restore')
|
|
|
|
|
redirect_to dossiers_path
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-08 16:26:03 +01:00
|
|
|
|
def clone
|
|
|
|
|
cloned_dossier = @dossier.clone
|
2022-12-21 17:18:19 +01:00
|
|
|
|
DossierMailer.with(dossier: cloned_dossier).notify_new_draft.deliver_later
|
2022-11-08 16:26:03 +01:00
|
|
|
|
flash.notice = t('users.dossiers.cloned_success')
|
|
|
|
|
redirect_to brouillon_dossier_path(cloned_dossier)
|
2022-12-05 18:14:31 +01:00
|
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
|
|
|
flash.alert = e.record.errors.full_messages
|
2022-11-08 16:26:03 +01:00
|
|
|
|
redirect_to dossier_path(@dossier)
|
|
|
|
|
end
|
|
|
|
|
|
2017-06-29 14:18:12 +02:00
|
|
|
|
private
|
|
|
|
|
|
2020-12-07 15:10:26 +01:00
|
|
|
|
# if the status tab is filled, then this tab
|
|
|
|
|
# else first filled tab
|
2021-11-10 17:36:24 +01:00
|
|
|
|
# else en-cours
|
2022-01-05 10:40:31 +01:00
|
|
|
|
def statut(mes_dossiers, dossiers_traites, dossiers_invites, dossiers_supprimes_recemment, dossiers_supprimes_definitivement, dossier_transfers, dossiers_close_to_expiration, params_statut)
|
2020-12-07 15:10:26 +01:00
|
|
|
|
tabs = {
|
2021-11-10 17:36:24 +01:00
|
|
|
|
'en-cours' => mes_dossiers.present?,
|
|
|
|
|
'traites' => dossiers_traites.present?,
|
2020-12-07 15:10:26 +01:00
|
|
|
|
'dossiers-invites' => dossiers_invites.present?,
|
2022-01-05 10:40:31 +01:00
|
|
|
|
'dossiers-supprimes-recemment' => dossiers_supprimes_recemment.present?,
|
|
|
|
|
'dossiers-supprimes-definitivement' => dossiers_supprimes_definitivement.present?,
|
2021-11-19 15:14:39 +01:00
|
|
|
|
'dossiers-transferes' => dossier_transfers.present?,
|
|
|
|
|
'dossiers-expirant' => dossiers_close_to_expiration.present?
|
2020-12-07 15:10:26 +01:00
|
|
|
|
}
|
|
|
|
|
if tabs[params_statut]
|
|
|
|
|
params_statut
|
2020-11-26 15:13:32 +01:00
|
|
|
|
else
|
2020-12-07 15:10:26 +01:00
|
|
|
|
tabs
|
|
|
|
|
.filter { |_tab, filled| filled }
|
|
|
|
|
.map { |tab, _| tab }
|
2021-11-10 17:36:24 +01:00
|
|
|
|
.first || 'en-cours'
|
2020-11-26 15:13:32 +01:00
|
|
|
|
end
|
2020-11-17 13:25:35 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-11-01 13:00:35 +01:00
|
|
|
|
def store_user_location!
|
|
|
|
|
store_location_for(:user, request.fullpath)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def erase_user_location!
|
2019-01-14 16:16:23 +01:00
|
|
|
|
clear_stored_location_for(:user)
|
2018-11-01 13:00:35 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-10-25 18:05:47 +02:00
|
|
|
|
def show_demarche_en_test_banner
|
2021-06-24 11:57:05 +02:00
|
|
|
|
if @dossier.present? && @dossier.revision.draft?
|
2021-09-15 19:53:36 +02:00
|
|
|
|
flash.now.alert = t('users.dossiers.test_procedure')
|
2018-10-25 18:05:47 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-06-08 15:51:46 +02:00
|
|
|
|
def ensure_dossier_can_be_updated
|
2019-02-06 18:20:35 +01:00
|
|
|
|
if !dossier.can_be_updated_by_user?
|
2021-09-15 19:53:36 +02:00
|
|
|
|
flash.alert = t('users.dossiers.no_longer_editable')
|
2018-06-27 14:47:02 +02:00
|
|
|
|
redirect_to dossiers_path
|
2018-06-08 15:51:46 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-30 18:17:47 +02:00
|
|
|
|
def page
|
|
|
|
|
[params[:page].to_i, 1].max
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-29 11:30:06 +01:00
|
|
|
|
def champs_public_params
|
|
|
|
|
champs_params = params.require(:dossier).permit(champs_public_attributes: [
|
2023-03-21 14:44:03 +01:00
|
|
|
|
:id, :value, :value_other, :external_id, :primary_value, :secondary_value, :numero_allocataire, :code_postal, :identifiant, :numero_fiscal, :reference_avis, :ine, :piece_justificative_file, :code_departement, value: [],
|
2022-11-29 11:30:06 +01:00
|
|
|
|
champs_attributes: [:id, :_destroy, :value, :value_other, :external_id, :primary_value, :secondary_value, :numero_allocataire, :code_postal, :identifiant, :numero_fiscal, :reference_avis, :ine, :piece_justificative_file, :departement, :code_departement, value: []]
|
|
|
|
|
])
|
|
|
|
|
champs_params[:champs_public_all_attributes] = champs_params.delete(:champs_public_attributes) || {}
|
|
|
|
|
champs_params
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-05-07 17:49:27 +02:00
|
|
|
|
def dossier_scope
|
|
|
|
|
if action_name == 'update_brouillon'
|
|
|
|
|
Dossier.visible_by_user.or(Dossier.for_procedure_preview)
|
|
|
|
|
elsif action_name == 'restore'
|
|
|
|
|
Dossier.hidden_by_user
|
|
|
|
|
else
|
|
|
|
|
Dossier.visible_by_user
|
|
|
|
|
end
|
2022-03-09 10:27:43 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-05-07 17:49:27 +02:00
|
|
|
|
def dossier
|
2023-03-15 18:25:12 +01:00
|
|
|
|
@dossier ||= dossier_scope.find(params[:id] || params[:dossier_id]).tap do
|
|
|
|
|
set_sentry_dossier(_1)
|
|
|
|
|
end
|
2017-06-29 14:18:12 +02:00
|
|
|
|
end
|
|
|
|
|
|
2022-10-13 15:54:38 +02:00
|
|
|
|
def dossier_with_champs(pj_template: true)
|
|
|
|
|
DossierPreloader.load_one(dossier, pj_template:)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-03-02 12:55:24 +01:00
|
|
|
|
def should_change_groupe_instructeur?
|
2021-03-09 11:21:30 +01:00
|
|
|
|
if params[:dossier].key?(:groupe_instructeur_id)
|
|
|
|
|
groupe_instructeur_id = params[:dossier][:groupe_instructeur_id]
|
|
|
|
|
if groupe_instructeur_id.nil?
|
|
|
|
|
@dossier.groupe_instructeur_id.present?
|
|
|
|
|
else
|
|
|
|
|
@dossier.groupe_instructeur_id != groupe_instructeur_id.to_i
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def groupe_instructeur_from_params
|
|
|
|
|
groupe_instructeur_id = params[:dossier][:groupe_instructeur_id]
|
|
|
|
|
if groupe_instructeur_id.present?
|
|
|
|
|
@dossier.procedure.groupe_instructeurs.find(groupe_instructeur_id)
|
|
|
|
|
end
|
2020-02-26 12:30:52 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-03-02 12:55:24 +01:00
|
|
|
|
def should_fill_groupe_instructeur?
|
2022-11-04 10:10:57 +01:00
|
|
|
|
!@dossier.procedure.routing_enabled? && @dossier.groupe_instructeur_id.nil?
|
2022-03-02 12:55:24 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def defaut_groupe_instructeur
|
|
|
|
|
@dossier.procedure.defaut_groupe_instructeur
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-06 13:35:59 +02:00
|
|
|
|
def update_dossier_and_compute_errors
|
2019-07-24 14:41:56 +02:00
|
|
|
|
errors = []
|
2018-09-06 13:35:59 +02:00
|
|
|
|
|
2022-11-29 11:30:06 +01:00
|
|
|
|
@dossier.assign_attributes(champs_public_params)
|
|
|
|
|
if @dossier.champs_public_all.any?(&:changed_for_autosave?)
|
|
|
|
|
@dossier.last_champ_updated_at = Time.zone.now
|
|
|
|
|
end
|
|
|
|
|
if !@dossier.save(**validation_options)
|
|
|
|
|
errors += @dossier.errors.full_messages
|
|
|
|
|
end
|
2022-10-11 12:21:06 +02:00
|
|
|
|
|
2022-11-29 11:30:06 +01:00
|
|
|
|
if should_change_groupe_instructeur?
|
|
|
|
|
@dossier.assign_to_groupe_instructeur(groupe_instructeur_from_params)
|
2018-09-06 13:35:59 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-03-20 18:14:59 +01:00
|
|
|
|
if @dossier.procedure.feature_enabled?(:routing_rules)
|
|
|
|
|
RoutingEngine.compute(@dossier)
|
|
|
|
|
end
|
2023-03-29 10:47:43 +02:00
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if dossier.en_construction?
|
2022-10-17 10:41:47 +02:00
|
|
|
|
errors += @dossier.check_mandatory_and_visible_champs
|
2022-10-11 12:21:06 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
errors
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def submit_dossier_and_compute_errors
|
|
|
|
|
errors = []
|
|
|
|
|
|
|
|
|
|
@dossier.valid?(**submit_validation_options)
|
|
|
|
|
errors += @dossier.errors.full_messages
|
2022-10-17 10:41:47 +02:00
|
|
|
|
errors += @dossier.check_mandatory_and_visible_champs
|
2022-10-11 12:21:06 +02:00
|
|
|
|
|
2022-03-02 12:55:24 +01:00
|
|
|
|
if should_fill_groupe_instructeur?
|
|
|
|
|
@dossier.assign_to_groupe_instructeur(defaut_groupe_instructeur)
|
|
|
|
|
end
|
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if @dossier.groupe_instructeur.nil?
|
|
|
|
|
errors << "Le champ « #{@dossier.procedure.routing_criteria_name} » doit être rempli"
|
2018-09-06 13:35:59 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
errors
|
|
|
|
|
end
|
|
|
|
|
|
2017-06-29 14:18:12 +02:00
|
|
|
|
def ensure_ownership!
|
2018-05-30 18:26:23 +02:00
|
|
|
|
if !current_user.owns?(dossier)
|
2018-03-29 15:25:05 +02:00
|
|
|
|
forbidden!
|
2017-06-29 14:18:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-02-08 17:13:15 +01:00
|
|
|
|
|
2018-03-29 15:25:05 +02:00
|
|
|
|
def ensure_ownership_or_invitation!
|
2018-05-30 18:31:02 +02:00
|
|
|
|
if !current_user.owns_or_invite?(dossier)
|
2018-03-29 15:25:05 +02:00
|
|
|
|
forbidden!
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-29 16:49:01 +02:00
|
|
|
|
def forbid_invite_submission!
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if !current_user.owns?(dossier)
|
2018-03-29 16:49:01 +02:00
|
|
|
|
forbidden!
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-06 13:29:56 +02:00
|
|
|
|
def forbid_closed_submission!
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if !dossier.can_transition_to_en_construction?
|
2018-09-06 13:29:56 +02:00
|
|
|
|
forbidden!
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-29 15:25:05 +02:00
|
|
|
|
def forbidden!
|
2021-09-15 19:53:36 +02:00
|
|
|
|
flash[:alert] = t('users.dossiers.no_access')
|
2018-03-29 15:25:05 +02:00
|
|
|
|
redirect_to root_path
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-15 18:41:53 +02:00
|
|
|
|
def render_siret_error(error_message)
|
|
|
|
|
flash.alert = error_message
|
|
|
|
|
render :siret
|
|
|
|
|
end
|
|
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
|
def individual_params
|
|
|
|
|
params.require(:individual).permit(:gender, :nom, :prenom, :birthdate)
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-15 18:41:53 +02:00
|
|
|
|
def siret_params
|
|
|
|
|
params.require(:user).permit(:siret)
|
|
|
|
|
end
|
|
|
|
|
|
2018-09-05 13:56:12 +02:00
|
|
|
|
def commentaire_params
|
2019-06-25 17:12:44 +02:00
|
|
|
|
params.require(:commentaire).permit(:body, :piece_jointe)
|
2018-09-05 13:56:12 +02:00
|
|
|
|
end
|
|
|
|
|
|
2022-10-11 12:21:06 +02:00
|
|
|
|
def submit_validation_options
|
|
|
|
|
# rubocop:disable Lint/BooleanSymbol
|
|
|
|
|
# Force ActiveRecord to re-validate associated records.
|
|
|
|
|
{ context: :false }
|
|
|
|
|
# rubocop:enable Lint/BooleanSymbol
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
2021-10-06 12:03:12 +02:00
|
|
|
|
|
|
|
|
|
def validation_options
|
2022-10-11 12:21:06 +02:00
|
|
|
|
if dossier.brouillon?
|
2021-10-06 12:03:12 +02:00
|
|
|
|
{ context: :brouillon }
|
|
|
|
|
else
|
2022-10-11 12:21:06 +02:00
|
|
|
|
submit_validation_options
|
2021-10-06 12:03:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-06-29 14:18:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|