@open-nav/core 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +29 -0
- package/README.md +132 -0
- package/dist/constants.d.ts +49 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +58 -0
- package/dist/constants.js.map +1 -0
- package/dist/crypto/hash.d.ts +16 -0
- package/dist/crypto/hash.d.ts.map +1 -0
- package/dist/crypto/hash.js +30 -0
- package/dist/crypto/hash.js.map +1 -0
- package/dist/crypto/node-provider.d.ts +9 -0
- package/dist/crypto/node-provider.d.ts.map +1 -0
- package/dist/crypto/node-provider.js +18 -0
- package/dist/crypto/node-provider.js.map +1 -0
- package/dist/crypto/provider.d.ts +28 -0
- package/dist/crypto/provider.d.ts.map +1 -0
- package/dist/crypto/provider.js +14 -0
- package/dist/crypto/provider.js.map +1 -0
- package/dist/crypto/request-id.d.ts +16 -0
- package/dist/crypto/request-id.d.ts.map +1 -0
- package/dist/crypto/request-id.js +59 -0
- package/dist/crypto/request-id.js.map +1 -0
- package/dist/crypto/signature.d.ts +40 -0
- package/dist/crypto/signature.d.ts.map +1 -0
- package/dist/crypto/signature.js +38 -0
- package/dist/crypto/signature.js.map +1 -0
- package/dist/crypto/token.d.ts +14 -0
- package/dist/crypto/token.d.ts.map +1 -0
- package/dist/crypto/token.js +82 -0
- package/dist/crypto/token.js.map +1 -0
- package/dist/crypto/web-provider.d.ts +18 -0
- package/dist/crypto/web-provider.d.ts.map +1 -0
- package/dist/crypto/web-provider.js +31 -0
- package/dist/crypto/web-provider.js.map +1 -0
- package/dist/errors.d.ts +75 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +71 -0
- package/dist/errors.js.map +1 -0
- package/dist/generated/fault-codes.d.ts +1343 -0
- package/dist/generated/fault-codes.d.ts.map +1 -0
- package/dist/generated/fault-codes.js +1331 -0
- package/dist/generated/fault-codes.js.map +1 -0
- package/dist/generated/index.d.ts +4 -0
- package/dist/generated/index.d.ts.map +1 -0
- package/dist/generated/index.js +5 -0
- package/dist/generated/index.js.map +1 -0
- package/dist/generated/schema.d.ts +13 -0
- package/dist/generated/schema.d.ts.map +1 -0
- package/dist/generated/schema.js +3756 -0
- package/dist/generated/schema.js.map +1 -0
- package/dist/generated/types.d.ts +5580 -0
- package/dist/generated/types.d.ts.map +1 -0
- package/dist/generated/types.js +6 -0
- package/dist/generated/types.js.map +1 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +23 -0
- package/dist/index.js.map +1 -0
- package/dist/invoice/payload.d.ts +40 -0
- package/dist/invoice/payload.d.ts.map +1 -0
- package/dist/invoice/payload.js +66 -0
- package/dist/invoice/payload.js.map +1 -0
- package/dist/money/decimal.d.ts +69 -0
- package/dist/money/decimal.d.ts.map +1 -0
- package/dist/money/decimal.js +190 -0
- package/dist/money/decimal.js.map +1 -0
- package/dist/money/summary.d.ts +60 -0
- package/dist/money/summary.d.ts.map +1 -0
- package/dist/money/summary.js +236 -0
- package/dist/money/summary.js.map +1 -0
- package/dist/time.d.ts +16 -0
- package/dist/time.d.ts.map +1 -0
- package/dist/time.js +41 -0
- package/dist/time.js.map +1 -0
- package/dist/validation/issue.d.ts +67 -0
- package/dist/validation/issue.d.ts.map +1 -0
- package/dist/validation/issue.js +40 -0
- package/dist/validation/issue.js.map +1 -0
- package/dist/validation/rules.d.ts +34 -0
- package/dist/validation/rules.d.ts.map +1 -0
- package/dist/validation/rules.js +290 -0
- package/dist/validation/rules.js.map +1 -0
- package/dist/validation/schema.d.ts +14 -0
- package/dist/validation/schema.d.ts.map +1 -0
- package/dist/validation/schema.js +231 -0
- package/dist/validation/schema.js.map +1 -0
- package/dist/validation/tax-number.d.ts +39 -0
- package/dist/validation/tax-number.d.ts.map +1 -0
- package/dist/validation/tax-number.js +79 -0
- package/dist/validation/tax-number.js.map +1 -0
- package/dist/validation/validate.d.ts +29 -0
- package/dist/validation/validate.d.ts.map +1 -0
- package/dist/validation/validate.js +33 -0
- package/dist/validation/validate.js.map +1 -0
- package/dist/xml/descriptor.d.ts +82 -0
- package/dist/xml/descriptor.d.ts.map +1 -0
- package/dist/xml/descriptor.js +32 -0
- package/dist/xml/descriptor.js.map +1 -0
- package/dist/xml/read.d.ts +25 -0
- package/dist/xml/read.d.ts.map +1 -0
- package/dist/xml/read.js +230 -0
- package/dist/xml/read.js.map +1 -0
- package/dist/xml/write.d.ts +28 -0
- package/dist/xml/write.d.ts.map +1 -0
- package/dist/xml/write.js +299 -0
- package/dist/xml/write.js.map +1 -0
- package/package.json +55 -0
- package/src/constants.ts +76 -0
- package/src/crypto/hash.ts +35 -0
- package/src/crypto/node-provider.ts +19 -0
- package/src/crypto/provider.ts +37 -0
- package/src/crypto/request-id.ts +63 -0
- package/src/crypto/signature.ts +58 -0
- package/src/crypto/token.ts +86 -0
- package/src/crypto/web-provider.ts +32 -0
- package/src/errors.ts +109 -0
- package/src/generated/fault-codes.ts +1338 -0
- package/src/generated/index.ts +4 -0
- package/src/generated/schema.ts +3760 -0
- package/src/generated/types.ts +5829 -0
- package/src/index.ts +22 -0
- package/src/invoice/payload.ts +102 -0
- package/src/money/decimal.ts +218 -0
- package/src/money/summary.ts +380 -0
- package/src/time.ts +44 -0
- package/src/validation/issue.ts +102 -0
- package/src/validation/rules.ts +548 -0
- package/src/validation/schema.ts +315 -0
- package/src/validation/tax-number.ts +96 -0
- package/src/validation/validate.ts +45 -0
- package/src/xml/descriptor.ts +112 -0
- package/src/xml/read.ts +303 -0
- package/src/xml/write.ts +391 -0
|
@@ -0,0 +1,1343 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Validation faults NAV reports against an invoice.
|
|
3
|
+
*
|
|
4
|
+
* These are the codes that appear in `businessValidationMessages` and
|
|
5
|
+
* `technicalValidationMessages`. Many are decidable from the document alone
|
|
6
|
+
* and are checked locally by the validation module; others depend on state only
|
|
7
|
+
* NAV holds, such as whether an invoice number has been used before.
|
|
8
|
+
*/
|
|
9
|
+
export declare const NAV_FAULT_MESSAGES: {
|
|
10
|
+
readonly ANNULMENT_IN_PROGRESS: {
|
|
11
|
+
readonly en: "The base invoice is already under technical annulment.";
|
|
12
|
+
readonly hu: "Az alapszámlára már van technikai érvénytelenítés folyamatban.";
|
|
13
|
+
readonly de: "Die Basisrechnung ist bereits technisch aufgehoben.";
|
|
14
|
+
};
|
|
15
|
+
readonly BATCH_INDEX_NOT_SEQUENTIAL: {
|
|
16
|
+
readonly en: "The numbering of batch indexes is not strictly ascending.";
|
|
17
|
+
readonly hu: "A batchIndex értékek nincsenek sorrendben.";
|
|
18
|
+
readonly de: "Die Nummerierung der Stapelindizes ist nicht streng aufsteigend.";
|
|
19
|
+
};
|
|
20
|
+
readonly BATCH_INVOICE_CARDINALITY_ERROR: {
|
|
21
|
+
readonly en: "In case of batch modification the inner content must contain at least two base invoices.";
|
|
22
|
+
readonly hu: "Kötegelt módosítás esetén a belső tartalomnak legalább két számla módosítását kell tartalmaznia.";
|
|
23
|
+
readonly de: "Bei Batch-Rechnung muss der innere Inhalt mindestens zwei Basisrechnungen enthalten.";
|
|
24
|
+
};
|
|
25
|
+
readonly COMPRESSION_TOLERANCE_EXCEEDED: {
|
|
26
|
+
readonly en: "The size of the compressed file is too large.";
|
|
27
|
+
readonly hu: "A tömörített állomány mérete túl nagy.";
|
|
28
|
+
readonly de: "Die Größe der komprimierten Datei ist zu groß.";
|
|
29
|
+
};
|
|
30
|
+
readonly CREATE_WITH_BATCH_INVOICE_FOUND: {
|
|
31
|
+
readonly en: "The requested operation is not applicable with a batch invoice.";
|
|
32
|
+
readonly hu: "Kötegelt módosító számla beküldése esetén az operáció értéke nem megengedett.";
|
|
33
|
+
readonly de: "Der angeforderte Vorgang ist bei einer Batch-Rechnung nicht anwendbar.";
|
|
34
|
+
};
|
|
35
|
+
readonly CUSTOMER_COMMUNITY_TAXNUMBER_NOT_EXPECTED: {
|
|
36
|
+
readonly en: "Customer’s community tax number may not be supplied.";
|
|
37
|
+
readonly hu: "Vevő közösségi adószáma nem adható meg.";
|
|
38
|
+
readonly de: "Gemeinschaftssteuernummer des Kunden können nicht angegeben werden.";
|
|
39
|
+
};
|
|
40
|
+
readonly CUSTOMER_DATA_EXPECTED: {
|
|
41
|
+
readonly en: "Supplying customer data is mandatory provided the customer is not a private individual.";
|
|
42
|
+
readonly hu: "Vevői adatok megadása kötelező, ha a vevő nem magánszemély.";
|
|
43
|
+
readonly de: "Die Kundendaten müssen zwingend angegeben werden, wenn es sich beim Kunden nicht um eine Privatperson handelt.";
|
|
44
|
+
};
|
|
45
|
+
readonly CUSTOMER_DATA_NOT_EXPECTED: {
|
|
46
|
+
readonly en: "Private individual customer’s data may not be supplied.";
|
|
47
|
+
readonly hu: "Magánszemély vevő adatai nem adhatóak meg.";
|
|
48
|
+
readonly de: "Die Daten von Privatkunden können nicht angegeben werden!";
|
|
49
|
+
};
|
|
50
|
+
readonly CUSTOMER_INFO_MISSING: {
|
|
51
|
+
readonly en: "Customer information must be provided.";
|
|
52
|
+
readonly hu: "Vevői adatok megadása kötelező.";
|
|
53
|
+
readonly de: "Kundeninformationen müssen angegeben werden.";
|
|
54
|
+
};
|
|
55
|
+
readonly CUSTOMER_NOT_ASSIGNED: {
|
|
56
|
+
readonly en: "Not authorized customer tax number.";
|
|
57
|
+
readonly hu: "Nem engedélyezett vevői adószám.";
|
|
58
|
+
readonly de: "Nicht autorisierte Kundennummer.";
|
|
59
|
+
};
|
|
60
|
+
readonly CUSTOMER_NOT_IDENTICAL: {
|
|
61
|
+
readonly en: "Batch invoice cannot contain invoices for different customers.";
|
|
62
|
+
readonly hu: "Több vevőhöz tartozó számlák kötegelt módosítása nem lehetséges.";
|
|
63
|
+
readonly de: "Die Batch-Rechnung darf keine Rechnungen für verschiedene Kunden enthalten.";
|
|
64
|
+
};
|
|
65
|
+
readonly CUSTOMER_THIRD_STATE_TAXNUMBER_NOT_EXPECTED: {
|
|
66
|
+
readonly en: "Customer’s Third state tax identification number may not be supplied.";
|
|
67
|
+
readonly hu: "Vevő harmadik országbeli száma adóazonosító nem adható meg.";
|
|
68
|
+
readonly de: "Die dritte staatliche Steueridentifikationsnummer können nicht angegeben werden.";
|
|
69
|
+
};
|
|
70
|
+
readonly DECOMPRESSION_ERROR: {
|
|
71
|
+
readonly en: "Error at decompression.";
|
|
72
|
+
readonly hu: "Hiba a kitömörítésnél.";
|
|
73
|
+
readonly de: "Fehler bei der Dekomprimierung.";
|
|
74
|
+
};
|
|
75
|
+
readonly DOMESTIC_TAXNUMBER_EXPECTED_REVERSE_CHARGE: {
|
|
76
|
+
readonly en: "Customer’s domestic tax number is missing (domestic reverse charging).";
|
|
77
|
+
readonly hu: "Vevő belföldi adószáma hiányzik (belföldi fordított adózás).";
|
|
78
|
+
readonly de: "Die inländische Steuernummer des Käufers fehlt (Umkehr der Steuerschuld).";
|
|
79
|
+
};
|
|
80
|
+
readonly DUPLICATE_INVOICE_LINE_CREATION: {
|
|
81
|
+
readonly en: "An invoice line with the same line number cannot be added to the same invoice multiple times.";
|
|
82
|
+
readonly hu: "Tételsort ugyanolyan sorszámmal nem lehet többször hozzáadni egy számlához.";
|
|
83
|
+
readonly de: "Eine Rechnungszeile mit derselben Zeilennummer kann nicht mehrmals zur selben Rechnung hinzugefügt werden.";
|
|
84
|
+
};
|
|
85
|
+
readonly DUPLICATE_IN_INVOICE_REFERENCE: {
|
|
86
|
+
readonly en: "The same modification index number referring to the same invoice occurs multiple times.";
|
|
87
|
+
readonly hu: "Számlára vonatkozó módosító okirat egyedi sorszáma ugyanarra a számlára hivatkozva többször szerepel a kérésben.";
|
|
88
|
+
readonly de: "Dieselbe Änderungsindexnummer, die sich auf dieselbe Rechnung bezieht, kommt mehrmals vor.";
|
|
89
|
+
};
|
|
90
|
+
readonly DUPLICATE_IN_REQUEST: {
|
|
91
|
+
readonly en: "The given invoice number occurs more than once in the request.";
|
|
92
|
+
readonly hu: "A megadott számlaszám egynél többször szerepel a kérésben.";
|
|
93
|
+
readonly de: "Die angegebene Rechnungsnummer erscheint mehrmals in der Anfrage.";
|
|
94
|
+
};
|
|
95
|
+
readonly ELECTRONIC_INVOICE_ANNULMENT_NOT_ALLOWED: {
|
|
96
|
+
readonly en: "Technical annulment shall not be performed on data report accepted as an electronic invoice.";
|
|
97
|
+
readonly hu: "Elektronikus számlaként elfogadott adatszolgáltatást nem lehet technikai érvényteleníteni.";
|
|
98
|
+
readonly de: "Als elektronische Rechnung anerkannte Datenlieferungen können nicht technisch storniert werden.";
|
|
99
|
+
};
|
|
100
|
+
readonly ELECTRONIC_INVOICE_HASH_EXPECTED: {
|
|
101
|
+
readonly en: "In the case of a data report submitted as an electronic invoice, providing the hash is mandatory.";
|
|
102
|
+
readonly hu: "Elektronikus számlaként benyújtott adatszolgáltatás esetén hash lenyomat megadása kötelező.";
|
|
103
|
+
readonly de: "Bei einer Datenlieferung in Form einer elektronischen Rechnung ist der Hash-Abdruck zwingend anzugeben.";
|
|
104
|
+
};
|
|
105
|
+
readonly INCOMPLETE_ELECTRONIC_INVOICE_REFERENCE: {
|
|
106
|
+
readonly en: "The original document is not a data report accepted as electronic invoice.";
|
|
107
|
+
readonly hu: "Az eredeti okirat nem elektronikus számlaként elfogadott adatszolgáltatás.";
|
|
108
|
+
readonly de: "Das Originaldokument ist eine als nicht elektronische Rechnung akzeptierte Datenlieferung.";
|
|
109
|
+
};
|
|
110
|
+
readonly INCORRECT_COUNTRY_CODE_CUSTOMERADDRESS: {
|
|
111
|
+
readonly en: "Invalid country code (customer).";
|
|
112
|
+
readonly hu: "Érvénytelen országkód (vevő).";
|
|
113
|
+
readonly de: "Ungültiger Landescode (Käufer).";
|
|
114
|
+
};
|
|
115
|
+
readonly INCORRECT_COUNTRY_CODE_FISCALREPRESENTATIVEADDRESS: {
|
|
116
|
+
readonly en: "Invalid country code (fiscal representative).";
|
|
117
|
+
readonly hu: "Érvénytelen országkód (pénzügyi képviselő).";
|
|
118
|
+
readonly de: "Ungültiger Landescode (Finanzvertreters).";
|
|
119
|
+
};
|
|
120
|
+
readonly INCORRECT_COUNTRY_CODE_SUPPLIERADDRESS: {
|
|
121
|
+
readonly en: "Invalid country code (seller).";
|
|
122
|
+
readonly hu: "Érvénytelen országkód (eladó).";
|
|
123
|
+
readonly de: "Ungültiger Landescode (Verkäufer).";
|
|
124
|
+
};
|
|
125
|
+
readonly INCORRECT_COUNTY_CODE_CUSTOMER: {
|
|
126
|
+
readonly en: "Invalid county code (customer).";
|
|
127
|
+
readonly hu: "Érvénytelen megyekód (vevő).";
|
|
128
|
+
readonly de: "Ungültiger Komitatscode (Käufer).";
|
|
129
|
+
};
|
|
130
|
+
readonly INCORRECT_COUNTY_CODE_CUSTOMER_GROUPMEMBER: {
|
|
131
|
+
readonly en: "Invalid county code of the group member (customer).";
|
|
132
|
+
readonly hu: "Érvénytelen csoporttag megyekód (vevő).";
|
|
133
|
+
readonly de: "Ungültiger Komitatscode des Gruppenmitglieds (Kunden).";
|
|
134
|
+
};
|
|
135
|
+
readonly INCORRECT_COUNTY_CODE_FISCALREPRESENTATIVE: {
|
|
136
|
+
readonly en: "Invalid county code (fiscal representative).";
|
|
137
|
+
readonly hu: "Érvénytelen megyekód (pénzügyi képviselő).";
|
|
138
|
+
readonly de: "Ungültiger Komitatscode (Finanzvertreters).";
|
|
139
|
+
};
|
|
140
|
+
readonly INCORRECT_COUNTY_CODE_SUPPLIER: {
|
|
141
|
+
readonly en: "Invalid county code (seller).";
|
|
142
|
+
readonly hu: "Érvénytelen megyekód (eladó).";
|
|
143
|
+
readonly de: "Ungültiger Komitatscode (Verkäufer).";
|
|
144
|
+
};
|
|
145
|
+
readonly INCORRECT_COUNTY_CODE_SUPPLIER_GROUPMEMBER: {
|
|
146
|
+
readonly en: "Invalid county code of the group member (seller).";
|
|
147
|
+
readonly hu: "Érvénytelen csoporttag megyekód (eladó).";
|
|
148
|
+
readonly de: "Ungültiger Komitatscode des Gruppenmitglieds (Verkäufer).";
|
|
149
|
+
};
|
|
150
|
+
readonly INCORRECT_COUNTY_CODE_TAXNUMBEROFOBLIGATOR: {
|
|
151
|
+
readonly en: "Invalid county code in the tax number of the party obligated to pay the product fee.";
|
|
152
|
+
readonly hu: "Érvénytelen megyekód a termékdíj fizetésére kötelezett adószámában.";
|
|
153
|
+
readonly de: "Ungültiger Komitatcode in der Steuernummer des zur Zahlung der Produktgebühr Verpflichteten.";
|
|
154
|
+
};
|
|
155
|
+
readonly INCORRECT_DATE_AGGREGATE_INVOICE_DELIVERY_DATE: {
|
|
156
|
+
readonly en: "Aggregate invoice delivery date is not the same as the latest of the invoice line item delivery dates.";
|
|
157
|
+
readonly hu: "Gyűjtőszámla teljesítési dátumaként szereplő dátum nem azonos a tételsoroknál megjelölt teljesítési dátumok közül a legkésőbbivel.";
|
|
158
|
+
readonly de: "Das Leistungsdatum für ein Aggregierte Rechnung festgelegte Datum stimmt nicht mit den in der Lotterieliste angegebenen Lieferterminen überein.";
|
|
159
|
+
};
|
|
160
|
+
readonly INCORRECT_DATE_AGGREGATE_INVOICE_ISSUE_DATE: {
|
|
161
|
+
readonly en: "The summary invoice issue date precedes the latest of the line item delivery dates.";
|
|
162
|
+
readonly hu: "Gyűjtőszámla kelte korábbi, mint az egyes tételsorok teljesítési dátuma közül a legnagyobb.";
|
|
163
|
+
readonly de: "Das Datum der Sammelrechnung ist früher als das späteste Leistungsdatum unter den Leistungsdaten der einzelnen Postenzeilen.";
|
|
164
|
+
};
|
|
165
|
+
readonly INCORRECT_DATE_INVOICE_DELIVERY_DATE: {
|
|
166
|
+
readonly en: "Invoice issue date precedes the latest of the line item delivery dates.";
|
|
167
|
+
readonly hu: "Számla kelte korábbi, mint az egyes tételsorok teljesítési dátuma közül a legnagyobb.";
|
|
168
|
+
readonly de: "Das Rechnungsdatum ist früher als das späteste Leistungsdatum unter den Leistungsdaten der einzelnen Postenzeilen.";
|
|
169
|
+
};
|
|
170
|
+
readonly INCORRECT_DATE_INVOICE_DELIVERY_DATE_EARLY: {
|
|
171
|
+
readonly en: "Delivery date falls over an expired period.";
|
|
172
|
+
readonly hu: "Teljesítési dátum elévült időszakra esik.";
|
|
173
|
+
readonly de: "Das Leistungsdatum fällt über einen abgelaufenen Zeitraum.";
|
|
174
|
+
};
|
|
175
|
+
readonly INCORRECT_DATE_INVOICE_DELIVERY_DATE_LATE: {
|
|
176
|
+
readonly en: "The delivery date is too distant. The difference between the issue date and the performance date is at least 13 months.";
|
|
177
|
+
readonly hu: "Teljesítés dátuma túl távoli. Kiállítás és teljesítés között legalább 13 hónap az eltérés.";
|
|
178
|
+
readonly de: "Das Erfüllungsdatum liegt zulange zurück. Die Abweichung zwischen Erstellung und Leistungserfüllung beträgt mindestens 13 Monate.";
|
|
179
|
+
};
|
|
180
|
+
readonly INCORRECT_DATE_INVOICE_DELIVERY_TO_FROM: {
|
|
181
|
+
readonly en: "The closing date of the delivery period precedes the starting date.";
|
|
182
|
+
readonly hu: "A teljesítési időszak záró dátuma korábbi, mint a nyitó dátuma.";
|
|
183
|
+
readonly de: "Das Enddatum des Leistungszeitraums ist früher als das Anfangsdatum.";
|
|
184
|
+
};
|
|
185
|
+
readonly INCORRECT_DATE_INVOICE_ISSUE_DATE_EARLY: {
|
|
186
|
+
readonly en: "The invoice date is over 10 days earlier than the date of data exchange.";
|
|
187
|
+
readonly hu: "Számla kelte több, mint 10 nappal korábbi, mint az adatszolgáltatás dátuma.";
|
|
188
|
+
readonly de: "Das Rechnungsdatum liegt um mehr als 10 Tage früher als das Datum der Datenlieferung.";
|
|
189
|
+
};
|
|
190
|
+
readonly INCORRECT_DATE_INVOICE_ISSUE_DATE_LATE: {
|
|
191
|
+
readonly en: "Invoice issue date is future date.";
|
|
192
|
+
readonly hu: "Számla kelte jövőbeli dátum.";
|
|
193
|
+
readonly de: "Das Rechnungsdatum ist ein zukünftiges Datum.";
|
|
194
|
+
};
|
|
195
|
+
readonly INCORRECT_DATE_INVOICE_MODIFICATION_ISSUE_DATE_EARLY: {
|
|
196
|
+
readonly en: "The amending document issue date is too early.";
|
|
197
|
+
readonly hu: "A módosító okirat kelte túl korai.";
|
|
198
|
+
readonly de: "Der Zeitpunkt des Änderungsdokuments ist zu früh.";
|
|
199
|
+
};
|
|
200
|
+
readonly INCORRECT_DATE_INVOICE_MODIFICATION_ISSUE_DATE_LATE: {
|
|
201
|
+
readonly en: "The amending document issue date is future date.";
|
|
202
|
+
readonly hu: "A módosító okirat kelte jövőbeli dátum.";
|
|
203
|
+
readonly de: "Der Zeitpunkt des Änderungsdokuments ist zukünftiges Datum.";
|
|
204
|
+
};
|
|
205
|
+
readonly INCORRECT_DATE_INVOICE_MODIFICATION_ISSUE_DATE_ORIGINAL: {
|
|
206
|
+
readonly en: "The amending document issue date precedes the original invoice issue date.";
|
|
207
|
+
readonly hu: "A módosító okirat kelte korábbi, mint az eredeti okirat kelte.";
|
|
208
|
+
readonly de: "Der Zeitpunkt des Änderungsdokuments liegt vor dem Datum des ursprünglichen Instruments.";
|
|
209
|
+
};
|
|
210
|
+
readonly INCORRECT_DATE_INVOICE_MODIFICATION_TIMESTAMP: {
|
|
211
|
+
readonly en: "The issue date of the modifying document in the source system is a future date.";
|
|
212
|
+
readonly hu: "A módosító okirat forrásrendszerbeli létrehozásának ideje jövőbeli.";
|
|
213
|
+
readonly de: "Das Erstellungsdatum des Änderungsdokuments im Eigenmittelsystem ist ein zukünftiger Zeitpunkt.";
|
|
214
|
+
};
|
|
215
|
+
readonly INCORRECT_DATE_LINE_DELIVERY_TO_FROM: {
|
|
216
|
+
readonly en: "The closing date of the delivery period precedes the starting date.";
|
|
217
|
+
readonly hu: "A teljesítési időszak záró dátuma korábbi, mint a nyitó dátuma.";
|
|
218
|
+
readonly de: "Das Enddatum des Leistungszeitraums ist früher als das Anfangsdatum.";
|
|
219
|
+
};
|
|
220
|
+
readonly INCORRECT_DATE_MODIFICATION_ISSUE_DATE_EARLY: {
|
|
221
|
+
readonly en: "The amending document issue date precedes the original invoice issue date.";
|
|
222
|
+
readonly hu: "A módosító okirat kelte korábbi, mint az eredeti okirat kelte.";
|
|
223
|
+
readonly de: "Der Zeitpunkt des Änderungsdokuments liegt vor dem Datum des ursprünglichen Instruments.";
|
|
224
|
+
};
|
|
225
|
+
readonly INCORRECT_HEAD_DATA_CUSTOMER_COMMUNITY_VAT_NUMBER: {
|
|
226
|
+
readonly en: "Incorrect customer tax registration number or EU VAT number.";
|
|
227
|
+
readonly hu: "A vevő törzsszáma vagy közösségi adószáma hibás.";
|
|
228
|
+
readonly de: "Stammnummer oder UID-Nr. des Käufers ist falsch.";
|
|
229
|
+
};
|
|
230
|
+
readonly INCORRECT_HEAD_DATA_CUSTOMER_GROUPMEMBER_TAXPAYERID: {
|
|
231
|
+
readonly en: "Incorrect tax number. The tax number provided for the customer is the tax number of VAT group member!";
|
|
232
|
+
readonly hu: "Hibás adószám. Vevőként ÁFA csoporttag adószáma lett megadva!";
|
|
233
|
+
readonly de: "Falsche Steuernummer. Als Käufer wurde die Steuernummer des MwSt.-Gruppenmitglieds angegeben!";
|
|
234
|
+
};
|
|
235
|
+
readonly INCORRECT_HEAD_DATA_CUSTOMER_TAXPAYERID: {
|
|
236
|
+
readonly en: "Incorrect tax number. The customer is marked as an inactive taxpayer!";
|
|
237
|
+
readonly hu: "Hibás adószám. A vevő nem élő adózó!";
|
|
238
|
+
readonly de: "Falsche Steuernummer. Der Kunde ist als inaktiver Steuerzahler gekennzeichnet!";
|
|
239
|
+
};
|
|
240
|
+
readonly INCORRECT_HEAD_DATA_CUSTOMER_TAX_NUMBER: {
|
|
241
|
+
readonly en: "Customer’s tax number does not exist.";
|
|
242
|
+
readonly hu: "Vevő adószáma nem létezik.";
|
|
243
|
+
readonly de: "Steuernummer des Käufers existiert nicht.";
|
|
244
|
+
};
|
|
245
|
+
readonly INCORRECT_HEAD_DATA_FISCALREPRESENTATIVE: {
|
|
246
|
+
readonly en: "The fiscal representative field can only be filled out if the county code of the seller’s tax number is 51.";
|
|
247
|
+
readonly hu: "Pénzügyi képviselő adat csak akkor lehet kitöltve, ha az eladó adószámának megyekódja „51”.";
|
|
248
|
+
readonly de: "Die Angabe Vertreter Finanzwesen darf nur dann ausgefüllt sein, wenn der Komitatcode der Steuernummer des Verkäufers „51” ist.";
|
|
249
|
+
};
|
|
250
|
+
readonly INCORRECT_HEAD_DATA_FISCAL_REPRESENTATIVE_TAX_NUMBER: {
|
|
251
|
+
readonly en: "Non-existing tax number (fiscal representative).";
|
|
252
|
+
readonly hu: "Nem létező adószám (pénzügyi képviselő).";
|
|
253
|
+
readonly de: "Nicht vorhandene Steuernummer (Finanzvertreters).";
|
|
254
|
+
};
|
|
255
|
+
readonly INCORRECT_HEAD_DATA_INVOICE_NUMBER_LAST_MOD_DOC_NUMBER: {
|
|
256
|
+
readonly en: "The serial number of the last modification document is identical to the serial number of this modification document.";
|
|
257
|
+
readonly hu: "Az utolsó módosító okirat sorszáma azonos ennek a módosító okiratnak a sorszámával.";
|
|
258
|
+
readonly de: "Die laufende Nummer der letzten Änderungsurkunde ist identisch mit der laufenden Nummer dieser Änderungsurkunde.";
|
|
259
|
+
};
|
|
260
|
+
readonly INCORRECT_HEAD_DATA_LAST_MOD_INVOICE_NUMBER: {
|
|
261
|
+
readonly en: "No data reporting received regarding the modification indicated as most recent.";
|
|
262
|
+
readonly hu: "A legutóbbiként megjelölt módosításról nem érkezett adatszolgáltatás.";
|
|
263
|
+
readonly de: "Zu der zuletzt angegebenen Änderung wurden keine Angaben mitgeteilt.";
|
|
264
|
+
};
|
|
265
|
+
readonly INCORRECT_HEAD_DATA_LAST_MOD_LAST_MOD_DOC_NUMBER: {
|
|
266
|
+
readonly en: "Last amending document with line number identical to that of the original invoice.";
|
|
267
|
+
readonly hu: "Eredeti számla számával egyező utolsó módosító okirat.";
|
|
268
|
+
readonly de: "Letztes Änderungsdokument stimmt mit der ursprünglichen Rechnungsnummer überein.";
|
|
269
|
+
};
|
|
270
|
+
readonly INCORRECT_HEAD_DATA_MOD_REF_INVOICE_NUMBER: {
|
|
271
|
+
readonly en: "The serial number of the modification document is identical to the serial number of the original invoice.";
|
|
272
|
+
readonly hu: "Módosító okirat sorszáma megegyezik az eredeti számláéval.";
|
|
273
|
+
readonly de: "Die laufende Nummer der Änderungsurkunde ist identisch mit der der Originalrechnung.";
|
|
274
|
+
};
|
|
275
|
+
readonly INCORRECT_HEAD_DATA_ORIGINAL_LAST_MOD_DOC_NUMBER: {
|
|
276
|
+
readonly en: "The serial number of the last modification document is identical to the serial number of the original invoice.";
|
|
277
|
+
readonly hu: "Az utolsó módosító okirat sorszáma megegyezik az eredeti számla sorszámával.";
|
|
278
|
+
readonly de: "Die laufende Nummer der letzten Änderungsurkunde ist identisch mit der laufenden Nummer der Originalrechnung.";
|
|
279
|
+
};
|
|
280
|
+
readonly INCORRECT_HEAD_DATA_PERIODICAL_SETTLEMENT: {
|
|
281
|
+
readonly en: "The value of the periodicalSettlement cannot be ’false’ if the first and/or the last day of the invoice issued for the relevant period has been provided.";
|
|
282
|
+
readonly hu: "A periodicalSettlement értéke nem lehet „false”, ha az időszakra vonatkozó számla első és/vagy utolsó napja kitöltött.";
|
|
283
|
+
readonly de: "Der Wert von periodicalSettlement kann nicht „false“ sein, wenn der erste und/oder letzte Tag der Rechnung für den Zeitraum ausgefüllt ist.";
|
|
284
|
+
};
|
|
285
|
+
readonly INCORRECT_HEAD_DATA_SUPPLIER_COMMUNITY_VAT_NUMBER: {
|
|
286
|
+
readonly en: "Incorrect EU VAT number. The first 8 digits of the seller’s tax number do not match the last 8 digits of the seller’s EU VAT number.";
|
|
287
|
+
readonly hu: "Hibás közösségi adószám. Az eladó adószámának első nyolc karaktere nem egyezik meg közösségi adószámának utolsó 8 karakterével.";
|
|
288
|
+
readonly de: "Fehlerhafte UID-Nr. Die ersten acht Zeichen der Steuernummer des Verkäufers decken sich nicht mit den letzten 8 Zeichen der UID-Nr.";
|
|
289
|
+
};
|
|
290
|
+
readonly INCORRECT_HEAD_DATA_SUPPLIER_GROUPMEMBER_TAXPAYERID: {
|
|
291
|
+
readonly en: "Incorrect tax number. The tax number provided for the seller is the tax number of VAT group member!";
|
|
292
|
+
readonly hu: "Hibás adószám. Eladóként áfa csoporttag adószáma lett megadva!";
|
|
293
|
+
readonly de: "Falsche Steuernummer. Als Verkäufer wurde die Steuernummer des MwSt.-Gruppenmitglieds angegeben!";
|
|
294
|
+
};
|
|
295
|
+
readonly INCORRECT_LINE_CALCULATION_AGGREGATE_LINE_GROSS_AMOUNT_NORMAL_HUF: {
|
|
296
|
+
readonly en: "The gross values of the summary invoice item provided in the original currency and HUF do not match.";
|
|
297
|
+
readonly hu: "Eltérés a gyűjtőszámla tétel eredeti pénznemben és forintban megadott bruttó értéke között.";
|
|
298
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Bruttowert des Sammelrechnungspostens und dem in Forint (HUF) angegebenen Bruttowert.";
|
|
299
|
+
};
|
|
300
|
+
readonly INCORRECT_LINE_CALCULATION_AGGREGATE_LINE_NET_AMOUNT_HUF: {
|
|
301
|
+
readonly en: "The net values of the summary invoice item provided in the original currency and HUF do not match.";
|
|
302
|
+
readonly hu: "Eltérés a gyűjtőszámla tétel eredeti pénznemben és forintban megadott nettó értéke között.";
|
|
303
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Nettowert des Sammelrechnungspostens und dem in Forint (HUF) angegebenen Nettowert.";
|
|
304
|
+
};
|
|
305
|
+
readonly INCORRECT_LINE_CALCULATION_AGGREGATE_LINE_UNIT_PRICE_HUF: {
|
|
306
|
+
readonly en: "The unit prices of the summary invoice item provided in the original currency and HUF do not match.";
|
|
307
|
+
readonly hu: "Eltérés a gyűjtőszámla tétel eredeti pénznemben és forintban megadott egységára között.";
|
|
308
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Einheitspreis des Sammelrechnungspostens und dem in Forint (HUF) angegebenen Einheitspreis.";
|
|
309
|
+
};
|
|
310
|
+
readonly INCORRECT_LINE_CALCULATION_AGGREGATE_LINE_VAT_AMOUNT_HUF: {
|
|
311
|
+
readonly en: "The VAT values of the summary invoice item provided in the original currency and HUF do not match.";
|
|
312
|
+
readonly hu: "Eltérés a gyűjtőszámla tétel eredeti pénznemben és forintban megadott áfa értéke között.";
|
|
313
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Mehrwertsteuerwert des Sammelrechnungspostens und dem in Forint (HUF) angegebenen Mehrwertsteuerwert.";
|
|
314
|
+
};
|
|
315
|
+
readonly INCORRECT_LINE_CALCULATION_GROSS_AMOUNT: {
|
|
316
|
+
readonly en: "The product of quantity and unit price in the simplified invoice line item, taking discount data (if relevant) into account, differs from the gross amount of the line item.";
|
|
317
|
+
readonly hu: "Egyszerűsített számla tételsor mennyiség és egységár szorzata a kedvezmény adatait figyelembe véve (ha releváns) eltér a tételsor bruttó értékétől.";
|
|
318
|
+
readonly de: "Das Produkt der vereinfachten Rechnungspostenzeilenmenge und des Einheitspreises (unter Berücksichtigung der Daten des Preisnachlasses, falls relevant) weicht vom Brutto-Betrag der Postenzeile ab.";
|
|
319
|
+
};
|
|
320
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_GROSS_AMOUNT_NORMAL_HUF: {
|
|
321
|
+
readonly en: "The gross values of the invoice item provided in the original currency and HUF do not match.";
|
|
322
|
+
readonly hu: "Eltérés a számla tétel eredeti pénznemben és forintban megadott bruttó értéke között.";
|
|
323
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Bruttowert des Rechnungspostens und dem in Forint (HUF) angegebenen Bruttowert.";
|
|
324
|
+
};
|
|
325
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_GROSS_AMOUNT_NORMAL_SUM: {
|
|
326
|
+
readonly en: "The gross value of the invoice item provided in HUF and the amount of the net and VAT values of the item provided in HUF do not match.";
|
|
327
|
+
readonly hu: "A számla tétel forintban megadott bruttó értéke eltér a tétel forintban megadott nettó és áfa értékeinek összegétől.";
|
|
328
|
+
readonly de: "Der in Forint (HUF) angegebene Bruttowert des Rechnungspostens weicht von dem im Rechnungsposten in Forint (HUF) angegebenen Netto- und Mehrwertsteuerwerten ab.";
|
|
329
|
+
};
|
|
330
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_GROSS_AMOUNT_SIMPLIFIED_HUF: {
|
|
331
|
+
readonly en: "The gross values of the simplified invoice item provided in the original currency and HUF do not match.";
|
|
332
|
+
readonly hu: "Eltérés az egyszerűsített számla tétel eredeti pénznemben és forintban megadott bruttó értéke között.";
|
|
333
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Bruttowert und dem in Forint (HUF) angegebenen Bruttowert des Postens der vereinfachten Rechnung.";
|
|
334
|
+
};
|
|
335
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_NET_AMOUNT_HUF: {
|
|
336
|
+
readonly en: "The net values of the invoice item provided in the original currency and HUF do not match.";
|
|
337
|
+
readonly hu: "Eltérés a számla tétel eredeti pénznemben és forintban megadott nettó értéke között.";
|
|
338
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Nettowert des Rechnungspostens und dem in Forint (HUF) angegebenen Nettowert.";
|
|
339
|
+
};
|
|
340
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_UNIT_PRICE_HUF: {
|
|
341
|
+
readonly en: "The unit prices of the invoice item provided in the original currency and HUF do not match.";
|
|
342
|
+
readonly hu: "Eltérés a számla tétel eredeti pénznemben és forintban megadott egységára között.";
|
|
343
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Einheitspreis des Rechnungspostens und dem in Forint (HUF) angegebenen Einheitspreis.";
|
|
344
|
+
};
|
|
345
|
+
readonly INCORRECT_LINE_CALCULATION_LINE_VAT_AMOUNT_HUF: {
|
|
346
|
+
readonly en: "The VAT values of the invoice item provided in the original currency and HUF do not match.";
|
|
347
|
+
readonly hu: "Eltérés a számla tétel eredeti pénznemben és forintban megadott áfa értéke között.";
|
|
348
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Mehrwertsteuerwert des Rechnungspostens und dem in Forint (HUF) angegebenen Mehrwertsteuerwert.";
|
|
349
|
+
};
|
|
350
|
+
readonly INCORRECT_LINE_CALCULATION_NET_AMOUNT: {
|
|
351
|
+
readonly en: "The product of the line item amount and the unit price (with the given discount taken into account) does not match the net amount.";
|
|
352
|
+
readonly hu: "A tétel mennyiség és egységár szorzata (figyelembe véve az adott kedvezményt) eltér a nettó értékétől.";
|
|
353
|
+
readonly de: "Das Produkt der Menge und des Einheitspreises des Postens (unter Berücksichtigung des gewährten Preisnachlasses) weicht vom Netto-Wert ab.";
|
|
354
|
+
};
|
|
355
|
+
readonly INCORRECT_LINE_DATA_AGGREGATE_INVOICE_LINE_DATA: {
|
|
356
|
+
readonly en: "Non-aggregate invoice contains item data typical for aggregate invoices.";
|
|
357
|
+
readonly hu: "Nem gyűjtőszámla gyűjtőszámlára jellemző tételadatot tartalmaz.";
|
|
358
|
+
readonly de: "Eine Rechnung, die keine Sammelrechnung ist, enthält Postendaten zu einer Sammelrechnung.";
|
|
359
|
+
};
|
|
360
|
+
readonly INCORRECT_LINE_DATA_AGGREGATE_INV_LINE_DATA_MANDATORY: {
|
|
361
|
+
readonly en: "The summary invoice item does not include the date of performance for the item.";
|
|
362
|
+
readonly hu: "A gyűjtőszámla tételében nem szerepel a tétel teljesítés dátuma.";
|
|
363
|
+
readonly de: "Im Posten der Sammelrechnung fehlt das Erfüllungsdatum des Postens.";
|
|
364
|
+
};
|
|
365
|
+
readonly INCORRECT_LINE_DATA_LINE_AMOUNTS_NORMAL_MANDATORY: {
|
|
366
|
+
readonly en: "Missing line item value data.";
|
|
367
|
+
readonly hu: "Hiányzó tételsor érték adatok.";
|
|
368
|
+
readonly de: "Beträge in der Postenzeile fehlen.";
|
|
369
|
+
};
|
|
370
|
+
readonly INCORRECT_LINE_DATA_LINE_AMOUNTS_SIMPLIFIED_MANDATORY: {
|
|
371
|
+
readonly en: "Missing invoice line item value data.";
|
|
372
|
+
readonly hu: "Hiányzó számla tételsor érték adatok.";
|
|
373
|
+
readonly de: "Werte in der Rechnungspostenzeile fehlen.";
|
|
374
|
+
};
|
|
375
|
+
readonly INCORRECT_LINE_DATA_LINE_AMOUNTS_SIMPLIFIED_NOT_ALLOWED: {
|
|
376
|
+
readonly en: "Regular or aggregate invoice item containing simplified invoice line aggregate data.";
|
|
377
|
+
readonly hu: "Normál vagy gyűjtőszámla tétele egyszerűsített számla tételsor összegzést tartalmaz.";
|
|
378
|
+
readonly de: "Der Posten einer normalen Rechnung oder Sammelrechnung enthält eine vereinfachte Rechnungspostenzeilen-Summenangabe.";
|
|
379
|
+
};
|
|
380
|
+
readonly INCORRECT_LINE_DATA_MARGIN_SCHEME_INDICATOR_NORMAL: {
|
|
381
|
+
readonly en: "Despite margin scheme taxation being indicated the normal/aggregate invoice contains VAT data.";
|
|
382
|
+
readonly hu: "A normál/gyűjtőszámla tételben különbözet szerinti szabályozás jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
383
|
+
readonly de: "Der normale/Sammelrechnungsposten enthält trotz der Angabe „Differenzbesteuerung“ Mehrwertsteuerdaten.";
|
|
384
|
+
};
|
|
385
|
+
readonly INCORRECT_LINE_DATA_SELF_LINE_NUMBER: {
|
|
386
|
+
readonly en: "The reference to the other invoice item includes the own number of the given item.";
|
|
387
|
+
readonly hu: "Másik számlatételre közölt hivatkozás az adott tétel saját sorszámát tartalmazza.";
|
|
388
|
+
readonly de: "Der angegebene Verweis auf einen anderen Rechnungsposten enthält die eigene Seriennummer des gegebenen Postens.";
|
|
389
|
+
};
|
|
390
|
+
readonly INCORRECT_LINE_DATA_UOM: {
|
|
391
|
+
readonly en: "Despite the units of measure indicated in the invoice item, the data report contains (unitOfMeasure <> OWN) unitOfMeasureOwn element.";
|
|
392
|
+
readonly hu: "A számlatételben megjelölt mértékegység ellenére (unitOfMeasure <> OWN) unitOfMeasureOwn elem szerepel az adatszolgáltatásban.";
|
|
393
|
+
readonly de: "Trotz der im Rechnungsposten angegebenen Maßeinheit (unitOfMeasure <> OWN) ist das unitOfMeasureOwn-Element in der Datenleistung enthalten.";
|
|
394
|
+
};
|
|
395
|
+
readonly INCORRECT_LINE_DATA_UOM_INCOMPLETE: {
|
|
396
|
+
readonly en: "The invoice item shows the use of an own unit of measure (unitOfMeasure=”OWN”), but the unitOfMeasureOwn element is not included in the provided data.";
|
|
397
|
+
readonly hu: "A számlatétel saját mértékegység használatát jelölte (unitOfMeasure=”OWN”), de unitOfMeasureOwn elem nem szerepel az adatszolgáltatásban.";
|
|
398
|
+
readonly de: "Der Rechnungsposten gibt die Verwendung seiner eigenen Maßeinheit an (unitOfMeasure=”OWN”), aber das Element unitOfMeasureOwn ist in der Datenlieferung nicht aufgeführt.";
|
|
399
|
+
};
|
|
400
|
+
readonly INCORRECT_LINE_DATA_VAT_AMOUNT_NOT_ZERO: {
|
|
401
|
+
readonly en: "A line item with non-zero VAT amount shall not be featured in a zero-currency invoice.";
|
|
402
|
+
readonly hu: "Nullától eltérő áfaösszegű tételsor nem szerepelhet 0 árfolyamú számlán.";
|
|
403
|
+
readonly de: "Bei Rechnungen mit Währungskurs 0 darf auf der Rechnung kein Mehrwertsteuerposten aufgeführt werden, der von Null abweicht.";
|
|
404
|
+
};
|
|
405
|
+
readonly INCORRECT_LINE_DATA_VAT_DOMESTIC_REVERSE_CHARGE: {
|
|
406
|
+
readonly en: "Incorrect marking: If domestic reverse charge mechanism being indicated, the customer can only be a domestic VAT subject.";
|
|
407
|
+
readonly hu: "Hibás jelölés: belföldi fordított adózás jelölése esetén a vevő csak belföldi áfaalany lehet.";
|
|
408
|
+
readonly de: "Falsche Kennzeichnung: Wenn ein inländischer Reverse-Charge-Mechanismus angezeigt wird, kann der Kunde nur ein inländischer Mehrwertsteuerpflichtiger sein.";
|
|
409
|
+
};
|
|
410
|
+
readonly INCORRECT_LINE_DATA_VAT_DOMESTIC_REVERSE_CHARGE_NORMAL: {
|
|
411
|
+
readonly en: "Despite reverse charge mechanism being indicated the normal/aggregate invoice contains VAT data.";
|
|
412
|
+
readonly hu: "A normál/gyűjtőszámla tételben belföldi fordított adózás jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
413
|
+
readonly de: "Der normale/Sammelrechnungsposten enthält trotz der Angabe „Umkehr der Steuerschuld im Inland“ Mehrwertsteuerdaten.";
|
|
414
|
+
};
|
|
415
|
+
readonly INCORRECT_LINE_DATA_VAT_EXEMPTION_NORMAL: {
|
|
416
|
+
readonly en: "Despite tax exemption being indicated the normal/aggregate invoice contains VAT data.";
|
|
417
|
+
readonly hu: "A normál/gyűjtőszámla tételben adómentesség jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
418
|
+
readonly de: "Der normale/Sammelrechnungsposten enthält trotz Angabe der Steuerfreiheit Mehrwertsteuerdaten.";
|
|
419
|
+
};
|
|
420
|
+
readonly INCORRECT_LINE_DATA_VAT_OUT_OF_SCOPE_NORMAL: {
|
|
421
|
+
readonly en: "Despite outside the scope of the VAT Act is being indicated the normal/aggregate invoice contains VAT data.";
|
|
422
|
+
readonly hu: "A normál/gyűjtőszámla tételben ÁFA törvény hatályán kívüli jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
423
|
+
readonly de: "Der normale/Sammelrechnungsposten enthält trotz der Angabe „fällt nicht unter das Mehrwertsteuergesetz“ Mehrwertsteuerdaten.";
|
|
424
|
+
};
|
|
425
|
+
readonly INCORRECT_LINE_DATA_VAT_PERCENTAGE: {
|
|
426
|
+
readonly en: "The VAT rate does not exist. Accepted values: „0.27”, „0.18”, „0.05”";
|
|
427
|
+
readonly hu: "Nem létező áfamérték. Elfogadott értékkészlet: „0.27”, „0.18”, „0.05”";
|
|
428
|
+
readonly de: "Nicht existierender MwSt.-Wert. Akzeptierter Wertebestand: „0.27”, „0.18”, „0.05”";
|
|
429
|
+
};
|
|
430
|
+
readonly INCORRECT_LINE_REFERENCE: {
|
|
431
|
+
readonly en: "The referenced line item for the modifying invoice is not featured in the stored invoice or its most recent modification.";
|
|
432
|
+
readonly hu: "A módosító számla hivatkozott tételsora nem szerepel a tárolt számlában, vagy annak utolsó módosításában.";
|
|
433
|
+
readonly de: "Die referenzierte Werbebuchung für die Änderung der Rechnung ist in der gespeicherten Rechnung oder ihrer letzten Änderung nicht enthalten.";
|
|
434
|
+
};
|
|
435
|
+
readonly INCORRECT_PRODUCT_CODE_CATEGORY_TAKEOVER_01: {
|
|
436
|
+
readonly en: "The direction of take-over and legal basis of the environmental product fee is “01”, but the product code types do not include “CSK” or “KT”.";
|
|
437
|
+
readonly hu: "A környezetvédelmi termékdíj átvállalás iránya és jogszabályi alapja „01”, de a termékkód fajtájának jelölései között CSK vagy KT kód nem szerepel.";
|
|
438
|
+
readonly de: "Die Richtung und Rechtsgrundlage der Übernahme der Umweltschutz-Produktgebühr ist „01”, aber unter den Markierungen der Produktcodearten ist weder der Code „CSK“ noch der Code „KT“ aufgeführt.";
|
|
439
|
+
};
|
|
440
|
+
readonly INCORRECT_PRODUCT_CODE_CATEGORY_VALUE_TAKEOVER_01: {
|
|
441
|
+
readonly en: "If the direction of take-over and legal basis of the environmental product fee is \"01” and the product code marking is “KT”, the value of the product code can be only “601”.";
|
|
442
|
+
readonly hu: "Ha a környezetvédelmi termékdíj átvállalás iránya és jogszabályi alapja „01”, és a termékkód jelölése „KT”, a termékkód értéke csak „601” lehet.";
|
|
443
|
+
readonly de: "Wenn die Richtung und Rechtsgrundlage der Übernahme der Produktgebühr für Umweltschutz „01” ist, und die Markierung des Produktcodes „KT”, kann der Wert des Produktcodes nur „601” sein.";
|
|
444
|
+
};
|
|
445
|
+
readonly INCORRECT_PRODUCT_CODE_EXCISE_LICENSE_NUM: {
|
|
446
|
+
readonly en: "Incorrect product code type.";
|
|
447
|
+
readonly hu: "Termékkód fajtája típus megjelölése hiba.";
|
|
448
|
+
readonly de: "Fehler bei Angabe der Produktcode-Art.";
|
|
449
|
+
};
|
|
450
|
+
readonly INCORRECT_PRODUCT_CODE_FEE_CATEGORY: {
|
|
451
|
+
readonly en: "Incorrect product code type (can only be CSK or KT).";
|
|
452
|
+
readonly hu: "Termékkód fajtája típus megjelölése hiba (CSK vagy KT lehet).";
|
|
453
|
+
readonly de: "Die Angabe zum Typ der Produktcode-Art ist falsch (darf nur CSK oder KT sein).";
|
|
454
|
+
};
|
|
455
|
+
readonly INCORRECT_PRODUCT_CODE_FEE_CATEGORY_MISSING: {
|
|
456
|
+
readonly en: "The line item features a product code type that is not shown in the summary.";
|
|
457
|
+
readonly hu: "Tételsorban olyan termékkód típust közölt, amely az összesítőben nem szerepel.";
|
|
458
|
+
readonly de: "In der Postenzeile ist ein solcher Produktcodetyp aufgeführt, der in der Übersicht nicht vorhanden ist.";
|
|
459
|
+
};
|
|
460
|
+
readonly INCORRECT_PRODUCT_CODE_FEE_SUMMARY_CATEGORY: {
|
|
461
|
+
readonly en: "Incorrect product code type (can only be CSK or KT).";
|
|
462
|
+
readonly hu: "Termékkód fajtája típus megjelölése hiba (CSK vagy KT lehet).";
|
|
463
|
+
readonly de: "Die Angabe zum Typ der Produktcode-Art ist falsch (darf nur CSK oder KT sein).";
|
|
464
|
+
};
|
|
465
|
+
readonly INCORRECT_PRODUCT_CODE_FEE_WEIGHT: {
|
|
466
|
+
readonly en: "If the weight data for a product subject to a product fee is provided in kilograms, the code of the product code type must be \"CSK” or \"KT”.";
|
|
467
|
+
readonly hu: "Ha a termékdíj köteles termék tömege kilogrammban elem kitöltött, akkor a termékkód fajtája csak „CSK”, vagy „KT” lehet.";
|
|
468
|
+
readonly de: "Wenn die Masse des produktgebührenpflichtigen Produkts in Kilogramm ausgefüllt ist, kann die Art des Produktcodes nur „CSK” oder „KT” sein.";
|
|
469
|
+
};
|
|
470
|
+
readonly INCORRECT_PRODUCT_CODE_VALUE_OWN: {
|
|
471
|
+
readonly en: "Own product code value is included in an incorrect item.";
|
|
472
|
+
readonly hu: "Saját termékkód érték nem megfelelő elemben szerepel.";
|
|
473
|
+
readonly de: "Eigen Produktcodewert ist in einem falschen Artikel enthalten.";
|
|
474
|
+
};
|
|
475
|
+
readonly INCORRECT_PRODUCT_CODE_VALUE_TAKEOVER_01: {
|
|
476
|
+
readonly en: "Incorrect VTSZ product code value for an item requiring a product fee payment obligation (it must begin with 271019, 271020, 3403 or 3819).";
|
|
477
|
+
readonly hu: "Termékdíj kötelezett tétel VTSZ termékkód értéke hibás (kezdete 271019, 271020, 3403, 3819 lehet).";
|
|
478
|
+
readonly de: "„VTSZ“ Produktcodewert des produktgebührenpflichtigen Postens ist fehlerhaft (darf mit 271019, 271020, 3403, 3819 anfangen).";
|
|
479
|
+
};
|
|
480
|
+
readonly INCORRECT_PRODUCT_FEE_CALCULATION_AGGREGATE_PRODUCT_CHARGE_SUM: {
|
|
481
|
+
readonly en: "Incorrect product fee calculation. The aggregate of the claimed product fees by product code differs from the total value of the product fee.";
|
|
482
|
+
readonly hu: "Helytelen termékdíj-számítás. A termékdíjak termékkódonkénti összege eltér a termékdíj összesen értéktől.";
|
|
483
|
+
readonly de: "Falsche Berechnung der Produktgebühr. Die Summe der durch Rückerstattung betroffenen Produktgebühren pro Produktcode weicht vom Gesamtbetrag der Produktgebühr ab.";
|
|
484
|
+
};
|
|
485
|
+
readonly INCORRECT_PRODUCT_FEE_CALCULATION_PRODUCT_CODE_VALUE: {
|
|
486
|
+
readonly en: "The invoice item features a product code type that is not shown in the product fee summary.";
|
|
487
|
+
readonly hu: "A számlatételben olyan termékkód típus van feltüntetve, amely a termékdíj-összesítőben nem szerepel.";
|
|
488
|
+
readonly de: "Im Rechnungsposten ist ein solcher Produktcodetyp aufgeführt, der in der Produktgebührenübersicht nicht enthalten ist.";
|
|
489
|
+
};
|
|
490
|
+
readonly INCORRECT_PRODUCT_FEE_CALCULATION_PRODUCT_FEE_AMOUNT: {
|
|
491
|
+
readonly en: "The product of the quantity and rate of the product subject to product charge differs from product charge total.";
|
|
492
|
+
readonly hu: "A termékdíjjal érintett termék mennyiség és díjtétel szorzata nem egyenlő a termékdíj összegével.";
|
|
493
|
+
readonly de: "Das Produkt der von der Produktgebühr betroffenen Produktmenge und des Gebührensatzes sind nicht mit der Summe der Produktgebühr identisch.";
|
|
494
|
+
};
|
|
495
|
+
readonly INCORRECT_PRODUCT_FEE_CALCULATION_PRODUCT_FEE_AMOUNT_SUMMARY: {
|
|
496
|
+
readonly en: "The total product charge content amount(s) of the invoice line item(s) and the invoice summary differ.";
|
|
497
|
+
readonly hu: "A számla tételsor(ok) és ősszesítő termékdíj tartalmak kódonként összegzet értéke(i) eltér(nek).";
|
|
498
|
+
readonly de: "Die Produktgebühren in der/den Rechnungspostenzeile(n) und die Gesamtsumme(n) der Produktgebühren pro Code in der Übersicht stimmen nicht überein.";
|
|
499
|
+
};
|
|
500
|
+
readonly INCORRECT_PRODUCT_FEE_DATA_CHARGE_SUM: {
|
|
501
|
+
readonly en: "The invoice includes a product fee summary, but the data on product fee content of the invoice item(s) are missing.";
|
|
502
|
+
readonly hu: "A számla termékdíj-összesítést tartalmaz, de a számlatétel(ek) termékdíj tartalmára vonatkozó adat nincs rögzítve.";
|
|
503
|
+
readonly de: "Die Rechnung enthält eine Produktgebührenübersicht, aber der Inhalt der Produktgebühr ist im/in den Rechnungsposten nicht angegeben.";
|
|
504
|
+
};
|
|
505
|
+
readonly INCORRECT_PRODUCT_FEE_DATA_OBLIGATED_LINE: {
|
|
506
|
+
readonly en: "In the case of a product fee item, the data concerning the content of the product charge required by the law is mandatory.";
|
|
507
|
+
readonly hu: "Termékdíjas tétel esetén a jogszabályok által előírt termékdíj tartalmára vonatkozó adatok kitöltése kötelező.";
|
|
508
|
+
readonly de: "Im Falle einer Produktgebühr sind die Angaben zum Inhalt der gesetzlich vorgeschriebenen Produktgebühr zwingend erforderlich.";
|
|
509
|
+
};
|
|
510
|
+
readonly INCORRECT_PRODUCT_FEE_DATA_OBLIGATED_SUMMARY: {
|
|
511
|
+
readonly en: "If there are product charge data, all data required by law must be provided.";
|
|
512
|
+
readonly hu: "Amennyiben van termékdíj adat, akkor minden jogszabályilag kötelező adatot ki kell tölteni.";
|
|
513
|
+
readonly de: "Wenn die Produktgebühr vorliegt, ist jede gesetzlich vorgeschriebene Pflichtangabe auszufüllen.";
|
|
514
|
+
};
|
|
515
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_GROSS_AMOUNT: {
|
|
516
|
+
readonly en: "The total of invoice line item gross amounts differs from the gross invoiced amount.";
|
|
517
|
+
readonly hu: "A számla tételsorok összesített bruttó éréke nem egyenlő a számla végösszegének bruttó értékével.";
|
|
518
|
+
readonly de: "Die Brutto-Gesamtsumme der Rechnungspostenzeilen stimmt nicht mit dem Brutto-Wert der Rechnungsendsumme überein.";
|
|
519
|
+
};
|
|
520
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_GROSS_AMOUNT_HUF_LINE: {
|
|
521
|
+
readonly en: "The sum of the gross values in the line items of the simplified invoice provided in HUF and the gross amount of the invoice provided in HUF do not match.";
|
|
522
|
+
readonly hu: "Az egyszerűsített számla egyes tételsoraiban szereplő forintban feltüntetett bruttó értékek összege eltér a számla forintban megadott bruttó összegétől.";
|
|
523
|
+
readonly de: "Der in einzelnen Postenzeilen der vereinfachten Rechnung in Forint (HUF) aufgeführte Bruttowert weicht vom in Forint (HUF) angegebenen Bruttobetrag der Rechnung ab.";
|
|
524
|
+
};
|
|
525
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_GROSS_AMOUNT_HUF_SUMMARY: {
|
|
526
|
+
readonly en: "The sum of the invoice summary’s net and VAT values provided in HUF and the gross value of the invoice provided in HUF do not match.";
|
|
527
|
+
readonly hu: "A számlaösszesítő nettó és áfaértékek összege forintban eltér a számla forintban feltüntetett bruttó értékétől.";
|
|
528
|
+
readonly de: "Der Betrag der Netto- und MwSt.-Werte der Rechnungsübersicht in Forint weicht vom in Forint (HUF) Brutto-Wert der Rechnung ab.";
|
|
529
|
+
};
|
|
530
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_GROSS_AMOUNT_LINE: {
|
|
531
|
+
readonly en: "The total of the gross amounts in the line items of the simplified invoice does not match the gross invoice amount.";
|
|
532
|
+
readonly hu: "Az egyszerűsített számla egyes tételsoraiban szereplő bruttó értékek összege eltér a számla bruttó összegétől.";
|
|
533
|
+
readonly de: "Der in einzelnen Postenzeilen der vereinfachten Rechnung aufgeführte Brutto-Wert weicht vom Bruttobetrag der Rechnung ab.";
|
|
534
|
+
};
|
|
535
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_GROSS_AMOUNT_SUMMARY: {
|
|
536
|
+
readonly en: "The sum of the invoice summary’s net and VAT amounts differs from the gross invoice amount.";
|
|
537
|
+
readonly hu: "A számlaösszesítő nettó és áfaértékek összege eltér a számla bruttó értékétől.";
|
|
538
|
+
readonly de: "Der Betrag der Netto- und MwSt.-Werte der Rechnungsübersicht weicht vom Brutto-Wert der Rechnung ab.";
|
|
539
|
+
};
|
|
540
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_NET_AMOUNT: {
|
|
541
|
+
readonly en: "The total sum of net amounts by VAT rate differs from the net invoiced amount.";
|
|
542
|
+
readonly hu: "Az adókulcsonkénti összesített nettó értékek összege eltér a számla nettó értékétől.";
|
|
543
|
+
readonly de: "Die Summe der Netto-Gesamtbeträge nach Umsatzsteuersätzen weicht vom Netto-Betrag der Rechnung ab.";
|
|
544
|
+
};
|
|
545
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_NET_AMOUNT_HUF: {
|
|
546
|
+
readonly en: "The total sum of net values aggregated by tax rate provided in HUF and the net value of the invoice provided in HUF do not match.";
|
|
547
|
+
readonly hu: "Az adókulcsonkénti összesített nettó értékek összege forintban eltér a számla forintban feltüntetett nettó értékétől.";
|
|
548
|
+
readonly de: "Die Summe der Netto-Gesamtbeträge nach Umsatzsteuersätzen in Forint (HUF) weicht vom in Forint (HUF) angegebenen Netto-Betrag der Rechnung ab.";
|
|
549
|
+
};
|
|
550
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_NET_AMOUNT_LINE_HUF: {
|
|
551
|
+
readonly en: "The sum of the net value(s) of the invoice line(s) provided in HUF and the net value of the invoice provided in HUF do not match.";
|
|
552
|
+
readonly hu: "A számlasor(ok) forintban megadott nettó értéke(inek) összege eltér a számla forintban feltüntetett nettó értékétől.";
|
|
553
|
+
readonly de: "Der Betrag des/der in Forint (HUF) angegebenen Nettowertes/Nettowerte der Rechnungszeile/Rechnungszeilen weicht von dem in Forint (HUF) aufgeführten Nettowert der Rechnung ab.";
|
|
554
|
+
};
|
|
555
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_NET_LINE_AMOUNT: {
|
|
556
|
+
readonly en: "Incorrect calculation. The sum of the net value(s) of the invoice line(s) does not match the net invoice amount.";
|
|
557
|
+
readonly hu: "Helytelen számítás. A számlasor(ok) nettó értéke(inek) összege eltér a számla nettó értékétől.";
|
|
558
|
+
readonly de: "Fehlerhafte Berechnung. Der Betrag des/der Nettowertes/Nettowerte der Rechnungszeile/Rechnungszeilen weicht vom Netto-Wert der Rechnung ab.";
|
|
559
|
+
};
|
|
560
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_VAT_AMOUNT: {
|
|
561
|
+
readonly en: "The gross value of the invoice summary aggregated by VAT content does not match the gross invoice amount.";
|
|
562
|
+
readonly hu: "A számlaösszesítő áfa-tartalmanként összegzett bruttó értéke eltér a számla bruttó értékétől.";
|
|
563
|
+
readonly de: "Der als MwSt.-Inhalt zusammengefasste Brutto-Wert der Rechnungsübersicht weicht vom Brutto-Wert der Rechnung ab.";
|
|
564
|
+
};
|
|
565
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_VAT_AMOUNT_HUF: {
|
|
566
|
+
readonly en: "The gross value of the invoice summary aggregated by VAT content provided in HUF and the gross value of the invoice provided in HUF do not match.";
|
|
567
|
+
readonly hu: "A számlaösszesítő áfa-tartalmanként összegzett bruttó értéke forintban eltér a számla forintban feltüntetett bruttó értékétől.";
|
|
568
|
+
readonly de: "Der als MwSt.-Inhalt zusammengefasste Bruttowert der Rechnungsübersicht in Forint (HUF) weicht vom in Forint (HUF) aufgeführten Bruttowert der Rechnung ab.";
|
|
569
|
+
};
|
|
570
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_VAT_AMOUNT_HUF_SUMMARY: {
|
|
571
|
+
readonly en: "The total sum of VAT amounts per VAT rate, in HUF, differs from the VAT amount, in HUF, in the invoice.";
|
|
572
|
+
readonly hu: "Az adókulcsonkénti áfaértékek összege eltér a számla áfaértékétől forintban.";
|
|
573
|
+
readonly de: "Die Summe der Umsatzsteuerbeträge nach Umsatzsteuersätzen weicht vom Wert der Umsatzsteuer in HUF ab.";
|
|
574
|
+
};
|
|
575
|
+
readonly INCORRECT_SUMMARY_CALCULATION_INVOICE_VAT_AMOUNT_SUMMARY: {
|
|
576
|
+
readonly en: "The amount of the tax VAT rates differs from the VAT of the invoice.";
|
|
577
|
+
readonly hu: "Az adókulcsonkénti áfaértékek összege eltér a számla áfaösszegétől.";
|
|
578
|
+
readonly de: "Die Summe der Steuersätze unterscheidet sich von der Mehrwertsteuer der Rechnung.";
|
|
579
|
+
};
|
|
580
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_AMOUNT_MISMATCH_SUMMARY_SIMPLIFIED: {
|
|
581
|
+
readonly en: "The indication of simplified invoice with a difference of the tax base and the charged tax is only present in either the line items or the summary.";
|
|
582
|
+
readonly hu: "Az egyszerűsített számla adóalap és felszámított adó eltérésének esetei jelölése a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
583
|
+
readonly de: "Die Angabe „Fälle von Abweichung zwischen der Steuergrundlage und der berechneten Steuer“ der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
584
|
+
};
|
|
585
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_CONTENT_GROSS_AMOUNT: {
|
|
586
|
+
readonly en: "The VAT content of the invoice line item differs from that of the invoice summary.";
|
|
587
|
+
readonly hu: "A számla tételsorban és az ősszesítőben szereplő áfa tartalom eltér.";
|
|
588
|
+
readonly de: "Der Umsatzsteuerinhalt in der Rechnungspostenzeile und in der Übersicht stimmen nicht überein.";
|
|
589
|
+
};
|
|
590
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_CONTENT_GROSS_AMOUNT_HUF_SUMMARY_SIMPLIFIED: {
|
|
591
|
+
readonly en: "The total of the gross values provided in HUF in the line items of the simplified invoice corresponding to one or more tax contents and the gross amount provided in HUF shown in the summary for the corresponding tax content do not match.";
|
|
592
|
+
readonly hu: "Az egyszerűsített számla egy vagy több adótartalomhoz tartozó tételsoraiban szereplő forintban megadott bruttó értékek összege, eltér az összesítésében a hozzá tartozó adótartalomnál szereplő forintban feltüntetett bruttó összegtől.";
|
|
593
|
+
readonly de: "Der Betrag der in den zu einem oder mehreren Steuerinhalten gehörenden Postenzeilen der vereinfachten Rechnung in Forint (HUF) aufgeführten Bruttowerte weicht von dem in der Übersicht bei dem zu ihm gehörenden Steuerinhalt in Forint (HUF) aufgeführten Bruttobetrag ab.";
|
|
594
|
+
};
|
|
595
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_CONTENT_GROSS_AMOUNT_SUMMARY_SIMPLIFIED: {
|
|
596
|
+
readonly en: "The total of the gross amounts in the line items of a simplified invoice corresponding to one or more tax contents do not match the gross amount shown in the summary for the corresponding tax content.";
|
|
597
|
+
readonly hu: "Az egyszerűsített számla egy vagy több adótartalomhoz tartozó tételsoraiban szereplő bruttó értékek összege eltér az összesítésében a hozzá tartozó adótartalomnál szereplő bruttó összegtől.";
|
|
598
|
+
readonly de: "Der Betrag der in den zu einem oder mehreren Steuerinhalten gehörenden Postenzeilen der vereinfachten Rechnung aufgeführten Brutto-Werte weicht von dem in der Übersicht bei dem zu ihm gehörenden Steuerinhalt aufgeführten Bruttobetrag ab.";
|
|
599
|
+
};
|
|
600
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_CONTENT_SUMMARY_SIMPLIFIED: {
|
|
601
|
+
readonly en: "The VAT content markings in the line items of the simplified invoice do not match the VAT content markings in the summary.";
|
|
602
|
+
readonly hu: "Az egyszerűsített számla tételsoraiban szereplő áfa-tartalom jelölés eltér az összesítőben szereplő áfa-tartalom jelölésektől.";
|
|
603
|
+
readonly de: "Die in den Postenzeilen der vereinfachten Rechnungspostenzeile aufgeführte Mehrwertsteuerinhalt-Markierung weicht von den in der Übersicht aufgeführten Mehrwertsteuerinhalt-Markierungen ab.";
|
|
604
|
+
};
|
|
605
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_DOMESTIC_REVERSE_CHARGE_SUMMARY_SIMPLIFIED: {
|
|
606
|
+
readonly en: "The indication of simplified invoice reverse charge mechanism is only present in either the line items or the summary.";
|
|
607
|
+
readonly hu: "Az egyszerűsített számla belföldi fordított adózás jelölése a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
608
|
+
readonly de: "Die Angabe „Umkehr der Steuerschuld im Inland“ der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
609
|
+
};
|
|
610
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_EXEMPTION_SUMMARY_SIMPLIFIED: {
|
|
611
|
+
readonly en: "The indication of simplified invoice tax exemption is only present in either the line items or the summary.";
|
|
612
|
+
readonly hu: "Az egyszerűsített számla adómentesség jelölése a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
613
|
+
readonly de: "Die Angabe der Steuerfreiheit der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
614
|
+
};
|
|
615
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_MARGIN_SCHEME_INDICATOR_SUMMARY_SIMPLIFIED: {
|
|
616
|
+
readonly en: "The indication of simplified invoice margin scheme taxation is only present in either the line items or the summary.";
|
|
617
|
+
readonly hu: "Az egyszerűsített számla áthárított adót tartalmazó különbözet szerinti adózás jelölése a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
618
|
+
readonly de: "Die Angabe „Differenzbesteuerung“ der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
619
|
+
};
|
|
620
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_OUT_OF_SCOPE_SUMMARY_SIMPLIFIED: {
|
|
621
|
+
readonly en: "The indication of simplified invoice outside the scope of the VAT Act is only present in either the line items or the summary.";
|
|
622
|
+
readonly hu: "Az egyszerűsített számla ÁFA törvény hatályán kívüli jelölés a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
623
|
+
readonly de: "Die Angabe außerhalb des Geltungsbereichs des Mehrwertsteuergesetzes der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
624
|
+
};
|
|
625
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_GROSS_AMOUNT_LINE: {
|
|
626
|
+
readonly en: "The gross amount summarised by VAT rate differs in the invoice line items and the summary.";
|
|
627
|
+
readonly hu: "A számla tételsorok és az összesítő áfa kulcsonként összegzett bruttó értéke nem egyezik.";
|
|
628
|
+
readonly de: "Die Brutto-Gesamtsumme der Rechnungspostenzeilen und der Rechnungsübersicht pro Umsatzsteuersatz stimmen nicht überein.";
|
|
629
|
+
};
|
|
630
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_GROSS_AMOUNT_SUMMARY: {
|
|
631
|
+
readonly en: "The sum of gross amounts per VAT rate differs from the gross invoiced amount.";
|
|
632
|
+
readonly hu: "Az adókulcsonkénti bruttó érték(ek) összege eltér a számla bruttó értékétől.";
|
|
633
|
+
readonly de: "Die Summe des Brutto-Wertes (der Brutto-Werte) pro Umsatzsteuersatz weicht vom Brutto-Wert der Rechnung ab.";
|
|
634
|
+
};
|
|
635
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_NET_AMOUNT_HUF_LINE: {
|
|
636
|
+
readonly en: "The total net value of line items provided in HUF as calculated by one or more tax rates and the net value provided in HUF indicated in the invoice summary next to the corresponding tax rate do not match.";
|
|
637
|
+
readonly hu: "A tételsorok nettó értékének egy vagy több, adómértékenként számított összege forintban nem egyezik meg a számlaösszesítőben szereplő, egyező adómértéknél közölt forintban számított nettó értékkel.";
|
|
638
|
+
readonly de: "Der in Forint (HUF) berechnete Nettowert eines oder mehrerer als Steuermaß berechneter Betrags/Beträge der Posten deckt sich nicht mit dem in der Rechnungsübersicht aufgeführten, bei übereinstimmendem Steuermaß in Forint (HUF) angegebenen Nettowert.";
|
|
639
|
+
};
|
|
640
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_NET_AMOUNT_LINE: {
|
|
641
|
+
readonly en: "The total net value of line items as calculated by one or more tax rates does not equal the net value indicated in the invoice summary next to the corresponding tax rate.";
|
|
642
|
+
readonly hu: "A tételsorok nettó értékének egy vagy több, adómértékenként számított összege nem egyezik meg a számlaösszesítőben szereplő, egyező adómértéknél közölt nettó értékkel.";
|
|
643
|
+
readonly de: "Ein oder mehrere als Steuermaß berechneter Betrag/berechnete Beträge des Netto-Wertes der Postenzeilen deckt/decken sich nicht mit dem in der Rechnungsübersicht aufgeführten, bei übereinstimmenden Steuermaß angegebenen Nettowert.";
|
|
644
|
+
};
|
|
645
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_NET_AMOUNT_SUMMARY: {
|
|
646
|
+
readonly en: "The total sum of net amounts by VAT rate differs from the net invoiced amount.";
|
|
647
|
+
readonly hu: "Az adókulcsonkénti nettó értékek összege eltérnek a számla nettó értékétől.";
|
|
648
|
+
readonly de: "Die Summe der Netto-Werte pro Umsatzsteuersatz weicht vom Netto-Wert der Rechnung ab.";
|
|
649
|
+
};
|
|
650
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_VAT_AMOUNT_HUF_SUMMARY: {
|
|
651
|
+
readonly en: "The VAT amount provided in HUF calculated from the net amount based on the VAT rate and the applied tax rate and the indicated VAT amount provided in HUF do not match.";
|
|
652
|
+
readonly hu: "Az áfa-mértékhez tartozó nettó összegből és az alkalmazott adó mértékből számított áfaösszeg forintban eltér a forintban feltüntetett áfaösszegtől.";
|
|
653
|
+
readonly de: "Der aus dem zum MwSt.-Maß gehörenden Netto-Betrag und aus dem Maß der angewendeten Steuer berechnete MwSt.-Betrag in Forint (HUF) weicht von dem in Forint angegebenen MwSt.-Betrag ab.";
|
|
654
|
+
};
|
|
655
|
+
readonly INCORRECT_SUMMARY_CALCULATION_VAT_RATE_VAT_AMOUNT_SUMMARY: {
|
|
656
|
+
readonly en: "The VAT amount calculated from the net amount based on the VAT rate and the applied tax rate does not match the indicated VAT amount.";
|
|
657
|
+
readonly hu: "Az áfa-mértékhez tartozó nettó összegből és az alkalmazott adómértékből számított áfaösszeg eltér a feltüntetett áfaösszegtől.";
|
|
658
|
+
readonly de: "Der aus dem zum MwSt.-Maß gehörenden Netto-Betrag und aus dem Maß der angewendeten Steuer berechnete MwSt.-Betrag weicht von dem angegebenen MwSt.-Betrag ab.";
|
|
659
|
+
};
|
|
660
|
+
readonly INCORRECT_SUMMARY_DATA_AGGREGATE_INVOICE_VAT_AMOUNT_HUF: {
|
|
661
|
+
readonly en: "The VAT amounts provided in the original currency do not match those in HUF.";
|
|
662
|
+
readonly hu: "Eltérés az áfaösszeg eredeti pénznemben és forintban megadott értékei között.";
|
|
663
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Wert des MwSt.-Betrags und des in Forint (HUF) angegebenen MwSt.-Betrags.";
|
|
664
|
+
};
|
|
665
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_GROSS_AMOUNT: {
|
|
666
|
+
readonly en: "The gross amount of the original (CREATE) simplified invoice cannot be negative.";
|
|
667
|
+
readonly hu: "Eredeti (CREATE) egyszerűsített számla bruttó összege nem lehet negatív.";
|
|
668
|
+
readonly de: "Der Bruttobetrag der ursprünglichen (CREATE) vereinfachten Rechnung darf nicht negativ sein.";
|
|
669
|
+
};
|
|
670
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_GROSS_AMOUNT_HUF: {
|
|
671
|
+
readonly en: "The gross amounts of the invoice provided in the original currency and HUF do not match.";
|
|
672
|
+
readonly hu: "Eltérés a számla eredeti pénznemben és forintban megadott bruttó összegei között.";
|
|
673
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Bruttowert der Rechnung und dem in Forint (HUF) angegebenen Bruttowert.";
|
|
674
|
+
};
|
|
675
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_NET_AMOUNT: {
|
|
676
|
+
readonly en: "The net amount of the original (CREATE) invoice cannot be negative.";
|
|
677
|
+
readonly hu: "Eredeti (CREATE) számla nettó összege nem lehet negatív.";
|
|
678
|
+
readonly de: "Der Nettobetrag der ursprünglichen (CREATE) Rechnung darf nicht negativ sein.";
|
|
679
|
+
};
|
|
680
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_NET_AMOUNT_HUF: {
|
|
681
|
+
readonly en: "The net values of the invoice provided in the original currency and HUF do not match.";
|
|
682
|
+
readonly hu: "Eltérés a számla eredeti pénznemben és forintban megadott nettó értékei között.";
|
|
683
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Nettowert der Rechnung und dem in Forint (HUF) angegebenen Nettowert.";
|
|
684
|
+
};
|
|
685
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_VAT_AMOUNT_HUF: {
|
|
686
|
+
readonly en: "The VAT amounts provided in the original currency do not match those in HUF.";
|
|
687
|
+
readonly hu: "Eltérés az áfaösszeg eredeti pénznemben és forintban megadott értékei között.";
|
|
688
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Wert des MwSt.-Betrags und des in Forint (HUF) angegebenen MwSt.-Betrags.";
|
|
689
|
+
};
|
|
690
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_VAT_AMOUNT_NOT_ZERO: {
|
|
691
|
+
readonly en: "Non-zero VAT total shall not be featured in a zero-currency invoice.";
|
|
692
|
+
readonly hu: "Nullától eltérő áfa végösszeg nem szerepelhet 0 árfolyamú számlán.";
|
|
693
|
+
readonly de: "Bei Rechnungen mit Währungskurs 0 darf auf der Rechnung keine Endsumme aufgeführt werden, die von Null abweicht.";
|
|
694
|
+
};
|
|
695
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_VAT_CONTENT_GROSS_AMOUNT_HUF: {
|
|
696
|
+
readonly en: "The gross values of the simplified invoice provided in the original currency and HUF do not match.";
|
|
697
|
+
readonly hu: "Eltérés az egyszerűsített számla eredeti pénznemben és forintban megadott bruttó értékei között.";
|
|
698
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung angegebenen Bruttowert der vereinfachten Rechnung und des in Forint (HUF) angegebenen Bruttowert.";
|
|
699
|
+
};
|
|
700
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_VAT_RATE_NET_AMOUNT_HUF: {
|
|
701
|
+
readonly en: "The net amounts for a product sale or service provision for a given tax rate in the invoice provided in the original currency and HUF do not match.";
|
|
702
|
+
readonly hu: "Eltérés a számla eredeti pénznemben és forintban megadott adómértékhez tartozó értékesítés vagy szolgáltatásnyújtás nettó összegei között.";
|
|
703
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung und in Forint (HUF) angegebenen Nettowert der Verkauf oder der Dienstleistung des Steuersatzes der Rechnung.";
|
|
704
|
+
};
|
|
705
|
+
readonly INCORRECT_SUMMARY_DATA_INVOICE_VAT_RATE_VAT_AMOUNT_HUF: {
|
|
706
|
+
readonly en: "The VAT amounts for a product sale or service provision for a given tax rate in the invoice provided in the original currency and HUF do not match.";
|
|
707
|
+
readonly hu: "Eltérés a számla eredeti pénznemben és forintban megadott adómértékhez tartozó értékesítés vagy szolgáltatásnyújtás áfaösszegei között.";
|
|
708
|
+
readonly de: "Abweichung zwischen dem in der ursprünglichen Währung und in Forint (HUF) angegebenen Mehrwertsteuerwerten der Verkauf oder der Dienstleistung des Steuersatzes der Rechnung.";
|
|
709
|
+
};
|
|
710
|
+
readonly INCORRECT_SUMMARY_DATA_MARGIN_SCHEME_INDICATOR: {
|
|
711
|
+
readonly en: "The indication of margin scheme taxation differ in the summary and the line items.";
|
|
712
|
+
readonly hu: "A számla különbözet szerinti szabályozás jelölései a tételsorokban és az összesítőben eltérnek.";
|
|
713
|
+
readonly de: "Die Angabe \"Differenzbesteuerung\" unterscheiden sich in der Zusammenfassung und den Werbebuchungen.";
|
|
714
|
+
};
|
|
715
|
+
readonly INCORRECT_SUMMARY_DATA_MARGIN_SCHEME_INDICATOR_NORMAL: {
|
|
716
|
+
readonly en: "Despite margin scheme taxation being indicated the invoice summary contains VAT data.";
|
|
717
|
+
readonly hu: "Az ÁFA-mérték szerinti összesítés különbözet szerinti adózás jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
718
|
+
readonly de: "Trotz der Angaben \"Differenzbesteuerung\" in der Zusammenfassung enthält es Mehrwertsteuerangaben.";
|
|
719
|
+
};
|
|
720
|
+
readonly INCORRECT_SUMMARY_DATA_MARGIN_SCHEME_NO_VAT: {
|
|
721
|
+
readonly en: "The indication of margin scheme taxation excluding output tax is only present in either the line items or the summary, but is missing from the other.";
|
|
722
|
+
readonly hu: "Az áthárított adót nem tartalmazó különbözet szerinti adózásra vonatkozó jelölés a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
723
|
+
readonly de: "Die Markierung gemäß der die abgewälzte Steuer nicht enthaltenden Differenz ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
724
|
+
};
|
|
725
|
+
readonly INCORRECT_SUMMARY_DATA_MARGIN_SCHEME_VAT: {
|
|
726
|
+
readonly en: "The indication of margin scheme taxation including output tax is only present in either the line items or the summary, but is missing from the other.";
|
|
727
|
+
readonly hu: "Az áthárított adót tartalmazó különbözet szerinti adózásra vonatkozó jelölés a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
728
|
+
readonly de: "Die Markierung der Besteuerung gemäß der die abgewälzte Steuer enthaltenden Differenz ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
729
|
+
};
|
|
730
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_AMOUNT_MISMATCH_NORMAL: {
|
|
731
|
+
readonly en: "The difference of the tax base and the charged tax is only present in either the line items or the summary, but is missing from the other.";
|
|
732
|
+
readonly hu: "Az adóalap és felszámított adó eltérésének esete a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
733
|
+
readonly de: "Der Fall der Abweichung zwischen der Steuergrundlage und der berechneten Steuer ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
734
|
+
};
|
|
735
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_DOMESTIC_REVERSE_CHARGE: {
|
|
736
|
+
readonly en: "The indication of reverse charging is only present in either the line items or the summary, but is missing from the other.";
|
|
737
|
+
readonly hu: "A belföldi fordított adózásra vonatkozó jelölés a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
738
|
+
readonly de: "Die Markierung der Umkehrung der Steuerschuldnerschaft im Inland ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
739
|
+
};
|
|
740
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_DOMESTIC_REVERSE_CHARGE_NORMAL: {
|
|
741
|
+
readonly en: "Despite reverse charge mechanism being indicated the invoice summary contains VAT data.";
|
|
742
|
+
readonly hu: "Az ÁFA-mérték szerinti összesítés belföldi fordított adózás jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
743
|
+
readonly de: "Trotz der Angaben „Umkehr der Steuerschuld im Inland“ in der Zusammenfassung enthält es Mehrwertsteuerangaben.";
|
|
744
|
+
};
|
|
745
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_EXEMPTION: {
|
|
746
|
+
readonly en: "The indication of tax exemption is only present in either the line items or the summary, but is missing from the other.";
|
|
747
|
+
readonly hu: "Az adómentesség jelölés a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
748
|
+
readonly de: "Die Markierung der Steuerfreiheit ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
749
|
+
};
|
|
750
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_EXEMPTION_NORMAL: {
|
|
751
|
+
readonly en: "Despite tax exemption being indicated the invoice summary contains VAT data.";
|
|
752
|
+
readonly hu: "Az ÁFA-mérték szerinti összesítés adómentesség jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
753
|
+
readonly de: "Trotz der Angaben Steuerfreiheit in der Zusammenfassung enthält es Mehrwertsteuerangaben.";
|
|
754
|
+
};
|
|
755
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_OUT_OF_SCOPE: {
|
|
756
|
+
readonly en: "The indication of VAT exemption is only present in either the line items or the summary, but is missing from the other.";
|
|
757
|
+
readonly hu: "Az Áfa törvény hatályán kívüli jelölés a tételsorok és az összesítő közül csak az egyikben fordul elő, a másikból hiányzik.";
|
|
758
|
+
readonly de: "Die Markierung „MwSt.-Gesetz außer Kraft“ ist entweder in den Postenzeilen oder in der Übersicht angegeben, obwohl sie in beiden markiert sein müsste.";
|
|
759
|
+
};
|
|
760
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_OUT_OF_SCOPE_NORMAL: {
|
|
761
|
+
readonly en: "Despite outside the scope of the VAT Act is being indicated the invoice summary contains VAT data.";
|
|
762
|
+
readonly hu: "Az ÁFA-mérték szerinti összesítés ÁFA törvény hatályán kívüli jelölés ellenére ÁFA adat(ok) szerepel(nek).";
|
|
763
|
+
readonly de: "Trotz der Angaben „fällt nicht unter das Mehrwertsteuergesetz“ in der Zusammenfassung enthält es Mehrwertsteuerangaben.";
|
|
764
|
+
};
|
|
765
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_PERCENTAGE: {
|
|
766
|
+
readonly en: "The rate of VAT differs from the invoice lines in the summary.";
|
|
767
|
+
readonly hu: "Számlasoroktól eltérő ÁFA mérték az összesítésben.";
|
|
768
|
+
readonly de: "Von den Rechnungszeilen abweichende Umsatzsteuerhöhe in der Übersicht.";
|
|
769
|
+
};
|
|
770
|
+
readonly INCORRECT_SUMMARY_DATA_VAT_RATE_VAT_AMOUNT_NOT_ZERO: {
|
|
771
|
+
readonly en: "A summary with a VAT rate of non-zero VAT amount shall not be featured in a zero-currency invoice.";
|
|
772
|
+
readonly hu: "Nullától eltérő áfaösszegű áfakulcs szerinti összesítő nem szerepelhet 0 árfolyamú számlán.";
|
|
773
|
+
readonly de: "Bei Rechnungen mit Währungskurs 0 darf auf der Rechnung keine nach MwSt.-Schlüssel zusammengefasste MwSt.-Zwischensumme aufgeführt werden, die von Null abweicht.";
|
|
774
|
+
};
|
|
775
|
+
readonly INCORRECT_VAT_CODE_CUSTOMER: {
|
|
776
|
+
readonly en: "Invalid VAT code. The customer’s VAT code cannot be 4.";
|
|
777
|
+
readonly hu: "Érvénytelen áfakód. Vevő áfakódja nem lehet 4-es.";
|
|
778
|
+
readonly de: "Ungültiger MwSt.-Code. Der MwSt.-Code des Käufers darf nicht 4 sein.";
|
|
779
|
+
};
|
|
780
|
+
readonly INCORRECT_VAT_CODE_CUSTOMER_GROUPMEMBER: {
|
|
781
|
+
readonly en: "Invalid VAT code in the tax number of the group member. The VAT code of the group member (customer) must be 4.";
|
|
782
|
+
readonly hu: "Érvénytelen áfakód a csoporttag adószámában. A csoporttag vevő áfakódja csak 4-es lehet.";
|
|
783
|
+
readonly de: "Ungültiger MwSt.-Code in der Steuernummer des Gruppenmitglieds. Der MwSt.-Code des Käufers, des Gruppenmitglieds darf nur 4 sein.";
|
|
784
|
+
};
|
|
785
|
+
readonly INCORRECT_VAT_CODE_FISCALREPRESENTATIVE: {
|
|
786
|
+
readonly en: "Invalid VAT code. The fiscal representative’s VAT code cannot be else than 1,2,4.";
|
|
787
|
+
readonly hu: "Érvénytelen ÁFA kód. Pénzügyi képviselő ÁFA kódja 1, 2, vagy 4 lehet.";
|
|
788
|
+
readonly de: "Ungültiger MwSt.-Code. Der MwSt.-Code des Vertreters Finanzwesen darf nicht anders als 1,2,4 sein.";
|
|
789
|
+
};
|
|
790
|
+
readonly INCORRECT_VAT_CODE_SUPPLIER: {
|
|
791
|
+
readonly en: "Invalid VAT code. The seller’s VAT code cannot be 4.";
|
|
792
|
+
readonly hu: "Érvénytelen áfakód. Eladó áfakódja nem lehet 4-es.";
|
|
793
|
+
readonly de: "Ungültiger MwSt.-Code. Der MwSt.-Code des Verkäufers darf nicht 4 sein.";
|
|
794
|
+
};
|
|
795
|
+
readonly INCORRECT_VAT_CODE_SUPPLIER_GROUPMEMBER: {
|
|
796
|
+
readonly en: "Invalid VAT code in the tax number of the group member. The VAT code of the group member (seller) must be 4.";
|
|
797
|
+
readonly hu: "Érvénytelen áfakód a csoporttag adószámában. A csoporttag eladó áfakódja csak 4-es lehet.";
|
|
798
|
+
readonly de: "Ungültiger MwSt.-Code in der Steuernummer des Gruppenmitglieds. Der MwSt.-Code des Verkäufers, Gruppenmitglieds darf nicht 4 sein.";
|
|
799
|
+
};
|
|
800
|
+
readonly INCORRECT_VAT_CODE_SUPPLIER_GROUPMEMBER_MISSING: {
|
|
801
|
+
readonly en: "The tax number for the VAT group member (seller) has not been provided.";
|
|
802
|
+
readonly hu: "Az áfacsoporttag eladó adószáma nincs kitöltve.";
|
|
803
|
+
readonly de: "Die Steuernummer des Verkäufers, MwSt.-Gruppenmitglieds ist nicht ausgefüllt.";
|
|
804
|
+
};
|
|
805
|
+
readonly INCORRECT_VAT_CODE_TAXNUMBEROFOBLIGATOR: {
|
|
806
|
+
readonly en: "Invalid VAT code in the tax number of the party obligated to pay the product fee.";
|
|
807
|
+
readonly hu: "Érvénytelen áfakód a termékdíj fizetésre kötelezett adószámában.";
|
|
808
|
+
readonly de: "Ungültiger MwSt.-Code in der Steuernummer des zur Zahlung der Produktgebühr Verpflichteten.";
|
|
809
|
+
};
|
|
810
|
+
readonly INFO_CHAIN_INVOICE_ANNULMENT: {
|
|
811
|
+
readonly en: "Invoice chain annulment";
|
|
812
|
+
readonly hu: "Számlalánc érvénytelenítése";
|
|
813
|
+
readonly de: "Rechnungskettenannullierung";
|
|
814
|
+
};
|
|
815
|
+
readonly INFO_SINGLE_INVOICE_ANNULMENT: {
|
|
816
|
+
readonly en: "Single invoice annulment";
|
|
817
|
+
readonly hu: "Egyedi számla technikai érvénytelenítése";
|
|
818
|
+
readonly de: "Einmalige Rechnungsannullierung";
|
|
819
|
+
};
|
|
820
|
+
readonly INVALID_ANNULMENT_REFERENCE: {
|
|
821
|
+
readonly en: "The technical annulment pertains to a document for which no data was provided.";
|
|
822
|
+
readonly hu: "A technikai érvénytelenítés olyan okiratra vonatkozik, amire vonatkozóan nem történt adatszolgáltatás.";
|
|
823
|
+
readonly de: "Die technische Stornierung bezieht sich auf ein Dokument, zu dem keine erfolgreiche Datenmitteilung erfolgt ist.";
|
|
824
|
+
};
|
|
825
|
+
readonly INVALID_INVOICE_HASH: {
|
|
826
|
+
readonly en: "Invalid electronic invoice hash value.";
|
|
827
|
+
readonly hu: "Érvénytelen elektronikus számla hash érték!";
|
|
828
|
+
readonly de: "Ungültiger Hashwert für elektronische Rechnung!";
|
|
829
|
+
};
|
|
830
|
+
readonly INVALID_INVOICE_HASH_CRYPTO: {
|
|
831
|
+
readonly en: "Invalid electronic invoice hash algorithm.";
|
|
832
|
+
readonly hu: "Érvénytelen elektronikus számla hash algoritmus!";
|
|
833
|
+
readonly de: "Ungültiger Hash-Algorithmus für elektronische Rechnung!";
|
|
834
|
+
};
|
|
835
|
+
readonly INVALID_INVOICE_NUMBER: {
|
|
836
|
+
readonly en: "Invalid invoice number!";
|
|
837
|
+
readonly hu: "Érvénytelen számla sorszám!";
|
|
838
|
+
readonly de: "Ungültige Rechnungsnummer!";
|
|
839
|
+
};
|
|
840
|
+
readonly INVALID_INVOICE_REFERENCE: {
|
|
841
|
+
readonly en: "The modification or annulment references a document for which no data was provided.";
|
|
842
|
+
readonly hu: "A módosítás vagy érvénytelenítés olyan okiratra hivatkozik, amire vonatkozóan nem történt adatszolgáltatás.";
|
|
843
|
+
readonly de: "Mit der im Element „originalInvoiceNumber“ angegebenen Rechnungsnummer wurden keine Daten mitgeteilt oder der Wert des Elements „modifyWithoutMaster“ ist falsch.";
|
|
844
|
+
};
|
|
845
|
+
readonly INVALID_LINE_VAT_AMOUNT_MISMATCH_CODE: {
|
|
846
|
+
readonly en: "Invalid tax base and charged tax difference indicator code!";
|
|
847
|
+
readonly hu: "Érvénytelen adóalap és felszámított adó eltérést jelölő kód!";
|
|
848
|
+
readonly de: "Ungültige Steuerbemessungsgrundlage und Indikatorcode für berechnete Steuerdifferenz!";
|
|
849
|
+
};
|
|
850
|
+
readonly INVALID_LINE_VAT_AMOUNT_MISMATCH_VAT_RATE: {
|
|
851
|
+
readonly en: "Invalid tax base and charged tax difference indicator tax rate, VAT content!";
|
|
852
|
+
readonly hu: "Érvénytelen adóalap és felszámított adó eltérést jelölő adómérték, adótartalom!";
|
|
853
|
+
readonly de: "Ungültige Steuerbemessungsgrundlage und Steuerdifferenzindikator Steuersatz, Mehrwertsteuergehalt!";
|
|
854
|
+
};
|
|
855
|
+
readonly INVALID_LINE_VAT_EXEMPTION_CODE: {
|
|
856
|
+
readonly en: "Invalid tax exemption code.";
|
|
857
|
+
readonly hu: "Érvénytelen adómentességi kód!";
|
|
858
|
+
readonly de: "Ungültiger Steuerbefreiungscode!";
|
|
859
|
+
};
|
|
860
|
+
readonly INVALID_LINE_VAT_OUT_OF_SCOPE_CODE: {
|
|
861
|
+
readonly en: "Invalid VAT exemption code.";
|
|
862
|
+
readonly hu: "Érvénytelen ÁFA törvény határán kívüliséget jelölő kód!";
|
|
863
|
+
readonly de: "Ungültiger MwSt.-Befreiungscode!";
|
|
864
|
+
};
|
|
865
|
+
readonly INVALID_LINE_VAT_RATE_INDICATOR_VALUE_NORMAL: {
|
|
866
|
+
readonly en: "Invalid VAT type indicator value!";
|
|
867
|
+
readonly hu: "Érvénytelen adózási típus jelölő érték!";
|
|
868
|
+
readonly de: "Ungültiger MwSt.-Indikatorwert!";
|
|
869
|
+
};
|
|
870
|
+
readonly INVALID_LINE_VAT_RATE_INDICATOR_VALUE_SIMPLIFIED: {
|
|
871
|
+
readonly en: "Invalid VAT type indicator value!";
|
|
872
|
+
readonly hu: "Érvénytelen adózási típus jelölő érték!";
|
|
873
|
+
readonly de: "Ungültiger MwSt.-Indikatorwert!";
|
|
874
|
+
};
|
|
875
|
+
readonly INVALID_LINE_VAT_RATE_NORMAL: {
|
|
876
|
+
readonly en: "VAT content cannot be specified as non-simplified item value data!";
|
|
877
|
+
readonly hu: "Áfa tartalom nem adható meg nem egyszerűsített tétel érték adatként!";
|
|
878
|
+
readonly de: "Der Mehrwertsteuerinhalt kann nicht als nicht vereinfachte Artikelwertdaten angegeben werden!";
|
|
879
|
+
};
|
|
880
|
+
readonly INVALID_LINE_VAT_RATE_SIMPLIFIED: {
|
|
881
|
+
readonly en: "VAT percentage cannot be specified as simplified item value data!";
|
|
882
|
+
readonly hu: "Ádómérték nem adható meg egyszerűsített tétel érték adatként!";
|
|
883
|
+
readonly de: "Der Mehrwertsteuerprozentsatz kann nicht als vereinfachte Artikelwertdaten angegeben werden!";
|
|
884
|
+
};
|
|
885
|
+
readonly INVALID_SUMMARY_VAT_AMOUNT_MISMATCH_CODE: {
|
|
886
|
+
readonly en: "Invalid tax base and charged tax difference indicator code!";
|
|
887
|
+
readonly hu: "Érvénytelen adóalap és felszámított adó eltérést jelölő kód!";
|
|
888
|
+
readonly de: "Ungültige Steuerbemessungsgrundlage und Indikatorcode für berechnete Steuerdifferenz!";
|
|
889
|
+
};
|
|
890
|
+
readonly INVALID_SUMMARY_VAT_AMOUNT_MISMATCH_VAT_RATE: {
|
|
891
|
+
readonly en: "Invalid tax base and charged tax difference indicator tax rate, VAT content!";
|
|
892
|
+
readonly hu: "Érvénytelen adóalap és felszámított adó eltérést jelölő adómérték, adótartalom!";
|
|
893
|
+
readonly de: "Ungültige Steuerbemessungsgrundlage und Steuerdifferenzindikator Steuersatz, Mehrwertsteuergehalt!";
|
|
894
|
+
};
|
|
895
|
+
readonly INVALID_SUMMARY_VAT_EXEMPTION_CODE: {
|
|
896
|
+
readonly en: "Invalid tax exemption code.";
|
|
897
|
+
readonly hu: "Érvénytelen adómentességi kód!";
|
|
898
|
+
readonly de: "Ungültiger Steuerbefreiungscode!";
|
|
899
|
+
};
|
|
900
|
+
readonly INVALID_SUMMARY_VAT_OUT_OF_SCOPE_CODE: {
|
|
901
|
+
readonly en: "Invalid VAT exemption code.";
|
|
902
|
+
readonly hu: "Érvénytelen ÁFA törvény határán kívüliséget jelölő kód!";
|
|
903
|
+
readonly de: "Ungültiger MwSt.-Befreiungscode!";
|
|
904
|
+
};
|
|
905
|
+
readonly INVALID_SUMMARY_VAT_RATE_INDICATOR_VALUE_NORMAL: {
|
|
906
|
+
readonly en: "Invalid VAT type indicator value!";
|
|
907
|
+
readonly hu: "Érvénytelen adózási típus jelölő érték!";
|
|
908
|
+
readonly de: "Ungültiger MwSt.-Indikatorwert!";
|
|
909
|
+
};
|
|
910
|
+
readonly INVALID_SUMMARY_VAT_RATE_INDICATOR_VALUE_SIMPLIFIED: {
|
|
911
|
+
readonly en: "Invalid VAT type indicator value!";
|
|
912
|
+
readonly hu: "Érvénytelen adózási típus jelölő érték!";
|
|
913
|
+
readonly de: "Ungültiger MwSt.-Indikatorwert!";
|
|
914
|
+
};
|
|
915
|
+
readonly INVALID_SUMMARY_VAT_RATE_NORMAL: {
|
|
916
|
+
readonly en: "VAT content cannot be entered as non-simplified summary value data!";
|
|
917
|
+
readonly hu: "Áfa tartalom nem adható meg nem egyszerűsített összesítő érték adatként!";
|
|
918
|
+
readonly de: "Mehrwertsteuerinhalte können nicht als nicht vereinfachte zusammenfassende Wertdaten eingegeben werden!";
|
|
919
|
+
};
|
|
920
|
+
readonly INVALID_SUMMARY_VAT_RATE_SIMPLIFIED: {
|
|
921
|
+
readonly en: "VAT percentage cannot be entered as simplified summary value data!";
|
|
922
|
+
readonly hu: "Ádómérték nem adható meg egyszerűsített összesítő érték adatként!";
|
|
923
|
+
readonly de: "Der Mehrwertsteuersatz kann nicht als vereinfachte Zusammenfassung der Wertdaten eingegeben werden!";
|
|
924
|
+
};
|
|
925
|
+
readonly INVALID_UNIT_OF_MEASURE_OWN: {
|
|
926
|
+
readonly en: "Own unit of measure is only applicable if it is indicated in the unitOfMeasure tag.";
|
|
927
|
+
readonly hu: "Saját mennyiségi egység csak akkor adható meg, ha ennek ténye a unitOfMeasure tagban jelölve volt.";
|
|
928
|
+
readonly de: "Eine eigene Maßeinheit ist nur anwendbar, wenn sie im unitOfMeasure Tag angegeben ist.";
|
|
929
|
+
};
|
|
930
|
+
readonly INVALID_VAT_DATA: {
|
|
931
|
+
readonly en: "The provided VAT percentage or VAT rate is not allowed.";
|
|
932
|
+
readonly hu: "A számlában megadott áfakulcs vagy áfaérték nem engedélyezett.";
|
|
933
|
+
readonly de: "Der angegebene MwSt-Prozentsatz oder MwSt-Satz ist nicht zulässig.";
|
|
934
|
+
};
|
|
935
|
+
readonly INVOICE_APPEARANCE_MISMATCH: {
|
|
936
|
+
readonly en: "Data report about a non-electronic form invoice shall not be handled as an electronic invoice.";
|
|
937
|
+
readonly hu: "Nem elektronikus megjelési formájú számláról szóló adatszolgáltatást nem lehet elektronikus számlaként kezelni.";
|
|
938
|
+
readonly de: "Datenlieferungen über Rechnungen mit nicht elektronischem Rechnungsformat können nicht als elektronische Rechnungen behandelt werden.";
|
|
939
|
+
};
|
|
940
|
+
readonly INVOICE_COMPLETENESS_MERGED_ITEM_INDICATOR_MISMATCH: {
|
|
941
|
+
readonly en: "Reporting an invoice containing merged items cannot be an electronic invoice!";
|
|
942
|
+
readonly hu: "Összevont tételeket tartalmazó számla adatszolgáltatása nem lehet elektronikus számla!";
|
|
943
|
+
readonly de: "Das Melden einer Rechnung mit zusammengeführten Artikeln kann keine elektronische Rechnung sein!";
|
|
944
|
+
};
|
|
945
|
+
readonly INVOICE_COMPLETENESS_NOT_ALLOWED: {
|
|
946
|
+
readonly en: "Data report accepted as an electronic invoice is not supported!";
|
|
947
|
+
readonly hu: "Elektronikus számlaként elfogadott adatszolgáltatás beküldése nem támogatott!";
|
|
948
|
+
readonly de: "Als elektronische Rechnung akzeptierter Datenbericht wird nicht unterstützt!";
|
|
949
|
+
};
|
|
950
|
+
readonly INVOICE_COMPLETENESS_PRIVATE_PERSON_INDICATOR_MISMATCH: {
|
|
951
|
+
readonly en: "The data report of an invoice issued to an individual cannot be an electronic invoice!";
|
|
952
|
+
readonly hu: "Magánszemélynek kiállított számla adatszolgáltatása nem lehet elektronikus számla!";
|
|
953
|
+
readonly de: "Der Datenbericht einer an eine Person ausgestellten Rechnung kann keine elektronische Rechnung sein!";
|
|
954
|
+
};
|
|
955
|
+
readonly INVOICE_LINE_ALREADY_EXISTS: {
|
|
956
|
+
readonly en: "A line item with the specified number already exists in the invoice chain.";
|
|
957
|
+
readonly hu: "A megadott sorszámmal már létezik tétel a számlaláncban.";
|
|
958
|
+
readonly de: "Mit der angegebenen Rechnungsnummer gibt es schon einen Posten in der Rechnungskette.";
|
|
959
|
+
};
|
|
960
|
+
readonly INVOICE_LINE_MISSING: {
|
|
961
|
+
readonly en: "The invoice contains no line items.";
|
|
962
|
+
readonly hu: "A számla nem tartalmaz tételt.";
|
|
963
|
+
readonly de: "Die Rechnung enthält keinen Posten.";
|
|
964
|
+
};
|
|
965
|
+
readonly INVOICE_NUMBER_NOT_UNIQUE: {
|
|
966
|
+
readonly en: "The specified invoice number has already been used previously.";
|
|
967
|
+
readonly hu: "A megadott számla sorszámmal már történt adatszolgáltatás.";
|
|
968
|
+
readonly de: "Mit dieser Rechnungsnummer wurden bereits Daten mitgeteilt.";
|
|
969
|
+
};
|
|
970
|
+
readonly INVOICE_REFERENCE_EXPECTED: {
|
|
971
|
+
readonly en: "It is mandatory to refer to the original invoice in case of a modification document.";
|
|
972
|
+
readonly hu: "Módosító okirat esetén eredeti számlára történő hivatkozás kötelező.";
|
|
973
|
+
readonly de: "Änderungsbeleg muss sich auf die Originalrechnung beziehen.";
|
|
974
|
+
};
|
|
975
|
+
readonly INVOICE_REFERENCE_NOT_EXPECTED: {
|
|
976
|
+
readonly en: "Original invoice cannot refer to any document.";
|
|
977
|
+
readonly hu: "Eredeti számlára történő hivatkozás alapszámla esetén nem adható meg.";
|
|
978
|
+
readonly de: "Die Originalrechnung kann sich nicht auf ein Dokument beziehen.";
|
|
979
|
+
};
|
|
980
|
+
readonly INVOICE_TYPE_MISMATCH: {
|
|
981
|
+
readonly en: "The type of invoice designated in the modification/annulment does not match the base invoice type.";
|
|
982
|
+
readonly hu: "A módosításban/érvénytelenítésben jelölt számla típusa eltér az alapszámla típusától.";
|
|
983
|
+
readonly de: "Der Typ der in der Änderung/in der Stornierung markierten Rechnung unterscheidet sich vom Typ der Basisrechnung.";
|
|
984
|
+
};
|
|
985
|
+
readonly ISSUE_DATE_TIMESTAMP_MISMATCH: {
|
|
986
|
+
readonly en: "The issue date of the amending document and the date of the time stamp differs by more than 1 day.";
|
|
987
|
+
readonly hu: "A módosító okirat kelte és időbélyeg dátuma eltér, az eltérés 1 napnál nagyobb.";
|
|
988
|
+
readonly de: "Das Datum der Änderungsurkunde und das Datum des Zeitstempels sind abweichend, die Abweichung beträgt mehr als 1 Tag.";
|
|
989
|
+
};
|
|
990
|
+
readonly ITEM_AGGREGATION_MISMATCH: {
|
|
991
|
+
readonly en: "There is already an invoice containing aggregate data in the invoice chain.";
|
|
992
|
+
readonly hu: "A számlaláncban már szerepel összevont adatokat tartalmazó számla.";
|
|
993
|
+
readonly de: "In der Rechnungskette ist bereits eine Rechnung enthalten, die zusammengefasste Daten beinhaltet.";
|
|
994
|
+
};
|
|
995
|
+
readonly LINE_EXPRESSION_INDICATOR_MISSING: {
|
|
996
|
+
readonly en: "In case of adding invoice lines it is mandatory to provide whether the unit of measure of the invoice item is expressible in natural unit.";
|
|
997
|
+
readonly hu: "Számlasor hozzáadásánál kötelező megadni, hogy a tétel mennyiségi egysége természetes mértékegységben kifejezhető-e.";
|
|
998
|
+
readonly de: "Beim Hinzufügen von Rechnungszeilen muss unbedingt angegeben werden, ob die Mengeneinheit des Rechnungspostens in natürlichen Einheiten ausgedrückt werden kann.";
|
|
999
|
+
};
|
|
1000
|
+
readonly LINE_MODIFICATION_EXPECTED: {
|
|
1001
|
+
readonly en: "Line reference must be provided if a modification document contains a line.";
|
|
1002
|
+
readonly hu: "Tételsort tartalmazó módosító okirat esetén a tételsor módosítás jellegének megadása kötelező.";
|
|
1003
|
+
readonly de: "Ein Zeilenbezug muss angegeben werden, wenn ein Änderungsbeleg eine Zeile enthält.";
|
|
1004
|
+
};
|
|
1005
|
+
readonly LINE_MODIFICATION_NOT_EXPECTED: {
|
|
1006
|
+
readonly en: "Line reference cannot be provided in the original invoice.";
|
|
1007
|
+
readonly hu: "Alapszámla esetén nem adható meg tételsor módosítás jelleg.";
|
|
1008
|
+
readonly de: "In der Originalrechnung kann keine Zeilenreferenz angegeben werden.";
|
|
1009
|
+
};
|
|
1010
|
+
readonly LINE_NUMBER_NOT_SEQUENTIAL: {
|
|
1011
|
+
readonly en: "The numbering of line items in the invoice is not strictly ascending.";
|
|
1012
|
+
readonly hu: "A számla tételeinek sorszámozása nem monoton növekvő.";
|
|
1013
|
+
readonly de: "Die Nummerierung der Rechnungsposten ist nicht monoton steigend.";
|
|
1014
|
+
};
|
|
1015
|
+
readonly LINE_NUMBER_REFERENCE_NOT_UNIQUE: {
|
|
1016
|
+
readonly en: "The line number reference needs to be unique inside the invoice.";
|
|
1017
|
+
readonly hu: "A számlasor hivatkozásnak a számlán belül egyedinek kell lennie.";
|
|
1018
|
+
readonly de: "Die Laufende Referenznummer muss innerhalb der Rechnung eindeutig sein.";
|
|
1019
|
+
};
|
|
1020
|
+
readonly LINE_SUMMARY_TYPE_MISMATCH_LINE_NORMAL: {
|
|
1021
|
+
readonly en: "Incorrect invoice summary. Simplified invoice containing regular invoice items.";
|
|
1022
|
+
readonly hu: "Hibás számlaösszesítő. Egyszerűsített számla normál számlatétel(eke)t tartalmaz.";
|
|
1023
|
+
readonly de: "Fehlerhafte Rechnungsübersicht. Vereinfachte Rechnung enthält normale(n) Rechnungsposten.";
|
|
1024
|
+
};
|
|
1025
|
+
readonly LINE_SUMMARY_TYPE_MISMATCH_LINE_SIMPLIFIED: {
|
|
1026
|
+
readonly en: "Incorrect invoice summary. Regular or aggregate invoice containing simplified invoice items.";
|
|
1027
|
+
readonly hu: "Hibás számlaösszesítő. Normál vagy gyűjtőszámla egyszerűsített számlatétel(eke)t tartalmaz.";
|
|
1028
|
+
readonly de: "Fehlerhafte Rechnungsübersicht. Normale oder Sammelrechnung enthält vereinfachte(n)/vereinfachte(n) Rechnungsposten.";
|
|
1029
|
+
};
|
|
1030
|
+
readonly LINE_SUMMARY_TYPE_MISMATCH_SUMMARY_NORMAL: {
|
|
1031
|
+
readonly en: "Incorrect invoice summary. Simplified invoice with a regular invoice summary.";
|
|
1032
|
+
readonly hu: "Hibás számlaösszesítő. Az egyszerűsített számla normál számlaösszesítőt tartalmaz.";
|
|
1033
|
+
readonly de: "Fehlerhafte Rechnungsübersicht. Die vereinfachte Rechnung enthält eine normale Rechnungsübersicht.";
|
|
1034
|
+
};
|
|
1035
|
+
readonly LINE_SUMMARY_TYPE_MISMATCH_SUMMARY_SIMPLIFIED: {
|
|
1036
|
+
readonly en: "Incorrect invoice summary. Regular or aggregate invoice with a simplified invoice summary.";
|
|
1037
|
+
readonly hu: "Hibás számlaösszesítő. Normál vagy gyűjtőszámla egyszerűsített számlaösszesítőt tartalmaz.";
|
|
1038
|
+
readonly de: "Fehlerhafte Rechnungsübersicht. Normale oder Sammelrechnung mit vereinfachter Rechnungsübersicht.";
|
|
1039
|
+
};
|
|
1040
|
+
readonly MANDATORY_CONTENT_MISSING: {
|
|
1041
|
+
readonly en: "Mandatory element of the invoice is missing.";
|
|
1042
|
+
readonly hu: "A számla kötelező tartalmi eleme hiányzik.";
|
|
1043
|
+
readonly de: "Obligatorisches Element der Rechnung fehlt.";
|
|
1044
|
+
};
|
|
1045
|
+
readonly MANDATORY_LINE_CONTENT_MISSING: {
|
|
1046
|
+
readonly en: "At least one of the mandatory elements of the invoice line is missing.";
|
|
1047
|
+
readonly hu: "A számlasor legalább egy kötelező tartalmi eleme hiányzik.";
|
|
1048
|
+
readonly de: "Mindestens eines der obligatorischen Elemente der Rechnungszeile fehlt.";
|
|
1049
|
+
};
|
|
1050
|
+
readonly MISSING_CUSTOMER_DOMESTIC_TAXNUMBER: {
|
|
1051
|
+
readonly en: "Missing customer’s domestic tax number.";
|
|
1052
|
+
readonly hu: "Vevő belföldi adószám hiányzik.";
|
|
1053
|
+
readonly de: "Steuernummer des Kunden fehlt (fehlen).";
|
|
1054
|
+
};
|
|
1055
|
+
readonly MISSING_HEAD_DATA_CURRENCY_CODE: {
|
|
1056
|
+
readonly en: "Invoice currency is not specified.";
|
|
1057
|
+
readonly hu: "A számla pénzneme nincs megadva.";
|
|
1058
|
+
readonly de: "Die Rechnungswährung wurde nicht angegeben.";
|
|
1059
|
+
};
|
|
1060
|
+
readonly MISSING_HEAD_DATA_CUSTOMER: {
|
|
1061
|
+
readonly en: "Missing customer’s tax number (or its first eight characters).";
|
|
1062
|
+
readonly hu: "Vevő adószám (első nyolc karaktere) hiányzik.";
|
|
1063
|
+
readonly de: "(Die ersten acht Zeichen der) Steuernummer des Kunden fehlt (fehlen).";
|
|
1064
|
+
};
|
|
1065
|
+
readonly MISSING_HEAD_DATA_CUSTOMER_TAXNUMBER: {
|
|
1066
|
+
readonly en: "Customer’s tax number is missing (domestic reverse charging).";
|
|
1067
|
+
readonly hu: "Vevő adószáma hiányzik (belföldi fordított adózás).";
|
|
1068
|
+
readonly de: "Steuernummer des Käufers fehlt (Umkehr der Steuerschuld).";
|
|
1069
|
+
};
|
|
1070
|
+
readonly MISSING_HEAD_DATA_INVOICE_VAT_AMOUNT_HUF: {
|
|
1071
|
+
readonly en: "Customer’s tax number is missing.";
|
|
1072
|
+
readonly hu: "Vevő adószáma hiányzik.";
|
|
1073
|
+
readonly de: "Steuernummer des Käufers fehlt.";
|
|
1074
|
+
};
|
|
1075
|
+
readonly MISSING_LINE_DATA_DESCRIPTION: {
|
|
1076
|
+
readonly en: "The name of the product/service is missing.";
|
|
1077
|
+
readonly hu: "Termék/szolgáltatás megnevezése hiányzik.";
|
|
1078
|
+
readonly de: "Name des Produkts/der Dienstleistung fehlt.";
|
|
1079
|
+
};
|
|
1080
|
+
readonly MISSING_LINE_DATA_LINE_EXCHANGE_RATE: {
|
|
1081
|
+
readonly en: "The exchange rate used is not specified.";
|
|
1082
|
+
readonly hu: "Az alkalmazott árfolyam nincs megadva.";
|
|
1083
|
+
readonly de: "Die verwendete Rate ist nicht angegeben.";
|
|
1084
|
+
};
|
|
1085
|
+
readonly MISSING_LINE_DATA_MODIFICATION_REFERENCE: {
|
|
1086
|
+
readonly en: "The reference field to the amending items is missing.";
|
|
1087
|
+
readonly hu: "A módosító tételek hivatkozása nincs kitöltve.";
|
|
1088
|
+
readonly de: "Der Verweis auf die Veränderungsposten ist nicht ausgefüllt.";
|
|
1089
|
+
};
|
|
1090
|
+
readonly MISSING_LINE_DATA_QUANTITY: {
|
|
1091
|
+
readonly en: "Missing quantity, quantity unit or unit price. If the invoice line item includes the quantity, the quantity unit, or the unit price, the other two must also be included.";
|
|
1092
|
+
readonly hu: "Hiányzó mennyiség, mennyiségi egység vagy egységár. Ha ezek közül egy szerepel, akkor a másik kettőnek is szerepelnie kell.";
|
|
1093
|
+
readonly de: "Die Menge, Mengeneinheit oder der Einheitspreis fehlt. Wenn eine(r) von diesen aufgeführt wird, müssen auch die anderen beiden aufgeführt werden.";
|
|
1094
|
+
};
|
|
1095
|
+
readonly MISSING_LINE_PRODUCT_FEE_CONTENT: {
|
|
1096
|
+
readonly en: "The product fee summary has been provided, but the invoice item(s) do not include the product fee data.";
|
|
1097
|
+
readonly hu: "A termékdíj-összesítő kitöltött, de a számlatétel(ek) nem tartalmaz(nak) termékdíj adatot.";
|
|
1098
|
+
readonly de: "Die Übersicht zu den Produktgebühren ist ausgefüllt, aber der/die Rechnungsposten enthält/enthalten keine Angaben zu den Produktgebühren.";
|
|
1099
|
+
};
|
|
1100
|
+
readonly MISSING_PRODUCT_FEE_DATA_LINE_CONTENT_SUMMARY_EMPTY: {
|
|
1101
|
+
readonly en: "The invoice items include the product fee data, but the product fee summary is empty.";
|
|
1102
|
+
readonly hu: "Számlatétel(ek)ben termékdíj adat szerepel, de termékdíj-összesítő nincs kitöltve.";
|
|
1103
|
+
readonly de: "In dem/den Rechnungsposten gibt es Angaben zur Produktgebühr, die Produktgebührenübersicht ist jedoch nicht ausgefüllt.";
|
|
1104
|
+
};
|
|
1105
|
+
readonly MISSING_PRODUCT_FEE_DATA_LINE_MEASURING_SUMMARY: {
|
|
1106
|
+
readonly en: "The invoice line(s) and the product fee summary feature different rates.";
|
|
1107
|
+
readonly hu: "Számlasor(ok)ban és termékdíj összesítésben eltérő díjtétel szerepel.";
|
|
1108
|
+
readonly de: "In der/den Rechnungszeile/Rechnungszeilen und in der Übersicht der Produktgebühren sind abweichende Gebührenposten angegeben.";
|
|
1109
|
+
};
|
|
1110
|
+
readonly MISSING_PRODUCT_FEE_DATA_LINE_OBLIGATED_CONTENT_EMPTY: {
|
|
1111
|
+
readonly en: "The invoice item features a product fee payment obligation, but includes no data.";
|
|
1112
|
+
readonly hu: "A számlatételben termékdíj fizetési kötelezettséget jelzett, de nem közölt adatot.";
|
|
1113
|
+
readonly de: "Im Rechnungsposten ist die Produktgebührenzahlungsverpflichtung angezeigt, Angabe fehlt jedoch.";
|
|
1114
|
+
};
|
|
1115
|
+
readonly MISSING_PRODUCT_FEE_DATA_LINE_OBLIGATED_SUMMARY_EMPTY: {
|
|
1116
|
+
readonly en: "A product fee payment obligation was indicated, but no product fee summary was provided.";
|
|
1117
|
+
readonly hu: "Termékdíj fizetési kötelezettséget jelzett, de nem közölt termékdíj-összesítőt.";
|
|
1118
|
+
readonly de: "Die Produktgebührenzahlungsverpflichtung ist angezeigt, die Produktgebührenübersicht fehlt jedoch.";
|
|
1119
|
+
};
|
|
1120
|
+
readonly MISSING_PRODUCT_FEE_DATA_LINE_QUANTITY_SUMMARY_QUANTITY: {
|
|
1121
|
+
readonly en: "The product quantities aggregated by product code in the invoice lines do not match the quantities per product code shown in the summary.";
|
|
1122
|
+
readonly hu: "A számlasorokban termékkódonként összegzett termékmennyiség eltér az összesítőben szereplő termékkódonkénti mennyiségtől.";
|
|
1123
|
+
readonly de: "Die in den Rechnungszeilen nach Produktcoden zusammengefasste Produktmenge weicht von der in der Übersicht angegebenen Menge je Produktcode ab.";
|
|
1124
|
+
};
|
|
1125
|
+
readonly MODIFICATION_INDEX_NOT_UNIQUE: {
|
|
1126
|
+
readonly en: "The modification index number is not unique in the invoice chain.";
|
|
1127
|
+
readonly hu: "A módosító okirat sorszáma nem egyedi a számlaláncon belül.";
|
|
1128
|
+
readonly de: "Die Änderungsindexnummer ist in der Rechnungskette nicht eindeutig.";
|
|
1129
|
+
};
|
|
1130
|
+
readonly MODIFY_WITHOUT_MASTER_MISMATCH: {
|
|
1131
|
+
readonly en: "The modification or annulment refers to a document which has valid data provision.";
|
|
1132
|
+
readonly hu: "A módosítás vagy érvénytelenítés olyan okiratra hivatkozik, amelyről létezik érvényes adatszolgáltatás.";
|
|
1133
|
+
readonly de: "Die Änderung oder Annullierung bezieht sich auf ein Dokument mit gültiger Datenbereitstellung.";
|
|
1134
|
+
};
|
|
1135
|
+
readonly MULTIPLE_INDICES_WITH_BATCH_INVOICE_FOUND: {
|
|
1136
|
+
readonly en: "A request containing a batch invoice cannot have multiple indices.";
|
|
1137
|
+
readonly hu: "Kötegelt módosító számlát is tartalmazó kérést csak önmagában, 1-es index alatt lehet beküldeni.";
|
|
1138
|
+
readonly de: "Eine Anfrage mit einer Batch-Rechnung kann nicht mehrere Indizes enthalten.";
|
|
1139
|
+
};
|
|
1140
|
+
readonly MULTIPLE_INVOICES_FOUND: {
|
|
1141
|
+
readonly en: "The referenced invoice occurs more than once as valid invoice in the system.";
|
|
1142
|
+
readonly hu: "A hivatkozott alapszámla egynél többször szerepel érvényesként a rendszerben.";
|
|
1143
|
+
readonly de: "Die referenzierte Rechnung kommt mehrfach als gültige Rechnung im System vor.";
|
|
1144
|
+
};
|
|
1145
|
+
readonly REQUEST_VERSION_REFERENCE_ERROR: {
|
|
1146
|
+
readonly en: "The requested operation is not applicable with the current request version on the referenced invoice.";
|
|
1147
|
+
readonly hu: "A kért művelet a hivatkozott számlán jelenlegi kérés verzióval nem alkalmazható.";
|
|
1148
|
+
readonly de: "Die angeforderte Operation gilt nicht für die aktuelle Anforderungsversion der referenzierten Rechnung.";
|
|
1149
|
+
};
|
|
1150
|
+
readonly SCHEMA_VIOLATION: {
|
|
1151
|
+
readonly en: "";
|
|
1152
|
+
readonly hu: "";
|
|
1153
|
+
readonly de: "";
|
|
1154
|
+
};
|
|
1155
|
+
readonly SUPPLIER_CUSTOMER_MATCH_BANKACCOUNT: {
|
|
1156
|
+
readonly en: "The seller’s and customer’s bank account numbers cannot be identical.";
|
|
1157
|
+
readonly hu: "Eladó és vevő bankszámlaszáma nem lehet azonos.";
|
|
1158
|
+
readonly de: "Die Kontonummer des Verkäufers und Käufers dürfen nicht gleich sein.";
|
|
1159
|
+
};
|
|
1160
|
+
readonly SUPPLIER_CUSTOMER_MATCH_NAME: {
|
|
1161
|
+
readonly en: "The seller’s and customer’s names cannot be identical.";
|
|
1162
|
+
readonly hu: "Eladó és vevő neve nem lehet azonos.";
|
|
1163
|
+
readonly de: "Der Name des Verkäufers und Käufers dürfen nicht gleich sein.";
|
|
1164
|
+
};
|
|
1165
|
+
readonly SUPPLIER_CUSTOMER_MATCH_TAXPAYER: {
|
|
1166
|
+
readonly en: "The seller’s and customer’s tax numbers cannot be identical.";
|
|
1167
|
+
readonly hu: "Eladó és vevő adószáma nem lehet azonos.";
|
|
1168
|
+
readonly de: "Die Steuernummer des Verkäufers und Käufers dürfen nicht gleich sein.";
|
|
1169
|
+
};
|
|
1170
|
+
readonly SUPPLIER_FISCAL_MATCH_NAME: {
|
|
1171
|
+
readonly en: "The seller’s and fiscal representative’s names cannot be identical.";
|
|
1172
|
+
readonly hu: "Eladó és a pénzügyi képviselő neve nem lehet azonos.";
|
|
1173
|
+
readonly de: "Der Verkäufer und der Vertreter Finanzwesen dürfen nicht gleich sein.";
|
|
1174
|
+
};
|
|
1175
|
+
readonly SUPPLIER_FISCAL_MATCH_TAXPAYER: {
|
|
1176
|
+
readonly en: "The seller’s and fiscal representative’s tax numbers cannot be identical.";
|
|
1177
|
+
readonly hu: "Eladó és pénzügyi képviselő adószáma nem lehet azonos.";
|
|
1178
|
+
readonly de: "Die Steuernummer des Verkäufers und des Vertreters Finanzwesen dürfen nicht gleich sein.";
|
|
1179
|
+
};
|
|
1180
|
+
readonly SUPPLIER_TAX_NUMBER_MISMATCH: {
|
|
1181
|
+
readonly en: "The tax number of the seller does not match the authenticated tax number provided in the API XML.";
|
|
1182
|
+
readonly hu: "Az eladó adószáma nem azonos az API XML-ben megadott, authentikált adószámmal.";
|
|
1183
|
+
readonly de: "Die Steuernummer des Verkäufers ist nicht identisch mit der im API XML angegebenen authentifizierten Steuernummer.";
|
|
1184
|
+
};
|
|
1185
|
+
readonly VAT_AMOUNT_MISMATCH_SUMMARY_SIMPLIFIED: {
|
|
1186
|
+
readonly en: "The indication of simplified invoice with a difference of the tax base and the charged tax is only present in either the line items or the summary.";
|
|
1187
|
+
readonly hu: "Az egyszerűsített számla adóalap és felszámított adó eltérésének esetei jelölése a tételsorok és az összesítő közül csak az egyikben szerepel.";
|
|
1188
|
+
readonly de: "Die Angabe „Fälle von Abweichung zwischen der Steuergrundlage und der berechneten Steuer“ der vereinfachten Rechnung ist entweder nur in den Postenzeilen oder in der Übersicht angegeben.";
|
|
1189
|
+
};
|
|
1190
|
+
};
|
|
1191
|
+
/** Every ValidatorFaultType code NAV defines. */
|
|
1192
|
+
export type NavFaultCode = keyof typeof NAV_FAULT_MESSAGES;
|
|
1193
|
+
/**
|
|
1194
|
+
* Interface level errors NAV reports about a request as a whole.
|
|
1195
|
+
*
|
|
1196
|
+
* These appear as `result/errorCode` in a `GeneralErrorResponse` — a bad
|
|
1197
|
+
* signature, an unknown technical user, a malformed request.
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const NAV_INTERFACE_MESSAGES: {
|
|
1200
|
+
readonly ANNULMENT_VERIFICATION_BLOCKED: {
|
|
1201
|
+
readonly en: "Annulment verification is currently not available, please try again later!";
|
|
1202
|
+
readonly hu: "A technikai érvénytelenítés jóváhagyása jelenleg nem lehetséges, kérjük próbálja meg később!";
|
|
1203
|
+
readonly de: "Die Überprüfung der Annullierung ist derzeit nicht verfügbar. Bitte versuchen Sie es später erneut.";
|
|
1204
|
+
};
|
|
1205
|
+
readonly BAD_QUERY_PARAM_EQ_NOT_STANDALONE: {
|
|
1206
|
+
readonly en: "Equals operator provided in query parameters must be standalone.";
|
|
1207
|
+
readonly hu: "Lekérdező paraméterben egyenlőség csak önmagában adható meg.";
|
|
1208
|
+
readonly de: "Der in den Abfrageparametern angegebene Gleichheitsoperator muss eigenständig sein.";
|
|
1209
|
+
};
|
|
1210
|
+
readonly BAD_QUERY_PARAM_OPERATOR_COLLISION: {
|
|
1211
|
+
readonly en: "Query parameters must not contain the same kind of relational operators.";
|
|
1212
|
+
readonly hu: "Lekérdező paraméterben azonos jellegű relációs operátor nem adható meg.";
|
|
1213
|
+
readonly de: "Abfrageparameter dürfen nicht dieselbe Art von Vergleichsoperatoren enthalten.";
|
|
1214
|
+
};
|
|
1215
|
+
readonly BAD_QUERY_PARAM_OVERLAP: {
|
|
1216
|
+
readonly en: "Date overlapping is not allowed in the query parameters.";
|
|
1217
|
+
readonly hu: "A lekérdező paraméterben dátumátfedés nem engedélyezett.";
|
|
1218
|
+
readonly de: "Datumsüberschneidungen sind in den Abfrageparametern nicht zulässig.";
|
|
1219
|
+
};
|
|
1220
|
+
readonly BAD_QUERY_PARAM_RANGE_EXCEEDED: {
|
|
1221
|
+
readonly en: "Date interval defined by the query parameters must not exceed 35 days.";
|
|
1222
|
+
readonly hu: "A lekérdező paraméter által meghatározott intervallum hossza legfeljebb 35 nap lehet.";
|
|
1223
|
+
readonly de: "Das durch die Abfrageparameter festgelegte Datumsintervall darf 35 Tage nicht überschreiten.";
|
|
1224
|
+
};
|
|
1225
|
+
readonly BAD_QUERY_PARAM_SUPPLIER_EXPECTED: {
|
|
1226
|
+
readonly en: "The queried invoice has multiple result, supplier tax number query parameter is required!";
|
|
1227
|
+
readonly hu: "A keresett számlaszámra több érvényes találat is található, a keresést szűkíteni kell a kiállító adószámára!";
|
|
1228
|
+
readonly de: "Die abgefragte Rechnung hat mehrere Ergebnisse, der Parameter für die Abfrage der Lieferantensteuernummer ist erforderlich!";
|
|
1229
|
+
};
|
|
1230
|
+
readonly BAD_QUERY_PARAM_SUPPLIER_NOT_EXPECTED: {
|
|
1231
|
+
readonly en: "The query parameter of the supplier tax number is only usable in case of querying as customer!";
|
|
1232
|
+
readonly hu: "A kiállító adószámára szűrés csak vevő oldali lekérdezésben használható!";
|
|
1233
|
+
readonly de: "Der Abfrageparameter der Lieferantensteuernummer ist nur bei Abfrage als Kunde verwendbar!";
|
|
1234
|
+
};
|
|
1235
|
+
readonly FORBIDDEN: {
|
|
1236
|
+
readonly en: "Permission needed!";
|
|
1237
|
+
readonly hu: "Jogosultság szükséges!";
|
|
1238
|
+
readonly de: "Erlaubnis benötigt!";
|
|
1239
|
+
};
|
|
1240
|
+
readonly INDEX_NOT_SEQUENTIAL: {
|
|
1241
|
+
readonly en: "Index is not in sequential order!";
|
|
1242
|
+
readonly hu: "Az index értékek nincsenek sorrendben!";
|
|
1243
|
+
readonly de: "Index ist nicht in sequentieller Reihenfolge!";
|
|
1244
|
+
};
|
|
1245
|
+
readonly INVALID_CUSTOMER: {
|
|
1246
|
+
readonly en: "Invalid customer!";
|
|
1247
|
+
readonly hu: "Érvénytelen adózó, a folyamat nem folytatható!";
|
|
1248
|
+
readonly de: "Ungültiger Kunde!";
|
|
1249
|
+
};
|
|
1250
|
+
readonly INVALID_EXCHANGE_TOKEN: {
|
|
1251
|
+
readonly en: "Invalid exchange token!";
|
|
1252
|
+
readonly hu: "Érvénytelen exchangeToken!";
|
|
1253
|
+
readonly de: "Ungültiges Austausch-Token!";
|
|
1254
|
+
};
|
|
1255
|
+
readonly INVALID_HEADER_VERSION: {
|
|
1256
|
+
readonly en: "Invalid header version number.";
|
|
1257
|
+
readonly hu: "Érvénytelen header verziószám!";
|
|
1258
|
+
readonly de: "Ungültige Header-Versionsnummer!";
|
|
1259
|
+
};
|
|
1260
|
+
readonly INVALID_OPERATION: {
|
|
1261
|
+
readonly en: "Invalid operation!";
|
|
1262
|
+
readonly hu: "A kérésben szereplő operációk típusa nem megengedett!";
|
|
1263
|
+
readonly de: "Ungültige Operation!";
|
|
1264
|
+
};
|
|
1265
|
+
readonly INVALID_PASSWORD_HASH_CRYPTO: {
|
|
1266
|
+
readonly en: "Invalid password hash algorithm.";
|
|
1267
|
+
readonly hu: "Érvénytelen jelszó hash algoritmus!";
|
|
1268
|
+
readonly de: "Ungültiger Passwort Hash-Algorithmus!";
|
|
1269
|
+
};
|
|
1270
|
+
readonly INVALID_REQUEST: {
|
|
1271
|
+
readonly en: "Invalid request!";
|
|
1272
|
+
readonly hu: "Helytelen kérés!";
|
|
1273
|
+
readonly de: "Ungültige Anfrage!";
|
|
1274
|
+
};
|
|
1275
|
+
readonly INVALID_REQUEST_SIGNATURE: {
|
|
1276
|
+
readonly en: "Invalid request signature!";
|
|
1277
|
+
readonly hu: "Érvénytelen kérés aláírás!";
|
|
1278
|
+
readonly de: "Ungültige Antrag Signatur!";
|
|
1279
|
+
};
|
|
1280
|
+
readonly INVALID_REQUEST_SIGNATURE_HASH_CRYPTO: {
|
|
1281
|
+
readonly en: "Invalid request signature hash algorithm.";
|
|
1282
|
+
readonly hu: "Érvénytelen kérés aláíró hash algoritmus!";
|
|
1283
|
+
readonly de: "Ungültiger Anfrage Unterzeichner Hash-Algorithmus!";
|
|
1284
|
+
};
|
|
1285
|
+
readonly INVALID_REQUEST_VERSION: {
|
|
1286
|
+
readonly en: "Invalid request version number.";
|
|
1287
|
+
readonly hu: "Érvénytelen kérés verziószám!";
|
|
1288
|
+
readonly de: "Ungültige Anfrage-Versionsnummer!";
|
|
1289
|
+
};
|
|
1290
|
+
readonly INVALID_SECURITY_USER: {
|
|
1291
|
+
readonly en: "Invalid security user!";
|
|
1292
|
+
readonly hu: "Helytelen authentikációs adatok!";
|
|
1293
|
+
readonly de: "Ungültiger Sicherheits Benutzer!";
|
|
1294
|
+
};
|
|
1295
|
+
readonly INVALID_TIMESTAMP: {
|
|
1296
|
+
readonly en: "Invalid request timestamp!";
|
|
1297
|
+
readonly hu: "Érvénytelen kérés időbélyeg!";
|
|
1298
|
+
readonly de: "Ungültiger Anforderungszeitstempel!";
|
|
1299
|
+
};
|
|
1300
|
+
readonly INVALID_USER_RELATION: {
|
|
1301
|
+
readonly en: "Invalid user relation!";
|
|
1302
|
+
readonly hu: "Helytelen felhasználói kapcsolat!";
|
|
1303
|
+
readonly de: "Ungültige Benutzer Beziehung!";
|
|
1304
|
+
};
|
|
1305
|
+
readonly MULTIPLE_QUERY_RESULT_FOUND: {
|
|
1306
|
+
readonly en: "The queried invoice occurs more than once as valid invoice in the system.";
|
|
1307
|
+
readonly hu: "A lekérdezett számla többször is szerepel érvényesként a rendszerben.";
|
|
1308
|
+
readonly de: "Das abgefragte Konto ist mehrfach in Form einer Rechnung im System gültig.";
|
|
1309
|
+
};
|
|
1310
|
+
readonly NOT_REGISTERED_CUSTOMER: {
|
|
1311
|
+
readonly en: "Customer not registered!";
|
|
1312
|
+
readonly hu: "Nem regisztrált felhasználó!";
|
|
1313
|
+
readonly de: "Kunde nicht registriert!";
|
|
1314
|
+
};
|
|
1315
|
+
readonly OPERATION_FAILED: {
|
|
1316
|
+
readonly en: "Operation failed!";
|
|
1317
|
+
readonly hu: "Feldolgozás sikertelen!";
|
|
1318
|
+
readonly de: "Operation fehlgeschlagen!";
|
|
1319
|
+
};
|
|
1320
|
+
readonly REQUEST_ID_NOT_UNIQUE: {
|
|
1321
|
+
readonly en: "Request id not unique!";
|
|
1322
|
+
readonly hu: "A megadott kérés azonosítója már létezik!";
|
|
1323
|
+
readonly de: "Anfrage-ID nicht eindeutig!";
|
|
1324
|
+
};
|
|
1325
|
+
readonly REQUEST_VERSION_NOT_ALLOWED: {
|
|
1326
|
+
readonly en: "The version of the request is not supported!";
|
|
1327
|
+
readonly hu: "A kérés verziószáma már nem támogatott!";
|
|
1328
|
+
readonly de: "Die Version der Anfrage wird nicht unterstützt!";
|
|
1329
|
+
};
|
|
1330
|
+
readonly SERVICE_UNAVAILABLE: {
|
|
1331
|
+
readonly en: "The requested operation temporarily does not serve requests due to maintenance!";
|
|
1332
|
+
readonly hu: "A hívott operáció karbantartás miatt átmenetileg nem szolgál ki kéréseket!";
|
|
1333
|
+
readonly de: "Die angeforderte Operation führt vorübergehend keine Anforderungen aufgrund von Wartungsarbeiten aus!";
|
|
1334
|
+
};
|
|
1335
|
+
readonly STATUS_QUERY_NOT_ALLOWED: {
|
|
1336
|
+
readonly en: "The requested operation is not applicable with the current request version on the referenced transaction!";
|
|
1337
|
+
readonly hu: "A kért művelet a hivatkozott tranzakción jelenlegi kérés verzióval nem alkalmazható!";
|
|
1338
|
+
readonly de: "Die angeforderte Operation gilt nicht für die aktuelle Anforderungsversion der referenzierten Transaktion!";
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
/** Every InterfaceErrorCode code NAV defines. */
|
|
1342
|
+
export type NavInterfaceErrorCode = keyof typeof NAV_INTERFACE_MESSAGES;
|
|
1343
|
+
//# sourceMappingURL=fault-codes.d.ts.map
|