Project

General

Profile

Defect #33273

Updated by Go MAEDA about 4 years ago

the reason for the issue is that total_estimated_hours is missing from @queries_helper.rb@ `queries_helper.rb` 

 the issue can be fixed by changing lines 170 and 241: 241 from: 

 <pre><code class="diff"> 
 diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb 
 index 2e5b86b6e..a9d8cff6f 100644 
 --- a/app/helpers/queries_helper.rb 
 +++ b/app/helpers/queries_helper.rb 
 @@ -167,7 +167,7 @@ module QueriesHelper 
    def total_tag(column, value) 
      label = content_tag('span', "#{column.caption}:") 
      value = 
 - `        if [:hours, :spent_hours, :total_spent_hours, :estimated_hours].include? column.name column.name` 
 + `      when :hours, :estimated_hours` 

 to: 

 `        if [:hours, :spent_hours, :total_spent_hours, :estimated_hours, :total_estimated_hours].include? column.name 
          format_hours(value) 
        else 
          format_object(value) column.name` 
 @@ -238,7 +238,7 @@ module QueriesHelper 
          'span', 
          value.to_s(item) {|other| link_to_issue(other, :subject => false, :tracker => false)}.html_safe, 
          :class => value.css_classes_for(item)) 
 - `      when :hours, :estimated_hours 
 +      when :hours, :estimated_hours, :total_estimated_hours 
        format_hours(value) 
      when :spent_hours 
        link_to_if(value > 0, format_hours(value), project_time_entries_path(item.project, :issue_id => "#{item.id}")) 
 </code></pre> :total_estimated_hours` 

 (I already fixed it on my instance) 

 I'm not exactly sure if subversion supports something like pull requests in git, so i'm opening an issue instead

Back