Defect #28409
openTotal estimated time value not visible when tracker has estimate time field disabled
0%
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
Updated by Go MAEDA over 6 years ago
- File before@2x.png before@2x.png added
- File after@2x.png after@2x.png added
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:
Updated by Go MAEDA over 6 years ago
- Target version set to Candidate for next minor release
Updated by Tomomi Yuzuriha over 6 years ago
- File tests.patch tests.patch added
I've added the test-code for Go MAEDA's patch(#28409-1).
Updated by Sebastian Paluch over 4 years ago
Any chance to get this minor thing in soon?
Updated by Go MAEDA over 4 years ago
- Target version changed from Candidate for next minor release to 4.2.0
Setting the target version to 4.2.0.
Updated by Go MAEDA almost 4 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