OSDN Git Service

Fixed: Roadmap percentages not being calculated correctly (Nick Read).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Aug 2007 10:23:07 +0000 (10:23 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Aug 2007 10:23:07 +0000 (10:23 +0000)
The roadmap percentages are now calculated using floating point.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@608 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/projects/roadmap.rhtml

index 9a3ec68..9deb6d2 100644 (file)
@@ -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
     %>
     <table class="progress">