Sha256: abb258f8e106e0b79317541ad9fdd5e75fa7cd2ba36fc0fd6459b732abad78fd

Contents?: true

Size: 1.96 KB

Versions: 1

Compression:

Stored size: 1.96 KB

Contents

module MoneyS3
  module Builders
    class PC
      include ParserCore::BaseBuilder

      def builder
        root = Ox::Element.new(name)
        if data.key? :attributes
          data[:attributes].each { |k, v| root[k] = v }
        end

        if data.key? :hladina
          root << CenovaHladinaType.new('Hladina', data[:hladina]).builder
        end
        root << build_element('DealerSkupina', data[:dealer_skupina], data[:dealer_skupina_attributes]) if data.key? :dealer_skupina
        root << build_element('SDPH', data[:sdph], data[:sdph_attributes]) if data.key? :sdph
        root << build_element('Zaok', data[:zaok], data[:zaok_attributes]) if data.key? :zaok
        root << build_element('ZpusobZao', data[:zpusob_zao], data[:zpusob_zao_attributes]) if data.key? :zpusob_zao
        if data.key? :mena
          root << MenaType.new('Mena', data[:mena]).builder
        end
        root << build_element('VypPrCeny', data[:vyp_pr_ceny], data[:vyp_pr_ceny_attributes]) if data.key? :vyp_pr_ceny
        root << build_element('VychA', data[:vych_a], data[:vych_a_attributes]) if data.key? :vych_a
        root << build_element('ZpusobZmA', data[:zpusob_zm_a], data[:zpusob_zm_a_attributes]) if data.key? :zpusob_zm_a
        root << build_element('VychB', data[:vych_b], data[:vych_b_attributes]) if data.key? :vych_b
        root << build_element('ZpusobZmB', data[:zpusob_zm_b], data[:zpusob_zm_b_attributes]) if data.key? :zpusob_zm_b
        if data.key? :cena1
          root << CenaType.new('Cena1', data[:cena1]).builder
        end
        if data.key? :cena2
          root << CenaType.new('Cena2', data[:cena2]).builder
        end
        if data.key? :cena3
          root << CenaType.new('Cena3', data[:cena3]).builder
        end
        if data.key? :cena4
          root << CenaType.new('Cena4', data[:cena4]).builder
        end
        if data.key? :cena5
          root << CenaType.new('Cena5', data[:cena5]).builder
        end

        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/pc.rb