money_xml_validator 0.0.1 → 1.0.0

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.
Files changed (41) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile.lock +24 -0
  3. data/README.md +17 -7
  4. data/lib/money_xml_validator.rb +1 -1
  5. data/lib/money_xml_validator/money_xsd/README.md +10 -2
  6. data/lib/money_xml_validator/money_xsd/examples/basic_invoice.xml +56 -0
  7. data/lib/money_xml_validator/money_xsd/examples/credit_note.xml +58 -0
  8. data/lib/money_xml_validator/money_xsd/{Dochazka → schemas/Dochazka}/Dochazka.xsd +24 -20
  9. data/lib/money_xml_validator/money_xsd/{Dochazka → schemas/Dochazka}/Zamestnanci.xsd +13 -7
  10. data/lib/money_xml_validator/money_xsd/{EPO → schemas/EPO}/EPO_Error.xsd +11 -11
  11. data/lib/money_xml_validator/money_xsd/{EPO → schemas/EPO}/EPO_Success.xsd +1 -1
  12. data/lib/money_xml_validator/money_xsd/schemas/Readme.txt +4 -0
  13. data/lib/money_xml_validator/money_xsd/{_Document.xsd → schemas/_Document.xsd} +35 -51
  14. data/lib/money_xml_validator/money_xsd/{_Export.xsd → schemas/_Export.xsd} +7 -3
  15. data/lib/money_xml_validator/money_xsd/schemas/_Import.xsd +176 -0
  16. data/lib/money_xml_validator/money_xsd/{_Report.xsd → schemas/_Report.xsd} +41 -134
  17. data/lib/money_xml_validator/money_xsd/schemas/__Comtypes.xsd +742 -0
  18. data/lib/money_xml_validator/money_xsd/{__Faktura.xsd → schemas/__Faktura.xsd} +577 -566
  19. data/lib/money_xml_validator/money_xsd/{__Firma.xsd → schemas/__Firma.xsd} +197 -96
  20. data/lib/money_xml_validator/money_xsd/schemas/__IntDokl.xsd +427 -0
  21. data/lib/money_xml_validator/money_xsd/{__InvDokl.xsd → schemas/__InvDokl.xsd} +11 -8
  22. data/lib/money_xml_validator/money_xsd/{__Mzda.xsd → schemas/__Mzda.xsd} +10 -6
  23. data/lib/money_xml_validator/money_xsd/schemas/__Objedn.xsd +896 -0
  24. data/lib/money_xml_validator/money_xsd/schemas/__Seznamy.xsd +1755 -0
  25. data/lib/money_xml_validator/money_xsd/schemas/__SklDokl.xsd +685 -0
  26. data/lib/money_xml_validator/money_xsd/{__UcDokl.xsd → schemas/__UcDokl.xsd} +1019 -925
  27. data/lib/money_xml_validator/money_xsd/{__Uhrady.xsd → schemas/__Uhrady.xsd} +92 -92
  28. data/lib/money_xml_validator/money_xsd/{__Vyroba.xsd → schemas/__Vyroba.xsd} +0 -0
  29. data/lib/money_xml_validator/money_xsd/{__Zakazka.xsd → schemas/__Zakazka.xsd} +5 -31
  30. data/lib/money_xml_validator/money_xsd/{__Zamestnanec.xsd → schemas/__Zamestnanec.xsd} +6 -6
  31. data/lib/money_xml_validator/money_xsd/schemas/__Zasoba.xsd +1319 -0
  32. data/money_xml_validator.gemspec +1 -1
  33. metadata +30 -28
  34. data/lib/money_xml_validator/money_xsd/_Import.xsd +0 -94
  35. data/lib/money_xml_validator/money_xsd/__Comtypes.xsd +0 -706
  36. data/lib/money_xml_validator/money_xsd/__IntDokl.xsd +0 -397
  37. data/lib/money_xml_validator/money_xsd/__Objedn.xsd +0 -865
  38. data/lib/money_xml_validator/money_xsd/__Seznamy.xsd +0 -1721
  39. data/lib/money_xml_validator/money_xsd/__SklDokl.xsd +0 -674
  40. data/lib/money_xml_validator/money_xsd/__Zasoba.xsd +0 -1317
  41. data/lib/money_xml_validator/money_xsd/all_schemas.zip +0 -0
