Skip to content

Commit

Permalink
Calculate done_ratio based on children instead of leaves (#20995).
Browse files Browse the repository at this point in the history
Patch by Jens Krämer.

git-svn-id: http://svn.redmine.org/redmine/trunk@14875 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
jplang committed Nov 14, 2015
1 parent 5735db1 commit 1a860d5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/models/issue.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1529,16 +1529,16 @@ def recalculate_attributes_for(issue_id)
if p.done_ratio_derived?
# done ratio = weighted average ratio of leaves
unless Issue.use_status_for_done_ratio? && p.status && p.status.default_done_ratio
leaves_count = p.leaves.count
if leaves_count > 0
average = p.leaves.where("estimated_hours > 0").average(:estimated_hours).to_f
child_count = p.children.count
if child_count > 0
average = p.children.where("estimated_hours > 0").average(:estimated_hours).to_f
if average == 0
average = 1
end
done = p.leaves.joins(:status).
done = p.children.joins(:status).
sum("COALESCE(CASE WHEN estimated_hours > 0 THEN estimated_hours ELSE NULL END, #{average}) " +
"* (CASE WHEN is_closed = #{self.class.connection.quoted_true} THEN 100 ELSE COALESCE(done_ratio, 0) END)").to_f
progress = done / (average * leaves_count)
progress = done / (average * child_count)
p.done_ratio = progress.round
end
end
Expand Down
20 changes: 20 additions & 0 deletions test/unit/issue_subtasking_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,26 @@ def test_changing_parent_should_update_previous_parent_done_ratio
end
end

def test_done_ratio_of_parent_should_reflect_children
root = Issue.generate!
child1 = root.generate_child!
child2 = child1.generate_child!

assert_equal 0, root.done_ratio
assert_equal 0, child1.done_ratio
assert_equal 0, child2.done_ratio

with_settings :issue_done_ratio => 'issue_status' do
status = IssueStatus.find(4)
status.update_attribute :default_done_ratio, 50
child1.update_attribute :status, status

assert_equal 50, child1.done_ratio
root.reload
assert_equal 50, root.done_ratio
end
end

def test_parent_dates_should_be_editable_with_parent_issue_dates_set_to_independent
with_settings :parent_issue_dates => 'independent' do
issue = Issue.generate_with_child!
Expand Down

0 comments on commit 1a860d5

Please sign in to comment.