Class: DoubleEntry::Transfer

Inherits:
Object
  • Object
show all
Defined in:
lib/double_entry/transfer.rb

Defined Under Namespace

Classes: Set

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Transfer

Returns a new instance of Transfer.



28
29
30
31
# File 'lib/double_entry/transfer.rb', line 28

def initialize(attributes)
  @meta_requirement = []
  attributes.each { |name, value| send("#{name}=", value) }
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



26
27
28
# File 'lib/double_entry/transfer.rb', line 26

def code
  @code
end

#descriptionObject

Returns the value of attribute description.



26
27
28
# File 'lib/double_entry/transfer.rb', line 26

def description
  @description
end

#fromObject

Returns the value of attribute from.



26
27
28
# File 'lib/double_entry/transfer.rb', line 26

def from
  @from
end

#meta_requirementObject

Returns the value of attribute meta_requirement.



26
27
28
# File 'lib/double_entry/transfer.rb', line 26

def meta_requirement
  @meta_requirement
end

#toObject

Returns the value of attribute to.



26
27
28
# File 'lib/double_entry/transfer.rb', line 26

def to
  @to
end

Instance Method Details

#process!(amount, from, to, code, meta, detail) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/double_entry/transfer.rb', line 33

def process!(amount, from, to, code, meta, detail)
  if from.scope_identity == to.scope_identity and from.identifier == to.identifier
    raise TransferNotAllowed.new
  end

  meta_requirement.each do |key|
    if meta[key].nil?
      raise RequiredMetaMissing.new
    end
  end

  Locking.lock_accounts(from, to) do
    credit, debit = Line.new, Line.new

    credit_balance = Locking.(from)
    debit_balance  = Locking.(to)

    credit_balance.update_attribute :balance, credit_balance.balance - amount
    debit_balance.update_attribute  :balance, debit_balance.balance  + amount

    credit.amount,  debit.amount  = -amount, amount
    credit., debit. = from, to
    credit.code,    debit.code    = code, code
    credit.meta,    debit.meta    = meta, meta
    credit.detail,  debit.detail  = detail, detail
    credit.balance, debit.balance = credit_balance.balance, debit_balance.balance

    credit., debit. = to, from

    credit.save!
    debit.partner_id = credit.id
    debit.save!
    credit.update_attribute :partner_id, debit.id
  end
end