From 62c74885b5c4e36fa5f7a24702176d22a63e8122 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Mon, 14 Nov 2011 11:10:55 -0800 Subject: [PATCH] [#6680] Round the hours in the summary --- app/views/deliverables/_finances.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/deliverables/_finances.html.erb b/app/views/deliverables/_finances.html.erb index 1ea935d..7a3e90d 100644 --- a/app/views/deliverables/_finances.html.erb +++ b/app/views/deliverables/_finances.html.erb @@ -2,7 +2,7 @@ <%= l(:text_deliverable_spending_summary, :spent => content_tag(:span, h(number_to_currency(deliverable.labor_budget_spent, :precision => Deliverable::ViewPrecision)), :class => 'spent'), :total => content_tag(:span, h(number_to_currency(deliverable.labor_budget_total, :precision => Deliverable::ViewPrecision)), :class => 'total'), - :hours => content_tag(:span, h(deliverable.labor_hours_spent_total), :class => 'hours')) %> + :hours => content_tag(:span, h(number_with_precision(deliverable.labor_hours_spent_total, :precision => Deliverable::ViewPrecision)), :class => 'hours')) %>

<%= h(deliverable.title) %>