[#4777] Add fixed budgets to the profit_left calculations

This commit is contained in:
Eric Davis
2010-09-22 11:53:55 -07:00
parent 4a7484e1ea
commit 967ef6bc7a
3 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -28,9 +28,9 @@ class FixedDeliverable < Deliverable
end
# The amount of money remaining after expenses have been taken out
# Profit left = Total - Labor spent - Overhead spent
# Profit left = Total - Labor spent - Overhead spent - Fixed - Markup
def profit_left(date=nil)
total_spent(date) - labor_budget_spent(date) - overhead_spent(date)
total_spent(date) - labor_budget_spent(date) - overhead_spent(date) - fixed_budget_total_spent(date) - fixed_markup_budget_total_spent(date)
end
# Hardcoded value used as a wrapper for the old Budget plugin API.
+2 -2
View File
@@ -57,8 +57,8 @@ class HourlyDeliverable < Deliverable
end
# The amount of money remaining after expenses have been taken out
# Profit left = Total - Labor spent - Overhead spent
# Profit left = Total - Labor spent - Overhead spent - Fixed - Markup
def profit_left(date=nil)
total_spent(date) - labor_budget_spent(date) - overhead_spent(date)
total_spent(date) - labor_budget_spent(date) - overhead_spent(date) - fixed_budget_total_spent(date) - fixed_markup_budget_total_spent(date)
end
end
+3 -2
View File
@@ -247,10 +247,11 @@ class ContractTest < ActiveSupport::TestCase
TimeEntry.generate!(:hours => 4, :issue => @issue2, :project => @project,
:activity => @non_billable_activity,
:user => @manager)
@deliverable_2.fixed_budgets << FixedBudget.spawn(:budget => 200, :markup => '$100', :paid => true)
assert_equal 875, @deliverable_1.profit_left
assert_equal 1125, @deliverable_2.profit_left
assert_equal 2000, contract.profit_left
assert_equal 825, @deliverable_2.profit_left
assert_equal 1700, contract.profit_left
end
end