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