Sha256: 2dbbec418d5ceaba404e607c84851622658e48d2bccc467d1481b6d9cbccdbd8
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
require 'money_s3/parsers/base_parser' require 'money_s3/parsers/obdobi_dph' module MoneyS3 module Parsers class ZauctovaniDPHDetype include BaseParser def zkrat at 'Zkrat' end def typ at 'Typ' end def popis at 'Popis' end def poh_dss at 'PohDSS' end def poh_dzs at 'PohDZS' end def pozn at 'Pozn' end def seznam_obdobi_dph array_of_at(ObdobiDPH, ['SeznamObdobiDPH', 'ObdobiDPH']) end def to_h hash = WithAttributes.new({}) hash.attributes = attributes hash[:zkrat] = zkrat if has? 'Zkrat' hash[:typ] = typ if has? 'Typ' hash[:popis] = popis if has? 'Popis' hash[:poh_dss] = poh_dss if has? 'PohDSS' hash[:poh_dzs] = poh_dzs if has? 'PohDZS' hash[:pozn] = pozn if has? 'Pozn' hash[:seznam_obdobi_dph] = seznam_obdobi_dph.map(&:to_h) if has? 'SeznamObdobiDPH' 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/zauctovani_dph_detype.rb |