Sha256: 4ae37581aec67ce00fda8370d8dfc87a706eccc284feae2a791822e23363d240
Contents?: true
Size: 924 Bytes
Versions: 1
Compression:
Stored size: 924 Bytes
Contents
module MoneyS3 module Parsers class MsgSklDoklType < MessageType include ParserCore::BaseParser def dod_odb submodel_at(MsgFirmaType, 'DodOdb') end def konec_prij submodel_at(MsgFirmaType, 'KonecPrij') end def polozka array_of_at(MsgPolozType, ['Polozka']) end def nep_platba array_of_at(MessageType, ['NepPlatba']) end def data submodel_at(SklDoklType, 'Data') end def to_h hash = {} hash[:attributes] = attributes hash[:dod_odb] = dod_odb.to_h if has? 'DodOdb' hash[:konec_prij] = konec_prij.to_h if has? 'KonecPrij' hash[:polozka] = polozka.map(&:to_h) if has? 'Polozka' hash[:nep_platba] = nep_platba.map(&:to_h) if has? 'NepPlatba' hash[:data] = data.to_h if has? 'Data' hash super.merge(hash) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
money_s3-1.0.0 | lib/money_s3/parsers/msg_skl_dokl_type.rb |