Sha256: 41fec2731abf3f26171d136d789eabd1ac9c0f5dad74e8f7c4c3cc353aebc78a
Contents?: true
Size: 1.25 KB
Versions: 6
Compression:
Stored size: 1.25 KB
Contents
module MoneyS3 module Builders class ZauctovaniDPHType include ParserCore::BaseBuilder def builder root = Ox::Element.new(name) root = add_attributes_and_namespaces(root) root << build_element('Zkrat', data[:zkrat], data[:zkrat_attributes]) if data.key? :zkrat root << build_element('Typ', data[:typ], data[:typ_attributes]) if data.key? :typ root << build_element('Popis', data[:popis], data[:popis_attributes]) if data.key? :popis root << build_element('SDUcMD', data[:sd_uc_md], data[:sd_uc_md_attributes]) if data.key? :sd_uc_md root << build_element('SDUcD', data[:sd_uc_d], data[:sd_uc_d_attributes]) if data.key? :sd_uc_d root << build_element('ZDUcMD', data[:zd_uc_md], data[:zd_uc_md_attributes]) if data.key? :zd_uc_md root << build_element('ZDUcD', data[:zd_uc_d], data[:zd_uc_d_attributes]) if data.key? :zd_uc_d root << build_element('Pozn', data[:pozn], data[:pozn_attributes]) if data.key? :pozn if data.key? :seznam_obdobi_dph element = Ox::Element.new('SeznamObdobiDPH') data[:seznam_obdobi_dph].each { |i| element << ObdobiDPH.new('ObdobiDPH', i).builder } root << element end root end end end end
Version data entries
6 entries across 6 versions & 1 rubygems