add assign_tos and groupe_instructeur_ids methods
This commit is contained in:
parent
46517e997b
commit
9a5a41d0bb
1 changed files with 14 additions and 2 deletions
|
@ -58,13 +58,13 @@ module Instructeurs
|
|||
|
||||
@followed_dossiers = current_instructeur
|
||||
.followed_dossiers
|
||||
.where(groupe_instructeur: current_instructeur.groupe_instructeurs)
|
||||
.where(groupe_instructeur_id: groupe_instructeur_ids)
|
||||
.for_procedure(procedure)
|
||||
.en_cours
|
||||
|
||||
@followed_dossiers_id = current_instructeur
|
||||
.followed_dossiers
|
||||
.where(groupe_instructeur: current_instructeur.groupe_instructeurs)
|
||||
.where(groupe_instructeur_id: groupe_instructeur_ids)
|
||||
.for_procedure(procedure)
|
||||
.pluck(:id)
|
||||
|
||||
|
@ -241,6 +241,18 @@ module Instructeurs
|
|||
current_instructeur.assign_to.joins(:groupe_instructeur).find_by(groupe_instructeurs: { procedure: procedure })
|
||||
end
|
||||
|
||||
def assign_tos
|
||||
@assign_tos ||= current_instructeur
|
||||
.assign_to
|
||||
.joins(:groupe_instructeur)
|
||||
.where(groupe_instructeur: { procedure_id: procedure_id })
|
||||
end
|
||||
|
||||
def groupe_instructeur_ids
|
||||
@groupe_instructeur_ids ||= assign_tos
|
||||
.map(&:groupe_instructeur_id)
|
||||
end
|
||||
|
||||
def statut
|
||||
@statut ||= (params[:statut].presence || 'a-suivre')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue