Sha256: 9aae7b6bd5f3113939205042113ac1272dfaf6e4ac212434ca10bd7ae8b5af7b
Contents?: true
Size: 800 Bytes
Versions: 1
Compression:
Stored size: 800 Bytes
Contents
module MoneyS3 module Builders class DalsiSazba include ParserCore::BaseBuilder def builder root = Ox::Element.new(name) if data.key? :attributes data[:attributes].each { |k, v| root[k] = v } end root << build_element('Popis', data[:popis], data[:popis_attributes]) if data.key? :popis root << build_element('HladinaDPH', data[:hladina_dph], data[:hladina_dph_attributes]) if data.key? :hladina_dph root << build_element('Sazba', data[:sazba], data[:sazba_attributes]) if data.key? :sazba root << build_element('Zaklad', data[:zaklad], data[:zaklad_attributes]) if data.key? :zaklad root << build_element('DPH', data[:dph], data[:dph_attributes]) if data.key? :dph root end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
money_s3-1.0.0 | lib/money_s3/builders/dalsi_sazba.rb |