[#5734] Fix the cost caching case where Time Entry attributes changed

A cost value wasn't getting recaclulated by TimeEntry#cost when the
attributes were changing. It only was recalculated when .cost changed.
This commit is contained in:
Eric Davis
2011-04-06 09:27:20 -07:00
parent b20ebe587b
commit 4c3e6b6b6d
2 changed files with 32 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ module RateTimeEntryPatch
unloadable # Send unloadable so it will not be unloaded in development unloadable # Send unloadable so it will not be unloaded in development
belongs_to :rate belongs_to :rate
before_save :cost before_save :recalculate_cost
end end
@@ -32,7 +32,9 @@ module RateTimeEntryPatch
# Returns the current cost of the TimeEntry based on it's rate and hours # Returns the current cost of the TimeEntry based on it's rate and hours
# #
# Is a read-through cache method # Is a read-through cache method
def cost def cost(options={})
store_to_db = options[:store] || false
unless read_attribute(:cost) unless read_attribute(:cost)
if self.rate.nil? if self.rate.nil?
amount = Rate.amount_for(self.user, self.project, self.spent_on.to_s) amount = Rate.amount_for(self.user, self.project, self.spent_on.to_s)
@@ -43,8 +45,13 @@ module RateTimeEntryPatch
if amount.nil? if amount.nil?
write_attribute(:cost, 0.0) write_attribute(:cost, 0.0)
else else
# Write the cost to the database for caching if store_to_db
update_attribute(:cost, amount.to_f * hours.to_f) # Write the cost to the database for caching
update_attribute(:cost, amount.to_f * hours.to_f)
else
# Cache to object only
write_attribute(:cost, amount.to_f * hours.to_f)
end
end end
end end
@@ -60,6 +67,12 @@ module RateTimeEntryPatch
update_attribute(:cost, cost) update_attribute(:cost, cost)
end end
def recalculate_cost
clear_cost_cache
cost(:store => false)
true # for callback
end
end end
end end

View File

@@ -71,6 +71,21 @@ class RateTimeEntryPatchTest < ActiveSupport::TestCase
assert_equal 2000.0, @time_entry.read_attribute(:cost) assert_equal 2000.0, @time_entry.read_attribute(:cost)
end end
should "clear and recalculate the cache when the attribute is already set but stale" do
# Set the cost
assert @time_entry.save
assert_equal 2000.0, @time_entry.read_attribute(:cost)
@time_entry.reload
@time_entry.hours = 20
assert @time_entry.save
assert_equal 4000.0, @time_entry.read_attribute(:cost)
assert_equal 4000.0, @time_entry.reload.cost
end
end end