Class: MoneyS3::Builders::VazbaType

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseBuilder
Defined in:
lib/money_s3/builders/vazba_type.rb

Instance Method Summary collapse

Instance Method Details

#builderObject



6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/money_s3/builders/vazba_type.rb', line 6

def builder
  root = Ox::Element.new(name)
  root = add_attributes_and_namespaces(root)

  root << build_element('Typ', data[:typ], data[:typ_attributes]) if data.key? :typ
  root << build_element('PodTyp', data[:pod_typ], data[:pod_typ_attributes]) if data.key? :pod_typ
  if data.key? :doklad
    root << Doklad.new('Doklad', data[:doklad]).builder
  end

  root
end