class Pohoda::Builders::Typ::AddressType
Public Instance Methods
builder()
click to toggle source
# File lib/pohoda/builders/typ/address_type.rb, line 7 def builder root = Ox::Element.new(name) root = add_attributes_and_namespaces(root) root << build_element('typ:company', data[:company], data[:company_attributes]) if data.key? :company root << build_element('typ:division', data[:division], data[:division_attributes]) if data.key? :division root << build_element('typ:name', data[:name], data[:name_attributes]) if data.key? :name root << build_element('typ:city', data[:city], data[:city_attributes]) if data.key? :city root << build_element('typ:street', data[:street], data[:street_attributes]) if data.key? :street root << build_element('typ:zip', data[:zip], data[:zip_attributes]) if data.key? :zip root << build_element('typ:ico', data[:ico], data[:ico_attributes]) if data.key? :ico root << build_element('typ:dic', data[:dic], data[:dic_attributes]) if data.key? :dic root << build_element('typ:VATPayerType', data[:vat_payer_type], data[:vat_payer_type_attributes]) if data.key? :vat_payer_type root << build_element('typ:icDph', data[:ic_dph], data[:ic_dph_attributes]) if data.key? :ic_dph if data.key? :country root << Typ::RefType.new('typ:country', data[:country]).builder end root << build_element('typ:phone', data[:phone], data[:phone_attributes]) if data.key? :phone root << build_element('typ:mobilPhone', data[:mobil_phone], data[:mobil_phone_attributes]) if data.key? :mobil_phone root << build_element('typ:fax', data[:fax], data[:fax_attributes]) if data.key? :fax root << build_element('typ:email', data[:email], data[:email_attributes]) if data.key? :email root end