[#2579] Remove no-op

(sanitize_sql_for_order does not do anything when its argument is a string)
This commit is contained in:
Frederic Merizen 2018-09-25 11:03:29 +02:00
parent d2362c29ed
commit 3bb6fd2d47
2 changed files with 1 additions and 5 deletions

View file

@ -229,10 +229,6 @@ class Dossier < ApplicationRecord
DossierFieldService.get_value(self, table, column)
end
def self.sanitize_for_order(order)
sanitize_sql_for_order(order)
end
def owner_name
if etablissement.present?
etablissement.entreprise_raison_sociale

View file

@ -131,7 +131,7 @@ class DossierFieldService
end
if sorted_ids.nil?
sorted_ids = dossiers.includes(includes).where(where).order(Dossier.sanitize_for_order(order)).pluck(:id)
sorted_ids = dossiers.includes(includes).where(where).order(order).pluck(:id)
end
sorted_ids