module Skr::Concerns::GlTran::Postings

Public Instance Methods

total() click to toggle source
# File lib/skr/concerns/gl_tran_extensions.rb, line 8
def total
    total = BigDecimal.new('0')
    each{ |pst| total+=pst.amount }
    total
end