]> source.dussan.org Git - redmine.git/commitdiff
Rails3.1 compatibility
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 18 Dec 2011 08:21:29 +0000 (08:21 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 18 Dec 2011 08:21:29 +0000 (08:21 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8275 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue.rb

index 9b6be7db63bee75ef92862197c7f483061a353f8..be69d929f321cf8f1fb3994aeedc67fc323e860e 100644 (file)
@@ -522,7 +522,8 @@ 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", :include => :time_entries).to_f || 0.0
+    @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
   end
 
   def relations