Sha256: caa307488a8c432376898b9525b0401c92074da1ad3615592bf1793ce7308a79
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
class Taxedo::Receipt attr_accessor :currency def initialize(region_id, amount) @region_id = region_id @amount = amount @taxes = [] load_translations end def add_tax(id, rate) tax = Taxedo::Tax.new(id) tax.name = tax_name(id) tax.rate = rate tax.source_amount = (@taxes.empty? ? @amount : @taxes.last.subtotal) @taxes << tax end def subtotal @amount end def t(path) text = @translations path.split('.').each { |p| text = text[p] } return text.to_s end def taxes @taxes end def total @total = subtotal @taxes.each { |t| @total += t.amount } return @total end def to_hash Taxedo::Builder::Hash.new(self).generate end def to_html(options={}) options = { columns: 0, custom_content: '', format: :table }.merge(options) return Taxedo::Builder::Html.new(self).generate(options[:format], options) end def to_json Taxedo::Builder::Json.new(self).generate end def to_text Taxedo::Builder::Text.new(self).generate end private def load_translations language = defined?(I18n) ? I18n.locale.to_s : 'fr' @translations = YAML.load_file(Taxedo.base_languages_path + "#{language}.yml")['taxedo'][language] end def tax_name(tax_id) t("regions.#{@region_id}.taxes.#{tax_id}.short") end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
taxedo-0.0.2 | lib/taxedo/receipt.rb |
taxedo-0.0.1 | lib/taxedo/receipt.rb |