Class: MoneyS3::Parsers::UcOsnovaType

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseParser
Defined in:
lib/money_s3/parsers/uc_osnova_type.rb

Instance Method Summary collapse

Instance Method Details

#druh_cinObject



118
119
120
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 118

def druh_cin
  at 'DruhCin'
end

#druh_cin_attributesObject



122
123
124
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 122

def druh_cin_attributes
  attributes_at 'DruhCin'
end

#druh_uctuObject



70
71
72
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 70

def druh_uctu
  at 'DruhUctu'
end

#druh_uctu_attributesObject



74
75
76
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 74

def druh_uctu_attributes
  attributes_at 'DruhUctu'
end

#nazevObject



14
15
16
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 14

def nazev
  at 'Nazev'
end

#nazev_attributesObject



18
19
20
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 18

def nazev_attributes
  attributes_at 'Nazev'
end

#opravkyObject



110
111
112
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 110

def opravky
  at 'Opravky'
end

#opravky_attributesObject



114
115
116
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 114

def opravky_attributes
  attributes_at 'Opravky'
end

#poznObject



54
55
56
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 54

def pozn
  at 'Pozn'
end

#pozn_attributesObject



58
59
60
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 58

def pozn_attributes
  attributes_at 'Pozn'
end

#radekObject



38
39
40
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 38

def radek
  at 'Radek'
end

#radek_attributesObject



42
43
44
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 42

def radek_attributes
  attributes_at 'Radek'
end

#radek_zkrObject



62
63
64
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 62

def radek_zkr
  at 'RadekZkr'
end

#radek_zkr_attributesObject



66
67
68
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 66

def radek_zkr_attributes
  attributes_at 'RadekZkr'
end

#saldoObject



30
31
32
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 30

def saldo
  at 'Saldo'
end

#saldo_attributesObject



34
35
36
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 34

def saldo_attributes
  attributes_at 'Saldo'
end

#technickyObject



102
103
104
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 102

def technicky
  at 'Technicky'
end

#technicky_attributesObject



106
107
108
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 106

def technicky_attributes
  attributes_at 'Technicky'
end

#to_hObject



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 126

def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:ucet] = ucet if has? 'Ucet'
  hash[:ucet_attributes] = ucet_attributes if has? 'Ucet'
  hash[:nazev] = nazev if has? 'Nazev'
  hash[:nazev_attributes] = nazev_attributes if has? 'Nazev'
  hash[:typ] = typ if has? 'Typ'
  hash[:typ_attributes] = typ_attributes if has? 'Typ'
  hash[:saldo] = saldo if has? 'Saldo'
  hash[:saldo_attributes] = saldo_attributes if has? 'Saldo'
  hash[:radek] = radek if has? 'Radek'
  hash[:radek_attributes] = radek_attributes if has? 'Radek'
  hash[:uc_prev] = uc_prev if has? 'UcPrev'
  hash[:uc_prev_attributes] = uc_prev_attributes if has? 'UcPrev'
  hash[:pozn] = pozn if has? 'Pozn'
  hash[:pozn_attributes] = pozn_attributes if has? 'Pozn'
  hash[:radek_zkr] = radek_zkr if has? 'RadekZkr'
  hash[:radek_zkr_attributes] = radek_zkr_attributes if has? 'RadekZkr'
  hash[:druh_uctu] = druh_uctu if has? 'DruhUctu'
  hash[:druh_uctu_attributes] = druh_uctu_attributes if has? 'DruhUctu'
  hash[:ucet_typ] = ucet_typ if has? 'UcetTyp'
  hash[:ucet_typ_attributes] = ucet_typ_attributes if has? 'UcetTyp'
  hash[:ucet_pod_typ] = ucet_pod_typ if has? 'UcetPodTyp'
  hash[:ucet_pod_typ_attributes] = ucet_pod_typ_attributes if has? 'UcetPodTyp'
  hash[:vnitro] = vnitro if has? 'Vnitro'
  hash[:vnitro_attributes] = vnitro_attributes if has? 'Vnitro'
  hash[:technicky] = technicky if has? 'Technicky'
  hash[:technicky_attributes] = technicky_attributes if has? 'Technicky'
  hash[:opravky] = opravky if has? 'Opravky'
  hash[:opravky_attributes] = opravky_attributes if has? 'Opravky'
  hash[:druh_cin] = druh_cin if has? 'DruhCin'
  hash[:druh_cin_attributes] = druh_cin_attributes if has? 'DruhCin'

  hash
end

#typObject



22
23
24
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 22

def typ
  at 'Typ'
end

#typ_attributesObject



26
27
28
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 26

def typ_attributes
  attributes_at 'Typ'
end

#uc_prevObject



46
47
48
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 46

def uc_prev
  at 'UcPrev'
end

#uc_prev_attributesObject



50
51
52
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 50

def uc_prev_attributes
  attributes_at 'UcPrev'
end

#ucetObject



6
7
8
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 6

def ucet
  at 'Ucet'
end

#ucet_attributesObject



10
11
12
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 10

def ucet_attributes
  attributes_at 'Ucet'
end

#ucet_pod_typObject



86
87
88
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 86

def ucet_pod_typ
  at 'UcetPodTyp'
end

#ucet_pod_typ_attributesObject



90
91
92
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 90

def ucet_pod_typ_attributes
  attributes_at 'UcetPodTyp'
end

#ucet_typObject



78
79
80
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 78

def ucet_typ
  at 'UcetTyp'
end

#ucet_typ_attributesObject



82
83
84
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 82

def ucet_typ_attributes
  attributes_at 'UcetTyp'
end

#vnitroObject



94
95
96
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 94

def vnitro
  at 'Vnitro'
end

#vnitro_attributesObject



98
99
100
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 98

def vnitro_attributes
  attributes_at 'Vnitro'
end