[#5416] Remove rounding in the Issue time spent, billable and overhead

This commit is contained in:
Eric Davis
2011-02-04 09:19:26 -08:00
parent 2e090df4e3
commit 83df555681
2 changed files with 8 additions and 11 deletions

View File

@@ -24,11 +24,8 @@ module OverheadIssuePatch
sum += time_entry.hours if time_entry.billable? == billable_flag
sum
}
if time > 0
return time.round(1)
else
return 0
end
return 0 if time <= 0
return time
end
end