Class: DoubleEntry::Transfer

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

Defined Under Namespace

Classes: Set

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Transfer

Returns a new instance of Transfer.



59
60
61
# File 'lib/double_entry/transfer.rb', line 59

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

Class Attribute Details

.transfersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



9
10
11
# File 'lib/double_entry/transfer.rb', line 9

def transfers
  @transfers ||= Set.new
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



57
58
59
# File 'lib/double_entry/transfer.rb', line 57

def code
  @code
end

#descriptionObject

Returns the value of attribute description.



57
58
59
# File 'lib/double_entry/transfer.rb', line 57

def description
  @description
end

#fromObject

Returns the value of attribute from.



57
58
59
# File 'lib/double_entry/transfer.rb', line 57

def from
  @from
end

#toObject

Returns the value of attribute to.



57
58
59
# File 'lib/double_entry/transfer.rb', line 57

def to
  @to
end

Class Method Details

.transfer(amount, options = {}) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:



14
15
16
17
18
19
20
21
# File 'lib/double_entry/transfer.rb', line 14

def transfer(amount, options = {})
  raise TransferIsNegative if amount < Money.zero
  from = options[:from]
  to = options[:to]
  code = options[:code]
  detail = options[:detail]
  transfers.find!(from, to, code).process(amount, from, to, code, detail)
end

Instance Method Details

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



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/double_entry/transfer.rb', line 63

def process(amount, from, to, code, detail)
  if from.scope_identity == to.scope_identity and from.identifier == to.identifier
    raise TransferNotAllowed.new("from and to are identical")
  end
  if to.currency != from.currency
    raise MismatchedCurrencies.new("Missmatched currency (#{to.currency} <> #{from.currency})")
  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.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