From f21b9007eb857b7d5a1f157ae7c343c044b3c98e Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 10 Jul 2008 17:56:45 -0700 Subject: [PATCH] Changed verbage. #1439 --- app/views/deliverables/_deliverable.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/deliverables/_deliverable.html.erb b/app/views/deliverables/_deliverable.html.erb index c2af7a5..616e22a 100644 --- a/app/views/deliverables/_deliverable.html.erb +++ b/app/views/deliverables/_deliverable.html.erb @@ -57,7 +57,8 @@ <%= row_with_data("Total Budget: ", number_to_currency(deliverable.budget, :precision => 0)) -%> <% if allowed_management? %> - <%= row_with_data("Labor: ", number_to_currency(deliverable.labor_budget || 0.0, :precision => 0)) -%> + <% base_price_label = deliverable.hourly? ? "Labor: " : "Fixed Amount: " %> + <%= row_with_data(base_price_label, number_to_currency(deliverable.labor_budget || 0.0, :precision => 0)) -%> <%= row_with_data("Overhead: ", number_or_percent(deliverable.overhead, deliverable.overhead_percent)) -%> <%= row_with_data("Materials: ", number_or_percent(deliverable.materials, deliverable.materials_percent)) -%> <%= row_with_data("Potential Profit: ", number_or_percent(deliverable.profit, deliverable.profit_percent)) -%>