Sorting deliverables by subject in select fields. #1430

This commit is contained in:
Eric Davis
2008-07-10 17:29:05 -07:00
parent ac2ba0ec41
commit c6a23d0046
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ module QueryPatch
if project
budget_filters = { "deliverable_id" => { :type => :list_optional, :order => 14,
:values => Deliverable.find(:all, :conditions => ["project_id IN (?)", project]).collect { |d| [d.subject, d.id.to_s]}
:values => Deliverable.find(:all, :conditions => ["project_id IN (?)", project], :order => 'subject ASC').collect { |d| [d.subject, d.id.to_s]}
}}
else
budget_filters = { }