Sha256: c0ef5092ca83267111d1abc88ba5cc406ebd1d6a1d80f8b06d9122464c52b027

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

require 'money_s3/parsers/base_parser'

module MoneyS3
  module Parsers
    class Doklad
      include BaseParser

      def druh
        at 'Druh'
      end

      def cislo
        at 'Cislo'
      end

      def guid
        at 'GUID'
      end

      def prijat_dokl
        at 'PrijatDokl'
      end

      def var_symbol
        at 'VarSymbol'
      end

      def vystaveno
        at 'Vystaveno'
      end

      def dat_uc_pr
        at 'DatUcPr'
      end

      def plneno_dph
        at 'PlnenoDPH'
      end

      def to_h
        hash = WithAttributes.new({})
        hash.attributes = attributes

        hash[:druh] = druh if has? 'Druh'
        hash[:cislo] = cislo if has? 'Cislo'
        hash[:guid] = guid if has? 'GUID'
        hash[:prijat_dokl] = prijat_dokl if has? 'PrijatDokl'
        hash[:var_symbol] = var_symbol if has? 'VarSymbol'
        hash[:vystaveno] = vystaveno if has? 'Vystaveno'
        hash[:dat_uc_pr] = dat_uc_pr if has? 'DatUcPr'
        hash[:plneno_dph] = plneno_dph if has? 'PlnenoDPH'

        hash
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
money_s3-0.6.0 lib/money_s3/parsers/doklad.rb