15 lines
599 B
Ruby
15 lines
599 B
Ruby
class BankAccount < ActiveRecord::Base
|
|
|
|
has_many :bank_transactions, dependent: :destroy
|
|
|
|
normalize_attributes :name, :iban, :description
|
|
|
|
validates :name, :presence => true, :uniqueness => true, :length => { :minimum => 2 }
|
|
validates :iban, :presence => true, :uniqueness => true
|
|
validates_format_of :iban, :with => /\A[A-Z]{2}[0-9]{2}[0-9A-Z]{,30}\z/
|
|
validates_numericality_of :balance, :message => I18n.t('bank_account.model.invalid_balance')
|
|
|
|
# @return [Function] Method wich can be called to import transaction from a bank or nil if unsupported
|
|
def find_import_method
|
|
end
|
|
end
|