Sha256: 8874762aa07c75ca3f32f4508b28accf22d86666012cc7caef84f51b663bf50a
Contents?: true
Size: 560 Bytes
Versions: 6
Compression:
Stored size: 560 Bytes
Contents
module MoneyS3 module Builders class Valuty2 include ParserCore::BaseBuilder def builder root = Ox::Element.new(name) root = add_attributes_and_namespaces(root) if data.key? :mena root << MenaType.new('Mena', data[:mena]).builder end if data.key? :souhrn_dph root << SouhrnDPHType.new('SouhrnDPH', data[:souhrn_dph]).builder end root << build_element('Celkem', data[:celkem], data[:celkem_attributes]) if data.key? :celkem root end end end end
Version data entries
6 entries across 6 versions & 1 rubygems