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,397 @@
|
|
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:include schemaLocation="__Firma.xsd"/>
|
5
|
+
<xs:complexType name="intDoklType">
|
6
|
+
<xs:sequence>
|
7
|
+
<xs:element name="Doklad" minOccurs="0">
|
8
|
+
<xs:annotation>
|
9
|
+
<xs:documentation>Číslo dokladu Import: ANO Export: ANO</xs:documentation>
|
10
|
+
</xs:annotation>
|
11
|
+
<xs:simpleType>
|
12
|
+
<xs:restriction base="xs:string">
|
13
|
+
<xs:maxLength value="10"/>
|
14
|
+
</xs:restriction>
|
15
|
+
</xs:simpleType>
|
16
|
+
</xs:element>
|
17
|
+
<xs:element name="EET" type="EETType" minOccurs="0">
|
18
|
+
<xs:annotation>
|
19
|
+
<xs:documentation>Údaje týkající se EET (pouze CZ verze)
|
20
|
+
|
21
|
+
IMPORT: ANO,
|
22
|
+
EXPORT: ANO
|
23
|
+
</xs:documentation>
|
24
|
+
</xs:annotation>
|
25
|
+
</xs:element>
|
26
|
+
<xs:element name="ZpusobUctovani" type="xs:byte" minOccurs="0">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>Způsob účtování dokladu:
|
29
|
+
0 = účtování dokladu proběhne podle nastavení v konfiguraci (default)
|
30
|
+
1 = doklad se nezaúčtuje
|
31
|
+
IMPORT: ANO, EXPORT: ANO</xs:documentation>
|
32
|
+
</xs:annotation>
|
33
|
+
</xs:element>
|
34
|
+
<xs:element name="Popis" type="popisType" minOccurs="0">
|
35
|
+
<xs:annotation>
|
36
|
+
<xs:documentation>Popis Import: ANO Export: ANO</xs:documentation>
|
37
|
+
</xs:annotation>
|
38
|
+
</xs:element>
|
39
|
+
<xs:element name="DatUcPr" type="xs:date" minOccurs="0">
|
40
|
+
<xs:annotation>
|
41
|
+
<xs:documentation>Datum účetního případu Import: ANO Export: ANO</xs:documentation>
|
42
|
+
</xs:annotation>
|
43
|
+
</xs:element>
|
44
|
+
<xs:element name="DatPln" type="xs:date" minOccurs="0">
|
45
|
+
<xs:annotation>
|
46
|
+
<xs:documentation>Datum zdanitelného plnění Import: ANO Export: ANO</xs:documentation>
|
47
|
+
</xs:annotation>
|
48
|
+
</xs:element>
|
49
|
+
<xs:element name="DatUplDPH" type="xs:date" minOccurs="0">
|
50
|
+
<xs:annotation>
|
51
|
+
<xs:documentation>Datum uplatnění DPH (pouze CZ verze)
|
52
|
+
Import: ANO Export: ANO</xs:documentation>
|
53
|
+
</xs:annotation>
|
54
|
+
</xs:element>
|
55
|
+
<xs:element name="DatumKV" type="xs:date" minOccurs="0">
|
56
|
+
<xs:annotation>
|
57
|
+
<xs:documentation>Datum vstupu do KV (pouze SK verze)
|
58
|
+
Import: ANO Export: ANO</xs:documentation>
|
59
|
+
</xs:annotation>
|
60
|
+
</xs:element>
|
61
|
+
<xs:element name="CisloZapoc">
|
62
|
+
<xs:annotation>
|
63
|
+
<xs:documentation>Číslo vzájemného zápočtu, který je tvořen mj. i tímto dokladem. IMPORT: ANO, EXPORT: ANO</xs:documentation>
|
64
|
+
</xs:annotation>
|
65
|
+
</xs:element>
|
66
|
+
<xs:element name="PrijatDokl" minOccurs="0">
|
67
|
+
<xs:annotation>
|
68
|
+
<xs:documentation>Číslo přijatého dokladu</xs:documentation>
|
69
|
+
</xs:annotation>
|
70
|
+
<xs:simpleType>
|
71
|
+
<xs:restriction base="xs:string">
|
72
|
+
<xs:maxLength value="50"/>
|
73
|
+
</xs:restriction>
|
74
|
+
</xs:simpleType>
|
75
|
+
</xs:element>
|
76
|
+
<xs:element name="VarSym" minOccurs="0">
|
77
|
+
<xs:annotation>
|
78
|
+
<xs:documentation>Variabilní szmbol Import: ANO Export: ANO</xs:documentation>
|
79
|
+
</xs:annotation>
|
80
|
+
<xs:simpleType>
|
81
|
+
<xs:restriction base="xs:string">
|
82
|
+
<xs:maxLength value="20"/>
|
83
|
+
</xs:restriction>
|
84
|
+
</xs:simpleType>
|
85
|
+
</xs:element>
|
86
|
+
<xs:element name="ParSym" minOccurs="0">
|
87
|
+
<xs:annotation>
|
88
|
+
<xs:documentation>Párovací symbol Import: ANO Export: ANO</xs:documentation>
|
89
|
+
</xs:annotation>
|
90
|
+
<xs:simpleType>
|
91
|
+
<xs:restriction base="xs:string">
|
92
|
+
<xs:maxLength value="20"/>
|
93
|
+
</xs:restriction>
|
94
|
+
</xs:simpleType>
|
95
|
+
</xs:element>
|
96
|
+
<xs:element name="Adresa" type="dokladFirmaType" minOccurs="0">
|
97
|
+
<xs:annotation>
|
98
|
+
<xs:documentation>Adresát dokladu Import: ANO Export: ANO</xs:documentation>
|
99
|
+
</xs:annotation>
|
100
|
+
</xs:element>
|
101
|
+
<xs:element name="PrKont" type="zkratkaType" minOccurs="0">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>zatím neřešeno</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
</xs:element>
|
106
|
+
<xs:element name="Cleneni" type="zkratkaType" minOccurs="0">
|
107
|
+
<xs:annotation>
|
108
|
+
<xs:documentation>Členění DPH Import: ANO Export: ANO</xs:documentation>
|
109
|
+
</xs:annotation>
|
110
|
+
</xs:element>
|
111
|
+
<xs:element name="Stred" type="zkratkaType" minOccurs="0">
|
112
|
+
<xs:annotation>
|
113
|
+
<xs:documentation>Středisko Import: ANO Export: ANO</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
</xs:element>
|
116
|
+
<xs:element name="Zakazka" type="zkratkaType" minOccurs="0">
|
117
|
+
<xs:annotation>
|
118
|
+
<xs:documentation>Zakázka Import: ANO Export: ANO</xs:documentation>
|
119
|
+
</xs:annotation>
|
120
|
+
</xs:element>
|
121
|
+
<xs:element name="Cinnost" type="zkratkaType" minOccurs="0">
|
122
|
+
<xs:annotation>
|
123
|
+
<xs:documentation>Činnost Import: ANO Export: ANO</xs:documentation>
|
124
|
+
</xs:annotation>
|
125
|
+
</xs:element>
|
126
|
+
<xs:element name="Vyroba" type="castkaType" minOccurs="0">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>Pro potřeby modulu Výroba</xs:documentation>
|
129
|
+
</xs:annotation>
|
130
|
+
</xs:element>
|
131
|
+
<xs:element name="StatMOSS" minOccurs="0">
|
132
|
+
<xs:annotation>
|
133
|
+
<xs:documentation>Kód státu MOSS (Mini One Stop Shop).
|
134
|
+
IMPORT: ANO, EXPORT: ANO</xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
<xs:simpleType>
|
137
|
+
<xs:restriction base="xs:string">
|
138
|
+
<xs:length value="2"/>
|
139
|
+
</xs:restriction>
|
140
|
+
</xs:simpleType>
|
141
|
+
</xs:element>
|
142
|
+
<xs:element name="SSazba" type="procentoType" minOccurs="0">
|
143
|
+
<xs:annotation>
|
144
|
+
<xs:documentation>Snížená sazba DPH IMPORT: ANO
|
145
|
+
EXPORT: ANO</xs:documentation>
|
146
|
+
</xs:annotation>
|
147
|
+
</xs:element>
|
148
|
+
<xs:element name="ZSazba" type="procentoType" minOccurs="0">
|
149
|
+
<xs:annotation>
|
150
|
+
<xs:documentation>Základní sazba DPH IMPORT: ANO
|
151
|
+
EXPORT: ANO</xs:documentation>
|
152
|
+
</xs:annotation>
|
153
|
+
</xs:element>
|
154
|
+
<xs:sequence minOccurs="0">
|
155
|
+
<xs:element name="SouhrnDPH" type="souhrnDPHType">
|
156
|
+
<xs:annotation>
|
157
|
+
<xs:documentation>Doklady v domácí měně: IMPORT: ANO
|
158
|
+
EXPORT: ANO</xs:documentation>
|
159
|
+
</xs:annotation>
|
160
|
+
</xs:element>
|
161
|
+
<xs:element name="Celkem" type="castkaType">
|
162
|
+
<xs:annotation>
|
163
|
+
<xs:documentation>Celkiem s DPH (POUZE EXPORT)</xs:documentation>
|
164
|
+
</xs:annotation>
|
165
|
+
</xs:element>
|
166
|
+
</xs:sequence>
|
167
|
+
<xs:element name="Valuty" minOccurs="0">
|
168
|
+
<xs:annotation>
|
169
|
+
<xs:documentation>Doklad v cizí měně
|
170
|
+
IMPORT: ANO
|
171
|
+
EXPORT: ANO</xs:documentation>
|
172
|
+
</xs:annotation>
|
173
|
+
<xs:complexType>
|
174
|
+
<xs:sequence>
|
175
|
+
<xs:element name="Mena" type="menaType">
|
176
|
+
<xs:annotation>
|
177
|
+
<xs:documentation>Identifikace cizí měny</xs:documentation>
|
178
|
+
</xs:annotation>
|
179
|
+
</xs:element>
|
180
|
+
<xs:element name="SouhrnDPH" type="souhrnDPHType">
|
181
|
+
<xs:annotation>
|
182
|
+
<xs:documentation>Souhrn DPH
|
183
|
+
IMPORT: ANO
|
184
|
+
EXPORT: ANO</xs:documentation>
|
185
|
+
</xs:annotation>
|
186
|
+
</xs:element>
|
187
|
+
<xs:element name="Celkem" type="castkaType">
|
188
|
+
<xs:annotation>
|
189
|
+
<xs:documentation>Celkem s DPH ve valutách (POUZE EXPORT)</xs:documentation>
|
190
|
+
</xs:annotation>
|
191
|
+
</xs:element>
|
192
|
+
</xs:sequence>
|
193
|
+
</xs:complexType>
|
194
|
+
</xs:element>
|
195
|
+
<xs:element name="Pozn" minOccurs="0">
|
196
|
+
<xs:annotation>
|
197
|
+
<xs:documentation>Poznámka Import: ANO Export: ANO </xs:documentation>
|
198
|
+
</xs:annotation>
|
199
|
+
</xs:element>
|
200
|
+
<xs:element name="DRada" minOccurs="0">
|
201
|
+
<xs:annotation>
|
202
|
+
<xs:documentation>Číselná řada - prefix Import: ANO Export: ANO </xs:documentation>
|
203
|
+
</xs:annotation>
|
204
|
+
<xs:simpleType>
|
205
|
+
<xs:restriction base="xs:string">
|
206
|
+
<xs:maxLength value="5"/>
|
207
|
+
</xs:restriction>
|
208
|
+
</xs:simpleType>
|
209
|
+
</xs:element>
|
210
|
+
<xs:element name="DCislo" minOccurs="0">
|
211
|
+
<xs:annotation>
|
212
|
+
<xs:documentation>Čítač číselné řady Import: NE Export: ANO </xs:documentation>
|
213
|
+
</xs:annotation>
|
214
|
+
<xs:simpleType>
|
215
|
+
<xs:restriction base="xs:decimal">
|
216
|
+
<xs:totalDigits value="11"/>
|
217
|
+
<xs:fractionDigits value="0"/>
|
218
|
+
</xs:restriction>
|
219
|
+
</xs:simpleType>
|
220
|
+
</xs:element>
|
221
|
+
<xs:element name="Vyst" minOccurs="0">
|
222
|
+
<xs:annotation>
|
223
|
+
<xs:documentation>Uživatel, který vystavil doklad Import: ANO Export: ANO </xs:documentation>
|
224
|
+
</xs:annotation>
|
225
|
+
<xs:simpleType>
|
226
|
+
<xs:restriction base="xs:string">
|
227
|
+
<xs:maxLength value="50"/>
|
228
|
+
</xs:restriction>
|
229
|
+
</xs:simpleType>
|
230
|
+
</xs:element>
|
231
|
+
<xs:element name="Rezim" type="xs:boolean" minOccurs="0"/>
|
232
|
+
<xs:element name="KorekceCen" type="xs:boolean" minOccurs="0">
|
233
|
+
<xs:annotation>
|
234
|
+
<xs:documentation>neřešeno</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
</xs:element>
|
237
|
+
<xs:element name="TypDokl" minOccurs="0">
|
238
|
+
<xs:annotation>
|
239
|
+
<xs:documentation>Zkratka typu dokladu Import: ANO Export: ANO </xs:documentation>
|
240
|
+
</xs:annotation>
|
241
|
+
<xs:simpleType>
|
242
|
+
<xs:restriction base="xs:string">
|
243
|
+
<xs:maxLength value="10"/>
|
244
|
+
</xs:restriction>
|
245
|
+
</xs:simpleType>
|
246
|
+
</xs:element>
|
247
|
+
<xs:choice minOccurs="0">
|
248
|
+
<xs:element name="RozuctPolozka" type="rozuctPolozIDType" maxOccurs="unbounded">
|
249
|
+
<xs:annotation>
|
250
|
+
<xs:documentation>Rozúčtovací položky dokladu Import: ANO Export: ANO </xs:documentation>
|
251
|
+
</xs:annotation>
|
252
|
+
</xs:element>
|
253
|
+
<xs:element name="NormPolozka" type="normPolozIDType" maxOccurs="unbounded">
|
254
|
+
<xs:annotation>
|
255
|
+
<xs:documentation>neřešeno</xs:documentation>
|
256
|
+
</xs:annotation>
|
257
|
+
</xs:element>
|
258
|
+
</xs:choice>
|
259
|
+
<xs:element name="Vlajky" minOccurs="0">
|
260
|
+
<xs:complexType>
|
261
|
+
<xs:sequence>
|
262
|
+
<xs:element name="Global" type="VlajkaType" minOccurs="0"/>
|
263
|
+
<xs:element name="User" type="VlajkaType" minOccurs="0"/>
|
264
|
+
</xs:sequence>
|
265
|
+
</xs:complexType>
|
266
|
+
</xs:element>
|
267
|
+
<xs:element name="Dokumenty" minOccurs="0">
|
268
|
+
<xs:annotation>
|
269
|
+
<xs:documentation>Seznam připojených dokumentů
|
270
|
+
IMPORT: ANO
|
271
|
+
EXPORT: NE</xs:documentation>
|
272
|
+
</xs:annotation>
|
273
|
+
<xs:complexType>
|
274
|
+
<xs:sequence>
|
275
|
+
<xs:element name="Dokument" type="xs:string" maxOccurs="unbounded">
|
276
|
+
<xs:annotation>
|
277
|
+
<xs:documentation>Jméno souboru (bez cesty). Soubor se musí nacházet ve stejném adresáři (ZIP souboru) jako importovaný XML dokument.</xs:documentation>
|
278
|
+
</xs:annotation>
|
279
|
+
</xs:element>
|
280
|
+
</xs:sequence>
|
281
|
+
</xs:complexType>
|
282
|
+
</xs:element>
|
283
|
+
</xs:sequence>
|
284
|
+
</xs:complexType>
|
285
|
+
<xs:complexType name="normPolozIDType">
|
286
|
+
<xs:sequence>
|
287
|
+
<xs:element name="Poradi" minOccurs="0">
|
288
|
+
<xs:simpleType>
|
289
|
+
<xs:restriction base="xs:decimal">
|
290
|
+
<xs:totalDigits value="11"/>
|
291
|
+
<xs:fractionDigits value="0"/>
|
292
|
+
</xs:restriction>
|
293
|
+
</xs:simpleType>
|
294
|
+
</xs:element>
|
295
|
+
<xs:element name="Popis" type="popisType" minOccurs="0"/>
|
296
|
+
<xs:element name="Zkratka" type="zkratkaType" minOccurs="0"/>
|
297
|
+
<xs:element name="Cena" type="castkaType" minOccurs="0"/>
|
298
|
+
<xs:element name="CenaTyp" minOccurs="0">
|
299
|
+
<xs:simpleType>
|
300
|
+
<xs:restriction base="xs:decimal">
|
301
|
+
<xs:totalDigits value="1"/>
|
302
|
+
<xs:fractionDigits value="0"/>
|
303
|
+
</xs:restriction>
|
304
|
+
</xs:simpleType>
|
305
|
+
</xs:element>
|
306
|
+
<xs:element name="SazbaDPH" type="procentoType" minOccurs="0"/>
|
307
|
+
<xs:element name="TextMJ" minOccurs="0">
|
308
|
+
<xs:simpleType>
|
309
|
+
<xs:restriction base="xs:string">
|
310
|
+
<xs:maxLength value="10"/>
|
311
|
+
</xs:restriction>
|
312
|
+
</xs:simpleType>
|
313
|
+
</xs:element>
|
314
|
+
<xs:element name="PocetMJ" type="mnozstviType" minOccurs="0"/>
|
315
|
+
<xs:element name="PrKont" type="zkratkaType" minOccurs="0"/>
|
316
|
+
<xs:element name="Cleneni" type="zkratkaType" minOccurs="0"/>
|
317
|
+
<xs:element name="Stred" type="zkratkaType" minOccurs="0"/>
|
318
|
+
<xs:element name="Zakazka" type="zkratkaType" minOccurs="0"/>
|
319
|
+
<xs:element name="Cinnost" type="zkratkaType" minOccurs="0"/>
|
320
|
+
<xs:element name="Poznamka" minOccurs="0"/>
|
321
|
+
</xs:sequence>
|
322
|
+
</xs:complexType>
|
323
|
+
<xs:complexType name="rozuctPolozIDType">
|
324
|
+
<xs:sequence>
|
325
|
+
<xs:element name="Popis" type="popisType" minOccurs="0">
|
326
|
+
<xs:annotation>
|
327
|
+
<xs:documentation>Popis položky Import: ANO Export: ANO </xs:documentation>
|
328
|
+
</xs:annotation>
|
329
|
+
</xs:element>
|
330
|
+
<xs:element name="UcMD" type="ucetType">
|
331
|
+
<xs:annotation>
|
332
|
+
<xs:documentation>Účet MD Import: ANO Export: ANO </xs:documentation>
|
333
|
+
</xs:annotation>
|
334
|
+
</xs:element>
|
335
|
+
<xs:element name="UcD" type="ucetType">
|
336
|
+
<xs:annotation>
|
337
|
+
<xs:documentation>Účet Dal Import: ANO Export: ANO </xs:documentation>
|
338
|
+
</xs:annotation>
|
339
|
+
</xs:element>
|
340
|
+
<xs:element name="Castka" type="castkaType">
|
341
|
+
<xs:annotation>
|
342
|
+
<xs:documentation>Částka položky Import: ANO Export: ANO </xs:documentation>
|
343
|
+
</xs:annotation>
|
344
|
+
</xs:element>
|
345
|
+
<xs:element name="Stred" type="zkratkaType" minOccurs="0">
|
346
|
+
<xs:annotation>
|
347
|
+
<xs:documentation>Středisko Import: ANO Export: ANO </xs:documentation>
|
348
|
+
</xs:annotation>
|
349
|
+
</xs:element>
|
350
|
+
<xs:element name="Zakazka" type="zkratkaType" minOccurs="0">
|
351
|
+
<xs:annotation>
|
352
|
+
<xs:documentation>Zakázka Import: ANO Export: ANO </xs:documentation>
|
353
|
+
</xs:annotation>
|
354
|
+
</xs:element>
|
355
|
+
<xs:element name="Cinnost" type="zkratkaType" minOccurs="0">
|
356
|
+
<xs:annotation>
|
357
|
+
<xs:documentation>Činnost Import: ANO Export: ANO </xs:documentation>
|
358
|
+
</xs:annotation>
|
359
|
+
</xs:element>
|
360
|
+
<xs:element name="ParSym" minOccurs="0">
|
361
|
+
<xs:annotation>
|
362
|
+
<xs:documentation>Párovací symbol Import: ANO Export: ANO </xs:documentation>
|
363
|
+
</xs:annotation>
|
364
|
+
<xs:simpleType>
|
365
|
+
<xs:restriction base="xs:string">
|
366
|
+
<xs:maxLength value="20"/>
|
367
|
+
</xs:restriction>
|
368
|
+
</xs:simpleType>
|
369
|
+
</xs:element>
|
370
|
+
<xs:element name="ParICO" minOccurs="0">
|
371
|
+
<xs:annotation>
|
372
|
+
<xs:documentation>Párovací IČO (pro zaúčtování) Import: ANO Export: ANO </xs:documentation>
|
373
|
+
</xs:annotation>
|
374
|
+
<xs:simpleType>
|
375
|
+
<xs:restriction base="xs:string">
|
376
|
+
<xs:maxLength value="10"/>
|
377
|
+
</xs:restriction>
|
378
|
+
</xs:simpleType>
|
379
|
+
</xs:element>
|
380
|
+
<xs:element name="Pozn" minOccurs="0">
|
381
|
+
<xs:annotation>
|
382
|
+
<xs:documentation>Poznámka Import: ANO Export: ANO </xs:documentation>
|
383
|
+
</xs:annotation>
|
384
|
+
</xs:element>
|
385
|
+
<xs:element name="TypCena" type="xs:boolean" minOccurs="0">
|
386
|
+
<xs:annotation>
|
387
|
+
<xs:documentation>Typ ceny(částka) : 0=základ, 1= DPH Import: ANO Export: ANO </xs:documentation>
|
388
|
+
</xs:annotation>
|
389
|
+
</xs:element>
|
390
|
+
<xs:element name="SazbaDPH" type="procentoType" minOccurs="0">
|
391
|
+
<xs:annotation>
|
392
|
+
<xs:documentation>Sazba DPH pro částku položky Import: ANO Export: ANO </xs:documentation>
|
393
|
+
</xs:annotation>
|
394
|
+
</xs:element>
|
395
|
+
</xs:sequence>
|
396
|
+
</xs:complexType>
|
397
|
+
</xs:schema>
|
@@ -0,0 +1,150 @@
|
|
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:include schemaLocation="__Zasoba.xsd"/>
|
5
|
+
<xs:complexType name="invDoklType">
|
6
|
+
<xs:sequence>
|
7
|
+
<xs:element name="CisloD" type="xs:integer">
|
8
|
+
<xs:annotation>
|
9
|
+
<xs:documentation>Číslo dokladu v rámci inventury: Import: ANO, Export: ANO</xs:documentation>
|
10
|
+
</xs:annotation>
|
11
|
+
</xs:element>
|
12
|
+
<xs:element name="InvID" type="xs:integer">
|
13
|
+
<xs:annotation>
|
14
|
+
<xs:documentation>číslo inventury, spolu s CisloID jednoznačný identifikátor: Import: ANO, Export: ANO</xs:documentation>
|
15
|
+
</xs:annotation>
|
16
|
+
</xs:element>
|
17
|
+
<xs:element name="Popis" minOccurs="0">
|
18
|
+
<xs:annotation>
|
19
|
+
<xs:documentation>Popis dokladu Import: ANO, Export: ANO</xs:documentation>
|
20
|
+
</xs:annotation>
|
21
|
+
<xs:simpleType>
|
22
|
+
<xs:restriction base="xs:string">
|
23
|
+
<xs:maxLength value="50"/>
|
24
|
+
</xs:restriction>
|
25
|
+
</xs:simpleType>
|
26
|
+
</xs:element>
|
27
|
+
<xs:element name="Prac" minOccurs="0">
|
28
|
+
<xs:annotation>
|
29
|
+
<xs:documentation>Import: NE, Export: ANO</xs:documentation>
|
30
|
+
</xs:annotation>
|
31
|
+
<xs:simpleType>
|
32
|
+
<xs:restriction base="xs:string">
|
33
|
+
<xs:maxLength value="50"/>
|
34
|
+
</xs:restriction>
|
35
|
+
</xs:simpleType>
|
36
|
+
</xs:element>
|
37
|
+
<xs:element name="Kontr" minOccurs="0">
|
38
|
+
<xs:annotation>
|
39
|
+
<xs:documentation>Kontroloval IMPORT:ANO, EXPORT:ANO</xs:documentation>
|
40
|
+
</xs:annotation>
|
41
|
+
<xs:simpleType>
|
42
|
+
<xs:restriction base="xs:string">
|
43
|
+
<xs:maxLength value="50"/>
|
44
|
+
</xs:restriction>
|
45
|
+
</xs:simpleType>
|
46
|
+
</xs:element>
|
47
|
+
<xs:element name="Poznamka" minOccurs="0">
|
48
|
+
<xs:annotation>
|
49
|
+
<xs:documentation>Poznámka Export:ANO, Import:ANO</xs:documentation>
|
50
|
+
</xs:annotation>
|
51
|
+
<xs:simpleType>
|
52
|
+
<xs:restriction base="xs:string"/>
|
53
|
+
</xs:simpleType>
|
54
|
+
</xs:element>
|
55
|
+
<xs:element name="Polozka" type="polInvDoklType" minOccurs="0" maxOccurs="unbounded"/>
|
56
|
+
</xs:sequence>
|
57
|
+
</xs:complexType>
|
58
|
+
<xs:complexType name="polInvDoklType">
|
59
|
+
<xs:sequence maxOccurs="unbounded">
|
60
|
+
<xs:element name="Popis" type="popisType" minOccurs="0">
|
61
|
+
<xs:annotation>
|
62
|
+
<xs:documentation>Název položky Import: ANO, Export: ANO</xs:documentation>
|
63
|
+
</xs:annotation>
|
64
|
+
</xs:element>
|
65
|
+
<xs:element name="Zkrat" minOccurs="0">
|
66
|
+
<xs:annotation>
|
67
|
+
<xs:documentation>Zkratka Import: NE, Export: ANO</xs:documentation>
|
68
|
+
</xs:annotation>
|
69
|
+
<xs:simpleType>
|
70
|
+
<xs:restriction base="xs:string">
|
71
|
+
<xs:maxLength value="50"/>
|
72
|
+
</xs:restriction>
|
73
|
+
</xs:simpleType>
|
74
|
+
</xs:element>
|
75
|
+
<xs:element name="Slupina" type="xs:integer" minOccurs="0">
|
76
|
+
<xs:annotation>
|
77
|
+
<xs:documentation>Číslo skupiny Import: NE, Export: ANO</xs:documentation>
|
78
|
+
</xs:annotation>
|
79
|
+
</xs:element>
|
80
|
+
<xs:element name="MJ" type="popisType" minOccurs="0">
|
81
|
+
<xs:annotation>
|
82
|
+
<xs:documentation>MJ, Import: NE, Export: ANO</xs:documentation>
|
83
|
+
</xs:annotation>
|
84
|
+
</xs:element>
|
85
|
+
<xs:element name="MnInv" type="mnozstviType" minOccurs="0">
|
86
|
+
<xs:annotation>
|
87
|
+
<xs:documentation>Počet Mj: Import: ANO, Export: ANO</xs:documentation>
|
88
|
+
</xs:annotation>
|
89
|
+
</xs:element>
|
90
|
+
<xs:element name="SeznamVC" minOccurs="0">
|
91
|
+
<xs:annotation>
|
92
|
+
<xs:documentation>Seznam výrobních čísel Import: ANO, Export: ANO</xs:documentation>
|
93
|
+
</xs:annotation>
|
94
|
+
<xs:complexType>
|
95
|
+
<xs:sequence>
|
96
|
+
<xs:element name="VyrobniCislo" minOccurs="0" maxOccurs="unbounded">
|
97
|
+
<xs:complexType>
|
98
|
+
<xs:sequence>
|
99
|
+
<xs:element name="VyrobniCis" type="popisType" minOccurs="0"/>
|
100
|
+
<xs:element name="DatVyr" minOccurs="0"/>
|
101
|
+
<xs:element name="CarKod" minOccurs="0">
|
102
|
+
<xs:simpleType>
|
103
|
+
<xs:restriction base="xs:string">
|
104
|
+
<xs:maxLength value="20"/>
|
105
|
+
</xs:restriction>
|
106
|
+
</xs:simpleType>
|
107
|
+
</xs:element>
|
108
|
+
</xs:sequence>
|
109
|
+
</xs:complexType>
|
110
|
+
</xs:element>
|
111
|
+
</xs:sequence>
|
112
|
+
</xs:complexType>
|
113
|
+
</xs:element>
|
114
|
+
<xs:element name="Sklad" type="skladType"/>
|
115
|
+
<xs:element name="KmKarta" type="kmKartaType">
|
116
|
+
<xs:annotation>
|
117
|
+
<xs:documentation>Číslo kmenové karty Import: NE, Export: ANO</xs:documentation>
|
118
|
+
</xs:annotation>
|
119
|
+
</xs:element>
|
120
|
+
<xs:element name="Slozeni" minOccurs="0">
|
121
|
+
<xs:annotation>
|
122
|
+
<xs:documentation>Definice složené karty Impoet:NE (vždy se bere z definice v Money), Export: ANO </xs:documentation>
|
123
|
+
</xs:annotation>
|
124
|
+
<xs:complexType>
|
125
|
+
<xs:sequence>
|
126
|
+
<xs:element name="SubPolozka" type="subpolInvDType" maxOccurs="unbounded"/>
|
127
|
+
</xs:sequence>
|
128
|
+
</xs:complexType>
|
129
|
+
</xs:element>
|
130
|
+
</xs:sequence>
|
131
|
+
</xs:complexType>
|
132
|
+
<xs:complexType name="subpolInvDType">
|
133
|
+
<xs:annotation>
|
134
|
+
<xs:documentation>Definice složených karet: Import:NE Export:ANO (z definice km.karty)</xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
<xs:sequence maxOccurs="unbounded">
|
137
|
+
<xs:element name="MnSada">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>Množství na sadu Export:ANO, Import:NE</xs:documentation>
|
140
|
+
</xs:annotation>
|
141
|
+
<xs:simpleType>
|
142
|
+
<xs:restriction base="mnozstviType">
|
143
|
+
<xs:minExclusive value="0"/>
|
144
|
+
</xs:restriction>
|
145
|
+
</xs:simpleType>
|
146
|
+
</xs:element>
|
147
|
+
<xs:element name="Polozka" type="polInvDoklType"/>
|
148
|
+
</xs:sequence>
|
149
|
+
</xs:complexType>
|
150
|
+
</xs:schema>
|