demarches-normaliennes/app/controllers/users/statistiques_controller.rb
2024-08-22 09:26:48 +02:00

29 lines
839 B
Ruby

# frozen_string_literal: true
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
@usual_traitement_time_by_month = @procedure.stats_usual_traitement_time_by_month_in_days
@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])
end
def procedure_not_found
flash.alert = t('errors.messages.procedure_not_found')
redirect_to root_path
end
end
end