Project

General

Profile

Actions

Defect #28409

open

Total estimated time value not visible when tracker has estimate time field disabled

Added by Sebastian Paluch about 6 years ago. Updated over 3 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
Issues
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Affected version:

Description

There is a tracker that does have estimate time field disabled. The issue of that tracker can have subtasks of different trackers that do have estimated time. The estiamted time for the parent issue is not shown at all, it should show total estimated time, in brackets. This works fine for spend time.


Files

before@2x.png (27.1 KB) before@2x.png Go MAEDA, 2018-04-03 04:35
after@2x.png (29.2 KB) after@2x.png Go MAEDA, 2018-04-03 04:35
tests.patch (1.18 KB) tests.patch Tomomi Yuzuriha, 2018-05-28 07:07
Actions #1

Updated by Go MAEDA almost 6 years ago

I agree with Sebastian Paluch. Here is a patch without tests.

Index: app/views/issues/show.html.erb
===================================================================
--- app/views/issues/show.html.erb    (revision 17253)
+++ app/views/issues/show.html.erb    (working copy)
@@ -64,7 +64,7 @@
   unless @issue.disabled_core_fields.include?('done_ratio')
     rows.right l(:field_done_ratio), progress_bar(@issue.done_ratio, :legend => "#{@issue.done_ratio}%"), :class => 'progress'
   end
-  unless @issue.disabled_core_fields.include?('estimated_hours')
+  unless @issue.disabled_core_fields.include?('estimated_hours') && @issue.total_estimated_hours.blank?
     rows.right l(:field_estimated_hours), issue_estimated_hours_details(@issue), :class => 'estimated-hours'
   end
   if User.current.allowed_to?(:view_time_entries, @project) && @issue.total_spent_hours > 0

Before:

After:

Actions #2

Updated by Go MAEDA almost 6 years ago

  • Target version set to Candidate for next minor release
Actions #3

Updated by Tomomi Yuzuriha almost 6 years ago

I've added the test-code for Go MAEDA's patch(#28409-1).

Actions #4

Updated by Sebastian Paluch almost 4 years ago

Any chance to get this minor thing in soon?

Actions #5

Updated by Go MAEDA almost 4 years ago

  • Target version changed from Candidate for next minor release to 4.2.0

Setting the target version to 4.2.0.

Actions #6

Updated by Go MAEDA over 3 years ago

  • Target version changed from 4.2.0 to Candidate for next major release

I found a problem in patch #28409#note-1.

Redmine shows estimated hours for a parent task in some cases even if estimated hours is disabled. You can reproduce the problem with the following steps:

1. Set any value to the estimated hours field of a parent task and subtask
2. Disable the estimated hours field for the tracker
3. Open the parent task. The value of the parent task's estimated hour should not be displayed because the field is disabled, but both the parent's estimated hours and total estimated hours are displayed

Actions

Also available in: Atom PDF