Class: MoneyS3::Parsers::UcOsnovaType
- Inherits:
-
Object
- Object
- MoneyS3::Parsers::UcOsnovaType
- Includes:
- ParserCore::BaseParser
- Defined in:
- lib/money_s3/parsers/uc_osnova_type.rb
Instance Method Summary collapse
- #druh_cin ⇒ Object
- #druh_cin_attributes ⇒ Object
- #druh_uctu ⇒ Object
- #druh_uctu_attributes ⇒ Object
- #nazev ⇒ Object
- #nazev_attributes ⇒ Object
- #opravky ⇒ Object
- #opravky_attributes ⇒ Object
- #pozn ⇒ Object
- #pozn_attributes ⇒ Object
- #radek ⇒ Object
- #radek_attributes ⇒ Object
- #radek_zkr ⇒ Object
- #radek_zkr_attributes ⇒ Object
- #saldo ⇒ Object
- #saldo_attributes ⇒ Object
- #technicky ⇒ Object
- #technicky_attributes ⇒ Object
- #to_h ⇒ Object
- #typ ⇒ Object
- #typ_attributes ⇒ Object
- #uc_prev ⇒ Object
- #uc_prev_attributes ⇒ Object
- #ucet ⇒ Object
- #ucet_attributes ⇒ Object
- #ucet_pod_typ ⇒ Object
- #ucet_pod_typ_attributes ⇒ Object
- #ucet_typ ⇒ Object
- #ucet_typ_attributes ⇒ Object
- #vnitro ⇒ Object
- #vnitro_attributes ⇒ Object
Instance Method Details
#druh_cin ⇒ Object
118 119 120 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 118 def druh_cin at 'DruhCin' end |
#druh_cin_attributes ⇒ Object
122 123 124 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 122 def druh_cin_attributes attributes_at 'DruhCin' end |
#druh_uctu ⇒ Object
70 71 72 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 70 def druh_uctu at 'DruhUctu' end |
#druh_uctu_attributes ⇒ Object
74 75 76 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 74 def druh_uctu_attributes attributes_at 'DruhUctu' end |
#nazev ⇒ Object
14 15 16 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 14 def nazev at 'Nazev' end |
#nazev_attributes ⇒ Object
18 19 20 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 18 def nazev_attributes attributes_at 'Nazev' end |
#opravky ⇒ Object
110 111 112 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 110 def opravky at 'Opravky' end |
#opravky_attributes ⇒ Object
114 115 116 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 114 def opravky_attributes attributes_at 'Opravky' end |
#pozn ⇒ Object
54 55 56 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 54 def pozn at 'Pozn' end |
#pozn_attributes ⇒ Object
58 59 60 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 58 def pozn_attributes attributes_at 'Pozn' end |
#radek ⇒ Object
38 39 40 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 38 def radek at 'Radek' end |
#radek_attributes ⇒ Object
42 43 44 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 42 def radek_attributes attributes_at 'Radek' end |
#radek_zkr ⇒ Object
62 63 64 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 62 def radek_zkr at 'RadekZkr' end |
#radek_zkr_attributes ⇒ Object
66 67 68 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 66 def radek_zkr_attributes attributes_at 'RadekZkr' end |
#saldo ⇒ Object
30 31 32 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 30 def saldo at 'Saldo' end |
#saldo_attributes ⇒ Object
34 35 36 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 34 def saldo_attributes attributes_at 'Saldo' end |
#technicky ⇒ Object
102 103 104 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 102 def technicky at 'Technicky' end |
#technicky_attributes ⇒ Object
106 107 108 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 106 def technicky_attributes attributes_at 'Technicky' end |
#to_h ⇒ Object
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 |
#typ ⇒ Object
22 23 24 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 22 def typ at 'Typ' end |
#typ_attributes ⇒ Object
26 27 28 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 26 def typ_attributes attributes_at 'Typ' end |
#uc_prev ⇒ Object
46 47 48 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 46 def uc_prev at 'UcPrev' end |
#uc_prev_attributes ⇒ Object
50 51 52 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 50 def uc_prev_attributes attributes_at 'UcPrev' end |
#ucet ⇒ Object
6 7 8 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 6 def ucet at 'Ucet' end |
#ucet_attributes ⇒ Object
10 11 12 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 10 def ucet_attributes attributes_at 'Ucet' end |
#ucet_pod_typ ⇒ Object
86 87 88 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 86 def ucet_pod_typ at 'UcetPodTyp' end |
#ucet_pod_typ_attributes ⇒ Object
90 91 92 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 90 def ucet_pod_typ_attributes attributes_at 'UcetPodTyp' end |
#ucet_typ ⇒ Object
78 79 80 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 78 def ucet_typ at 'UcetTyp' end |
#ucet_typ_attributes ⇒ Object
82 83 84 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 82 def ucet_typ_attributes attributes_at 'UcetTyp' end |
#vnitro ⇒ Object
94 95 96 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 94 def vnitro at 'Vnitro' end |
#vnitro_attributes ⇒ Object
98 99 100 |
# File 'lib/money_s3/parsers/uc_osnova_type.rb', line 98 def vnitro_attributes attributes_at 'Vnitro' end |