demarches-normaliennes/app/controllers/description_controller.rb

58 lines
1.7 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
class DescriptionController < ApplicationController
def show
@dossier = Dossier.find(params[:dossier_id])
@dossier = @dossier.decorate
@procedure = @dossier.procedure
2015-08-18 10:43:36 +02:00
rescue ActiveRecord::RecordNotFound
redirect_to url_for(controller: :start, action: :error_dossier)
2015-08-10 11:05:06 +02:00
end
def error
show
flash.now.alert = 'Un ou plusieurs attributs obligatoires sont manquants ou incorrects.'
render 'show'
end
def create
@dossier = Dossier.find(params[:dossier_id])
2015-08-21 11:37:13 +02:00
unless @dossier.update_attributes(create_params)
@dossier = @dossier.decorate
@procedure = @dossier.procedure
2015-08-21 11:37:13 +02:00
flash.now.alert = @dossier.errors.full_messages.join('<br />').html_safe
return render 'show'
end
2015-08-20 16:37:03 +02:00
unless params[:cerfa_pdf].nil?
2015-08-20 15:15:20 +02:00
cerfa = @dossier.cerfa
cerfa.content = params[:cerfa_pdf]
cerfa.save
end
2015-08-10 11:05:06 +02:00
@dossier.pieces_justificatives.each do |piece_justificative|
unless params["piece_justificative_#{piece_justificative.type}"].nil?
piece_justificative.content = params["piece_justificative_#{piece_justificative.type}"]
piece_justificative.save
end
end
2015-08-10 11:05:06 +02:00
if params[:back_url] == 'recapitulatif'
2015-08-21 11:37:13 +02:00
commentaire = Commentaire.create
commentaire.email = 'Modification détails'
commentaire.body = 'Les informations détaillées de la demande ont été modifiées. Merci de le prendre en compte.'
commentaire.dossier = @dossier
commentaire.save
2015-08-10 11:05:06 +02:00
end
2015-08-20 16:37:03 +02:00
redirect_to url_for(controller: :recapitulatif, action: :show, dossier_id: @dossier.id)
2015-08-25 10:19:39 +02:00
2015-08-10 11:05:06 +02:00
end
private
def create_params
params.permit(:nom_projet, :description, :montant_projet, :montant_aide_demande, :date_previsionnelle)
end
2015-08-10 11:05:06 +02:00
end