Cache balance in user
This commit is contained in:
parent
334054142c
commit
246492c546
2 changed files with 15 additions and 0 deletions
|
@ -16,7 +16,16 @@ class Transaction < ActiveRecord::Base
|
||||||
belongs_to :debtor, class_name: 'User'
|
belongs_to :debtor, class_name: 'User'
|
||||||
belongs_to :creditor, class_name: 'User'
|
belongs_to :creditor, class_name: 'User'
|
||||||
|
|
||||||
|
after_save :recalculate_balances
|
||||||
|
after_destroy :recalculate_balances
|
||||||
|
|
||||||
def client
|
def client
|
||||||
Client.find_by name: origin
|
Client.find_by name: origin
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
def recalculate_balances
|
||||||
|
creditor.calculate_balance!
|
||||||
|
debtor.calculate_balance!
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -20,4 +20,10 @@ class User < ActiveRecord::Base
|
||||||
def transactions
|
def transactions
|
||||||
Transaction.where("creditor_id = ? OR debtor_id = ?", id, id)
|
Transaction.where("creditor_id = ? OR debtor_id = ?", id, id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def calculate_balance!
|
||||||
|
balance = incoming_transactions.sum(:amount) -
|
||||||
|
outgoing_transactions.sum(:amount)
|
||||||
|
self.update_attribute :balance, balance
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue