Sha256: b280c0b6f1b4c817adc9e0fe22f02c5672b3ff01ea167d90d7b2b500a2bab64b
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# FIXME it's possible I got currency for some fields wrong. class Gillbus class Commission extend Fields include UpdateAttrs # Collecting type field :type # Symbolic collecting code field :code # Collecting description field :description # Value of collecting in sale currency field :value, :sale_money # VAT rate field :vat_value # Value of collecting VAT in sale currency field :vat, :sale_money # Collecting currency field :currency # Exchange rate of collecting to sale currency field :rate # Value of collecting in currency in which it is brought field :value_in_currency, :collecting_money # Value of collecting VAT in currency in which it is brought field :vat_in_currency, :collecting_money # The return amount from collecting in sale currency (w/o VAT) field :return_value, :sale_money # The return amount from collecting VAT in sale currency field :return_vat, :sale_money # The return amount from collecting in currency in which it is brought (w/o VAT) field :return_value_in_currency, :collecting_money # The return amount from collecting VAT in currency in which it is brought. field :return_vat_in_currency, :collecting_money parser do def sale_money(val) Monetize.parse(val, @parent.sale_cur_code) end def collecting_money(val) Monetize.parse(val, doc['CURRENCY']) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gillbus-0.16.1 | lib/gillbus/structs/commission.rb |