2016-05-20 15:36:38 +02:00
|
|
|
class Admin::AccompagnateursController < AdminController
|
2016-05-24 16:39:39 +02:00
|
|
|
include SmartListing::Helper::ControllerExtensions
|
|
|
|
helper SmartListing::Helper
|
|
|
|
|
2016-05-20 15:36:38 +02:00
|
|
|
before_action :retrieve_procedure
|
|
|
|
|
|
|
|
def show
|
2016-05-24 16:39:39 +02:00
|
|
|
assign_scope = @procedure.gestionnaires
|
|
|
|
@accompagnateurs_assign = smart_listing_create :accompagnateurs_assign,
|
|
|
|
assign_scope,
|
|
|
|
partial: "admin/accompagnateurs/list_assign",
|
|
|
|
array: true
|
|
|
|
|
|
|
|
not_assign_scope = current_administrateur.gestionnaires.where.not(id: assign_scope.ids)
|
|
|
|
not_assign_scope = not_assign_scope.where("email LIKE '%#{params[:filter]}%'") if params[:filter]
|
|
|
|
|
|
|
|
@accompagnateurs_not_assign = smart_listing_create :accompagnateurs_not_assign,
|
|
|
|
not_assign_scope,
|
|
|
|
partial: "admin/accompagnateurs/list_not_assign",
|
|
|
|
array: true
|
2016-05-20 15:36:38 +02:00
|
|
|
|
2016-05-26 16:44:10 +02:00
|
|
|
@gestionnaire ||= Gestionnaire.new
|
2016-05-20 15:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2016-09-08 16:21:54 +02:00
|
|
|
gestionnaire = Gestionnaire.find(params[:accompagnateur_id])
|
|
|
|
procedure = Procedure.find(params[:procedure_id])
|
|
|
|
to = params[:to]
|
|
|
|
|
2016-10-07 12:10:58 +02:00
|
|
|
accompagnateur_service = AccompagnateurService.new gestionnaire, procedure, to
|
2016-09-08 16:21:54 +02:00
|
|
|
|
2016-10-07 12:10:58 +02:00
|
|
|
accompagnateur_service.change_assignement!
|
|
|
|
accompagnateur_service.build_default_column
|
2016-05-20 15:36:38 +02:00
|
|
|
|
2016-05-24 16:39:39 +02:00
|
|
|
flash.notice = "Assignement effectué"
|
|
|
|
redirect_to admin_procedure_accompagnateurs_path, procedure_id: params[:procedure_id]
|
2016-05-20 15:36:38 +02:00
|
|
|
end
|
2017-04-04 15:27:04 +02:00
|
|
|
end
|