ajout d'un bouton d'export des mails des demandeurs
This commit is contained in:
parent
c576b457ff
commit
22a518c921
3 changed files with 11 additions and 0 deletions
|
@ -39,6 +39,13 @@ module Manager
|
||||||
redirect_to manager_procedure_path(procedure)
|
redirect_to manager_procedure_path(procedure)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def export_mail_brouillons
|
||||||
|
dossiers = procedure.dossiers.state_brouillon
|
||||||
|
emails = dossiers.map { |d| d.user.email }.sort
|
||||||
|
date = Time.zone.now.strftime('%d-%m-%Y')
|
||||||
|
send_data(emails.join("\n"), :filename => "brouillons-#{procedure.id}-au-#{date}.csv")
|
||||||
|
end
|
||||||
|
|
||||||
def add_administrateur
|
def add_administrateur
|
||||||
administrateur = Administrateur.by_email(params[:email])
|
administrateur = Administrateur.by_email(params[:email])
|
||||||
if administrateur
|
if administrateur
|
||||||
|
|
|
@ -71,5 +71,8 @@ as well as a link to its edit page.
|
||||||
<% end %>
|
<% end %>
|
||||||
</dd>
|
</dd>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<dd class="attribute-data">
|
||||||
|
<a class="button" href="<%= export_mail_brouillons_manager_procedure_url(procedure) %>">Télécharger un export CSV contenant les emails des demandeurs ayant effectué une demandes en brouillon</a>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -13,6 +13,7 @@ Rails.application.routes.draw do
|
||||||
post 'restore', on: :member
|
post 'restore', on: :member
|
||||||
post 'add_administrateur', on: :member
|
post 'add_administrateur', on: :member
|
||||||
post 'change_piece_justificative_template', on: :member
|
post 'change_piece_justificative_template', on: :member
|
||||||
|
get 'export_mail_brouillons', on: :member
|
||||||
end
|
end
|
||||||
|
|
||||||
resources :dossiers, only: [:index, :show] do
|
resources :dossiers, only: [:index, :show] do
|
||||||
|
|
Loading…
Reference in a new issue