107b11d510
fix association between formulaire and type_piece_jointe fix association between formulaire and evenement_vie
78 lines
2.7 KiB
Ruby
78 lines
2.7 KiB
Ruby
class DescriptionController < ApplicationController
|
|
def show
|
|
@dossier = Dossier.find(params[:dossier_id])
|
|
@dossier = @dossier.decorate
|
|
|
|
@array_id_pj_valides = PieceJointe.get_array_id_pj_valid_for_dossier @dossier.id
|
|
@liste_pieces_jointes = get_liste_piece_jointe
|
|
rescue
|
|
redirect_to url_for({controller: :start, action: :error_dossier})
|
|
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])
|
|
@dossier.update_attributes(create_params)
|
|
|
|
if params[:cerfa_pdf] != nil
|
|
PieceJointe.destroy_all(dossier_id: @dossier.id, type_piece_jointe_id: 0)
|
|
@piece_jointe = PieceJointe.new
|
|
@piece_jointe.content = params[:cerfa_pdf]
|
|
@piece_jointe.type_piece_jointe_id = 0
|
|
@piece_jointe.dossier = @dossier
|
|
@piece_jointe.save
|
|
end
|
|
|
|
get_liste_piece_jointe.each do |pj|
|
|
if params["piece_jointe_#{pj.id}"] != nil
|
|
PieceJointe.destroy_all(dossier_id: @dossier.id, type_piece_jointe_id: pj.id)
|
|
|
|
@piece_jointe = PieceJointe.new
|
|
@piece_jointe.content = params["piece_jointe_#{pj.id}"]
|
|
@piece_jointe.type_piece_jointe_id = pj.id
|
|
@piece_jointe.dossier = @dossier
|
|
@piece_jointe.save
|
|
end
|
|
end
|
|
|
|
if check_missing_attributes(params)||check_format_email(@dossier.mail_contact) == nil
|
|
redirect_to url_for({controller: :description, action: :error})
|
|
else
|
|
if params[:back_url] == 'recapitulatif'
|
|
@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
|
|
end
|
|
|
|
redirect_to url_for({controller: :recapitulatif, action: :show, dossier_id: @dossier.id})
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def create_params
|
|
params.permit(:nom_projet, :description, :montant_projet, :montant_aide_demande, :date_previsionnelle, :lien_plus_infos, :mail_contact)
|
|
end
|
|
|
|
#TODO dans un validateur, dans le model
|
|
def check_missing_attributes params
|
|
params[:nom_projet].strip == '' || params[:description].strip == '' || params[:montant_projet].strip == '' || params[:montant_aide_demande].strip == '' || params[:date_previsionnelle].strip == '' || params[:mail_contact].strip == ''
|
|
end
|
|
|
|
#TODO dans un validateur, dans le model
|
|
def check_format_email email
|
|
/\A[\w+\-.]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/.match(email)
|
|
end
|
|
|
|
def get_liste_piece_jointe
|
|
@formulaire = @dossier.formulaire
|
|
TypePieceJointe.where ("\"CERFA\" = '#{@formulaire.demarche_id}'")
|
|
end
|
|
end
|