From bfe35fb1c81421129bb84dbcbc5634a53e17a9d1 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 13 Oct 2011 10:21:42 -0700 Subject: [PATCH] [#6636] Show overage amounts on the deliverable finance report --- app/views/deliverables/_finances.html.erb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/views/deliverables/_finances.html.erb b/app/views/deliverables/_finances.html.erb index f75c081..edaad78 100644 --- a/app/views/deliverables/_finances.html.erb +++ b/app/views/deliverables/_finances.html.erb @@ -25,13 +25,13 @@ <%= h(activity.name) %> - + <%= number_to_currency(deliverable.spent_for_activity(activity), :precision => 0) %> <%= number_to_currency(deliverable.budget_for_activity(activity), :precision => 0) %> - + <%= number_with_precision(deliverable.hours_spent_for_activity(activity), :precision => 0) %> @@ -44,13 +44,13 @@ Totals - + <%= number_to_currency(deliverable.labor_budget_spent, :precision => 0) %> <%= number_to_currency(deliverable.labor_budget_total, :precision => 0) %> - + <%= number_with_precision(deliverable.labor_hours_spent_total, :precision => 0) %> @@ -75,13 +75,13 @@ <%= h(activity.name) %> - + <%= number_to_currency(deliverable.spent_for_activity(activity), :precision => 0) %> <%= number_to_currency(deliverable.budget_for_activity(activity), :precision => 0) %> - + <%= number_with_precision(deliverable.hours_spent_for_activity(activity), :precision => 0) %> @@ -94,13 +94,13 @@ Totals - + <%= number_to_currency(deliverable.overhead_spent, :precision => 0) %> <%= number_to_currency(deliverable.overhead_budget_total, :precision => 0) %> - + <%= number_with_precision(deliverable.overhead_hours_spent_total, :precision => 0) %>