Sha256: c11b35498c0b807bec47aa1b14c794acbd6f3b7237297a26fbf6309dd7523c37

Contents?: true

Size: 1.65 KB

Versions: 2

Compression:

Stored size: 1.65 KB

Contents

module MoneyS3
  module Parsers
    class Castky
      include ParserCore::BaseParser

      def celkem
        at 'Celkem'
      end

      def zaklad_0
        at 'Zaklad_0'
      end

      def zaklad_1
        at 'Zaklad_1'
      end

      def zaklad_2
        at 'Zaklad_2'
      end

      def zaklad_3
        at 'Zaklad_3'
      end

      def dph_1
        at 'DPH_1'
      end

      def dph_2
        at 'DPH_2'
      end

      def dph_3
        at 'DPH_3'
      end

      def cest_sluzba
        at 'CestSluzba'
      end

      def pouz_zb_1
        at 'PouzZb_1'
      end

      def pouz_zb_2
        at 'PouzZb_2'
      end

      def pouz_zb_3
        at 'PouzZb_3'
      end

      def urc_cerp_zct
        at 'UrcCerpZct'
      end

      def cerp_zuct
        at 'CerpZuct'
      end

      def to_h_with_attrs
        hash = ParserCore::HashWithAttributes.new({}, attributes)

        hash[:celkem] = celkem if has? 'Celkem'
        hash[:zaklad_0] = zaklad_0 if has? 'Zaklad_0'
        hash[:zaklad_1] = zaklad_1 if has? 'Zaklad_1'
        hash[:zaklad_2] = zaklad_2 if has? 'Zaklad_2'
        hash[:zaklad_3] = zaklad_3 if has? 'Zaklad_3'
        hash[:dph_1] = dph_1 if has? 'DPH_1'
        hash[:dph_2] = dph_2 if has? 'DPH_2'
        hash[:dph_3] = dph_3 if has? 'DPH_3'
        hash[:cest_sluzba] = cest_sluzba if has? 'CestSluzba'
        hash[:pouz_zb_1] = pouz_zb_1 if has? 'PouzZb_1'
        hash[:pouz_zb_2] = pouz_zb_2 if has? 'PouzZb_2'
        hash[:pouz_zb_3] = pouz_zb_3 if has? 'PouzZb_3'
        hash[:urc_cerp_zct] = urc_cerp_zct if has? 'UrcCerpZct'
        hash[:cerp_zuct] = cerp_zuct if has? 'CerpZuct'

        hash
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
money_s3-0.12.0 lib/money_s3/parsers/castky.rb
money_s3-0.11.0 lib/money_s3/parsers/castky.rb