demarches-normaliennes/app/controllers/users/statistiques_controller.rb

28 lines
808 B
Ruby
Raw Normal View History

2021-06-02 12:45:47 +02:00
module Users
class StatistiquesController < ApplicationController
def statistiques
@procedure = procedure
return procedure_not_found if @procedure.blank? || @procedure.brouillon?
@usual_traitement_time = @procedure.stats_usual_traitement_time
2021-06-04 16:19:19 +02:00
@usual_traitement_time_by_month = @procedure.stats_usual_traitement_time_by_month_in_days
2021-06-02 12:45:47 +02:00
@dossiers_funnel = @procedure.stats_dossiers_funnel
@termines_states = @procedure.stats_termines_states
@termines_by_week = @procedure.stats_termines_by_week
render :show
end
private
def procedure
Procedure.publiees_ou_closes.find_by(path: params[:path])
2021-06-02 12:45:47 +02:00
end
2021-06-08 17:55:38 +02:00
def procedure_not_found
flash.alert = t('errors.messages.procedure_not_found')
2021-06-08 17:55:38 +02:00
redirect_to root_path
end
2021-06-02 12:45:47 +02:00
end
end