Sha256: baf11c283f1fc1548d484d466d61b0f48556af1e28d0757e47da0830bfaa25e4

Contents?: true

Size: 1.35 KB

Versions: 7

Compression:

Stored size: 1.35 KB

Contents

module MoneyS3
  module Parsers
    class DoklRefType
      include ParserCore::BaseParser

      def id_dokladu
        at 'IDDokladu'
      end

      def id_dokladu_attributes
        attributes_at 'IDDokladu'
      end

      def cislo_dokladu
        at 'CisloDokladu'
      end

      def cislo_dokladu_attributes
        attributes_at 'CisloDokladu'
      end

      def druh_dokladu
        at 'DruhDokladu'
      end

      def druh_dokladu_attributes
        attributes_at 'DruhDokladu'
      end

      def rok
        at 'Rok'
      end

      def rok_attributes
        attributes_at 'Rok'
      end

      def eet
        submodel_at(EETType, 'EET')
      end

      def to_h
        hash = {}
        hash[:attributes] = attributes

        hash[:id_dokladu] = id_dokladu if has? 'IDDokladu'
        hash[:id_dokladu_attributes] = id_dokladu_attributes if has? 'IDDokladu'
        hash[:cislo_dokladu] = cislo_dokladu if has? 'CisloDokladu'
        hash[:cislo_dokladu_attributes] = cislo_dokladu_attributes if has? 'CisloDokladu'
        hash[:druh_dokladu] = druh_dokladu if has? 'DruhDokladu'
        hash[:druh_dokladu_attributes] = druh_dokladu_attributes if has? 'DruhDokladu'
        hash[:rok] = rok if has? 'Rok'
        hash[:rok_attributes] = rok_attributes if has? 'Rok'
        hash[:eet] = eet.to_h if has? 'EET'

        hash
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
money_s3-2.4.1 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-2.4.0 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-2.3.0 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-2.2.0 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-2.1.0 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-2.0.0 lib/money_s3/parsers/dokl_ref_type.rb
money_s3-1.0.0 lib/money_s3/parsers/dokl_ref_type.rb