Sha256: 65d30c76f7c6fc42c81fce3350a993c50bef374faf7aa43437fb96eae039e93e
Contents?: true
Size: 895 Bytes
Versions: 1
Compression:
Stored size: 895 Bytes
Contents
module MoneyS3 module Parsers class Import < 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(MsgFaktPolozType, ['Polozka']) end def uhrada array_of_at(MessageType, ['Uhrada']) end def data submodel_at(Data, '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[:uhrada] = uhrada.map(&:to_h) if has? 'Uhrada' 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/import.rb |