2015-10-09 14:43:19 +02:00
|
|
|
class Users::DescriptionController < UsersController
|
2016-01-26 15:52:05 +01:00
|
|
|
before_action only: [:show] do
|
|
|
|
authorized_routes? self.class
|
|
|
|
end
|
2016-01-25 15:54:21 +01:00
|
|
|
|
2016-11-02 16:33:01 +01:00
|
|
|
before_action :check_autorisation_donnees, only: [:show]
|
|
|
|
before_action :check_starter_dossier_informations, only: [:show]
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
def show
|
2016-11-02 16:33:01 +01:00
|
|
|
@dossier ||= current_user_dossier.decorate
|
2015-08-11 15:39:16 +02:00
|
|
|
|
2015-09-21 17:59:03 +02:00
|
|
|
@procedure = @dossier.procedure
|
2015-11-04 11:14:07 +01:00
|
|
|
@champs = @dossier.ordered_champs
|
2015-08-20 12:20:54 +02:00
|
|
|
|
2016-12-05 19:30:58 +01:00
|
|
|
@headers = @champs.inject([]) do |acc, champ|
|
|
|
|
acc.push(champ) if champ.type_champ == 'header_section'
|
|
|
|
acc
|
|
|
|
end
|
|
|
|
|
2017-03-06 15:03:51 +01:00
|
|
|
unless @dossier.can_be_initiated?
|
2017-03-06 14:29:01 +01:00
|
|
|
flash[:alert] = t('errors.messages.procedure_archived')
|
|
|
|
end
|
|
|
|
|
2015-08-18 10:43:36 +02:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2015-09-23 16:56:30 +02:00
|
|
|
flash.alert = t('errors.messages.dossier_not_found')
|
2015-10-09 17:33:33 +02:00
|
|
|
redirect_to url_for(root_path)
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
2017-03-06 14:29:01 +01:00
|
|
|
def update
|
2015-10-09 17:33:33 +02:00
|
|
|
@dossier = current_user_dossier
|
2016-02-02 18:37:38 +01:00
|
|
|
@procedure = @dossier.procedure
|
2017-03-06 14:29:01 +01:00
|
|
|
|
2017-03-06 15:03:51 +01:00
|
|
|
return head :forbidden unless @dossier.can_be_initiated?
|
2017-03-06 14:29:01 +01:00
|
|
|
|
2016-03-15 17:17:56 +01:00
|
|
|
@champs = @dossier.ordered_champs
|
|
|
|
|
2017-03-29 23:18:37 +02:00
|
|
|
check_mandatory_fields = !draft_submission?
|
2016-10-05 16:45:51 +02:00
|
|
|
|
2017-03-29 13:37:07 +02:00
|
|
|
if params[:champs]
|
|
|
|
champs_service_errors = ChampsService.save_champs @dossier.champs,
|
|
|
|
params,
|
2017-03-29 14:35:50 +02:00
|
|
|
check_mandatory_fields
|
2016-11-10 17:26:00 +01:00
|
|
|
|
|
|
|
unless champs_service_errors.empty?
|
2016-12-05 19:30:58 +01:00
|
|
|
flash.alert = (champs_service_errors.inject('') { |acc, error| acc+= error[:message]+'<br>' }).html_safe
|
|
|
|
return redirect_to users_dossier_description_path(dossier_id: @dossier.id)
|
2016-11-10 17:26:00 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-10 11:45:16 +02:00
|
|
|
if @procedure.cerfa_flag? && params[:cerfa_pdf]
|
|
|
|
cerfa = Cerfa.new(content: params[:cerfa_pdf], dossier: @dossier, user: current_user)
|
|
|
|
unless cerfa.save
|
|
|
|
flash.alert = cerfa.errors.full_messages.join('<br />').html_safe
|
|
|
|
return redirect_to users_dossier_description_path(dossier_id: @dossier.id)
|
2016-02-02 18:37:38 +01:00
|
|
|
end
|
2015-08-11 15:39:16 +02:00
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2017-04-10 11:45:16 +02:00
|
|
|
errors_upload = PiecesJustificativesService.upload!(@dossier, current_user, params)
|
|
|
|
unless errors_upload.empty?
|
2016-04-15 15:32:15 +02:00
|
|
|
flash.alert = errors_upload.html_safe
|
2016-12-05 19:30:58 +01:00
|
|
|
return redirect_to users_dossier_description_path(dossier_id: @dossier.id)
|
2015-08-11 15:39:16 +02:00
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2017-03-30 09:31:46 +02:00
|
|
|
if draft_submission?
|
|
|
|
flash.notice = 'Votre brouillon a bien été sauvegardé.'
|
|
|
|
redirect_to url_for(controller: :dossiers, action: :index, liste: :brouillon)
|
|
|
|
else
|
2016-10-05 16:45:51 +02:00
|
|
|
if @dossier.draft?
|
|
|
|
@dossier.initiated!
|
2017-03-06 16:24:56 +01:00
|
|
|
NotificationMailer.send_notification(@dossier, @dossier.procedure.initiated_mail).deliver_now!
|
2016-10-05 16:45:51 +02:00
|
|
|
end
|
2016-10-27 14:02:38 +02:00
|
|
|
flash.notice = 'Félicitations, votre demande a bien été enregistrée.'
|
2016-10-05 16:45:51 +02:00
|
|
|
redirect_to url_for(controller: :recapitulatif, action: :show, dossier_id: @dossier.id)
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
2016-03-22 17:36:36 +01:00
|
|
|
def pieces_justificatives
|
|
|
|
invite = current_user.invite? params[:dossier_id]
|
|
|
|
|
|
|
|
@dossier ||= Dossier.find(params[:dossier_id]) if invite
|
|
|
|
@dossier ||= current_user_dossier
|
|
|
|
|
2016-11-10 17:26:00 +01:00
|
|
|
if @dossier.procedure.cerfa_flag?
|
|
|
|
unless params[:cerfa_pdf].nil?
|
|
|
|
cerfa = Cerfa.new(content: params[:cerfa_pdf], dossier: @dossier, user: current_user)
|
|
|
|
unless cerfa.save
|
|
|
|
flash.alert = cerfa.errors.full_messages.join('<br />').html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-22 17:36:36 +01:00
|
|
|
if !((errors_upload = PiecesJustificativesService.upload!(@dossier, current_user, params)).empty?)
|
2016-11-10 17:26:00 +01:00
|
|
|
if flash.alert.nil?
|
|
|
|
flash.alert = errors_upload.html_safe
|
|
|
|
else
|
|
|
|
flash.alert = (flash.alert + '<br />' + errors_upload.html_safe).html_safe
|
|
|
|
end
|
|
|
|
|
2016-03-22 17:36:36 +01:00
|
|
|
else
|
2016-11-10 17:26:00 +01:00
|
|
|
flash.notice = 'Nouveaux fichiers envoyés' if flash.alert.nil?
|
2016-11-02 11:07:33 +01:00
|
|
|
@dossier.next_step! 'user', 'update'
|
2016-03-22 17:36:36 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return redirect_to users_dossiers_invite_path(id: current_user.invites.find_by_dossier_id(@dossier.id).id) if invite
|
|
|
|
|
|
|
|
redirect_to users_dossier_recapitulatif_path
|
|
|
|
end
|
|
|
|
|
2016-01-26 15:52:05 +01:00
|
|
|
def self.route_authorization
|
|
|
|
{
|
|
|
|
states: [:draft, :initiated, :replied, :updated]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
private
|
|
|
|
|
2017-03-29 23:18:37 +02:00
|
|
|
def draft_submission?
|
|
|
|
params[:submit] && params[:submit].keys.first == 'brouillon'
|
|
|
|
end
|
|
|
|
|
2016-11-02 16:33:01 +01:00
|
|
|
def check_autorisation_donnees
|
2017-01-03 12:53:27 +01:00
|
|
|
@dossier = current_user_dossier
|
2016-11-02 16:33:01 +01:00
|
|
|
|
|
|
|
redirect_to url_for(users_dossier_path(@dossier.id)) if @dossier.autorisation_donnees.nil? || !@dossier.autorisation_donnees
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_starter_dossier_informations
|
|
|
|
@dossier ||= current_user_dossier
|
|
|
|
|
|
|
|
if (@dossier.procedure.for_individual? && @dossier.individual.nil?) ||
|
|
|
|
(!@dossier.procedure.for_individual? && @dossier.entreprise.nil?)
|
|
|
|
redirect_to url_for(users_dossier_path(@dossier.id))
|
|
|
|
end
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|