module Credere # The Liability class is an account type used to represents debts owed to outsiders. # # === Normal Balance # The normal balance on Liability accounts is a *Credit*. # # @see http://en.wikipedia.org/wiki/Liability_(financial_accounting) Liability # class Liability < Credere::Account self.normal_credit_balance = true # The balance of the account. # # Liability accounts have normal credit balances, so the debits are subtracted from the credits # unless this is a contra account, in which credits are subtracted from debits # # Takes an optional hash specifying :from_date and :to_date for calculating balances during periods. # :from_date and :to_date may be strings of the form "yyyy-mm-dd" or Ruby Date objects # # @example # >> liability.balance({:from_date => "2000-01-01", :to_date => Date.today}) # => # # # @example # >> liability.balance # => # # # @return [BigDecimal] The decimal value balance def balance(options={}) super end # This class method is used to return # the balance of all Liability accounts. # # Contra accounts are automatically subtracted from the balance. # # Takes an optional hash specifying :from_date and :to_date for calculating balances during periods. # :from_date and :to_date may be strings of the form "yyyy-mm-dd" or Ruby Date objects # # @example # >> Credere::Liability.balance({:from_date => "2000-01-01", :to_date => Date.today}) # => # # # @example # >> Credere::Liability.balance # => # # # @return [BigDecimal] The decimal value balance def self.balance(options={}) super end end end