Rails4: replace deprecated Relation#sum with finder options at Issue#total_spent_hours

git-svn-id: http://svn.redmine.org/redmine/trunk@12588 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-10 05:02:44 +00:00
parent 5d535f8996
commit 56a3c1ad40
1 changed files with 4 additions and 2 deletions

View File

@ -839,8 +839,10 @@ class Issue < ActiveRecord::Base
# spent_hours => 0.0
# spent_hours => 50.2
def total_spent_hours
@total_spent_hours ||= self_and_descendants.sum("#{TimeEntry.table_name}.hours",
:joins => "LEFT JOIN #{TimeEntry.table_name} ON #{TimeEntry.table_name}.issue_id = #{Issue.table_name}.id").to_f || 0.0
@total_spent_hours ||=
self_and_descendants.
joins("LEFT JOIN #{TimeEntry.table_name} ON #{TimeEntry.table_name}.issue_id = #{Issue.table_name}.id").
sum("#{TimeEntry.table_name}.hours").to_f || 0.0
end
def relations