@vario-software/types 2026.15.5 → 2026.15.6
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/package.json +1 -1
- package/schema/erp.d.ts +3 -0
- package/scripting/services.d.ts +15 -15
- package/scripting/types.d.ts +209 -199
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -77660,6 +77660,9 @@ export interface components {
|
|
|
77660
77660
|
* @description die letzte Aktualisierung des listingStates
|
|
77661
77661
|
*/
|
|
77662
77662
|
readonly listingStateChangeTime?: string;
|
|
77663
|
+
/** @description Artikelnummer */
|
|
77664
|
+
manufacturerArticleNumber?: string;
|
|
77665
|
+
manufacturerRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
77663
77666
|
/**
|
|
77664
77667
|
* @description is this product mergeable to another package-variant
|
|
77665
77668
|
* @default false
|
package/scripting/services.d.ts
CHANGED
|
@@ -430,16 +430,16 @@ export interface ArticleScriptingService {
|
|
|
430
430
|
* Führt einen Etikettendrucklauf aus
|
|
431
431
|
*
|
|
432
432
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
433
|
+
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
433
434
|
*/
|
|
434
|
-
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
435
|
+
executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
|
|
435
436
|
|
|
436
437
|
/**
|
|
437
438
|
* Führt einen Etikettendrucklauf aus
|
|
438
439
|
*
|
|
439
440
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
440
|
-
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
441
441
|
*/
|
|
442
|
-
executeLabelPrintBatch(batchIdentifier: string
|
|
442
|
+
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
443
443
|
|
|
444
444
|
/**
|
|
445
445
|
* Liefert die Einkaufsrabatte zu einem Artikel
|
|
@@ -1351,20 +1351,20 @@ export interface DocumentScriptingService {
|
|
|
1351
1351
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1352
1352
|
*
|
|
1353
1353
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1354
|
-
* @param {string}
|
|
1354
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1355
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1355
1356
|
* @return {Document} Der kopierte Beleg
|
|
1356
1357
|
*/
|
|
1357
|
-
copy(documentId: number,
|
|
1358
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1358
1359
|
|
|
1359
1360
|
/**
|
|
1360
1361
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1361
1362
|
*
|
|
1362
1363
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1363
|
-
* @param {string}
|
|
1364
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1364
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1365
1365
|
* @return {Document} Der kopierte Beleg
|
|
1366
1366
|
*/
|
|
1367
|
-
copy(documentId: number,
|
|
1367
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1368
1368
|
|
|
1369
1369
|
/**
|
|
1370
1370
|
* Erstellt einen neuen Beleg
|
|
@@ -2386,14 +2386,14 @@ export interface ScriptingServiceList {
|
|
|
2386
2386
|
crmTaskService: CrmTaskScriptingService;
|
|
2387
2387
|
|
|
2388
2388
|
/**
|
|
2389
|
-
* Service zur Verarbeitung von
|
|
2389
|
+
* Service zur Verarbeitung von Accounts
|
|
2390
2390
|
*/
|
|
2391
|
-
|
|
2391
|
+
accountService: AccountScriptingService;
|
|
2392
2392
|
|
|
2393
2393
|
/**
|
|
2394
|
-
* Service zur Verarbeitung von
|
|
2394
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2395
2395
|
*/
|
|
2396
|
-
|
|
2396
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2397
2397
|
|
|
2398
2398
|
/**
|
|
2399
2399
|
* Verwaltung von Versandarten
|
|
@@ -2583,18 +2583,18 @@ export interface ScriptingUtilities {
|
|
|
2583
2583
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2584
2584
|
*
|
|
2585
2585
|
* @param {object} value - Der Quell-Wert
|
|
2586
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2586
2587
|
* @return {number} Ein BigDecimal-Wert
|
|
2587
2588
|
*/
|
|
2588
|
-
newBigDecimal(value: object): number;
|
|
2589
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2589
2590
|
|
|
2590
2591
|
/**
|
|
2591
2592
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2592
2593
|
*
|
|
2593
2594
|
* @param {object} value - Der Quell-Wert
|
|
2594
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2595
2595
|
* @return {number} Ein BigDecimal-Wert
|
|
2596
2596
|
*/
|
|
2597
|
-
newBigDecimal(value: object
|
|
2597
|
+
newBigDecimal(value: object): number;
|
|
2598
2598
|
|
|
2599
2599
|
/**
|
|
2600
2600
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -331,14 +331,14 @@ export interface AccountAddress {
|
|
|
331
331
|
types: Array<ApiCreatableReference>;
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
*
|
|
334
|
+
* Leitweg-ID
|
|
335
335
|
*/
|
|
336
|
-
|
|
336
|
+
buyerReference: string;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
344
|
* abweichende Zahlungsart
|
|
@@ -401,14 +401,14 @@ export interface AccountAddress {
|
|
|
401
401
|
streetAddressNumber: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
|
-
*
|
|
404
|
+
* Default contacts
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
414
|
* Name3
|
|
@@ -483,26 +483,26 @@ export interface AccountBankdetail {
|
|
|
483
483
|
*/
|
|
484
484
|
version: number;
|
|
485
485
|
|
|
486
|
-
/**
|
|
487
|
-
* city of the bank
|
|
488
|
-
*/
|
|
489
|
-
bankCity: string;
|
|
490
|
-
|
|
491
486
|
/**
|
|
492
487
|
* Hauptbankverbindung für
|
|
493
488
|
*/
|
|
494
489
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
490
|
|
|
496
491
|
/**
|
|
497
|
-
*
|
|
492
|
+
* city of the bank
|
|
498
493
|
*/
|
|
499
|
-
|
|
494
|
+
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
497
|
* Is default bank?
|
|
503
498
|
*/
|
|
504
499
|
defaultBank: boolean;
|
|
505
500
|
|
|
501
|
+
/**
|
|
502
|
+
* origin type
|
|
503
|
+
*/
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
|
+
|
|
506
506
|
/**
|
|
507
507
|
* IBAN
|
|
508
508
|
*/
|
|
@@ -557,14 +557,14 @@ export interface AccountLoanValue {
|
|
|
557
557
|
nonInvoicedDocumentLoan: number;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
*
|
|
560
|
+
* Kreditlimit
|
|
561
561
|
*/
|
|
562
|
-
|
|
562
|
+
maximalLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
payablesSum: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
570
|
* Überschrittener Kreditbetrag
|
|
@@ -965,6 +965,11 @@ export interface Article {
|
|
|
965
965
|
*/
|
|
966
966
|
baseCapacityUnit: UnitTypeReference;
|
|
967
967
|
|
|
968
|
+
/**
|
|
969
|
+
* Durchschnittl. EKP (Startwert)
|
|
970
|
+
*/
|
|
971
|
+
initialAvgPurchasePrice: number;
|
|
972
|
+
|
|
968
973
|
/**
|
|
969
974
|
* is this product sellable without any quantity at the stock
|
|
970
975
|
*/
|
|
@@ -975,11 +980,6 @@ export interface Article {
|
|
|
975
980
|
*/
|
|
976
981
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
977
982
|
|
|
978
|
-
/**
|
|
979
|
-
* Durchschnittl. EKP (Startwert)
|
|
980
|
-
*/
|
|
981
|
-
initialAvgPurchasePrice: number;
|
|
982
|
-
|
|
983
983
|
/**
|
|
984
984
|
* gross Volume in cubic meters
|
|
985
985
|
*/
|
|
@@ -1076,14 +1076,14 @@ export interface Article {
|
|
|
1076
1076
|
deliveryMethodRef: ApiObjectReference;
|
|
1077
1077
|
|
|
1078
1078
|
/**
|
|
1079
|
-
*
|
|
1079
|
+
* Soll-Handelsspanne
|
|
1080
1080
|
*/
|
|
1081
|
-
|
|
1081
|
+
targetTradingMargin: number;
|
|
1082
1082
|
|
|
1083
1083
|
/**
|
|
1084
|
-
*
|
|
1084
|
+
* Produktion
|
|
1085
1085
|
*/
|
|
1086
|
-
|
|
1086
|
+
fabrication: boolean;
|
|
1087
1087
|
|
|
1088
1088
|
/**
|
|
1089
1089
|
* active
|
|
@@ -1116,14 +1116,14 @@ export interface Article {
|
|
|
1116
1116
|
solvable: boolean;
|
|
1117
1117
|
|
|
1118
1118
|
/**
|
|
1119
|
-
*
|
|
1119
|
+
* Verkaufseinheit
|
|
1120
1120
|
*/
|
|
1121
|
-
|
|
1121
|
+
salesUnit: number;
|
|
1122
1122
|
|
|
1123
1123
|
/**
|
|
1124
|
-
*
|
|
1124
|
+
* weight and size inc. packaging
|
|
1125
1125
|
*/
|
|
1126
|
-
|
|
1126
|
+
grossMetric: Article$Metric;
|
|
1127
1127
|
|
|
1128
1128
|
/**
|
|
1129
1129
|
* name of this product
|
|
@@ -1136,14 +1136,14 @@ export interface Article {
|
|
|
1136
1136
|
listingStateChangeTime: ScriptingDateTime;
|
|
1137
1137
|
|
|
1138
1138
|
/**
|
|
1139
|
-
*
|
|
1139
|
+
* Arbeitseinheit in Minuten
|
|
1140
1140
|
*/
|
|
1141
|
-
|
|
1141
|
+
workUnitInMinutes: number;
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
|
-
*
|
|
1144
|
+
* Country code
|
|
1145
1145
|
*/
|
|
1146
|
-
|
|
1146
|
+
countryOfOriginRef: CountryReference;
|
|
1147
1147
|
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Frei kommissionierbar
|
|
@@ -1215,6 +1215,11 @@ export interface Article {
|
|
|
1215
1215
|
*/
|
|
1216
1216
|
permissibleForOrderProposal: boolean;
|
|
1217
1217
|
|
|
1218
|
+
/**
|
|
1219
|
+
* Artikel ist Gefahrgut
|
|
1220
|
+
*/
|
|
1221
|
+
isDangerousGood: boolean;
|
|
1222
|
+
|
|
1218
1223
|
/**
|
|
1219
1224
|
* reference to Product
|
|
1220
1225
|
*/
|
|
@@ -1226,20 +1231,15 @@ export interface Article {
|
|
|
1226
1231
|
shippingLabelPrinting: boolean;
|
|
1227
1232
|
|
|
1228
1233
|
/**
|
|
1229
|
-
*
|
|
1234
|
+
* alternative name of this product
|
|
1230
1235
|
*/
|
|
1231
|
-
|
|
1236
|
+
alternativeName: string;
|
|
1232
1237
|
|
|
1233
1238
|
/**
|
|
1234
1239
|
* Kontingentartikel
|
|
1235
1240
|
*/
|
|
1236
1241
|
contingentArticleRef: ApiObjectReference;
|
|
1237
1242
|
|
|
1238
|
-
/**
|
|
1239
|
-
* alternative name of this product
|
|
1240
|
-
*/
|
|
1241
|
-
alternativeName: string;
|
|
1242
|
-
|
|
1243
1243
|
/**
|
|
1244
1244
|
* rabattierbarer Artikel?
|
|
1245
1245
|
*/
|
|
@@ -1255,6 +1255,11 @@ export interface Article {
|
|
|
1255
1255
|
*/
|
|
1256
1256
|
productType: ProductType;
|
|
1257
1257
|
|
|
1258
|
+
/**
|
|
1259
|
+
* Artikelnummer
|
|
1260
|
+
*/
|
|
1261
|
+
manufacturerArticleNumber: string;
|
|
1262
|
+
|
|
1258
1263
|
/**
|
|
1259
1264
|
* Ist das der Basis-Artikel des Produkts?
|
|
1260
1265
|
*/
|
|
@@ -1270,15 +1275,20 @@ export interface Article {
|
|
|
1270
1275
|
*/
|
|
1271
1276
|
custom: EavArticle;
|
|
1272
1277
|
|
|
1278
|
+
/**
|
|
1279
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1280
|
+
*/
|
|
1281
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1282
|
+
|
|
1273
1283
|
/**
|
|
1274
1284
|
* Art des Haltbarkeitsdatums
|
|
1275
1285
|
*/
|
|
1276
1286
|
expiryDateType: ArticleSerialExpiryDateType;
|
|
1277
1287
|
|
|
1278
1288
|
/**
|
|
1279
|
-
*
|
|
1289
|
+
* Hersteller
|
|
1280
1290
|
*/
|
|
1281
|
-
|
|
1291
|
+
manufacturerRef: ApiObjectReference;
|
|
1282
1292
|
|
|
1283
1293
|
/**
|
|
1284
1294
|
* net sales prices
|
|
@@ -1301,14 +1311,14 @@ export interface Article {
|
|
|
1301
1311
|
listed: boolean;
|
|
1302
1312
|
|
|
1303
1313
|
/**
|
|
1304
|
-
*
|
|
1314
|
+
* Nur manuelle Produktion
|
|
1305
1315
|
*/
|
|
1306
|
-
|
|
1316
|
+
onlyManualFabrication: boolean;
|
|
1307
1317
|
|
|
1308
1318
|
/**
|
|
1309
|
-
*
|
|
1319
|
+
* provisionsberechtiger Artikel?
|
|
1310
1320
|
*/
|
|
1311
|
-
|
|
1321
|
+
commissionable: boolean;
|
|
1312
1322
|
|
|
1313
1323
|
/**
|
|
1314
1324
|
* Preisbasis
|
|
@@ -1791,14 +1801,14 @@ export interface ArticleSupplier {
|
|
|
1791
1801
|
defaultNetPrice: number;
|
|
1792
1802
|
|
|
1793
1803
|
/**
|
|
1794
|
-
*
|
|
1804
|
+
* Einkaufseinheit
|
|
1795
1805
|
*/
|
|
1796
|
-
|
|
1806
|
+
purchaseUnit: number;
|
|
1797
1807
|
|
|
1798
1808
|
/**
|
|
1799
|
-
*
|
|
1809
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1800
1810
|
*/
|
|
1801
|
-
|
|
1811
|
+
orderOnComponentBase: boolean;
|
|
1802
1812
|
|
|
1803
1813
|
/**
|
|
1804
1814
|
* Referenced Supplier-Account
|
|
@@ -2046,14 +2056,14 @@ export interface CrmActivity {
|
|
|
2046
2056
|
info: MetaInfo;
|
|
2047
2057
|
|
|
2048
2058
|
/**
|
|
2049
|
-
*
|
|
2059
|
+
* geplante Dauer
|
|
2050
2060
|
*/
|
|
2051
|
-
|
|
2061
|
+
plannedDurationInSeconds: number;
|
|
2052
2062
|
|
|
2053
2063
|
/**
|
|
2054
|
-
*
|
|
2064
|
+
* Aktivität intern abgerechnet?
|
|
2055
2065
|
*/
|
|
2056
|
-
|
|
2066
|
+
internalBilled: boolean;
|
|
2057
2067
|
|
|
2058
2068
|
/**
|
|
2059
2069
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2091,14 +2101,14 @@ export interface CrmActivity {
|
|
|
2091
2101
|
userRef: ApiObjectReference;
|
|
2092
2102
|
|
|
2093
2103
|
/**
|
|
2094
|
-
*
|
|
2104
|
+
* tatsächliche Startzeit
|
|
2095
2105
|
*/
|
|
2096
|
-
|
|
2106
|
+
startDateTime: ScriptingDateTime;
|
|
2097
2107
|
|
|
2098
2108
|
/**
|
|
2099
|
-
*
|
|
2109
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2100
2110
|
*/
|
|
2101
|
-
|
|
2111
|
+
system: boolean;
|
|
2102
2112
|
|
|
2103
2113
|
/**
|
|
2104
2114
|
* Inhalt dieser Aktivität
|
|
@@ -3241,14 +3251,14 @@ export interface Customer {
|
|
|
3241
3251
|
maximalLoan: number;
|
|
3242
3252
|
|
|
3243
3253
|
/**
|
|
3244
|
-
*
|
|
3254
|
+
* Maximal mögliche Lieferungen
|
|
3245
3255
|
*/
|
|
3246
|
-
|
|
3256
|
+
maxDeliveries: number;
|
|
3247
3257
|
|
|
3248
3258
|
/**
|
|
3249
|
-
*
|
|
3259
|
+
* collective billable
|
|
3250
3260
|
*/
|
|
3251
|
-
|
|
3261
|
+
collectiveBillable: boolean;
|
|
3252
3262
|
|
|
3253
3263
|
/**
|
|
3254
3264
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3291,14 +3301,14 @@ export interface Customer {
|
|
|
3291
3301
|
info: MetaInfo;
|
|
3292
3302
|
|
|
3293
3303
|
/**
|
|
3294
|
-
*
|
|
3304
|
+
* tax able or tax free
|
|
3295
3305
|
*/
|
|
3296
|
-
|
|
3306
|
+
taxable: boolean;
|
|
3297
3307
|
|
|
3298
3308
|
/**
|
|
3299
|
-
*
|
|
3309
|
+
* reference to the delivery method
|
|
3300
3310
|
*/
|
|
3301
|
-
|
|
3311
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3302
3312
|
|
|
3303
3313
|
/**
|
|
3304
3314
|
* active true/false
|
|
@@ -3361,14 +3371,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3361
3371
|
export interface DeliveryMethod {
|
|
3362
3372
|
|
|
3363
3373
|
/**
|
|
3364
|
-
*
|
|
3374
|
+
* E-Mail an Versender übergeben
|
|
3365
3375
|
*/
|
|
3366
|
-
|
|
3376
|
+
forwardEmailToShipper: boolean;
|
|
3367
3377
|
|
|
3368
3378
|
/**
|
|
3369
|
-
*
|
|
3379
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3370
3380
|
*/
|
|
3371
|
-
|
|
3381
|
+
splitIntoNewDocument: boolean;
|
|
3372
3382
|
|
|
3373
3383
|
/**
|
|
3374
3384
|
* Min. Gewicht pro Paket
|
|
@@ -3499,14 +3509,14 @@ export interface DeliveryTerm {
|
|
|
3499
3509
|
label: string;
|
|
3500
3510
|
|
|
3501
3511
|
/**
|
|
3502
|
-
*
|
|
3512
|
+
* Sprache des Accounts
|
|
3503
3513
|
*/
|
|
3504
|
-
|
|
3514
|
+
languageCode: string;
|
|
3505
3515
|
|
|
3506
3516
|
/**
|
|
3507
|
-
*
|
|
3517
|
+
* information, when the shipping charges should be calculated
|
|
3508
3518
|
*/
|
|
3509
|
-
|
|
3519
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
3510
3520
|
|
|
3511
3521
|
/**
|
|
3512
3522
|
* calculate shipping charges per parcel
|
|
@@ -3645,14 +3655,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3645
3655
|
deliveryQuantityPackages: number;
|
|
3646
3656
|
|
|
3647
3657
|
/**
|
|
3648
|
-
*
|
|
3658
|
+
* Bestellnummer aus Vorbeleg
|
|
3649
3659
|
*/
|
|
3650
|
-
|
|
3660
|
+
referencedOrderNumber: string;
|
|
3651
3661
|
|
|
3652
3662
|
/**
|
|
3653
|
-
*
|
|
3663
|
+
* Leitweg-ID
|
|
3654
3664
|
*/
|
|
3655
|
-
|
|
3665
|
+
buyerReference: string;
|
|
3656
3666
|
|
|
3657
3667
|
/**
|
|
3658
3668
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -3821,26 +3831,26 @@ true wenn die Quittung bezahlt ist
|
|
|
3821
3831
|
*/
|
|
3822
3832
|
fabricationDetail: DocumentFabricationDetail;
|
|
3823
3833
|
|
|
3824
|
-
/**
|
|
3825
|
-
* Berechnungsmodus
|
|
3826
|
-
*/
|
|
3827
|
-
calculationMode: CalculationMode;
|
|
3828
|
-
|
|
3829
3834
|
/**
|
|
3830
3835
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
3831
3836
|
*/
|
|
3832
3837
|
accountNumber: string;
|
|
3833
3838
|
|
|
3834
3839
|
/**
|
|
3835
|
-
*
|
|
3840
|
+
* Berechnungsmodus
|
|
3836
3841
|
*/
|
|
3837
|
-
|
|
3842
|
+
calculationMode: CalculationMode;
|
|
3838
3843
|
|
|
3839
3844
|
/**
|
|
3840
3845
|
* Wird vom Workflow verarbeitet?
|
|
3841
3846
|
*/
|
|
3842
3847
|
processedByWorkflow: boolean;
|
|
3843
3848
|
|
|
3849
|
+
/**
|
|
3850
|
+
* Referenz auf Zahlungsbedingung
|
|
3851
|
+
*/
|
|
3852
|
+
paymentTermRef: PaymentTermRef;
|
|
3853
|
+
|
|
3844
3854
|
/**
|
|
3845
3855
|
* Preisanpassungen - Beleg Basiswährung
|
|
3846
3856
|
*/
|
|
@@ -3872,14 +3882,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3872
3882
|
defaultAddress: DocumentAddress;
|
|
3873
3883
|
|
|
3874
3884
|
/**
|
|
3875
|
-
*
|
|
3885
|
+
* Leistungsdatum
|
|
3876
3886
|
*/
|
|
3877
|
-
|
|
3887
|
+
performanceDate: ScriptingDate;
|
|
3878
3888
|
|
|
3879
3889
|
/**
|
|
3880
|
-
*
|
|
3890
|
+
* Verarbeitungsoption für Stapel
|
|
3881
3891
|
*/
|
|
3882
|
-
|
|
3892
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3883
3893
|
|
|
3884
3894
|
/**
|
|
3885
3895
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4056,25 +4066,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4056
4066
|
*/
|
|
4057
4067
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4058
4068
|
|
|
4059
|
-
/**
|
|
4060
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4061
|
-
*/
|
|
4062
|
-
taxIdentificationNumber: string;
|
|
4063
|
-
|
|
4064
4069
|
/**
|
|
4065
4070
|
* Statusinstanz des Belegs
|
|
4066
4071
|
*/
|
|
4067
4072
|
documentState: DocumentTypeState;
|
|
4068
4073
|
|
|
4069
4074
|
/**
|
|
4070
|
-
*
|
|
4075
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4071
4076
|
*/
|
|
4072
|
-
|
|
4077
|
+
taxIdentificationNumber: string;
|
|
4073
4078
|
|
|
4074
4079
|
/**
|
|
4075
|
-
*
|
|
4080
|
+
* Rückgeld
|
|
4076
4081
|
*/
|
|
4077
|
-
|
|
4082
|
+
posReceiptChangeAmount: number;
|
|
4078
4083
|
|
|
4079
4084
|
/**
|
|
4080
4085
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4083,6 +4088,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4083
4088
|
*/
|
|
4084
4089
|
posReceiptBalanced: boolean;
|
|
4085
4090
|
|
|
4091
|
+
/**
|
|
4092
|
+
* Referenz auf Lieferbedingung
|
|
4093
|
+
*/
|
|
4094
|
+
deliveryTermRef: ApiObjectReference;
|
|
4095
|
+
|
|
4086
4096
|
/**
|
|
4087
4097
|
* Gesamtbruttogewicht
|
|
4088
4098
|
*/
|
|
@@ -4337,14 +4347,14 @@ export interface DocumentAddress {
|
|
|
4337
4347
|
additionalAddressLine2: string;
|
|
4338
4348
|
|
|
4339
4349
|
/**
|
|
4340
|
-
*
|
|
4350
|
+
* Street address number
|
|
4341
4351
|
*/
|
|
4342
|
-
|
|
4352
|
+
streetAddressNumber: string;
|
|
4343
4353
|
|
|
4344
4354
|
/**
|
|
4345
|
-
*
|
|
4355
|
+
* Lieferbedingungen
|
|
4346
4356
|
*/
|
|
4347
|
-
|
|
4357
|
+
deliveryTermRef: ApiObjectReference;
|
|
4348
4358
|
|
|
4349
4359
|
/**
|
|
4350
4360
|
* address line 3
|
|
@@ -4362,14 +4372,14 @@ export interface DocumentAddress {
|
|
|
4362
4372
|
paymentMethodRef: ApiObjectReference;
|
|
4363
4373
|
|
|
4364
4374
|
/**
|
|
4365
|
-
*
|
|
4375
|
+
* salutation for this address
|
|
4366
4376
|
*/
|
|
4367
|
-
|
|
4377
|
+
salutation: string;
|
|
4368
4378
|
|
|
4369
4379
|
/**
|
|
4370
|
-
*
|
|
4380
|
+
* Referenz zum Account
|
|
4371
4381
|
*/
|
|
4372
|
-
|
|
4382
|
+
accountRef: ApiObjectReference;
|
|
4373
4383
|
|
|
4374
4384
|
/**
|
|
4375
4385
|
* address line 2
|
|
@@ -4715,14 +4725,14 @@ export interface DocumentLine {
|
|
|
4715
4725
|
number: string;
|
|
4716
4726
|
|
|
4717
4727
|
/**
|
|
4718
|
-
*
|
|
4728
|
+
* Gesamtbruttogewicht
|
|
4719
4729
|
*/
|
|
4720
|
-
|
|
4730
|
+
totalGrossWeight: number;
|
|
4721
4731
|
|
|
4722
4732
|
/**
|
|
4723
|
-
*
|
|
4733
|
+
* Referenz zur Kundenauftragszeile
|
|
4724
4734
|
*/
|
|
4725
|
-
|
|
4735
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4726
4736
|
|
|
4727
4737
|
/**
|
|
4728
4738
|
* skontierbare Position?
|
|
@@ -4795,14 +4805,14 @@ export interface DocumentLine {
|
|
|
4795
4805
|
externalReferenceVds: string;
|
|
4796
4806
|
|
|
4797
4807
|
/**
|
|
4798
|
-
*
|
|
4808
|
+
* Serientyp
|
|
4799
4809
|
*/
|
|
4800
|
-
|
|
4810
|
+
serialType: ArticleSerialType;
|
|
4801
4811
|
|
|
4802
4812
|
/**
|
|
4803
|
-
*
|
|
4813
|
+
* Preis pro Einheit in Basiswährung
|
|
4804
4814
|
*/
|
|
4805
|
-
|
|
4815
|
+
basePrice: number;
|
|
4806
4816
|
|
|
4807
4817
|
/**
|
|
4808
4818
|
* MetaInformations for this Object
|
|
@@ -5373,14 +5383,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5373
5383
|
quantityFinished: number;
|
|
5374
5384
|
|
|
5375
5385
|
/**
|
|
5376
|
-
*
|
|
5386
|
+
* Produzierte Seriennummern
|
|
5377
5387
|
*/
|
|
5378
|
-
|
|
5388
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5379
5389
|
|
|
5380
5390
|
/**
|
|
5381
|
-
*
|
|
5391
|
+
* Menge defekt
|
|
5382
5392
|
*/
|
|
5383
|
-
|
|
5393
|
+
quantityDefective: number;
|
|
5384
5394
|
|
|
5385
5395
|
/**
|
|
5386
5396
|
* Freifeld
|
|
@@ -5542,14 +5552,14 @@ export interface DocumentLineRef {
|
|
|
5542
5552
|
documentId: number;
|
|
5543
5553
|
|
|
5544
5554
|
/**
|
|
5545
|
-
*
|
|
5555
|
+
* Id der Dokumentzeile
|
|
5546
5556
|
*/
|
|
5547
|
-
|
|
5557
|
+
id: number;
|
|
5548
5558
|
|
|
5549
5559
|
/**
|
|
5550
|
-
*
|
|
5560
|
+
* Positions-Nummer
|
|
5551
5561
|
*/
|
|
5552
|
-
|
|
5562
|
+
position: number;
|
|
5553
5563
|
|
|
5554
5564
|
/**
|
|
5555
5565
|
* Belegtyp
|
|
@@ -6011,14 +6021,14 @@ export interface DocumentType {
|
|
|
6011
6021
|
labels: Array<DocumentTypeLabel>;
|
|
6012
6022
|
|
|
6013
6023
|
/**
|
|
6014
|
-
*
|
|
6024
|
+
* nächste Belegnummer
|
|
6015
6025
|
*/
|
|
6016
|
-
|
|
6026
|
+
nextNumber: string;
|
|
6017
6027
|
|
|
6018
6028
|
/**
|
|
6019
|
-
*
|
|
6029
|
+
* Zählerkreis
|
|
6020
6030
|
*/
|
|
6021
|
-
|
|
6031
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6022
6032
|
|
|
6023
6033
|
/**
|
|
6024
6034
|
* Sortierung
|
|
@@ -6759,14 +6769,14 @@ export interface PaymentTerm {
|
|
|
6759
6769
|
paymentDiscount2: number;
|
|
6760
6770
|
|
|
6761
6771
|
/**
|
|
6762
|
-
*
|
|
6772
|
+
* Percent for Discount 1
|
|
6763
6773
|
*/
|
|
6764
|
-
|
|
6774
|
+
paymentDiscount1: number;
|
|
6765
6775
|
|
|
6766
6776
|
/**
|
|
6767
|
-
*
|
|
6777
|
+
* printDescription
|
|
6768
6778
|
*/
|
|
6769
|
-
|
|
6779
|
+
printDescription: string;
|
|
6770
6780
|
|
|
6771
6781
|
/**
|
|
6772
6782
|
* for deposit: remaining term
|
|
@@ -7100,14 +7110,14 @@ export interface Picklist {
|
|
|
7100
7110
|
export interface PicklistLine {
|
|
7101
7111
|
|
|
7102
7112
|
/**
|
|
7103
|
-
*
|
|
7113
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7104
7114
|
*/
|
|
7105
|
-
|
|
7115
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7106
7116
|
|
|
7107
7117
|
/**
|
|
7108
|
-
*
|
|
7118
|
+
* Gesammelte Menge der Position
|
|
7109
7119
|
*/
|
|
7110
|
-
|
|
7120
|
+
quantityCollected: number;
|
|
7111
7121
|
|
|
7112
7122
|
/**
|
|
7113
7123
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7145,14 +7155,14 @@ export interface PicklistLine {
|
|
|
7145
7155
|
version: number;
|
|
7146
7156
|
|
|
7147
7157
|
/**
|
|
7148
|
-
*
|
|
7158
|
+
* ID der Quell-Dokumentposition
|
|
7149
7159
|
*/
|
|
7150
|
-
|
|
7160
|
+
sourceDocumentLineId: number;
|
|
7151
7161
|
|
|
7152
7162
|
/**
|
|
7153
|
-
*
|
|
7163
|
+
* Lageranzeigename
|
|
7154
7164
|
*/
|
|
7155
|
-
|
|
7165
|
+
storageDisplayName: string;
|
|
7156
7166
|
|
|
7157
7167
|
/**
|
|
7158
7168
|
* Artikelnummer
|
|
@@ -7495,14 +7505,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7495
7505
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7496
7506
|
|
|
7497
7507
|
/**
|
|
7498
|
-
* Nur
|
|
7508
|
+
* Nur vollständig lieferbare Positionen
|
|
7499
7509
|
*/
|
|
7500
|
-
|
|
7510
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7501
7511
|
|
|
7502
7512
|
/**
|
|
7503
|
-
* Nur
|
|
7513
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7504
7514
|
*/
|
|
7505
|
-
|
|
7515
|
+
maxOrderCount: number;
|
|
7506
7516
|
|
|
7507
7517
|
/**
|
|
7508
7518
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7573,14 +7583,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7573
7583
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7574
7584
|
|
|
7575
7585
|
/**
|
|
7576
|
-
*
|
|
7586
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7577
7587
|
*/
|
|
7578
|
-
|
|
7588
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7579
7589
|
|
|
7580
7590
|
/**
|
|
7581
|
-
*
|
|
7591
|
+
* Der zu verwendende Pickwagen
|
|
7582
7592
|
*/
|
|
7583
|
-
|
|
7593
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7584
7594
|
|
|
7585
7595
|
/**
|
|
7586
7596
|
* Lagerplätze vorgeben
|
|
@@ -7641,14 +7651,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7641
7651
|
alwaysShowDeliveryMethod: boolean;
|
|
7642
7652
|
|
|
7643
7653
|
/**
|
|
7644
|
-
*
|
|
7654
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7645
7655
|
*/
|
|
7646
|
-
|
|
7656
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7647
7657
|
|
|
7648
7658
|
/**
|
|
7649
|
-
*
|
|
7659
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7650
7660
|
*/
|
|
7651
|
-
|
|
7661
|
+
autoPrintDeliveryDocument: boolean;
|
|
7652
7662
|
|
|
7653
7663
|
/**
|
|
7654
7664
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7744,14 +7754,14 @@ export interface PriceSelectionCriteria {
|
|
|
7744
7754
|
quantity: number;
|
|
7745
7755
|
|
|
7746
7756
|
/**
|
|
7747
|
-
* Liste von
|
|
7757
|
+
* Liste von Artikel-IDs
|
|
7748
7758
|
*/
|
|
7749
|
-
|
|
7759
|
+
articleIds: Array<number>;
|
|
7750
7760
|
|
|
7751
7761
|
/**
|
|
7752
|
-
* Liste von
|
|
7762
|
+
* Liste von Account-IDs
|
|
7753
7763
|
*/
|
|
7754
|
-
|
|
7764
|
+
accountIds: Array<number>;
|
|
7755
7765
|
|
|
7756
7766
|
/**
|
|
7757
7767
|
* ein qualifier
|
|
@@ -7867,14 +7877,14 @@ export interface Product {
|
|
|
7867
7877
|
bundle: boolean;
|
|
7868
7878
|
|
|
7869
7879
|
/**
|
|
7870
|
-
*
|
|
7880
|
+
* Serientyp
|
|
7871
7881
|
*/
|
|
7872
|
-
|
|
7882
|
+
serialType: ArticleSerialType;
|
|
7873
7883
|
|
|
7874
7884
|
/**
|
|
7875
|
-
*
|
|
7885
|
+
* Variantenwerte
|
|
7876
7886
|
*/
|
|
7877
|
-
|
|
7887
|
+
variantValues: Array<VariantValueReference>;
|
|
7878
7888
|
|
|
7879
7889
|
/**
|
|
7880
7890
|
* MetaInformations for this Object
|
|
@@ -8127,14 +8137,14 @@ export interface ProductPrice {
|
|
|
8127
8137
|
fromQuantity: number;
|
|
8128
8138
|
|
|
8129
8139
|
/**
|
|
8130
|
-
*
|
|
8140
|
+
* Netto-Preis
|
|
8131
8141
|
*/
|
|
8132
|
-
|
|
8142
|
+
netPrice: number;
|
|
8133
8143
|
|
|
8134
8144
|
/**
|
|
8135
|
-
*
|
|
8145
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
8136
8146
|
*/
|
|
8137
|
-
|
|
8147
|
+
articleRef: ApiObjectReference;
|
|
8138
8148
|
|
|
8139
8149
|
/**
|
|
8140
8150
|
* Brutto-Preis
|
|
@@ -8240,20 +8250,15 @@ export interface Referenceable {
|
|
|
8240
8250
|
|
|
8241
8251
|
export interface RequestDocument {
|
|
8242
8252
|
|
|
8243
|
-
/**
|
|
8244
|
-
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8245
|
-
*/
|
|
8246
|
-
incomingGoodsStorageBinId: number;
|
|
8247
|
-
|
|
8248
8253
|
/**
|
|
8249
8254
|
* Belegdatum
|
|
8250
8255
|
*/
|
|
8251
8256
|
documentDate: ScriptingDate;
|
|
8252
8257
|
|
|
8253
8258
|
/**
|
|
8254
|
-
* ID
|
|
8259
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8255
8260
|
*/
|
|
8256
|
-
|
|
8261
|
+
incomingGoodsStorageBinId: number;
|
|
8257
8262
|
|
|
8258
8263
|
/**
|
|
8259
8264
|
* Der Anzahlungsbetrag
|
|
@@ -8265,6 +8270,11 @@ export interface RequestDocument {
|
|
|
8265
8270
|
*/
|
|
8266
8271
|
performanceDate: ScriptingDate;
|
|
8267
8272
|
|
|
8273
|
+
/**
|
|
8274
|
+
* ID der Kassenschublade (bei POS)
|
|
8275
|
+
*/
|
|
8276
|
+
cashDrawerId: number;
|
|
8277
|
+
|
|
8268
8278
|
/**
|
|
8269
8279
|
* Für interne Zwecke: Liefermethode für das Document
|
|
8270
8280
|
*/
|
|
@@ -8320,26 +8330,26 @@ export interface RequestDocument {
|
|
|
8320
8330
|
*/
|
|
8321
8331
|
lines: Array<RequestDocumentLine>;
|
|
8322
8332
|
|
|
8323
|
-
/**
|
|
8324
|
-
* ID der Kasse (bei POS)
|
|
8325
|
-
*/
|
|
8326
|
-
posRegisterId: number;
|
|
8327
|
-
|
|
8328
8333
|
/**
|
|
8329
8334
|
* Die Vertragsdetails
|
|
8330
8335
|
*/
|
|
8331
8336
|
contractDetail: DocumentContractDetail;
|
|
8332
8337
|
|
|
8333
8338
|
/**
|
|
8334
|
-
*
|
|
8339
|
+
* ID der Kasse (bei POS)
|
|
8335
8340
|
*/
|
|
8336
|
-
|
|
8341
|
+
posRegisterId: number;
|
|
8337
8342
|
|
|
8338
8343
|
/**
|
|
8339
8344
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8340
8345
|
*/
|
|
8341
8346
|
paymentTermId: number;
|
|
8342
8347
|
|
|
8348
|
+
/**
|
|
8349
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8350
|
+
*/
|
|
8351
|
+
supplierAccountId: number;
|
|
8352
|
+
|
|
8343
8353
|
/**
|
|
8344
8354
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8345
8355
|
*/
|
|
@@ -9668,14 +9678,14 @@ export interface Supplier {
|
|
|
9668
9678
|
supplierGroupRef: ApiObjectReference;
|
|
9669
9679
|
|
|
9670
9680
|
/**
|
|
9671
|
-
*
|
|
9681
|
+
* tax able or tax free
|
|
9672
9682
|
*/
|
|
9673
|
-
|
|
9683
|
+
taxable: boolean;
|
|
9674
9684
|
|
|
9675
9685
|
/**
|
|
9676
|
-
*
|
|
9686
|
+
* reference to the delivery method
|
|
9677
9687
|
*/
|
|
9678
|
-
|
|
9688
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9679
9689
|
|
|
9680
9690
|
/**
|
|
9681
9691
|
* Mahnen?
|
|
@@ -9756,14 +9766,14 @@ export interface TagDto {
|
|
|
9756
9766
|
editColor: string;
|
|
9757
9767
|
|
|
9758
9768
|
/**
|
|
9759
|
-
* Farbe
|
|
9769
|
+
* Farbe in Such-GUI
|
|
9760
9770
|
*/
|
|
9761
|
-
|
|
9771
|
+
searchColor: string;
|
|
9762
9772
|
|
|
9763
9773
|
/**
|
|
9764
|
-
* Farbe
|
|
9774
|
+
* Farbe für die Anzeige des Tags
|
|
9765
9775
|
*/
|
|
9766
|
-
|
|
9776
|
+
color: string;
|
|
9767
9777
|
|
|
9768
9778
|
/**
|
|
9769
9779
|
* Beschriftung des Tags
|