@@ -0,0 +1,1755 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
3
+ <xs:include schemaLocation="__Comtypes.xsd"/>
4
+ <xs:complexType name="cinnostType">
5
+ <xs:annotation>
6
+ <xs:documentation>Definice činnosti</xs:documentation>
7
+ </xs:annotation>
8
+ <xs:all>
9
+ <xs:element name="Zkrat" type="zkratkaType">
10
+ <xs:annotation>
11
+ <xs:documentation>Zkratka činnosti</xs:documentation>
12
+ </xs:annotation>
13
+ </xs:element>
14
+ <xs:element name="Nazev" minOccurs="0">
15
+ <xs:annotation>
16
+ <xs:documentation>Název činnosti</xs:documentation>
17
+ </xs:annotation>
18
+ <xs:simpleType>
19
+ <xs:restriction base="xs:string"/>
20
+ </xs:simpleType>
21
+ </xs:element>
22
+ <xs:element name="Pozn" minOccurs="0">
23
+ <xs:annotation>
24
+ <xs:documentation>Poznámka</xs:documentation>
25
+ </xs:annotation>
26
+ <xs:simpleType>
27
+ <xs:restriction base="xs:string">
28
+ <xs:maxLength value="255"/>
29
+ </xs:restriction>
30
+ </xs:simpleType>
31
+ </xs:element>
32
+ </xs:all>
33
+ </xs:complexType>
34
+ <xs:complexType name="clenDPHType">
35
+ <xs:annotation>
36
+ <xs:documentation>Definice členění DPH</xs:documentation>
37
+ </xs:annotation>
38
+ <xs:all>
39
+ <xs:element name="Zkrat" type="zkratkaType">
40
+ <xs:annotation>
41
+ <xs:documentation>Zkratka členění DPH</xs:documentation>
42
+ </xs:annotation>
43
+ </xs:element>
44
+ <xs:element name="DatumOd" type="xs:date">
45
+ <xs:annotation>
46
+ <xs:documentation>Datum počátku platnosti období DPH</xs:documentation>
47
+ </xs:annotation>
48
+ </xs:element>
49
+ <xs:element name="Popis" minOccurs="0">
50
+ <xs:annotation>
51
+ <xs:documentation>Popis členění DPH</xs:documentation>
52
+ </xs:annotation>
53
+ <xs:simpleType>
54
+ <xs:restriction base="xs:string">
55
+ <xs:maxLength value="100"/>
56
+ </xs:restriction>
57
+ </xs:simpleType>
58
+ </xs:element>
59
+ <xs:element name="Typ" minOccurs="0">
60
+ <xs:annotation>
61
+ <xs:documentation>Typ členění DPH
62
+
63
+ P - přijaté zdanitelné plnění
64
+ U - uskutečněné zdanitelné plnění</xs:documentation>
65
+ </xs:annotation>
66
+ <xs:simpleType>
67
+ <xs:restriction base="clenDPHTypType">
68
+ <xs:maxLength value="1"/>
69
+ </xs:restriction>
70
+ </xs:simpleType>
71
+ </xs:element>
72
+ <xs:element name="Kolonka" minOccurs="0">
73
+ <xs:annotation>
74
+ <xs:documentation>Kolonka v přiznání DPH
75
+
76
+ NN - Neovlivňuje přiznání k DPH
77
+
78
+ Přijatá zdanitelná plnění:
79
+ PT - Z přijatých zdanitelných plnění od plátců (tuzemsko) - v plné výši
80
+ KT - Z přijatých zdanitelných plnění od plátců (tuzemsko) - krácený odpočet
81
+ P8 - Ze zdanitelných plnění vykázaných na řádcích 3 až 12 - v plné výši
82
+ K8 - Ze zdanitelných plnění vykázaných na řádcích 3 až 12 - krácený odpočet
83
+ P1 - Pořízení zboží z jiného členského státu (platné do 31.12.2008)
84
+ K1 - Pořízení zboží z jiného členského státu - krác.nár. (platné do 31.12.2008)
85
+ P2 - Poskytnutí služby osobou reg.k dani v jiném člen.státě (platné do 31.12.2008)
86
+ K2 - Poskytnutí služby osobou reg.k dani v jiném člen.státě - krác.nár. (platné do 31.12.2008)
87
+ P4 - Pořízení dopr.prostředku - od osob reg.k dani v jiném čl.státě (platné do 31.12.2008)
88
+ K4 - Pořízení dopr.prostředku - od osob reg.k dani v jiném čl.státě - krác.nár. (platné do 31.12.2008)
89
+ P5 - Pořízení dopr.prostředku - od osob nereg.k dani v jiném čl.státě (platné do 31.12.2008)
90
+ K5 - Pořízení dopr.prostředku - od osob nereg.k dani v jiném čl.státě - krác.nár. (platné do 31.12.2008)
91
+ P6 - Při dovozu zboží, kdy je správcem daně celní úřad - v plné výši
92
+ K6 - Při dovozu zboží, kdy je správcem daně celní úřad - krácený odpočet
93
+ P7 - Poskytnutí služby zahraniční osobou povinnou k dani (platné do 31.12.2008)
94
+ K7 - Poskytnutí služby zahraniční osobou povinnou k dani - krác.nár. (platné do 31.12.2008)
95
+ PX - Zjednodušený postup při dodání zboží formou třístran. obchodu prostřední osobou - pořízení zboží
96
+ VD - Vrácená daň fyzickým osobám ze třetích zemí při vývozu zboží
97
+ DD - Přijatá zdaň. plnění z dovozu - režim doč. použ. - má nárok na odpočet (platné do 30.4.2004)
98
+ PD - Přijatá zdaň. plnění z dovozu - má nárok na odpočet (platné do 30.4.2004)
99
+ NR - Přijatá zdaň. plnění z dovozu - režim doč. použ. - nemá nárok na odpočet (platné do 30.4.2004)
100
+ ND - Přijatá zdaň. plnění z dovozu - nemá nárok na odpočet (platné do 30.4.2004)
101
+ NT - Přijatá zdaň. plnění z tuzemska - nemá nárok na odpočet (platné do 30.4.2004)
102
+ KR - Přijatá zdaň. plnění z dovozu - režim doč. použ. - krátit nárok na odpočet (platné do 30.4.2004)
103
+ KD - Přijatá zdaň. plnění z dovozu - krátit nárok na odpočet (platné do 30.4.2004)
104
+ FD - Finanční pronájem z dovozu (platné do 30.4.2004)
105
+ FT - Finanční pronájem z tuzemska (platné do 30.4.2004)
106
+ PY - Dovoz zboží osvobozený podle § 71g
107
+ PZ - Oprava výše daně u pohledávek za dlužníky v insolv.řízení - dlužník
108
+
109
+ Uskutečněná zdanitelná plnění:
110
+ UT - Dodání zboží nebo poskyt. služby s místem plnění v tuz. (vč. zaslání zboží do jiného čl. státu do reg. limitu)
111
+ R1 - Pořízení zboží z jiného člen. státu (vč. dopr. prostředku od osoby registr. k dani v jiném čl. státě)
112
+ R2 - Přijetí služby od osoby registrované k dani v jiném členském státě
113
+ R3 - Zasílání zboží z jiného člen.státu s místem plněním v tuzemsku (platné do 31.12.2008)
114
+ R4 - Pořízení dopr.prostředku - od osob reg.k dani v jiném čl.státě (platné do 31.12.2008)
115
+ R5 - Pořízení nového dopravního prostředku - od osoby neregistrované k dani v jiném čl. státě
116
+ R6 - Dovoz zboží
117
+ R9 - Přenesení daňové povinnosti (na vstupu) (dříve Dodání zlata)
118
+ R7 - Ost. zdaň. plnění, u kterých je povinen přiznat daň plátce (např. poskyt. služby zahr. osobou povinnou k dani)
119
+ R8 - Daň na výstupu
120
+ U1 - Dodání zboží do jiného čl. státu (vč. dopr. prostředku osobě registrované k dani v jiném čl. státě)
121
+ U5 - Poskytnutí služeb s místem plnění mimo tuzemsko osobě reg. k dani v jiném čl. státě
122
+ U2 - Dodání dopr.prostředku - osobě reg.k dani v jiném čl.státě (platné do 31.12.2008)
123
+ U3 - Dodání nového dopravního prostředku osobě neregistrované k dani v jiném členském státě
124
+ VZ - Vývoz zboží
125
+ U6 - Zasílání zboží do jiného čl. státu (plátce překročil reg. limit nebo místo plnění je v jiném čl. státě)
126
+ U4 - Ostatní uskutečnění plnění s nárokem na odpočet daně
127
+ UO - Uskutečněná zdanitelná plnění osvobozená, příp. se zdanitelným plněním mimo tuzemsko
128
+ UX - Zjednodušený postup při dodání zboží formou třístran. obchodu prostřední osobou - dodání zboží
129
+ VS - Vývoz služeb (platné do 30.4.2004)
130
+ VB - Vývoz zboží beze změny vlast. práva (platné do 30.4.2004)
131
+ MP - Mezinárodní přeprava (platné do 30.4.2004)
132
+ U7 - Přenesení daňové povinnosti (na výstupu)
133
+ UZ - Oprava výše daně u pohledávek za dlužníky v insolv.řízení - věřitel
134
+
135
+ ------------------------------------- Pouze ve slovenské verzi:
136
+ ZN - uskutocnene zdanitelne plnenie v zahranici bez naroku na odpocet dane;
137
+ ZI - uskutocnene zdanitelne plnenie - dan ktoru je povinna podla §46a zakona zaplatit ina osoba</xs:documentation>
138
+ </xs:annotation>
139
+ <xs:simpleType>
140
+ <xs:restriction base="clenDPHKolonkaType">
141
+ <xs:length value="2"/>
142
+ </xs:restriction>
143
+ </xs:simpleType>
144
+ </xs:element>
145
+ <xs:element name="KodPlneni" type="xs:string" minOccurs="0">
146
+ <xs:annotation>
147
+ <xs:documentation>Kód plnění
148
+
149
+ 0 - dodání zboží
150
+ 1 - přemístění obchodního majeetku
151
+ 2 - třístranné obchody
152
+ 3 - dodání služeb
153
+
154
+ U přijatých plnění se vyskytuje pouze u kolonky NN s možnými hodnotami 0 a 3</xs:documentation>
155
+ </xs:annotation>
156
+ </xs:element>
157
+ <xs:element name="BezOdpoctu" type="xs:boolean" minOccurs="0">
158
+ <xs:annotation>
159
+ <xs:documentation>Plnění bez nároku na odpočet u přijatého plnění
160
+
161
+ Jen uskutečněná plnění</xs:documentation>
162
+ </xs:annotation>
163
+ </xs:element>
164
+ <xs:element name="NoKoef" type="xs:boolean" minOccurs="0">
165
+ <xs:annotation>
166
+ <xs:documentation>Neovlivňuje výpočet vypořádacího koeficientu pro krácení daně přijatých plnění
167
+
168
+ Jen uskutečněná plnění</xs:documentation>
169
+ </xs:annotation>
170
+ </xs:element>
171
+ <xs:element name="Majetek" type="xs:string" minOccurs="0">
172
+ <xs:annotation>
173
+ <xs:documentation>Vliv na pořízení majetku. Pouze u přijatých plnění vyjma NN, PX a VD.
174
+
175
+ B = bez vlivu
176
+ I = aktivace ihned
177
+ P = aktivace později</xs:documentation>
178
+ </xs:annotation>
179
+ </xs:element>
180
+ <xs:element name="KV1" type="xs:string" minOccurs="0">
181
+ <xs:annotation>
182
+ <xs:documentation>Oddíl kontrolního hlášení - zdanitelné osoby</xs:documentation>
183
+ </xs:annotation>
184
+ </xs:element>
185
+ <xs:element name="KV2" type="xs:string" minOccurs="0">
186
+ <xs:annotation>
187
+ <xs:documentation>Oddíl kontrolního hlášení - ostatní osoby</xs:documentation>
188
+ </xs:annotation>
189
+ </xs:element>
190
+ <xs:element name="KVLimit" type="castkaType" minOccurs="0">
191
+ <xs:annotation>
192
+ <xs:documentation>Limit pro zdanitelné osoby</xs:documentation>
193
+ </xs:annotation>
194
+ </xs:element>
195
+ <xs:element name="KVRezim" type="xs:byte" minOccurs="0">
196
+ <xs:annotation>
197
+ <xs:documentation>Zvláštní režim DPH</xs:documentation>
198
+ </xs:annotation>
199
+ </xs:element>
200
+ <xs:element name="KVPomer" type="xs:boolean" minOccurs="0">
201
+ <xs:annotation>
202
+ <xs:documentation>Použit poměr</xs:documentation>
203
+ </xs:annotation>
204
+ </xs:element>
205
+ <xs:element name="KVInsolv" type="xs:boolean" minOccurs="0">
206
+ <xs:annotation>
207
+ <xs:documentation>Pohledávky za dlužníky v insolvenci</xs:documentation>
208
+ </xs:annotation>
209
+ </xs:element>
210
+ <xs:element name="MOSS" type="xs:boolean" minOccurs="0">
211
+ <xs:annotation>
212
+ <xs:documentation>Zvláštní režim jednoho správního místa (MOSS)</xs:documentation>
213
+ </xs:annotation>
214
+ </xs:element>
215
+ <xs:element name="Pozn" minOccurs="0">
216
+ <xs:annotation>
217
+ <xs:documentation>Poznámka</xs:documentation>
218
+ </xs:annotation>
219
+ <xs:simpleType>
220
+ <xs:restriction base="xs:string">
221
+ <xs:maxLength value="255"/>
222
+ </xs:restriction>
223
+ </xs:simpleType>
224
+ </xs:element>
225
+ </xs:all>
226
+ </xs:complexType>
227
+ <xs:complexType name="zauctovaniDPHType">
228
+ <xs:annotation>
229
+ <xs:documentation>Definice zaúčtování DPH pro podvojné účetnictví</xs:documentation>
230
+ </xs:annotation>
231
+ <xs:all>
232
+ <xs:element name="Zkrat" type="zkratkaType">
233
+ <xs:annotation>
234
+ <xs:documentation>Zkratka</xs:documentation>
235
+ </xs:annotation>
236
+ </xs:element>
237
+ <xs:element name="Typ" type="predkontaceDETypType" minOccurs="0">
238
+ <xs:annotation>
239
+ <xs:documentation>Typ dokladu (druh pohybu):
240
+
241
+ P - příjmy
242
+ V - výdaje</xs:documentation>
243
+ </xs:annotation>
244
+ </xs:element>
245
+ <xs:element name="Popis" minOccurs="0">
246
+ <xs:annotation>
247
+ <xs:documentation>Popis</xs:documentation>
248
+ </xs:annotation>
249
+ <xs:simpleType>
250
+ <xs:restriction base="xs:string">
251
+ <xs:maxLength value="50"/>
252
+ </xs:restriction>
253
+ </xs:simpleType>
254
+ </xs:element>
255
+ <xs:element name="SDUcMD" type="ucetType" minOccurs="0">
256
+ <xs:annotation>
257
+ <xs:documentation>Účet MD pro sníženou hladinu (globální nastavení pro všechna Období DPH)</xs:documentation>
258
+ </xs:annotation>
259
+ </xs:element>
260
+ <xs:element name="SDUcD" type="ucetType" minOccurs="0">
261
+ <xs:annotation>
262
+ <xs:documentation>Účet D pro sníženou hladinu (globální nastavení pro všechna Období DPH)</xs:documentation>
263
+ </xs:annotation>
264
+ </xs:element>
265
+ <xs:element name="ZDUcMD" type="ucetType" minOccurs="0">
266
+ <xs:annotation>
267
+ <xs:documentation>Účet MD pro sníženou hladinu (globální nastavení pro všechna Období DPHí)</xs:documentation>
268
+ </xs:annotation>
269
+ </xs:element>
270
+ <xs:element name="ZDUcD" type="ucetType" minOccurs="0">
271
+ <xs:annotation>
272
+ <xs:documentation>Účet MD pro sníženou hladinu (globální nastavení pro všechna Období DPH)</xs:documentation>
273
+ </xs:annotation>
274
+ </xs:element>
275
+ <xs:element name="Pozn" minOccurs="0">
276
+ <xs:annotation>
277
+ <xs:documentation>Poznámka</xs:documentation>
278
+ </xs:annotation>
279
+ </xs:element>
280
+ <xs:element name="SeznamObdobiDPH" minOccurs="0">
281
+ <xs:annotation>
282
+ <xs:documentation>Seznam období DPH</xs:documentation>
283
+ </xs:annotation>
284
+ <xs:complexType>
285
+ <xs:sequence>
286
+ <xs:element name="ObdobiDPH" minOccurs="0" maxOccurs="unbounded">
287
+ <xs:annotation>
288
+ <xs:documentation>Období DPH</xs:documentation>
289
+ </xs:annotation>
290
+ <xs:complexType>
291
+ <xs:all>
292
+ <xs:element name="DatumOd" type="xs:date" minOccurs="0">
293
+ <xs:annotation>
294
+ <xs:documentation>Datum počátku platnosti období DPH</xs:documentation>
295
+ </xs:annotation>
296
+ </xs:element>
297
+ <xs:element name="UcMD_1" type="ucetType" minOccurs="0">
298
+ <xs:annotation>
299
+ <xs:documentation>Účet MD pro povahu č. 1 (standardní snížená povaha)</xs:documentation>
300
+ </xs:annotation>
301
+ </xs:element>
302
+ <xs:element name="UcD_1" type="ucetType" minOccurs="0">
303
+ <xs:annotation>
304
+ <xs:documentation>Účet D pro povahu č. 1 (standardní snížená povaha)</xs:documentation>
305
+ </xs:annotation>
306
+ </xs:element>
307
+ <xs:element name="UcMD_2" type="ucetType" minOccurs="0">
308
+ <xs:annotation>
309
+ <xs:documentation>Účet MD pro povahu č. 2 (standardní základní povaha)</xs:documentation>
310
+ </xs:annotation>
311
+ </xs:element>
312
+ <xs:element name="UcD_2" type="ucetType" minOccurs="0">
313
+ <xs:annotation>
314
+ <xs:documentation>Účet D pro povahu č. 2 (standardní základní povaha)</xs:documentation>
315
+ </xs:annotation>
316
+ </xs:element>
317
+ <xs:element name="UcMD_3" type="ucetType" minOccurs="0">
318
+ <xs:annotation>
319
+ <xs:documentation>Účet MD pro povahu č. 3</xs:documentation>
320
+ </xs:annotation>
321
+ </xs:element>
322
+ <xs:element name="UcD_3" type="ucetType" minOccurs="0">
323
+ <xs:annotation>
324
+ <xs:documentation>Účet D pro povahu č. 3</xs:documentation>
325
+ </xs:annotation>
326
+ </xs:element>
327
+ <xs:element name="UcMD_4" type="ucetType" minOccurs="0">
328
+ <xs:annotation>
329
+ <xs:documentation>Účet MD pro povahu č. 4</xs:documentation>
330
+ </xs:annotation>
331
+ </xs:element>
332
+ <xs:element name="UcD_4" type="ucetType" minOccurs="0">
333
+ <xs:annotation>
334
+ <xs:documentation>Účet D pro povahu č. 4</xs:documentation>
335
+ </xs:annotation>
336
+ </xs:element>
337
+ <xs:element name="UcMD_5" type="ucetType" minOccurs="0">
338
+ <xs:annotation>
339
+ <xs:documentation>Účet MD pro povahu č. 5</xs:documentation>
340
+ </xs:annotation>
341
+ </xs:element>
342
+ <xs:element name="UcD_5" type="ucetType" minOccurs="0">
343
+ <xs:annotation>
344
+ <xs:documentation>Účet D pro povahu č. 5</xs:documentation>
345
+ </xs:annotation>
346
+ </xs:element>
347
+ <xs:element name="UcMD_6" type="ucetType" minOccurs="0">
348
+ <xs:annotation>
349
+ <xs:documentation>Účet MD pro povahu č. 6</xs:documentation>
350
+ </xs:annotation>
351
+ </xs:element>
352
+ <xs:element name="UcD_6" type="ucetType" minOccurs="0">
353
+ <xs:annotation>
354
+ <xs:documentation>Účet D pro povahu č. 6</xs:documentation>
355
+ </xs:annotation>
356
+ </xs:element>
357
+ </xs:all>
358
+ </xs:complexType>
359
+ </xs:element>
360
+ </xs:sequence>
361
+ </xs:complexType>
362
+ </xs:element>
363
+ </xs:all>
364
+ </xs:complexType>
365
+ <xs:complexType name="zauctovaniDPH_DEType">
366
+ <xs:annotation>
367
+ <xs:documentation>Definice zaúčtování DPH pro daňovou evidenci</xs:documentation>
368
+ </xs:annotation>
369
+ <xs:all>
370
+ <xs:element name="Zkrat" type="zkratkaType">
371
+ <xs:annotation>
372
+ <xs:documentation>Zkratka</xs:documentation>
373
+ </xs:annotation>
374
+ </xs:element>
375
+ <xs:element name="Typ" type="predkontaceDETypType" minOccurs="0">
376
+ <xs:annotation>
377
+ <xs:documentation>Typ dokladu (druh pohybu):
378
+
379
+ P - příjmy
380
+ V - výdaje</xs:documentation>
381
+ </xs:annotation>
382
+ </xs:element>
383
+ <xs:element name="Popis" minOccurs="0">
384
+ <xs:annotation>
385
+ <xs:documentation>Popis</xs:documentation>
386
+ </xs:annotation>
387
+ <xs:simpleType>
388
+ <xs:restriction base="xs:string">
389
+ <xs:maxLength value="50"/>
390
+ </xs:restriction>
391
+ </xs:simpleType>
392
+ </xs:element>
393
+ <xs:element name="PohDSS" minOccurs="0">
394
+ <xs:annotation>
395
+ <xs:documentation>Účetní pohyb pro sníženou hladinu (globální nastavení pro všechna Období DPH)</xs:documentation>
396
+ </xs:annotation>
397
+ <xs:simpleType>
398
+ <xs:restriction base="xs:string"/>
399
+ </xs:simpleType>
400
+ </xs:element>
401
+ <xs:element name="PohDZS" minOccurs="0">
402
+ <xs:annotation>
403
+ <xs:documentation>Účetní pohyb pro základní hladinu (globální nastavení pro všechna Období DPH)</xs:documentation>
404
+ </xs:annotation>
405
+ <xs:simpleType>
406
+ <xs:restriction base="xs:string"/>
407
+ </xs:simpleType>
408
+ </xs:element>
409
+ <xs:element name="Pozn" minOccurs="0">
410
+ <xs:annotation>
411
+ <xs:documentation>Poznámka</xs:documentation>
412
+ </xs:annotation>
413
+ </xs:element>
414
+ <xs:element name="SeznamObdobiDPH" minOccurs="0">
415
+ <xs:annotation>
416
+ <xs:documentation>Seznam období DPH</xs:documentation>
417
+ </xs:annotation>
418
+ <xs:complexType>
419
+ <xs:sequence>
420
+ <xs:element name="ObdobiDPH" minOccurs="0" maxOccurs="unbounded">
421
+ <xs:annotation>
422
+ <xs:documentation>Období DPH</xs:documentation>
423
+ </xs:annotation>
424
+ <xs:complexType>
425
+ <xs:all>
426
+ <xs:element name="DatumOd" type="xs:date" minOccurs="0">
427
+ <xs:annotation>
428
+ <xs:documentation>Datum počátku platnosti období DPH</xs:documentation>
429
+ </xs:annotation>
430
+ </xs:element>
431
+ <xs:element name="PohD_1" minOccurs="0">
432
+ <xs:annotation>
433
+ <xs:documentation>Účetní pohyb pro povahu 1 (standardní snížená povaha)</xs:documentation>
434
+ </xs:annotation>
435
+ <xs:simpleType>
436
+ <xs:restriction base="xs:string"/>
437
+ </xs:simpleType>
438
+ </xs:element>
439
+ <xs:element name="PohD_2" minOccurs="0">
440
+ <xs:annotation>
441
+ <xs:documentation>Účetní pohyb pro povahu 2 (standardní základní povaha)</xs:documentation>
442
+ </xs:annotation>
443
+ <xs:simpleType>
444
+ <xs:restriction base="xs:string"/>
445
+ </xs:simpleType>
446
+ </xs:element>
447
+ <xs:element name="PohD_3" minOccurs="0">
448
+ <xs:annotation>
449
+ <xs:documentation>Účetní pohyb pro povahu 3</xs:documentation>
450
+ </xs:annotation>
451
+ <xs:simpleType>
452
+ <xs:restriction base="xs:string"/>
453
+ </xs:simpleType>
454
+ </xs:element>
455
+ <xs:element name="PohD_4" minOccurs="0">
456
+ <xs:annotation>
457
+ <xs:documentation>Účetní pohyb pro povahu 4</xs:documentation>
458
+ </xs:annotation>
459
+ <xs:simpleType>
460
+ <xs:restriction base="xs:string"/>
461
+ </xs:simpleType>
462
+ </xs:element>
463
+ <xs:element name="PohD_5" minOccurs="0">
464
+ <xs:annotation>
465
+ <xs:documentation>Účetní pohyb pro povahu 5</xs:documentation>
466
+ </xs:annotation>
467
+ <xs:simpleType>
468
+ <xs:restriction base="xs:string"/>
469
+ </xs:simpleType>
470
+ </xs:element>
471
+ <xs:element name="PohD_6" minOccurs="0">
472
+ <xs:annotation>
473
+ <xs:documentation>Účetní pohyb pro povahu 6</xs:documentation>
474
+ </xs:annotation>
475
+ <xs:simpleType>
476
+ <xs:restriction base="xs:string"/>
477
+ </xs:simpleType>
478
+ </xs:element>
479
+ </xs:all>
480
+ </xs:complexType>
481
+ </xs:element>
482
+ </xs:sequence>
483
+ </xs:complexType>
484
+ </xs:element>
485
+ </xs:all>
486
+ </xs:complexType>
487
+ <xs:complexType name="predkontaceType">
488
+ <xs:annotation>
489
+ <xs:documentation>Definice předkontace pro podvojné účetnictví</xs:documentation>
490
+ </xs:annotation>
491
+ <xs:all>
492
+ <xs:element name="Zkrat" type="zkratkaType">
493
+ <xs:annotation>
494
+ <xs:documentation>Zkratka předkontace</xs:documentation>
495
+ </xs:annotation>
496
+ </xs:element>
497
+ <xs:element name="Typ" minOccurs="0">
498
+ <xs:annotation>
499
+ <xs:documentation>Typ předkontace
500
+
501
+ NN - libovolná předkontace;
502
+ VF - vystavené faktury;
503
+ PF - přijaté faktury;
504
+ PP - příjem do pokladny;
505
+ VP - výdej z pokladny;
506
+ PU - příjem na účet;
507
+ VU - výdej z účtu;
508
+ ZA - závazky;
509
+ PO - pohledávky;
510
+ ID - interní doklady</xs:documentation>
511
+ </xs:annotation>
512
+ <xs:simpleType>
513
+ <xs:restriction base="predkontaceTypType">
514
+ <xs:maxLength value="2"/>
515
+ </xs:restriction>
516
+ </xs:simpleType>
517
+ </xs:element>
518
+ <xs:element name="Popis" minOccurs="0">
519
+ <xs:annotation>
520
+ <xs:documentation>Popis předkontace</xs:documentation>
521
+ </xs:annotation>
522
+ <xs:simpleType>
523
+ <xs:restriction base="xs:string">
524
+ <xs:maxLength value="50"/>
525
+ </xs:restriction>
526
+ </xs:simpleType>
527
+ </xs:element>
528
+ <xs:element name="UcMD" type="ucetType" minOccurs="0">
529
+ <xs:annotation>
530
+ <xs:documentation>Účet MD pro základ daně</xs:documentation>
531
+ </xs:annotation>
532
+ </xs:element>
533
+ <xs:element name="UcD" type="ucetType" minOccurs="0">
534
+ <xs:annotation>
535
+ <xs:documentation>Účet D pro základ daně</xs:documentation>
536
+ </xs:annotation>
537
+ </xs:element>
538
+ <xs:element name="ZauctDPH" minOccurs="0">
539
+ <xs:annotation>
540
+ <xs:documentation>Zkratka zaúčtování DPH</xs:documentation>
541
+ </xs:annotation>
542
+ <xs:simpleType>
543
+ <xs:restriction base="xs:string"/>
544
+ </xs:simpleType>
545
+ </xs:element>
546
+ <xs:element name="UctovatLed" type="xs:boolean" minOccurs="0">
547
+ <xs:annotation>
548
+ <xs:documentation>Další zaúčtování:
549
+
550
+ U FV a PF se jedná o odpočet zálohy.
551
+ U PP, VP, PU, VU a ID se jedná o platby záloh.
552
+
553
+ </xs:documentation>
554
+ </xs:annotation>
555
+ </xs:element>
556
+ <xs:element name="TypCeny" minOccurs="0">
557
+ <xs:annotation>
558
+ <xs:documentation>Typ ceny pro další zaúčtování:
559
+
560
+ 0 - cena celkem
561
+ 1 - základ
562
+ 2 - DPH celkem
563
+ 3 - DPH základní hladina
564
+ 4 - DPH snížená hladina</xs:documentation>
565
+ </xs:annotation>
566
+ <xs:simpleType>
567
+ <xs:restriction base="xs:string">
568
+ <xs:maxLength value="1"/>
569
+ <xs:enumeration value="0"/>
570
+ <xs:enumeration value="1"/>
571
+ <xs:enumeration value="2"/>
572
+ <xs:enumeration value="3"/>
573
+ <xs:enumeration value="4"/>
574
+ </xs:restriction>
575
+ </xs:simpleType>
576
+ </xs:element>
577
+ <xs:element name="UcLedMD" type="ucetType" minOccurs="0">
578
+ <xs:annotation>
579
+ <xs:documentation>Účet MD pro další zaúčtování</xs:documentation>
580
+ </xs:annotation>
581
+ </xs:element>
582
+ <xs:element name="UcLedD" type="ucetType" minOccurs="0">
583
+ <xs:annotation>
584
+ <xs:documentation>Účet D pro další zaúčtování</xs:documentation>
585
+ </xs:annotation>
586
+ </xs:element>
587
+ <xs:element name="Cleneni" minOccurs="0">
588
+ <xs:annotation>
589
+ <xs:documentation>Používat členění DPH</xs:documentation>
590
+ </xs:annotation>
591
+ <xs:simpleType>
592
+ <xs:restriction base="xs:string">
593
+ <xs:maxLength value="10"/>
594
+ </xs:restriction>
595
+ </xs:simpleType>
596
+ </xs:element>
597
+ <xs:element name="Pozn" minOccurs="0">
598
+ <xs:annotation>
599
+ <xs:documentation>Poznámka</xs:documentation>
600
+ </xs:annotation>
601
+ </xs:element>
602
+ </xs:all>
603
+ </xs:complexType>
604
+ <xs:complexType name="predkontaceDEType">
605
+ <xs:annotation>
606
+ <xs:documentation>Definice předkontace pro daňovou evidenci</xs:documentation>
607
+ </xs:annotation>
608
+ <xs:all>
609
+ <xs:element name="Zkrat" type="zkratkaType">
610
+ <xs:annotation>
611
+ <xs:documentation>Zkratka předkontace</xs:documentation>
612
+ </xs:annotation>
613
+ </xs:element>
614
+ <xs:element name="Popis" minOccurs="0">
615
+ <xs:annotation>
616
+ <xs:documentation>Popis předkontace</xs:documentation>
617
+ </xs:annotation>
618
+ <xs:simpleType>
619
+ <xs:restriction base="xs:string">
620
+ <xs:maxLength value="50"/>
621
+ </xs:restriction>
622
+ </xs:simpleType>
623
+ </xs:element>
624
+ <xs:element name="Typ" minOccurs="0">
625
+ <xs:annotation>
626
+ <xs:documentation>Typ předkontace
627
+
628
+ P - příjmy
629
+ V - výdaje</xs:documentation>
630
+ </xs:annotation>
631
+ <xs:simpleType>
632
+ <xs:restriction base="predkontaceDETypType">
633
+ <xs:maxLength value="1"/>
634
+ </xs:restriction>
635
+ </xs:simpleType>
636
+ </xs:element>
637
+ <xs:element name="PohZak" minOccurs="0">
638
+ <xs:annotation>
639
+ <xs:documentation>Účetní pohyb pro základ daně</xs:documentation>
640
+ </xs:annotation>
641
+ <xs:simpleType>
642
+ <xs:restriction base="xs:string">
643
+ <xs:maxLength value="10"/>
644
+ </xs:restriction>
645
+ </xs:simpleType>
646
+ </xs:element>
647
+ <xs:element name="ZauctDPH" minOccurs="0">
648
+ <xs:annotation>
649
+ <xs:documentation>Zkratka zaúčtování DPH</xs:documentation>
650
+ </xs:annotation>
651
+ <xs:simpleType>
652
+ <xs:restriction base="xs:string"/>
653
+ </xs:simpleType>
654
+ </xs:element>
655
+ <xs:element name="Cleneni" minOccurs="0">
656
+ <xs:annotation>
657
+ <xs:documentation>Členění DPH</xs:documentation>
658
+ </xs:annotation>
659
+ <xs:simpleType>
660
+ <xs:restriction base="xs:string">
661
+ <xs:maxLength value="10"/>
662
+ </xs:restriction>
663
+ </xs:simpleType>
664
+ </xs:element>
665
+ <xs:element name="Pozn" minOccurs="0">
666
+ <xs:annotation>
667
+ <xs:documentation>Poznámka</xs:documentation>
668
+ </xs:annotation>
669
+ </xs:element>
670
+ </xs:all>
671
+ </xs:complexType>
672
+ <xs:complexType name="ucOsnovaType">
673
+ <xs:annotation>
674
+ <xs:documentation>Definice účetní osnovy pro podvojné účetnictví</xs:documentation>
675
+ </xs:annotation>
676
+ <xs:all>
677
+ <xs:element name="Ucet" type="ucetType">
678
+ <xs:annotation>
679
+ <xs:documentation>Číslo účtu</xs:documentation>
680
+ </xs:annotation>
681
+ </xs:element>
682
+ <xs:element name="Nazev" minOccurs="0">
683
+ <xs:annotation>
684
+ <xs:documentation>Název účtu</xs:documentation>
685
+ </xs:annotation>
686
+ <xs:simpleType>
687
+ <xs:restriction base="xs:string">
688
+ <xs:maxLength value="100"/>
689
+ </xs:restriction>
690
+ </xs:simpleType>
691
+ </xs:element>
692
+ <xs:element name="Typ" minOccurs="0">
693
+ <xs:annotation>
694
+ <xs:documentation>Typ účtu (z historických důvodů - nepoužívat)
695
+
696
+ 1 = aktivní
697
+ 0 = pasivní</xs:documentation>
698
+ </xs:annotation>
699
+ <xs:simpleType>
700
+ <xs:restriction base="xs:boolean">
701
+ <xs:pattern value="0"/>
702
+ <xs:pattern value="1"/>
703
+ </xs:restriction>
704
+ </xs:simpleType>
705
+ </xs:element>
706
+ <xs:element name="Saldo" minOccurs="0">
707
+ <xs:annotation>
708
+ <xs:documentation>Sledovat saldo (z historických důvodů - nepoužívat)
709
+
710
+ 1 = sledovat
711
+ 0 = nesledovat</xs:documentation>
712
+ </xs:annotation>
713
+ <xs:simpleType>
714
+ <xs:restriction base="xs:boolean">
715
+ <xs:pattern value="0"/>
716
+ <xs:pattern value="1"/>
717
+ </xs:restriction>
718
+ </xs:simpleType>
719
+ </xs:element>
720
+ <xs:element name="Radek" type="xs:decimal" minOccurs="0">
721
+ <xs:annotation>
722
+ <xs:documentation>Řádek ve statickém výkazu v plném rozsahu</xs:documentation>
723
+ </xs:annotation>
724
+ </xs:element>
725
+ <xs:element name="UcPrev" type="ucetType" minOccurs="0">
726
+ <xs:annotation>
727
+ <xs:documentation>Účet pro převod zůstatku</xs:documentation>
728
+ </xs:annotation>
729
+ </xs:element>
730
+ <xs:element name="Pozn" minOccurs="0">
731
+ <xs:annotation>
732
+ <xs:documentation>Poznámka</xs:documentation>
733
+ </xs:annotation>
734
+ <xs:simpleType>
735
+ <xs:restriction base="xs:string">
736
+ <xs:maxLength value="255"/>
737
+ </xs:restriction>
738
+ </xs:simpleType>
739
+ </xs:element>
740
+ <xs:element name="RadekZkr" type="xs:decimal" minOccurs="0">
741
+ <xs:annotation>
742
+ <xs:documentation>Řádek ve statickém výkazu ve zkráceném rozsahu</xs:documentation>
743
+ </xs:annotation>
744
+ </xs:element>
745
+ <xs:element name="DruhUctu" type="ucOsnovaDruhUctuType" minOccurs="0">
746
+ <xs:annotation>
747
+ <xs:documentation>Druh účtu
748
+
749
+ 1 - rozvahový
750
+ 2 - výsledovkový
751
+ 3 - závěrkový
752
+ 4 - podrozvahový</xs:documentation>
753
+ </xs:annotation>
754
+ </xs:element>
755
+ <xs:element name="UcetTyp" type="ucOsnovaUcetTypType" minOccurs="0">
756
+ <xs:annotation>
757
+ <xs:documentation>Typ účtu
758
+
759
+ 0 - bez typu
760
+ 1 - aktivní
761
+ 2 - pasivní
762
+ 3 - nákladový
763
+ 4 - výnosový</xs:documentation>
764
+ </xs:annotation>
765
+ </xs:element>
766
+ <xs:element name="UcetPodTyp" type="ucOsnovaUcetPodTypType" minOccurs="0">
767
+ <xs:annotation>
768
+ <xs:documentation>Podtyp účtu
769
+
770
+ 1 - sledovat saldo
771
+ 2 - nesledovat saldo
772
+ 3 - ovlivňuje daň z příjmu
773
+ 4 - neovlivňuje daň z příjmu
774
+ 5 - sledovat zůstatek na straně má dáti
775
+ 6 - sledovat zůstatek na straně dal</xs:documentation>
776
+ </xs:annotation>
777
+ </xs:element>
778
+ <xs:element name="Vnitro" minOccurs="0">
779
+ <xs:annotation>
780
+ <xs:documentation>Příznak vnitopodnikového účtu</xs:documentation>
781
+ </xs:annotation>
782
+ <xs:simpleType>
783
+ <xs:restriction base="xs:boolean">
784
+ <xs:pattern value="0"/>
785
+ <xs:pattern value="1"/>
786
+ </xs:restriction>
787
+ </xs:simpleType>
788
+ </xs:element>
789
+ <xs:element name="Technicky" minOccurs="0">
790
+ <xs:annotation>
791
+ <xs:documentation>Příznak technického účtu</xs:documentation>
792
+ </xs:annotation>
793
+ <xs:simpleType>
794
+ <xs:restriction base="xs:boolean">
795
+ <xs:pattern value="0"/>
796
+ <xs:pattern value="1"/>
797
+ </xs:restriction>
798
+ </xs:simpleType>
799
+ </xs:element>
800
+ <xs:element name="Opravky" minOccurs="0">
801
+ <xs:annotation>
802
+ <xs:documentation>Příznak opravkového účtu</xs:documentation>
803
+ </xs:annotation>
804
+ <xs:simpleType>
805
+ <xs:restriction base="xs:boolean">
806
+ <xs:pattern value="0"/>
807
+ <xs:pattern value="1"/>
808
+ </xs:restriction>
809
+ </xs:simpleType>
810
+ </xs:element>
811
+ <xs:element name="DruhCin" type="ucOsnovaDruhCinType" minOccurs="0">
812
+ <xs:annotation>
813
+ <xs:documentation>Druh činnosti (pouze u příspěvkových organizací)
814
+
815
+ 0 - nezařazeno
816
+ 1 - hlavní
817
+ 2 - hospodářská
818
+ 3 - správní
819
+ 4 - jiné
820
+ </xs:documentation>
821
+ </xs:annotation>
822
+ </xs:element>
823
+ </xs:all>
824
+ </xs:complexType>
825
+ <xs:complexType name="ucPohybType">
826
+ <xs:annotation>
827
+ <xs:documentation>Definice účetního pohybu pro daňovou evidenci</xs:documentation>
828
+ </xs:annotation>
829
+ <xs:all>
830
+ <xs:element name="Zkrat" type="zkratkaType">
831
+ <xs:annotation>
832
+ <xs:documentation>Zkratka účetního pohybu</xs:documentation>
833
+ </xs:annotation>
834
+ </xs:element>
835
+ <xs:element name="Popis" minOccurs="0">
836
+ <xs:annotation>
837
+ <xs:documentation>Popis účetního pohybu</xs:documentation>
838
+ </xs:annotation>
839
+ <xs:simpleType>
840
+ <xs:restriction base="xs:string">
841
+ <xs:maxLength value="50"/>
842
+ </xs:restriction>
843
+ </xs:simpleType>
844
+ </xs:element>
845
+ <xs:element name="Typ" minOccurs="0">
846
+ <xs:annotation>
847
+ <xs:documentation>Typ účetního pohybu
848
+
849
+ P - příjmy
850
+ V - výdaje</xs:documentation>
851
+ </xs:annotation>
852
+ <xs:simpleType>
853
+ <xs:restriction base="predkontaceDETypType">
854
+ <xs:maxLength value="1"/>
855
+ </xs:restriction>
856
+ </xs:simpleType>
857
+ </xs:element>
858
+ <xs:element name="Sloupec" minOccurs="0">
859
+ <xs:annotation>
860
+ <xs:documentation>Sloupec peněžního deníku
861
+
862
+ Společné pro CZ i SK verzi:
863
+ PZbo - příjmy za zboží
864
+ PSlu - příjmy za služby
865
+ POst - ostatní příjmy podléhající dani
866
+ PSra - příjmy - srážky
867
+ PDPH - příjmy - DPH
868
+ PDot - příjmy - dotace
869
+ PVkl - příjmy - vklad
870
+ POsN - ostatní příjmy nepodléhající dani
871
+ PPrP - převod z průběžných položek
872
+ VMat - výdaje za materiál
873
+ VZbo - výdaje za zboží
874
+ VDrM - výdaje za drobný majetek
875
+ VMzd - výdaje za mzdy
876
+ VDMz - výdaje za daň z mezd
877
+ VRez - režijní výdaje
878
+ VHIM - výdaje - hmotný investiční majetek
879
+ VDPH - výdaje - DPH
880
+ VRzr - výdaje - rezerva
881
+ VDzP - výdaje - daň z příjmů
882
+ VOso - výdaje - osobní
883
+ VOsN - ostatní výdaje nepodléhající dani
884
+ VPrP - převod na průběžné položky
885
+
886
+ Pouze CZ verze:
887
+ VDar - výdaje - dary
888
+ VSoP - výdaje za sociální pojištění
889
+ VZdP - výdaje za zdravotní pojištění
890
+ VOzc - výdaje – neovlivňující základ daně (soc. a zdr. pojištění)
891
+
892
+ Pouze SK verze:
893
+ PSFT
894
+ VPoj
895
+ VTSF
896
+ VUvP
897
+ VSFC
898
+ </xs:documentation>
899
+ </xs:annotation>
900
+ <xs:simpleType>
901
+ <xs:restriction base="xs:string">
902
+ <xs:maxLength value="4"/>
903
+ </xs:restriction>
904
+ </xs:simpleType>
905
+ </xs:element>
906
+ <xs:element name="Pozn" type="xs:string" minOccurs="0">
907
+ <xs:annotation>
908
+ <xs:documentation>Poznámka</xs:documentation>
909
+ </xs:annotation>
910
+ </xs:element>
911
+ </xs:all>
912
+ </xs:complexType>
913
+ <xs:complexType name="strediskoType">
914
+ <xs:annotation>
915
+ <xs:documentation>Definice střediska</xs:documentation>
916
+ </xs:annotation>
917
+ <xs:all>
918
+ <xs:element name="Zkrat" type="zkratkaType">
919
+ <xs:annotation>
920
+ <xs:documentation>Zkratka střediska</xs:documentation>
921
+ </xs:annotation>
922
+ </xs:element>
923
+ <xs:element name="Nazev" minOccurs="0">
924
+ <xs:annotation>
925
+ <xs:documentation>Název střediska</xs:documentation>
926
+ </xs:annotation>
927
+ <xs:simpleType>
928
+ <xs:restriction base="xs:string"/>
929
+ </xs:simpleType>
930
+ </xs:element>
931
+ <xs:element name="Pozn" minOccurs="0">
932
+ <xs:annotation>
933
+ <xs:documentation>Poznámka</xs:documentation>
934
+ </xs:annotation>
935
+ <xs:simpleType>
936
+ <xs:restriction base="xs:string">
937
+ <xs:maxLength value="255"/>
938
+ </xs:restriction>
939
+ </xs:simpleType>
940
+ </xs:element>
941
+ </xs:all>
942
+ </xs:complexType>
943
+ <xs:complexType name="kurzListekType">
944
+ <xs:annotation>
945
+ <xs:documentation>Definice kurzovního lístku</xs:documentation>
946
+ </xs:annotation>
947
+ <xs:all>
948
+ <xs:element name="Banka" minOccurs="0">
949
+ <xs:annotation>
950
+ <xs:documentation>Kód banky (max 6 znaků) Import: NE, Export: ANO</xs:documentation>
951
+ </xs:annotation>
952
+ <xs:simpleType>
953
+ <xs:restriction base="xs:string">
954
+ <xs:maxLength value="6"/>
955
+ </xs:restriction>
956
+ </xs:simpleType>
957
+ </xs:element>
958
+ <xs:element name="PorCislo" type="xs:decimal" minOccurs="0">
959
+ <xs:annotation>
960
+ <xs:documentation>Pořadové číslo kurzovního lístku Import: NE, Export: ANO</xs:documentation>
961
+ </xs:annotation>
962
+ </xs:element>
963
+ <xs:element name="Datum" type="xs:date" minOccurs="0">
964
+ <xs:annotation>
965
+ <xs:documentation>Datum kurzovního lístku Import: NE, Export: ANO</xs:documentation>
966
+ </xs:annotation>
967
+ </xs:element>
968
+ <xs:element name="SeznamKurzu" minOccurs="0">
969
+ <xs:complexType>
970
+ <xs:sequence>
971
+ <xs:element name="Kurz" type="kurzType" maxOccurs="unbounded"/>
972
+ </xs:sequence>
973
+ </xs:complexType>
974
+ </xs:element>
975
+ </xs:all>
976
+ </xs:complexType>
977
+ <xs:complexType name="kurzType">
978
+ <xs:annotation>
979
+ <xs:documentation>Definice kurzu</xs:documentation>
980
+ </xs:annotation>
981
+ <xs:all>
982
+ <xs:element name="Banka" minOccurs="0">
983
+ <xs:annotation>
984
+ <xs:documentation>Kód banky (max 6 znaků) Import: NE, Export: ANO</xs:documentation>
985
+ </xs:annotation>
986
+ <xs:simpleType>
987
+ <xs:restriction base="xs:string">
988
+ <xs:maxLength value="6"/>
989
+ </xs:restriction>
990
+ </xs:simpleType>
991
+ </xs:element>
992
+ <xs:element name="Datum" type="xs:date" minOccurs="0">
993
+ <xs:annotation>
994
+ <xs:documentation>Datum kurzu Import: NE, Export: ANO</xs:documentation>
995
+ </xs:annotation>
996
+ </xs:element>
997
+ <xs:element name="Kod" minOccurs="0">
998
+ <xs:annotation>
999
+ <xs:documentation>Kód měny (max 4 znaky) Import: NE, Export: ANO</xs:documentation>
1000
+ </xs:annotation>
1001
+ <xs:simpleType>
1002
+ <xs:restriction base="xs:string">
1003
+ <xs:maxLength value="4"/>
1004
+ </xs:restriction>
1005
+ </xs:simpleType>
1006
+ </xs:element>
1007
+ <xs:element name="Zeme" minOccurs="0">
1008
+ <xs:annotation>
1009
+ <xs:documentation>Název země (max 50 znaků) Import: NE, Export: ANO</xs:documentation>
1010
+ </xs:annotation>
1011
+ <xs:simpleType>
1012
+ <xs:restriction base="xs:string">
1013
+ <xs:maxLength value="50"/>
1014
+ </xs:restriction>
1015
+ </xs:simpleType>
1016
+ </xs:element>
1017
+ <xs:element name="Mnozstvi" type="xs:decimal" minOccurs="0">
1018
+ <xs:annotation>
1019
+ <xs:documentation>Množství Import: NE, Export: ANO</xs:documentation>
1020
+ </xs:annotation>
1021
+ </xs:element>
1022
+ <xs:element name="NBStred" type="castkaType" minOccurs="0">
1023
+ <xs:annotation>
1024
+ <xs:documentation>Národní banka - střed Import: NE, Export: ANO</xs:documentation>
1025
+ </xs:annotation>
1026
+ </xs:element>
1027
+ <xs:element name="DevizyNakup" type="castkaType" minOccurs="0">
1028
+ <xs:annotation>
1029
+ <xs:documentation>Devizy nákup Import: NE, Export: ANO</xs:documentation>
1030
+ </xs:annotation>
1031
+ </xs:element>
1032
+ <xs:element name="DevizyProdej" type="castkaType" minOccurs="0">
1033
+ <xs:annotation>
1034
+ <xs:documentation>Devizy prodej Import: NE, Export: ANO</xs:documentation>
1035
+ </xs:annotation>
1036
+ </xs:element>
1037
+ <xs:element name="ValutyNakup" type="castkaType" minOccurs="0">
1038
+ <xs:annotation>
1039
+ <xs:documentation>Valuty nákup Import: NE, Export: ANO</xs:documentation>
1040
+ </xs:annotation>
1041
+ </xs:element>
1042
+ <xs:element name="ValutyProdej" type="castkaType" minOccurs="0">
1043
+ <xs:annotation>
1044
+ <xs:documentation>Valuty prodej Import: NE, Export: ANO</xs:documentation>
1045
+ </xs:annotation>
1046
+ </xs:element>
1047
+ </xs:all>
1048
+ </xs:complexType>
1049
+ <xs:complexType name="ekategorieType">
1050
+ <xs:annotation>
1051
+ <xs:documentation>Definice kategorie elektronického obchodu</xs:documentation>
1052
+ </xs:annotation>
1053
+ <xs:all>
1054
+ <xs:element name="ID" type="xs:unsignedLong">
1055
+ <xs:annotation>
1056
+ <xs:documentation>Číslo kategorie</xs:documentation>
1057
+ </xs:annotation>
1058
+ </xs:element>
1059
+ <xs:element name="Name">
1060
+ <xs:annotation>
1061
+ <xs:documentation>Název kategorie</xs:documentation>
1062
+ </xs:annotation>
1063
+ <xs:simpleType>
1064
+ <xs:restriction base="xs:string">
1065
+ <xs:maxLength value="50"/>
1066
+ </xs:restriction>
1067
+ </xs:simpleType>
1068
+ </xs:element>
1069
+ <xs:element name="Descript" minOccurs="0">
1070
+ <xs:annotation>
1071
+ <xs:documentation>Kód kategorie
1072
+
1073
+ Export: pouze XML elektronický obchod</xs:documentation>
1074
+ </xs:annotation>
1075
+ <xs:simpleType>
1076
+ <xs:restriction base="xs:string">
1077
+ <xs:maxLength value="50"/>
1078
+ </xs:restriction>
1079
+ </xs:simpleType>
1080
+ </xs:element>
1081
+ <xs:element name="IN_Changed" type="xs:boolean">
1082
+ <xs:annotation>
1083
+ <xs:documentation>Příznak změny. Exportem se příznak ruší.</xs:documentation>
1084
+ </xs:annotation>
1085
+ </xs:element>
1086
+ <xs:element name="NoPublic" type="xs:boolean">
1087
+ <xs:annotation>
1088
+ <xs:documentation>Nepublikovat
1089
+
1090
+ ANO = kategorie nemá být publikována
1091
+ NE = kategorie má být publikována</xs:documentation>
1092
+ </xs:annotation>
1093
+ </xs:element>
1094
+ <xs:element name="eShopInfo">
1095
+ <xs:annotation>
1096
+ <xs:documentation>Informace o elektronickém obchodu</xs:documentation>
1097
+ </xs:annotation>
1098
+ <xs:complexType>
1099
+ <xs:all>
1100
+ <xs:element name="eShopID">
1101
+ <xs:annotation>
1102
+ <xs:documentation>Identifikátor elektronického obchodu</xs:documentation>
1103
+ </xs:annotation>
1104
+ <xs:simpleType>
1105
+ <xs:restriction base="xs:byte">
1106
+ <xs:enumeration value="1">
1107
+ <xs:annotation>
1108
+ <xs:documentation>internetový obchod inShop</xs:documentation>
1109
+ </xs:annotation>
1110
+ </xs:enumeration>
1111
+ <xs:enumeration value="2">
1112
+ <xs:annotation>
1113
+ <xs:documentation>internetový obchod Vltava 2000</xs:documentation>
1114
+ </xs:annotation>
1115
+ </xs:enumeration>
1116
+ <xs:enumeration value="3">
1117
+ <xs:annotation>
1118
+ <xs:documentation>internetový obchod inShop 2000</xs:documentation>
1119
+ </xs:annotation>
1120
+ </xs:enumeration>
1121
+ <xs:enumeration value="4">
1122
+ <xs:annotation>
1123
+ <xs:documentation>internetový obchod MůjObchod</xs:documentation>
1124
+ </xs:annotation>
1125
+ </xs:enumeration>
1126
+ <xs:enumeration value="5">
1127
+ <xs:annotation>
1128
+ <xs:documentation>internetový obchod Store OnLine</xs:documentation>
1129
+ </xs:annotation>
1130
+ </xs:enumeration>
1131
+ <xs:enumeration value="6">
1132
+ <xs:annotation>
1133
+ <xs:documentation>obecný XML internetový obchod</xs:documentation>
1134
+ </xs:annotation>
1135
+ </xs:enumeration>
1136
+ </xs:restriction>
1137
+ </xs:simpleType>
1138
+ </xs:element>
1139
+ <xs:element name="eShopName">
1140
+ <xs:annotation>
1141
+ <xs:documentation>Název elektronického obchodu</xs:documentation>
1142
+ </xs:annotation>
1143
+ <xs:simpleType>
1144
+ <xs:restriction base="xs:string"/>
1145
+ </xs:simpleType>
1146
+ </xs:element>
1147
+ <xs:element name="eSaleID" minOccurs="0">
1148
+ <xs:annotation>
1149
+ <xs:documentation>Identifikátor prodejny elektronického obchodu</xs:documentation>
1150
+ </xs:annotation>
1151
+ <xs:simpleType>
1152
+ <xs:restriction base="xs:string">
1153
+ <xs:maxLength value="10"/>
1154
+ </xs:restriction>
1155
+ </xs:simpleType>
1156
+ </xs:element>
1157
+ </xs:all>
1158
+ </xs:complexType>
1159
+ </xs:element>
1160
+ <xs:element name="SeznamPodrKategorii" minOccurs="0">
1161
+ <xs:annotation>
1162
+ <xs:documentation>Seznam podřízených kategorií</xs:documentation>
1163
+ </xs:annotation>
1164
+ <xs:complexType>
1165
+ <xs:sequence>
1166
+ <xs:element name="eKategorie" type="ekategorieType" minOccurs="0" maxOccurs="unbounded">
1167
+ <xs:annotation>
1168
+ <xs:documentation>Kategorie elektronického obchodu</xs:documentation>
1169
+ </xs:annotation>
1170
+ </xs:element>
1171
+ </xs:sequence>
1172
+ </xs:complexType>
1173
+ </xs:element>
1174
+ </xs:all>
1175
+ </xs:complexType>
1176
+ <xs:complexType name="parametrType">
1177
+ <xs:annotation>
1178
+ <xs:documentation>Definice parametru</xs:documentation>
1179
+ </xs:annotation>
1180
+ <xs:all>
1181
+ <xs:element name="ID" type="xs:unsignedLong">
1182
+ <xs:annotation>
1183
+ <xs:documentation>Jedinečný identifikátor parametru
1184
+
1185
+ EXPORT: ANO
1186
+ IMPORT: NE</xs:documentation>
1187
+ </xs:annotation>
1188
+ </xs:element>
1189
+ <xs:element name="Nazev">
1190
+ <xs:annotation>
1191
+ <xs:documentation>Název parametru
1192
+
1193
+ EXPORT: ANO
1194
+ IMPORT: NE</xs:documentation>
1195
+ </xs:annotation>
1196
+ <xs:simpleType>
1197
+ <xs:restriction base="xs:string">
1198
+ <xs:maxLength value="50"/>
1199
+ </xs:restriction>
1200
+ </xs:simpleType>
1201
+ </xs:element>
1202
+ <xs:element name="Druh">
1203
+ <xs:annotation>
1204
+ <xs:documentation>Druh parametru:
1205
+ N=numerický, V=výčtový, T=textový
1206
+
1207
+ EXPORT: ANO
1208
+ IMPORT: NE</xs:documentation>
1209
+ </xs:annotation>
1210
+ <xs:simpleType>
1211
+ <xs:restriction base="xs:string">
1212
+ <xs:maxLength value="1"/>
1213
+ <xs:enumeration value="N"/>
1214
+ <xs:enumeration value="V"/>
1215
+ <xs:enumeration value="T"/>
1216
+ </xs:restriction>
1217
+ </xs:simpleType>
1218
+ </xs:element>
1219
+ <xs:element name="Typ" minOccurs="0">
1220
+ <xs:annotation>
1221
+ <xs:documentation>Uživatelský typ parametru
1222
+
1223
+ EXPORT: ANO
1224
+ IMPORT: NE</xs:documentation>
1225
+ </xs:annotation>
1226
+ <xs:simpleType>
1227
+ <xs:restriction base="xs:string">
1228
+ <xs:maxLength value="20"/>
1229
+ </xs:restriction>
1230
+ </xs:simpleType>
1231
+ </xs:element>
1232
+ <xs:element name="MJ" minOccurs="0">
1233
+ <xs:annotation>
1234
+ <xs:documentation>Měrná jednotka. Uvádí se pouze u numerického parametru (Druh=N).
1235
+
1236
+ EXPORT: ANO
1237
+ IMPORT: NE</xs:documentation>
1238
+ </xs:annotation>
1239
+ <xs:simpleType>
1240
+ <xs:restriction base="xs:string">
1241
+ <xs:maxLength value="10"/>
1242
+ </xs:restriction>
1243
+ </xs:simpleType>
1244
+ </xs:element>
1245
+ <xs:element name="UzivCode" minOccurs="0">
1246
+ <xs:annotation>
1247
+ <xs:documentation>Uživatelský kód parametru
1248
+
1249
+ EXPORT: ANO
1250
+ IMPORT: NE</xs:documentation>
1251
+ </xs:annotation>
1252
+ <xs:simpleType>
1253
+ <xs:restriction base="xs:string">
1254
+ <xs:maxLength value="10"/>
1255
+ </xs:restriction>
1256
+ </xs:simpleType>
1257
+ </xs:element>
1258
+ <xs:element name="Hodnoty" minOccurs="0">
1259
+ <xs:annotation>
1260
+ <xs:documentation>Výčet hodnot oddělených středníkem. Uvádí se pouze u výčtového parametru (Druh=V).
1261
+
1262
+ EXPORT: ANO pouze při exportu seznamu parametrů (nikoliv kmenových karet)
1263
+ IMPORT: NE</xs:documentation>
1264
+ </xs:annotation>
1265
+ <xs:simpleType>
1266
+ <xs:restriction base="vycetType"/>
1267
+ </xs:simpleType>
1268
+ </xs:element>
1269
+ </xs:all>
1270
+ </xs:complexType>
1271
+ <xs:complexType name="bankUcetPokladnaType">
1272
+ <xs:annotation>
1273
+ <xs:documentation>Definice bankovního účtu a pokladny</xs:documentation>
1274
+ </xs:annotation>
1275
+ <xs:all>
1276
+ <xs:element name="Zkrat" type="zkratkaType">
1277
+ <xs:annotation>
1278
+ <xs:documentation>Zkratka</xs:documentation>
1279
+ </xs:annotation>
1280
+ </xs:element>
1281
+ <xs:element name="Popis" minOccurs="0">
1282
+ <xs:annotation>
1283
+ <xs:documentation>Popis</xs:documentation>
1284
+ </xs:annotation>
1285
+ <xs:simpleType>
1286
+ <xs:restriction base="xs:string">
1287
+ <xs:maxLength value="50"/>
1288
+ </xs:restriction>
1289
+ </xs:simpleType>
1290
+ </xs:element>
1291
+ <xs:element name="UcPokl" minOccurs="0">
1292
+ <xs:annotation>
1293
+ <xs:documentation>Proměnná určuje, zda se jedná o bankovní účet nebo pokladnu:
1294
+
1295
+ U = bankovní účet
1296
+ P = pokladna</xs:documentation>
1297
+ </xs:annotation>
1298
+ <xs:simpleType>
1299
+ <xs:restriction base="xs:string">
1300
+ <xs:maxLength value="1"/>
1301
+ <xs:enumeration value="U"/>
1302
+ <xs:enumeration value="P"/>
1303
+ </xs:restriction>
1304
+ </xs:simpleType>
1305
+ </xs:element>
1306
+ <xs:element name="PocStav" type="castkaType" minOccurs="0">
1307
+ <xs:annotation>
1308
+ <xs:documentation>Počáteční stav</xs:documentation>
1309
+ </xs:annotation>
1310
+ </xs:element>
1311
+ <xs:element name="Mena" minOccurs="0">
1312
+ <xs:annotation>
1313
+ <xs:documentation>Cizí měna bankovního účtu nebo pokladny</xs:documentation>
1314
+ </xs:annotation>
1315
+ <xs:simpleType>
1316
+ <xs:restriction base="xs:string">
1317
+ <xs:maxLength value="4"/>
1318
+ </xs:restriction>
1319
+ </xs:simpleType>
1320
+ </xs:element>
1321
+ <xs:element name="BMena" minOccurs="0">
1322
+ <xs:annotation>
1323
+ <xs:documentation>Kurz načítat z banky</xs:documentation>
1324
+ </xs:annotation>
1325
+ <xs:simpleType>
1326
+ <xs:restriction base="xs:string">
1327
+ <xs:maxLength value="4"/>
1328
+ </xs:restriction>
1329
+ </xs:simpleType>
1330
+ </xs:element>
1331
+ <xs:element name="PSKurz" type="castkaType" minOccurs="0">
1332
+ <xs:annotation>
1333
+ <xs:documentation>Kurz počátečního stavu</xs:documentation>
1334
+ </xs:annotation>
1335
+ </xs:element>
1336
+ <xs:element name="PSMnozstvi" type="xs:long" minOccurs="0">
1337
+ <xs:annotation>
1338
+ <xs:documentation>Množství v kurzu počátečního stavu</xs:documentation>
1339
+ </xs:annotation>
1340
+ </xs:element>
1341
+ <xs:element name="PrimUcet" type="ucetType" minOccurs="0">
1342
+ <xs:annotation>
1343
+ <xs:documentation>Primární účet</xs:documentation>
1344
+ </xs:annotation>
1345
+ </xs:element>
1346
+ <xs:element name="Ucet" minOccurs="0">
1347
+ <xs:annotation>
1348
+ <xs:documentation>Číslo bankovního účtu</xs:documentation>
1349
+ </xs:annotation>
1350
+ <xs:simpleType>
1351
+ <xs:restriction base="xs:string">
1352
+ <xs:maxLength value="20"/>
1353
+ </xs:restriction>
1354
+ </xs:simpleType>
1355
+ </xs:element>
1356
+ <xs:element name="BKod" minOccurs="0">
1357
+ <xs:annotation>
1358
+ <xs:documentation>Číselný kód banky</xs:documentation>
1359
+ </xs:annotation>
1360
+ <xs:simpleType>
1361
+ <xs:restriction base="xs:string">
1362
+ <xs:maxLength value="4"/>
1363
+ </xs:restriction>
1364
+ </xs:simpleType>
1365
+ </xs:element>
1366
+ <xs:element name="BNazev" minOccurs="0">
1367
+ <xs:annotation>
1368
+ <xs:documentation>Název banky</xs:documentation>
1369
+ </xs:annotation>
1370
+ <xs:simpleType>
1371
+ <xs:restriction base="xs:string">
1372
+ <xs:maxLength value="50"/>
1373
+ </xs:restriction>
1374
+ </xs:simpleType>
1375
+ </xs:element>
1376
+ <xs:element name="BZkrat" minOccurs="0">
1377
+ <xs:annotation>
1378
+ <xs:documentation>Alfanumerický kód banky</xs:documentation>
1379
+ </xs:annotation>
1380
+ <xs:simpleType>
1381
+ <xs:restriction base="xs:string">
1382
+ <xs:maxLength value="6"/>
1383
+ </xs:restriction>
1384
+ </xs:simpleType>
1385
+ </xs:element>
1386
+ <xs:element name="IBAN" minOccurs="0">
1387
+ <xs:annotation>
1388
+ <xs:documentation>IBAN formát bankovního účtu. Jedná se o mezinárodní standard EU pro bankovní účet.</xs:documentation>
1389
+ </xs:annotation>
1390
+ <xs:simpleType>
1391
+ <xs:restriction base="xs:string">
1392
+ <xs:maxLength value="34"/>
1393
+ </xs:restriction>
1394
+ </xs:simpleType>
1395
+ </xs:element>
1396
+ <xs:element name="SWIFT" minOccurs="0">
1397
+ <xs:annotation>
1398
+ <xs:documentation>Mezinárodní kód banky</xs:documentation>
1399
+ </xs:annotation>
1400
+ <xs:simpleType>
1401
+ <xs:restriction base="xs:string">
1402
+ <xs:maxLength value="11"/>
1403
+ </xs:restriction>
1404
+ </xs:simpleType>
1405
+ </xs:element>
1406
+ <xs:element name="Uver" type="xs:boolean" minOccurs="0">
1407
+ <xs:annotation>
1408
+ <xs:documentation>Proměnná určuje, zda se jedná o úvěrový účet (1) či nikoliv (0).</xs:documentation>
1409
+ </xs:annotation>
1410
+ </xs:element>
1411
+ <xs:element name="HBID" minOccurs="0">
1412
+ <xs:annotation>
1413
+ <xs:documentation>Identifikátor elektronického platebního styku (název knihovny *.dll)</xs:documentation>
1414
+ </xs:annotation>
1415
+ <xs:simpleType>
1416
+ <xs:restriction base="xs:string">
1417
+ <xs:maxLength value="8"/>
1418
+ </xs:restriction>
1419
+ </xs:simpleType>
1420
+ </xs:element>
1421
+ <xs:element name="HBNazev" minOccurs="0">
1422
+ <xs:annotation>
1423
+ <xs:documentation>Název elektronického platebního styku</xs:documentation>
1424
+ </xs:annotation>
1425
+ <xs:simpleType>
1426
+ <xs:restriction base="xs:string">
1427
+ <xs:maxLength value="50"/>
1428
+ </xs:restriction>
1429
+ </xs:simpleType>
1430
+ </xs:element>
1431
+ <xs:element name="Druh" type="xs:byte" minOccurs="0">
1432
+ <xs:annotation>
1433
+ <xs:documentation>???</xs:documentation>
1434
+ </xs:annotation>
1435
+ </xs:element>
1436
+ <xs:element name="TypPrijem" minOccurs="0">
1437
+ <xs:annotation>
1438
+ <xs:documentation>Typ příjmového pokladního resp. bankovního dokladu</xs:documentation>
1439
+ </xs:annotation>
1440
+ <xs:simpleType>
1441
+ <xs:restriction base="xs:string">
1442
+ <xs:maxLength value="10"/>
1443
+ </xs:restriction>
1444
+ </xs:simpleType>
1445
+ </xs:element>
1446
+ <xs:element name="TypVydej" minOccurs="0">
1447
+ <xs:annotation>
1448
+ <xs:documentation>Typ výdajového pokladního resp. bankovního dokladu</xs:documentation>
1449
+ </xs:annotation>
1450
+ <xs:simpleType>
1451
+ <xs:restriction base="xs:string">
1452
+ <xs:maxLength value="10"/>
1453
+ </xs:restriction>
1454
+ </xs:simpleType>
1455
+ </xs:element>
1456
+ <xs:element name="Pokladni" minOccurs="0">
1457
+ <xs:annotation>
1458
+ <xs:documentation>Pokladní (pracovník odpovědný za pokladnu)</xs:documentation>
1459
+ </xs:annotation>
1460
+ <xs:simpleType>
1461
+ <xs:restriction base="xs:string">
1462
+ <xs:maxLength value="50"/>
1463
+ </xs:restriction>
1464
+ </xs:simpleType>
1465
+ </xs:element>
1466
+ <xs:element name="Pozn" minOccurs="0">
1467
+ <xs:annotation>
1468
+ <xs:documentation>Poznámka</xs:documentation>
1469
+ </xs:annotation>
1470
+ </xs:element>
1471
+ </xs:all>
1472
+ </xs:complexType>
1473
+ <xs:complexType name="typPriplatkuType">
1474
+ <xs:annotation>
1475
+ <xs:documentation>Definice typu mzdového příplatku</xs:documentation>
1476
+ </xs:annotation>
1477
+ <xs:all>
1478
+ <xs:element name="Zkratka" minOccurs="0">
1479
+ <xs:annotation>
1480
+ <xs:documentation>Zkratka typu příplatku</xs:documentation>
1481
+ </xs:annotation>
1482
+ <xs:simpleType>
1483
+ <xs:restriction base="xs:string">
1484
+ <xs:maxLength value="10"/>
1485
+ </xs:restriction>
1486
+ </xs:simpleType>
1487
+ </xs:element>
1488
+ <xs:element name="Popis" type="xs:string" minOccurs="0">
1489
+ <xs:annotation>
1490
+ <xs:documentation>Popis typu příplatku</xs:documentation>
1491
+ </xs:annotation>
1492
+ </xs:element>
1493
+ <xs:element name="Poznamka" type="xs:string" minOccurs="0">
1494
+ <xs:annotation>
1495
+ <xs:documentation>Poznámka</xs:documentation>
1496
+ </xs:annotation>
1497
+ </xs:element>
1498
+ <xs:element name="Druh" type="priplatekDruhType" minOccurs="0">
1499
+ <xs:annotation>
1500
+ <xs:documentation>Druh příplatku:
1501
+
1502
+ 0 = Nedefinovaný druh příplatku
1503
+ 1 = Přesčasy
1504
+ 2 = Práce ve svátky
1505
+ 3 = Práce v sobotu a neděli
1506
+ 4 = Pracovní prostředí
1507
+ 5 = Práce v noci
1508
+ 6 = Pracovní pohotovost</xs:documentation>
1509
+ </xs:annotation>
1510
+ </xs:element>
1511
+ <xs:element name="Sazba" type="cisloType" minOccurs="0">
1512
+ <xs:annotation>
1513
+ <xs:documentation>Sazba příplatku vyjádřená v procentech nebo v částce podle nastaveného způsobu výpočtu (viz element Typ).</xs:documentation>
1514
+ </xs:annotation>
1515
+ </xs:element>
1516
+ <xs:element name="Typ" minOccurs="0">
1517
+ <xs:annotation>
1518
+ <xs:documentation>Způsob výpočtu příplatku:
1519
+
1520
+ 0 = v procentech
1521
+ 1 = v částce</xs:documentation>
1522
+ </xs:annotation>
1523
+ <xs:simpleType>
1524
+ <xs:restriction base="xs:decimal">
1525
+ <xs:enumeration value="0"/>
1526
+ <xs:enumeration value="1"/>
1527
+ </xs:restriction>
1528
+ </xs:simpleType>
1529
+ </xs:element>
1530
+ <xs:element name="AutoLoad" type="xs:decimal" minOccurs="0">
1531
+ <xs:annotation>
1532
+ <xs:documentation>Proměnná určuje, zda se má typ příplatku přebírat do nového mzdového období zaměstnance či nikoliv. Pokud je hodnota větší nebo rovna nule, tak se typ příplatku bude přebírat. Hodnota proměnné současně určuje pořadí, ve kterém se budou typy příplatků přebírat. Pokud je rovno -1, tak se nepřebírá.</xs:documentation>
1533
+ </xs:annotation>
1534
+ </xs:element>
1535
+ <xs:element name="PrNahOff" type="xs:boolean" minOccurs="0">
1536
+ <xs:annotation>
1537
+ <xs:documentation>Proměnná určuje, zda typ příplatku vstupuje do výpočtu průměrné náhrady či nikoliv (POZOR, jedná se o obrácenou logiku):
1538
+
1539
+ 0 = typ příplatku vstupuje do průměrné náhrady mzdy
1540
+ 1 = typ příplatku nevstupuje do průměrné náhrady mzdy
1541
+ </xs:documentation>
1542
+ </xs:annotation>
1543
+ </xs:element>
1544
+ </xs:all>
1545
+ </xs:complexType>
1546
+ <xs:complexType name="prepravceType">
1547
+ <xs:annotation>
1548
+ <xs:documentation>Definice přepravce (expedice)</xs:documentation>
1549
+ </xs:annotation>
1550
+ <xs:all>
1551
+ <xs:element name="Zkrat" minOccurs="0">
1552
+ <xs:annotation>
1553
+ <xs:documentation>Zkratka přepravce</xs:documentation>
1554
+ </xs:annotation>
1555
+ </xs:element>
1556
+ <xs:element name="Nazev" minOccurs="0">
1557
+ <xs:annotation>
1558
+ <xs:documentation>Název přepravce</xs:documentation>
1559
+ </xs:annotation>
1560
+ </xs:element>
1561
+ <xs:element name="Poznamka" minOccurs="0">
1562
+ <xs:annotation>
1563
+ <xs:documentation>Poznámka</xs:documentation>
1564
+ </xs:annotation>
1565
+ </xs:element>
1566
+ <xs:element name="KodOdesil" minOccurs="0">
1567
+ <xs:annotation>
1568
+ <xs:documentation>Kód odesílatele (pouze SK verze)</xs:documentation>
1569
+ </xs:annotation>
1570
+ </xs:element>
1571
+ </xs:all>
1572
+ </xs:complexType>
1573
+ <xs:complexType name="typZasilkyType">
1574
+ <xs:annotation>
1575
+ <xs:documentation>Definice typu zásilky (expedice)</xs:documentation>
1576
+ </xs:annotation>
1577
+ <xs:all>
1578
+ <xs:element name="Zkrat" minOccurs="0">
1579
+ <xs:annotation>
1580
+ <xs:documentation>Zkratka typu zásilky</xs:documentation>
1581
+ </xs:annotation>
1582
+ </xs:element>
1583
+ <xs:element name="Popis" minOccurs="0">
1584
+ <xs:annotation>
1585
+ <xs:documentation>Popis typu zásilky</xs:documentation>
1586
+ </xs:annotation>
1587
+ </xs:element>
1588
+ <xs:element name="Poznamka" minOccurs="0">
1589
+ <xs:annotation>
1590
+ <xs:documentation>Poznámka</xs:documentation>
1591
+ </xs:annotation>
1592
+ </xs:element>
1593
+ </xs:all>
1594
+ </xs:complexType>
1595
+ <xs:complexType name="preprDoplnUdajType">
1596
+ <xs:annotation>
1597
+ <xs:documentation>Definice doplňkového údaje (expedice) - pouze SK verze</xs:documentation>
1598
+ </xs:annotation>
1599
+ <xs:all>
1600
+ <xs:element name="Zkrat" minOccurs="0">
1601
+ <xs:annotation>
1602
+ <xs:documentation>Zkratka doplňkového údaje</xs:documentation>
1603
+ </xs:annotation>
1604
+ </xs:element>
1605
+ <xs:element name="Popis" minOccurs="0">
1606
+ <xs:annotation>
1607
+ <xs:documentation>Popis doplňkového údaje</xs:documentation>
1608
+ </xs:annotation>
1609
+ </xs:element>
1610
+ <xs:element name="Poznamka" minOccurs="0">
1611
+ <xs:annotation>
1612
+ <xs:documentation>Poznámka doplňkového údaje</xs:documentation>
1613
+ </xs:annotation>
1614
+ </xs:element>
1615
+ </xs:all>
1616
+ </xs:complexType>
1617
+ <xs:simpleType name="clenDPHTypType">
1618
+ <xs:restriction base="xs:string">
1619
+ <xs:enumeration value="P"/>
1620
+ <xs:enumeration value="U"/>
1621
+ </xs:restriction>
1622
+ </xs:simpleType>
1623
+ <xs:simpleType name="clenDPHKolonkaType">
1624
+ <xs:restriction base="xs:string">
1625
+ <xs:enumeration value="DD"/>
1626
+ <xs:enumeration value="FD"/>
1627
+ <xs:enumeration value="FT"/>
1628
+ <xs:enumeration value="K1"/>
1629
+ <xs:enumeration value="K2"/>
1630
+ <xs:enumeration value="K4"/>
1631
+ <xs:enumeration value="K5"/>
1632
+ <xs:enumeration value="K6"/>
1633
+ <xs:enumeration value="K7"/>
1634
+ <xs:enumeration value="K8"/>
1635
+ <xs:enumeration value="KD"/>
1636
+ <xs:enumeration value="KR"/>
1637
+ <xs:enumeration value="KT"/>
1638
+ <xs:enumeration value="MP"/>
1639
+ <xs:enumeration value="ND"/>
1640
+ <xs:enumeration value="NN"/>
1641
+ <xs:enumeration value="NR"/>
1642
+ <xs:enumeration value="NT"/>
1643
+ <xs:enumeration value="P1"/>
1644
+ <xs:enumeration value="P2"/>
1645
+ <xs:enumeration value="P4"/>
1646
+ <xs:enumeration value="P5"/>
1647
+ <xs:enumeration value="P6"/>
1648
+ <xs:enumeration value="P7"/>
1649
+ <xs:enumeration value="P8"/>
1650
+ <xs:enumeration value="PD"/>
1651
+ <xs:enumeration value="PT"/>
1652
+ <xs:enumeration value="PX"/>
1653
+ <xs:enumeration value="PY"/>
1654
+ <xs:enumeration value="PZ"/>
1655
+ <xs:enumeration value="R1"/>
1656
+ <xs:enumeration value="R2"/>
1657
+ <xs:enumeration value="R3"/>
1658
+ <xs:enumeration value="R4"/>
1659
+ <xs:enumeration value="R5"/>
1660
+ <xs:enumeration value="R6"/>
1661
+ <xs:enumeration value="R7"/>
1662
+ <xs:enumeration value="R8"/>
1663
+ <xs:enumeration value="R9"/>
1664
+ <xs:enumeration value="U1"/>
1665
+ <xs:enumeration value="U2"/>
1666
+ <xs:enumeration value="U3"/>
1667
+ <xs:enumeration value="U4"/>
1668
+ <xs:enumeration value="U5"/>
1669
+ <xs:enumeration value="U6"/>
1670
+ <xs:enumeration value="U7"/>
1671
+ <xs:enumeration value="UO"/>
1672
+ <xs:enumeration value="UT"/>
1673
+ <xs:enumeration value="UX"/>
1674
+ <xs:enumeration value="UZ"/>
1675
+ <xs:enumeration value="VB"/>
1676
+ <xs:enumeration value="VD"/>
1677
+ <xs:enumeration value="VS"/>
1678
+ <xs:enumeration value="VZ"/>
1679
+ <xs:enumeration value="ZI"/>
1680
+ <xs:enumeration value="ZN"/>
1681
+ </xs:restriction>
1682
+ </xs:simpleType>
1683
+ <xs:simpleType name="predkontaceTypType">
1684
+ <xs:restriction base="xs:string">
1685
+ <xs:enumeration value="NN"/>
1686
+ <xs:enumeration value="VF"/>
1687
+ <xs:enumeration value="PF"/>
1688
+ <xs:enumeration value="PP"/>
1689
+ <xs:enumeration value="VP"/>
1690
+ <xs:enumeration value="PU"/>
1691
+ <xs:enumeration value="VU"/>
1692
+ <xs:enumeration value="ZA"/>
1693
+ <xs:enumeration value="PO"/>
1694
+ <xs:enumeration value="ID"/>
1695
+ </xs:restriction>
1696
+ </xs:simpleType>
1697
+ <xs:simpleType name="predkontaceDETypType">
1698
+ <xs:restriction base="xs:string">
1699
+ <xs:enumeration value="P"/>
1700
+ <xs:enumeration value="V"/>
1701
+ </xs:restriction>
1702
+ </xs:simpleType>
1703
+ <xs:simpleType name="ucOsnovaDruhUctuType">
1704
+ <xs:restriction base="xs:decimal">
1705
+ <xs:enumeration value="0"/>
1706
+ <xs:enumeration value="1"/>
1707
+ <xs:enumeration value="2"/>
1708
+ <xs:enumeration value="3"/>
1709
+ <xs:enumeration value="4"/>
1710
+ </xs:restriction>
1711
+ </xs:simpleType>
1712
+ <xs:simpleType name="ucOsnovaUcetTypType">
1713
+ <xs:restriction base="xs:decimal">
1714
+ <xs:enumeration value="0"/>
1715
+ <xs:enumeration value="1"/>
1716
+ <xs:enumeration value="2"/>
1717
+ <xs:enumeration value="3"/>
1718
+ <xs:enumeration value="4"/>
1719
+ </xs:restriction>
1720
+ </xs:simpleType>
1721
+ <xs:simpleType name="ucOsnovaUcetPodTypType">
1722
+ <xs:restriction base="xs:decimal">
1723
+ <xs:enumeration value="0"/>
1724
+ <xs:enumeration value="1"/>
1725
+ <xs:enumeration value="2"/>
1726
+ <xs:enumeration value="3"/>
1727
+ <xs:enumeration value="4"/>
1728
+ <xs:enumeration value="5"/>
1729
+ <xs:enumeration value="6"/>
1730
+ </xs:restriction>
1731
+ </xs:simpleType>
1732
+ <xs:simpleType name="ucOsnovaDruhCinType">
1733
+ <xs:restriction base="xs:decimal">
1734
+ <xs:enumeration value="0"/>
1735
+ <xs:enumeration value="1"/>
1736
+ <xs:enumeration value="2"/>
1737
+ <xs:enumeration value="3"/>
1738
+ <xs:enumeration value="4"/>
1739
+ </xs:restriction>
1740
+ </xs:simpleType>
1741
+ <xs:simpleType name="priplatekDruhType">
1742
+ <xs:annotation>
1743
+ <xs:documentation>Výčet druhů příplatků</xs:documentation>
1744
+ </xs:annotation>
1745
+ <xs:restriction base="xs:decimal">
1746
+ <xs:enumeration value="0"/>
1747
+ <xs:enumeration value="1"/>
1748
+ <xs:enumeration value="2"/>
1749
+ <xs:enumeration value="3"/>
1750
+ <xs:enumeration value="4"/>
1751
+ <xs:enumeration value="5"/>
1752
+ <xs:enumeration value="6"/>
1753
+ </xs:restriction>
1754
+ </xs:simpleType>
1755
+ </xs:schema>