From 7681487af41e682e90ae1286b509ca699f1ad4e2 2007-08-12 10:23:07 From: Jean-Philippe Lang Date: 2007-08-12 10:23:07 Subject: [PATCH] Fixed: Roadmap percentages not being calculated correctly (Nick Read). The roadmap percentages are now calculated using floating point. git-svn-id: http://redmine.rubyforge.org/svn/trunk@608 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/projects/roadmap.rhtml b/app/views/projects/roadmap.rhtml index 9a3ec68..9deb6d2 100644 --- a/app/views/projects/roadmap.rhtml +++ b/app/views/projects/roadmap.rhtml @@ -31,7 +31,7 @@ total = issues.size complete = issues.inject(0) {|c,i| i.status.is_closed? ? c + 1 : c } - percentComplete = total == 0 ? 100 : (100 / total * complete).floor + percentComplete = total == 0 ? 100 : (100.0 / total * complete).floor percentIncomplete = 100 - percentComplete %>