[#3477] Extract all variables from sort hash

This commit is contained in:
Frederic Merizen 2019-02-26 16:08:35 +01:00 committed by Frederic Merizen
parent 21128d94b6
commit cf2b40f6a0

View file

@ -74,8 +74,7 @@ class ProcedurePresentation < ApplicationRecord
def sorted_ids(dossiers, gestionnaire)
dossiers.each { |dossier| assert_matching_procedure(dossier) }
table = sort['table']
order = sort['order']
table, column, order = sort.values_at('table', 'column', 'order')
case table
when 'notifications'
@ -90,7 +89,7 @@ class ProcedurePresentation < ApplicationRecord
when 'type_de_champ', 'type_de_champ_private'
return dossiers
.includes(table == 'type_de_champ' ? :champs : :champs_private)
.where("champs.type_de_champ_id = #{sort['column'].to_i}")
.where("champs.type_de_champ_id = #{column.to_i}")
.order("champs.value #{order}")
.pluck(:id)
when 'self', 'user', 'individual', 'etablissement'