money_xml_validator 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.gitmodules +3 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/money_xml_validator.rb +18 -0
- data/lib/money_xml_validator/money_xsd/Dochazka/Dochazka.xsd +295 -0
- data/lib/money_xml_validator/money_xsd/Dochazka/Zamestnanci.xsd +202 -0
- data/lib/money_xml_validator/money_xsd/EPO/EPO_Error.xsd +61 -0
- data/lib/money_xml_validator/money_xsd/EPO/EPO_Success.xsd +183 -0
- data/lib/money_xml_validator/money_xsd/README.md +5 -0
- data/lib/money_xml_validator/money_xsd/_Document.xsd +912 -0
- data/lib/money_xml_validator/money_xsd/_Export.xsd +45 -0
- data/lib/money_xml_validator/money_xsd/_Import.xsd +94 -0
- data/lib/money_xml_validator/money_xsd/_Report.xsd +793 -0
- data/lib/money_xml_validator/money_xsd/__Comtypes.xsd +706 -0
- data/lib/money_xml_validator/money_xsd/__Faktura.xsd +1097 -0
- data/lib/money_xml_validator/money_xsd/__Firma.xsd +1705 -0
- data/lib/money_xml_validator/money_xsd/__IntDokl.xsd +397 -0
- data/lib/money_xml_validator/money_xsd/__InvDokl.xsd +150 -0
- data/lib/money_xml_validator/money_xsd/__Mzda.xsd +240 -0
- data/lib/money_xml_validator/money_xsd/__Objedn.xsd +865 -0
- data/lib/money_xml_validator/money_xsd/__Seznamy.xsd +1721 -0
- data/lib/money_xml_validator/money_xsd/__SklDokl.xsd +674 -0
- data/lib/money_xml_validator/money_xsd/__UcDokl.xsd +1869 -0
- data/lib/money_xml_validator/money_xsd/__Uhrady.xsd +230 -0
- data/lib/money_xml_validator/money_xsd/__Vyroba.xsd +193 -0
- data/lib/money_xml_validator/money_xsd/__Zakazka.xsd +165 -0
- data/lib/money_xml_validator/money_xsd/__Zamestnanec.xsd +145 -0
- data/lib/money_xml_validator/money_xsd/__Zasoba.xsd +1317 -0
- data/lib/money_xml_validator/money_xsd/all_schemas.zip +0 -0
- data/money_xml_validator.gemspec +25 -0
- metadata +123 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 80bb2680821e0297ccb3fc2a0c0dc6907adb3edb
|
4
|
+
data.tar.gz: 4f715b920b49ca2d5efc8d2eb57d0a323a7d5318
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 29650791298241c66a548524a851ac87e03861e1f24c05fab81e17f72a4e7e242ceffbb7f0892c447e2d0170a87f7e0fcf5e48aba3b7ad177a8973e988aae848
|
7
|
+
data.tar.gz: 806647ab751de7a62a6b4732ef2f2531419a7b8a7509b4c1893070cb2cf2f62758b91e0a1f427e138db4d6e2e36dad40aade62949b50eeb4349790835d095b73
|
data/.gitignore
ADDED
data/.gitmodules
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Premysl Donat
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# MoneyXmlValidator
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/money_xml_validator`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'money_xml_validator'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install money_xml_validator
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/money_xml_validator.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "money_xml_validator"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module MoneyXmlValidator
|
4
|
+
def self.validate(utf_source)
|
5
|
+
gem_root = File.expand_path("../..", __FILE__)
|
6
|
+
|
7
|
+
path = "#{gem_root}/lib/money_xml_validator/money_xsd/_Document.xsd"
|
8
|
+
io = File.open(path)
|
9
|
+
schema = Nokogiri::XML::Schema(io)
|
10
|
+
|
11
|
+
doc = Nokogiri::XML(utf_source)
|
12
|
+
|
13
|
+
|
14
|
+
errors = schema.validate(doc)
|
15
|
+
|
16
|
+
errors
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,295 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Schéma popisuje strukturu XML dokumentu určeného pro import dat z docházkového systému do programu Money.
|
3
|
+
Autor: Marek Vykydal
|
4
|
+
-->
|
5
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
6
|
+
<xs:annotation>
|
7
|
+
<xs:documentation>Schéma popisuje strukturu XML dokumentu určeného pro import dat z docházkového systému do programu Money.</xs:documentation>
|
8
|
+
</xs:annotation>
|
9
|
+
<xs:element name="MoneyData">
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>Kořenový element dokumentu</xs:documentation>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:complexType>
|
14
|
+
<xs:sequence>
|
15
|
+
<xs:element name="Obdobi">
|
16
|
+
<xs:annotation>
|
17
|
+
<xs:documentation>Období zpracování mzdy
|
18
|
+
|
19
|
+
Poznámka: v jedné dávce může být pouze jedno období</xs:documentation>
|
20
|
+
</xs:annotation>
|
21
|
+
<xs:complexType>
|
22
|
+
<xs:sequence>
|
23
|
+
<xs:element name="Mesic">
|
24
|
+
<xs:annotation>
|
25
|
+
<xs:documentation>Měsíc</xs:documentation>
|
26
|
+
</xs:annotation>
|
27
|
+
<xs:simpleType>
|
28
|
+
<xs:restriction base="xs:string">
|
29
|
+
<xs:length value="2"/>
|
30
|
+
<xs:pattern value="[0-1][0-9]"/>
|
31
|
+
</xs:restriction>
|
32
|
+
</xs:simpleType>
|
33
|
+
</xs:element>
|
34
|
+
<xs:element name="Rok" type="xs:gYear">
|
35
|
+
<xs:annotation>
|
36
|
+
<xs:documentation>Rok</xs:documentation>
|
37
|
+
</xs:annotation>
|
38
|
+
</xs:element>
|
39
|
+
</xs:sequence>
|
40
|
+
</xs:complexType>
|
41
|
+
</xs:element>
|
42
|
+
<xs:element name="SeznamZamestnancu" minOccurs="0">
|
43
|
+
<xs:annotation>
|
44
|
+
<xs:documentation>Seznam zaměstnanců</xs:documentation>
|
45
|
+
</xs:annotation>
|
46
|
+
<xs:complexType>
|
47
|
+
<xs:sequence>
|
48
|
+
<xs:element name="Zamestnanec" minOccurs="0" maxOccurs="unbounded">
|
49
|
+
<xs:annotation>
|
50
|
+
<xs:documentation>Zaměstnanec</xs:documentation>
|
51
|
+
</xs:annotation>
|
52
|
+
<xs:complexType>
|
53
|
+
<xs:complexContent>
|
54
|
+
<xs:extension base="zamestnanec"/>
|
55
|
+
</xs:complexContent>
|
56
|
+
</xs:complexType>
|
57
|
+
</xs:element>
|
58
|
+
</xs:sequence>
|
59
|
+
</xs:complexType>
|
60
|
+
</xs:element>
|
61
|
+
</xs:sequence>
|
62
|
+
</xs:complexType>
|
63
|
+
</xs:element>
|
64
|
+
<xs:complexType name="zamestnanec">
|
65
|
+
<xs:annotation>
|
66
|
+
<xs:documentation>Identifikace zaměstnance</xs:documentation>
|
67
|
+
</xs:annotation>
|
68
|
+
<xs:sequence>
|
69
|
+
<xs:element name="OsobniCislo">
|
70
|
+
<xs:annotation>
|
71
|
+
<xs:documentation>Osobní číslo zaměstnance</xs:documentation>
|
72
|
+
</xs:annotation>
|
73
|
+
<xs:simpleType>
|
74
|
+
<xs:restriction base="xs:string">
|
75
|
+
<xs:length value="5"/>
|
76
|
+
</xs:restriction>
|
77
|
+
</xs:simpleType>
|
78
|
+
</xs:element>
|
79
|
+
<xs:element name="SeznamNepritomnosti" minOccurs="0">
|
80
|
+
<xs:annotation>
|
81
|
+
<xs:documentation>Seznam nepřítomností zaměstnance</xs:documentation>
|
82
|
+
</xs:annotation>
|
83
|
+
<xs:complexType>
|
84
|
+
<xs:sequence>
|
85
|
+
<xs:element name="Nepritomnost" type="nepritomnost" minOccurs="0" maxOccurs="unbounded">
|
86
|
+
<xs:annotation>
|
87
|
+
<xs:documentation>Nepřítomnost</xs:documentation>
|
88
|
+
</xs:annotation>
|
89
|
+
</xs:element>
|
90
|
+
</xs:sequence>
|
91
|
+
</xs:complexType>
|
92
|
+
</xs:element>
|
93
|
+
<xs:element name="PracovniFond" minOccurs="0">
|
94
|
+
<xs:annotation>
|
95
|
+
<xs:documentation>Pracovní fond (bez svátků připadajících na pracovní den)
|
96
|
+
|
97
|
+
Poznámka: v některých docházkových systémech se pracovní fond volitelně neeviduje, proto je element nepovinný.</xs:documentation>
|
98
|
+
</xs:annotation>
|
99
|
+
<xs:complexType>
|
100
|
+
<xs:sequence>
|
101
|
+
<xs:element name="FondDnu" type="cisloType">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>Pracovní fond - dnů</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
</xs:element>
|
106
|
+
<xs:element name="FondHodin" type="cisloType">
|
107
|
+
<xs:annotation>
|
108
|
+
<xs:documentation>Pracovní fond - hodin</xs:documentation>
|
109
|
+
</xs:annotation>
|
110
|
+
</xs:element>
|
111
|
+
</xs:sequence>
|
112
|
+
</xs:complexType>
|
113
|
+
</xs:element>
|
114
|
+
<xs:element name="Odpracovano">
|
115
|
+
<xs:annotation>
|
116
|
+
<xs:documentation>Odpracováno = výkon práce (bez svátků připadajících na pracovní den)</xs:documentation>
|
117
|
+
</xs:annotation>
|
118
|
+
<xs:complexType>
|
119
|
+
<xs:sequence>
|
120
|
+
<xs:element name="OdpracDnu" type="cisloType">
|
121
|
+
<xs:annotation>
|
122
|
+
<xs:documentation>Odpracováno dnů</xs:documentation>
|
123
|
+
</xs:annotation>
|
124
|
+
</xs:element>
|
125
|
+
<xs:element name="OdpracHodin" type="cisloType">
|
126
|
+
<xs:annotation>
|
127
|
+
<xs:documentation>Odpracováno hodin</xs:documentation>
|
128
|
+
</xs:annotation>
|
129
|
+
</xs:element>
|
130
|
+
</xs:sequence>
|
131
|
+
</xs:complexType>
|
132
|
+
</xs:element>
|
133
|
+
<xs:element name="Svatky" minOccurs="0">
|
134
|
+
<xs:annotation>
|
135
|
+
<xs:documentation>Svátky připadající na pracovní den, ve kterých zaměstnanec pracoval</xs:documentation>
|
136
|
+
</xs:annotation>
|
137
|
+
<xs:complexType>
|
138
|
+
<xs:sequence>
|
139
|
+
<xs:element name="OdpracDnu" type="cisloType">
|
140
|
+
<xs:annotation>
|
141
|
+
<xs:documentation>Počet odpracovaných dnů ve svátcích</xs:documentation>
|
142
|
+
</xs:annotation>
|
143
|
+
</xs:element>
|
144
|
+
<xs:element name="OdpracHodin" type="cisloType">
|
145
|
+
<xs:annotation>
|
146
|
+
<xs:documentation>Počet odpracovaných hodin ve svátcích</xs:documentation>
|
147
|
+
</xs:annotation>
|
148
|
+
</xs:element>
|
149
|
+
</xs:sequence>
|
150
|
+
</xs:complexType>
|
151
|
+
</xs:element>
|
152
|
+
<xs:element name="MzdovePriplatky" minOccurs="0">
|
153
|
+
<xs:annotation>
|
154
|
+
<xs:documentation>Mzdové příplatky</xs:documentation>
|
155
|
+
</xs:annotation>
|
156
|
+
<xs:complexType>
|
157
|
+
<xs:sequence>
|
158
|
+
<xs:element name="PrescasHodin" type="cisloType" minOccurs="0">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>Práce přesčas - počet hodin</xs:documentation>
|
161
|
+
</xs:annotation>
|
162
|
+
</xs:element>
|
163
|
+
<xs:element name="SvatkyHodin" type="cisloType" minOccurs="0">
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>Práce ve svátky - počet hodin</xs:documentation>
|
166
|
+
</xs:annotation>
|
167
|
+
</xs:element>
|
168
|
+
<xs:element name="SobotaNedeleHodin" type="cisloType" minOccurs="0">
|
169
|
+
<xs:annotation>
|
170
|
+
<xs:documentation>Práce v sobotu a neděli - počet hodin</xs:documentation>
|
171
|
+
</xs:annotation>
|
172
|
+
</xs:element>
|
173
|
+
<xs:element name="ProstrediHodin" type="cisloType" minOccurs="0">
|
174
|
+
<xs:annotation>
|
175
|
+
<xs:documentation>Pracovní prostředí - počet hodin</xs:documentation>
|
176
|
+
</xs:annotation>
|
177
|
+
</xs:element>
|
178
|
+
<xs:element name="NocHodin" type="cisloType" minOccurs="0">
|
179
|
+
<xs:annotation>
|
180
|
+
<xs:documentation>Práce v noci - počet hodin</xs:documentation>
|
181
|
+
</xs:annotation>
|
182
|
+
</xs:element>
|
183
|
+
<xs:element name="PohotovostHodin" type="cisloType" minOccurs="0">
|
184
|
+
<xs:annotation>
|
185
|
+
<xs:documentation>Pracovní pohotovost - počet hodin</xs:documentation>
|
186
|
+
</xs:annotation>
|
187
|
+
</xs:element>
|
188
|
+
</xs:sequence>
|
189
|
+
</xs:complexType>
|
190
|
+
</xs:element>
|
191
|
+
</xs:sequence>
|
192
|
+
</xs:complexType>
|
193
|
+
<xs:complexType name="nepritomnost">
|
194
|
+
<xs:annotation>
|
195
|
+
<xs:documentation>Identifikace nepřítomnosti</xs:documentation>
|
196
|
+
</xs:annotation>
|
197
|
+
<xs:sequence>
|
198
|
+
<xs:element name="Typ" type="nepritomnostType">
|
199
|
+
<xs:annotation>
|
200
|
+
<xs:documentation>Typ nepřítomnosti:
|
201
|
+
|
202
|
+
0 = Dovolená
|
203
|
+
1 = Paragraf
|
204
|
+
2 = Neplacené volno
|
205
|
+
3 = Neomluvená absence
|
206
|
+
4 = Nemoc (včetně úrazu)
|
207
|
+
5 = Karanténa
|
208
|
+
6 = OČR (ošetřování člena rodiny)
|
209
|
+
7 = Mateřská dovolená
|
210
|
+
8 = Další mateřská dovolená</xs:documentation>
|
211
|
+
</xs:annotation>
|
212
|
+
</xs:element>
|
213
|
+
<xs:element name="Zacatek" type="nepritomnostObdobi">
|
214
|
+
<xs:annotation>
|
215
|
+
<xs:documentation>Skutečný začátek nepřítomnosti. V elementu Datum se uvádí skutečný začátek nepřítomnosti. Znamená to, že se může jednat o jiný měsíc, než je zpracovávané období. Tato informace je důležitá pro správný import dat do programu Money!</xs:documentation>
|
216
|
+
</xs:annotation>
|
217
|
+
</xs:element>
|
218
|
+
<xs:element name="Konec" type="nepritomnostObdobi" minOccurs="0">
|
219
|
+
<xs:annotation>
|
220
|
+
<xs:documentation>Konec nepřítomnosti. Pokud není v okamžiku exportu z docházkového systému známý konec nepřítomnosti (nepřítomnost stále pokračuje), tak se tento element vůbec neuvádí.</xs:documentation>
|
221
|
+
</xs:annotation>
|
222
|
+
</xs:element>
|
223
|
+
<xs:element name="KalDnu" type="cisloType" minOccurs="0">
|
224
|
+
<xs:annotation>
|
225
|
+
<xs:documentation>Počet kalendářních dnů nepřítomnosti v měsíci zpracování mzdy</xs:documentation>
|
226
|
+
</xs:annotation>
|
227
|
+
</xs:element>
|
228
|
+
<xs:element name="PracDnu" type="cisloType" minOccurs="0">
|
229
|
+
<xs:annotation>
|
230
|
+
<xs:documentation>Fond pracovních dnů nepřítomnosti v měsíci zpracování mzdy</xs:documentation>
|
231
|
+
</xs:annotation>
|
232
|
+
</xs:element>
|
233
|
+
<xs:element name="PracHodin" type="cisloType" minOccurs="0">
|
234
|
+
<xs:annotation>
|
235
|
+
<xs:documentation>Fond pracovních hodin nepřítomnosti v měsíci zpracování mzdy</xs:documentation>
|
236
|
+
</xs:annotation>
|
237
|
+
</xs:element>
|
238
|
+
<xs:element name="SvatkyDnu" type="cisloType" minOccurs="0">
|
239
|
+
<xs:annotation>
|
240
|
+
<xs:documentation>Počet dnů svátků v nepřítomnosti připadajících v měsíci zpracování mzdy na pracovní den</xs:documentation>
|
241
|
+
</xs:annotation>
|
242
|
+
</xs:element>
|
243
|
+
<xs:element name="SvatkyHodin" type="cisloType" minOccurs="0">
|
244
|
+
<xs:annotation>
|
245
|
+
<xs:documentation>Počet pracovních hodin ve svátcích nepřítomnosti připadajících v měsíci zpracování mzdy na pracovní den</xs:documentation>
|
246
|
+
</xs:annotation>
|
247
|
+
</xs:element>
|
248
|
+
</xs:sequence>
|
249
|
+
</xs:complexType>
|
250
|
+
<xs:complexType name="nepritomnostObdobi">
|
251
|
+
<xs:annotation>
|
252
|
+
<xs:documentation>Identifikace začátku a konce nepřítomnosti</xs:documentation>
|
253
|
+
</xs:annotation>
|
254
|
+
<xs:sequence>
|
255
|
+
<xs:element name="Datum">
|
256
|
+
<xs:annotation>
|
257
|
+
<xs:documentation>Datum</xs:documentation>
|
258
|
+
</xs:annotation>
|
259
|
+
<xs:simpleType>
|
260
|
+
<xs:restriction base="xs:date"/>
|
261
|
+
</xs:simpleType>
|
262
|
+
</xs:element>
|
263
|
+
<xs:element name="OdpracHodin" type="cisloType" minOccurs="0">
|
264
|
+
<xs:annotation>
|
265
|
+
<xs:documentation>Odpracováno hodin v den začátku nebo konce nepřítomnosti</xs:documentation>
|
266
|
+
</xs:annotation>
|
267
|
+
</xs:element>
|
268
|
+
</xs:sequence>
|
269
|
+
</xs:complexType>
|
270
|
+
<xs:simpleType name="cisloType">
|
271
|
+
<xs:annotation>
|
272
|
+
<xs:documentation>Specifikace číselné hodnoty</xs:documentation>
|
273
|
+
</xs:annotation>
|
274
|
+
<xs:restriction base="xs:decimal">
|
275
|
+
<xs:totalDigits value="15"/>
|
276
|
+
<xs:fractionDigits value="2"/>
|
277
|
+
</xs:restriction>
|
278
|
+
</xs:simpleType>
|
279
|
+
<xs:simpleType name="nepritomnostType">
|
280
|
+
<xs:annotation>
|
281
|
+
<xs:documentation>Výčet typů nepřítomností</xs:documentation>
|
282
|
+
</xs:annotation>
|
283
|
+
<xs:restriction base="xs:decimal">
|
284
|
+
<xs:enumeration value="0"/>
|
285
|
+
<xs:enumeration value="1"/>
|
286
|
+
<xs:enumeration value="2"/>
|
287
|
+
<xs:enumeration value="3"/>
|
288
|
+
<xs:enumeration value="4"/>
|
289
|
+
<xs:enumeration value="5"/>
|
290
|
+
<xs:enumeration value="6"/>
|
291
|
+
<xs:enumeration value="7"/>
|
292
|
+
<xs:enumeration value="8"/>
|
293
|
+
</xs:restriction>
|
294
|
+
</xs:simpleType>
|
295
|
+
</xs:schema>
|