@vario-software/types 2026.22.4 → 2026.23.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/package.json +1 -1
- package/schema/erp.d.ts +123 -27
- package/scripting/services.d.ts +26 -26
- package/scripting/types.d.ts +354 -345
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
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* Is default bank?
|
|
508
503
|
*/
|
|
509
504
|
defaultBank: boolean;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* origin type
|
|
508
|
+
*/
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -1023,6 +1023,11 @@ export interface Article {
|
|
|
1023
1023
|
*/
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* Durchschnittl. EKP (Startwert)
|
|
1028
|
+
*/
|
|
1029
|
+
initialAvgPurchasePrice: number;
|
|
1030
|
+
|
|
1026
1031
|
/**
|
|
1027
1032
|
* is this product sellable without any quantity at the stock
|
|
1028
1033
|
*/
|
|
@@ -1033,11 +1038,6 @@ export interface Article {
|
|
|
1033
1038
|
*/
|
|
1034
1039
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1035
1040
|
|
|
1036
|
-
/**
|
|
1037
|
-
* Durchschnittl. EKP (Startwert)
|
|
1038
|
-
*/
|
|
1039
|
-
initialAvgPurchasePrice: number;
|
|
1040
|
-
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
1043
1043
|
*/
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1134,14 +1134,14 @@ export interface Article {
|
|
|
1134
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Soll-Handelsspanne
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
targetTradingMargin: number;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
|
-
*
|
|
1142
|
+
* Produktion
|
|
1143
1143
|
*/
|
|
1144
|
-
|
|
1144
|
+
fabrication: boolean;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* active
|
|
@@ -1198,20 +1198,15 @@ export interface Article {
|
|
|
1198
1198
|
*/
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
|
-
/**
|
|
1202
|
-
* Country code
|
|
1203
|
-
*/
|
|
1204
|
-
countryOfOriginRef: CountryReference;
|
|
1205
|
-
|
|
1206
1201
|
/**
|
|
1207
1202
|
* Arbeitseinheit in Minuten
|
|
1208
1203
|
*/
|
|
1209
1204
|
workUnitInMinutes: number;
|
|
1210
1205
|
|
|
1211
1206
|
/**
|
|
1212
|
-
*
|
|
1207
|
+
* Country code
|
|
1213
1208
|
*/
|
|
1214
|
-
|
|
1209
|
+
countryOfOriginRef: CountryReference;
|
|
1215
1210
|
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Frei kommissionierbar
|
|
@@ -1219,15 +1214,20 @@ export interface Article {
|
|
|
1219
1214
|
freelyPickable: boolean;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* description custom data
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1223
|
*/
|
|
1229
1224
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1228
|
+
*/
|
|
1229
|
+
taxLiabilityReversed: boolean;
|
|
1230
|
+
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
1233
1233
|
*/
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* gross sales prices
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
grossSalesPrice: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1299,14 +1299,14 @@ export interface Article {
|
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* Kontingentartikel
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
contingentArticleRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* alternative name of this product
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
alternativeName: string;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* rabattierbarer Artikel?
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Art des Haltbarkeitsdatums
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1488,25 +1488,20 @@ export interface ArticleCustomer {
|
|
|
1488
1488
|
*/
|
|
1489
1489
|
accountDisplayName: string;
|
|
1490
1490
|
|
|
1491
|
-
/**
|
|
1492
|
-
* Nur Sonderpreis/-rabatt verwenden?
|
|
1493
|
-
*/
|
|
1494
|
-
useOnlyRelatedPriceOrDiscount: boolean;
|
|
1495
|
-
|
|
1496
1491
|
/**
|
|
1497
1492
|
* Referenced Article name
|
|
1498
1493
|
*/
|
|
1499
1494
|
articleName: string;
|
|
1500
1495
|
|
|
1501
1496
|
/**
|
|
1502
|
-
*
|
|
1497
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
1498
|
*/
|
|
1504
|
-
|
|
1499
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1505
1500
|
|
|
1506
1501
|
/**
|
|
1507
|
-
*
|
|
1502
|
+
* Etikettdruck-Einstellungen
|
|
1508
1503
|
*/
|
|
1509
|
-
|
|
1504
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1510
1505
|
|
|
1511
1506
|
/**
|
|
1512
1507
|
* Kunden-Preise
|
|
@@ -1563,6 +1558,11 @@ export interface ArticleCustomer {
|
|
|
1563
1558
|
*/
|
|
1564
1559
|
deviatingArticleNumber: string;
|
|
1565
1560
|
|
|
1561
|
+
/**
|
|
1562
|
+
* Art der Preisermittlung
|
|
1563
|
+
*/
|
|
1564
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1565
|
+
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Artikelnummer
|
|
1568
1568
|
*/
|
|
@@ -1599,6 +1599,12 @@ export interface ArticleCustomer {
|
|
|
1599
1599
|
info: MetaInfo;
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
|
+
export const enum ArticleCustomerPriceDetermination {
|
|
1603
|
+
DEFAULT = 'DEFAULT',
|
|
1604
|
+
SPECIAL = 'SPECIAL',
|
|
1605
|
+
ONLY_DEFAULT_PRICE = 'ONLY_DEFAULT_PRICE'
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1602
1608
|
export interface ArticleIdentifier {
|
|
1603
1609
|
|
|
1604
1610
|
/**
|
|
@@ -1670,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1670
1676
|
proposedLowestPriceGross: number;
|
|
1671
1677
|
|
|
1672
1678
|
/**
|
|
1673
|
-
* der
|
|
1679
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1674
1680
|
*/
|
|
1675
|
-
|
|
1681
|
+
customLowestPriceGross: number;
|
|
1676
1682
|
|
|
1677
1683
|
/**
|
|
1678
|
-
*
|
|
1684
|
+
* der Sales Channel
|
|
1679
1685
|
*/
|
|
1680
|
-
|
|
1686
|
+
salesChannelRef: ApiObjectReference;
|
|
1681
1687
|
|
|
1682
1688
|
/**
|
|
1683
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1888,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1888
1894
|
replenishmentFrom: number;
|
|
1889
1895
|
|
|
1890
1896
|
/**
|
|
1891
|
-
*
|
|
1897
|
+
* Meldebestand
|
|
1892
1898
|
*/
|
|
1893
|
-
|
|
1899
|
+
reorderPoint: number;
|
|
1894
1900
|
|
|
1895
1901
|
/**
|
|
1896
1902
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1898,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1898
1904
|
quantityInPicking: number;
|
|
1899
1905
|
|
|
1900
1906
|
/**
|
|
1901
|
-
*
|
|
1907
|
+
* Bestellte Menge
|
|
1902
1908
|
*/
|
|
1903
|
-
|
|
1909
|
+
orderedQuantity: number;
|
|
1904
1910
|
|
|
1905
1911
|
/**
|
|
1906
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1907
1913
|
*/
|
|
1908
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1909
1915
|
|
|
1910
1916
|
/**
|
|
1911
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1912
1918
|
*/
|
|
1913
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1914
1920
|
|
|
1915
1921
|
/**
|
|
1916
1922
|
* Reservierte Menge
|
|
@@ -1980,6 +1986,11 @@ export interface ArticleStorage {
|
|
|
1980
1986
|
|
|
1981
1987
|
export interface ArticleSupplier {
|
|
1982
1988
|
|
|
1989
|
+
/**
|
|
1990
|
+
* Lieferanten-Meldebestand
|
|
1991
|
+
*/
|
|
1992
|
+
supplierReportingStock: number;
|
|
1993
|
+
|
|
1983
1994
|
/**
|
|
1984
1995
|
* Anzeigename des Accounts
|
|
1985
1996
|
*/
|
|
@@ -1990,11 +2001,6 @@ export interface ArticleSupplier {
|
|
|
1990
2001
|
*/
|
|
1991
2002
|
useSupplierArticleDescription: boolean;
|
|
1992
2003
|
|
|
1993
|
-
/**
|
|
1994
|
-
* Lieferanten-Meldebestand
|
|
1995
|
-
*/
|
|
1996
|
-
supplierReportingStock: number;
|
|
1997
|
-
|
|
1998
2004
|
/**
|
|
1999
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2000
2006
|
*/
|
|
@@ -2105,11 +2111,6 @@ export interface ArticleSupplier {
|
|
|
2105
2111
|
*/
|
|
2106
2112
|
defaultNetPrice: number;
|
|
2107
2113
|
|
|
2108
|
-
/**
|
|
2109
|
-
* Referenced Supplier-Account
|
|
2110
|
-
*/
|
|
2111
|
-
accountId: number;
|
|
2112
|
-
|
|
2113
2114
|
/**
|
|
2114
2115
|
* Einkaufseinheit
|
|
2115
2116
|
*/
|
|
@@ -2120,6 +2121,11 @@ export interface ArticleSupplier {
|
|
|
2120
2121
|
*/
|
|
2121
2122
|
orderOnComponentBase: boolean;
|
|
2122
2123
|
|
|
2124
|
+
/**
|
|
2125
|
+
* Referenced Supplier-Account
|
|
2126
|
+
*/
|
|
2127
|
+
accountId: number;
|
|
2128
|
+
|
|
2123
2129
|
/**
|
|
2124
2130
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2125
2131
|
*/
|
|
@@ -2328,14 +2334,14 @@ export interface CountryReference {
|
|
|
2328
2334
|
export interface CreateNewDocumentRequest {
|
|
2329
2335
|
|
|
2330
2336
|
/**
|
|
2331
|
-
*
|
|
2337
|
+
* Belegart
|
|
2332
2338
|
*/
|
|
2333
|
-
|
|
2339
|
+
documentTypeLabel: string;
|
|
2334
2340
|
|
|
2335
2341
|
/**
|
|
2336
|
-
* Belegart
|
|
2342
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2337
2343
|
*/
|
|
2338
|
-
|
|
2344
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2339
2345
|
|
|
2340
2346
|
/**
|
|
2341
2347
|
* Details zum Beleg
|
|
@@ -2401,14 +2407,14 @@ export interface CrmActivity {
|
|
|
2401
2407
|
info: MetaInfo;
|
|
2402
2408
|
|
|
2403
2409
|
/**
|
|
2404
|
-
*
|
|
2410
|
+
* geplante Dauer
|
|
2405
2411
|
*/
|
|
2406
|
-
|
|
2412
|
+
plannedDurationInSeconds: number;
|
|
2407
2413
|
|
|
2408
2414
|
/**
|
|
2409
|
-
*
|
|
2415
|
+
* Aktivität intern abgerechnet?
|
|
2410
2416
|
*/
|
|
2411
|
-
|
|
2417
|
+
internalBilled: boolean;
|
|
2412
2418
|
|
|
2413
2419
|
/**
|
|
2414
2420
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2446,14 +2452,14 @@ export interface CrmActivity {
|
|
|
2446
2452
|
userRef: ApiObjectReference;
|
|
2447
2453
|
|
|
2448
2454
|
/**
|
|
2449
|
-
*
|
|
2455
|
+
* tatsächliche Startzeit
|
|
2450
2456
|
*/
|
|
2451
|
-
|
|
2457
|
+
startDateTime: ScriptingDateTime;
|
|
2452
2458
|
|
|
2453
2459
|
/**
|
|
2454
|
-
*
|
|
2460
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2455
2461
|
*/
|
|
2456
|
-
|
|
2462
|
+
system: boolean;
|
|
2457
2463
|
|
|
2458
2464
|
/**
|
|
2459
2465
|
* Inhalt dieser Aktivität
|
|
@@ -2678,20 +2684,25 @@ export interface CrmDeal {
|
|
|
2678
2684
|
info: MetaInfo;
|
|
2679
2685
|
|
|
2680
2686
|
/**
|
|
2681
|
-
*
|
|
2687
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2682
2688
|
*/
|
|
2683
|
-
|
|
2689
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2684
2690
|
|
|
2685
2691
|
/**
|
|
2686
|
-
*
|
|
2692
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2687
2693
|
*/
|
|
2688
|
-
|
|
2694
|
+
assignedUserRef: ApiObjectReference;
|
|
2689
2695
|
|
|
2690
2696
|
/**
|
|
2691
2697
|
* Chance (in Prozent)
|
|
2692
2698
|
*/
|
|
2693
2699
|
chance: number;
|
|
2694
2700
|
|
|
2701
|
+
/**
|
|
2702
|
+
* Übergeordnete CRM-Objekte
|
|
2703
|
+
*/
|
|
2704
|
+
parentRefs: Array<CrmObjectRef>;
|
|
2705
|
+
|
|
2695
2706
|
/**
|
|
2696
2707
|
* Zugewiesen von
|
|
2697
2708
|
*/
|
|
@@ -2722,11 +2733,6 @@ export interface CrmDeal {
|
|
|
2722
2733
|
*/
|
|
2723
2734
|
childRefs: Array<CrmObjectRef>;
|
|
2724
2735
|
|
|
2725
|
-
/**
|
|
2726
|
-
* Übergeordnetes CRM-Objekt
|
|
2727
|
-
*/
|
|
2728
|
-
parentRef: CrmObjectRef;
|
|
2729
|
-
|
|
2730
2736
|
/**
|
|
2731
2737
|
* Tags
|
|
2732
2738
|
*/
|
|
@@ -2984,14 +2990,14 @@ export interface CrmProject {
|
|
|
2984
2990
|
billedTimes: number;
|
|
2985
2991
|
|
|
2986
2992
|
/**
|
|
2987
|
-
*
|
|
2993
|
+
* Geplanter Projektzeitraum (von)
|
|
2988
2994
|
*/
|
|
2989
|
-
|
|
2995
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2990
2996
|
|
|
2991
2997
|
/**
|
|
2992
|
-
*
|
|
2998
|
+
* Einkaufsbelege
|
|
2993
2999
|
*/
|
|
2994
|
-
|
|
3000
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2995
3001
|
|
|
2996
3002
|
/**
|
|
2997
3003
|
* Verkaufsbelege
|
|
@@ -3018,15 +3024,20 @@ export interface CrmProject {
|
|
|
3018
3024
|
*/
|
|
3019
3025
|
info: MetaInfo;
|
|
3020
3026
|
|
|
3027
|
+
/**
|
|
3028
|
+
* Projektleiter vom Auftraggeber
|
|
3029
|
+
*/
|
|
3030
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3031
|
+
|
|
3021
3032
|
/**
|
|
3022
3033
|
* Weitere Teilnehmer vom Auftraggeber
|
|
3023
3034
|
*/
|
|
3024
3035
|
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3025
3036
|
|
|
3026
3037
|
/**
|
|
3027
|
-
*
|
|
3038
|
+
* Übergeordnete CRM-Objekte
|
|
3028
3039
|
*/
|
|
3029
|
-
|
|
3040
|
+
parentRefs: Array<CrmObjectRef>;
|
|
3030
3041
|
|
|
3031
3042
|
/**
|
|
3032
3043
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3068,11 +3079,6 @@ export interface CrmProject {
|
|
|
3068
3079
|
*/
|
|
3069
3080
|
childRefs: Array<CrmObjectRef>;
|
|
3070
3081
|
|
|
3071
|
-
/**
|
|
3072
|
-
* Übergeordnetes CRM-Objekt
|
|
3073
|
-
*/
|
|
3074
|
-
parentRef: CrmObjectRef;
|
|
3075
|
-
|
|
3076
3082
|
/**
|
|
3077
3083
|
* Tags
|
|
3078
3084
|
*/
|
|
@@ -3214,14 +3220,14 @@ export interface CrmState {
|
|
|
3214
3220
|
readyToBill: boolean;
|
|
3215
3221
|
|
|
3216
3222
|
/**
|
|
3217
|
-
*
|
|
3223
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3218
3224
|
*/
|
|
3219
|
-
|
|
3225
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3220
3226
|
|
|
3221
3227
|
/**
|
|
3222
|
-
*
|
|
3228
|
+
* Handelt es sich um einen Anfang-Status
|
|
3223
3229
|
*/
|
|
3224
|
-
|
|
3230
|
+
startState: boolean;
|
|
3225
3231
|
|
|
3226
3232
|
/**
|
|
3227
3233
|
* MetaInformations for this Object
|
|
@@ -3270,14 +3276,14 @@ export interface CrmSubType {
|
|
|
3270
3276
|
export interface CrmTask {
|
|
3271
3277
|
|
|
3272
3278
|
/**
|
|
3273
|
-
*
|
|
3279
|
+
* Angebot
|
|
3274
3280
|
*/
|
|
3275
|
-
|
|
3281
|
+
customerOfferRef: DocumentRef;
|
|
3276
3282
|
|
|
3277
3283
|
/**
|
|
3278
|
-
*
|
|
3284
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3279
3285
|
*/
|
|
3280
|
-
|
|
3286
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3281
3287
|
|
|
3282
3288
|
/**
|
|
3283
3289
|
* Liste von Erinnerungen
|
|
@@ -3464,6 +3470,11 @@ export interface CrmTask {
|
|
|
3464
3470
|
*/
|
|
3465
3471
|
assignedUserRef: ApiObjectReference;
|
|
3466
3472
|
|
|
3473
|
+
/**
|
|
3474
|
+
* Übergeordnete CRM-Objekte
|
|
3475
|
+
*/
|
|
3476
|
+
parentRefs: Array<CrmObjectRef>;
|
|
3477
|
+
|
|
3467
3478
|
/**
|
|
3468
3479
|
* Beauftragte Zeit in Sekunden
|
|
3469
3480
|
*/
|
|
@@ -3504,11 +3515,6 @@ export interface CrmTask {
|
|
|
3504
3515
|
*/
|
|
3505
3516
|
internalBilledTimes: number;
|
|
3506
3517
|
|
|
3507
|
-
/**
|
|
3508
|
-
* Übergeordnetes CRM-Objekt
|
|
3509
|
-
*/
|
|
3510
|
-
parentRef: CrmObjectRef;
|
|
3511
|
-
|
|
3512
3518
|
/**
|
|
3513
3519
|
* Blockiert diese Aufgaben
|
|
3514
3520
|
*/
|
|
@@ -3649,14 +3655,14 @@ export interface CurrencyReference {
|
|
|
3649
3655
|
export interface Customer {
|
|
3650
3656
|
|
|
3651
3657
|
/**
|
|
3652
|
-
*
|
|
3658
|
+
* Option für die Stapelverarbeitung
|
|
3653
3659
|
*/
|
|
3654
|
-
|
|
3660
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3655
3661
|
|
|
3656
3662
|
/**
|
|
3657
|
-
*
|
|
3663
|
+
* reference to customer group
|
|
3658
3664
|
*/
|
|
3659
|
-
|
|
3665
|
+
customerGroupRef: ApiObjectReference;
|
|
3660
3666
|
|
|
3661
3667
|
/**
|
|
3662
3668
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3674,14 +3680,14 @@ export interface Customer {
|
|
|
3674
3680
|
dueDate: ScriptingDate;
|
|
3675
3681
|
|
|
3676
3682
|
/**
|
|
3677
|
-
*
|
|
3683
|
+
* Maximal mögliche Lieferungen
|
|
3678
3684
|
*/
|
|
3679
|
-
|
|
3685
|
+
maxDeliveries: number;
|
|
3680
3686
|
|
|
3681
3687
|
/**
|
|
3682
|
-
*
|
|
3688
|
+
* collective billable
|
|
3683
3689
|
*/
|
|
3684
|
-
|
|
3690
|
+
collectiveBillable: boolean;
|
|
3685
3691
|
|
|
3686
3692
|
/**
|
|
3687
3693
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3893,14 +3899,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3893
3899
|
export interface DeliveryMethod {
|
|
3894
3900
|
|
|
3895
3901
|
/**
|
|
3896
|
-
*
|
|
3902
|
+
* E-Mail an Versender übergeben
|
|
3897
3903
|
*/
|
|
3898
|
-
|
|
3904
|
+
forwardEmailToShipper: boolean;
|
|
3899
3905
|
|
|
3900
3906
|
/**
|
|
3901
|
-
*
|
|
3907
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3902
3908
|
*/
|
|
3903
|
-
|
|
3909
|
+
splitIntoNewDocument: boolean;
|
|
3904
3910
|
|
|
3905
3911
|
/**
|
|
3906
3912
|
* Min. Gewicht pro Paket
|
|
@@ -3952,26 +3958,26 @@ export interface DeliveryMethod {
|
|
|
3952
3958
|
*/
|
|
3953
3959
|
defaultSizeUnit: UnitTypeReference;
|
|
3954
3960
|
|
|
3955
|
-
/**
|
|
3956
|
-
* translations
|
|
3957
|
-
*/
|
|
3958
|
-
translations: Array<DocumentTypeTerm>;
|
|
3959
|
-
|
|
3960
3961
|
/**
|
|
3961
3962
|
* Quelle für Paketgewicht
|
|
3962
3963
|
*/
|
|
3963
3964
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3964
3965
|
|
|
3965
3966
|
/**
|
|
3966
|
-
*
|
|
3967
|
+
* translations
|
|
3967
3968
|
*/
|
|
3968
|
-
|
|
3969
|
+
translations: Array<DocumentTypeTerm>;
|
|
3969
3970
|
|
|
3970
3971
|
/**
|
|
3971
3972
|
* Gültige Ländercodes
|
|
3972
3973
|
*/
|
|
3973
3974
|
validCountryCodes: Array<string>;
|
|
3974
3975
|
|
|
3976
|
+
/**
|
|
3977
|
+
* Versand-Anbieter
|
|
3978
|
+
*/
|
|
3979
|
+
vdsCarrierId: number;
|
|
3980
|
+
|
|
3975
3981
|
/**
|
|
3976
3982
|
* Standardgewichtseinheit
|
|
3977
3983
|
*/
|
|
@@ -4071,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4071
4077
|
id: number;
|
|
4072
4078
|
|
|
4073
4079
|
/**
|
|
4074
|
-
*
|
|
4080
|
+
* Versandkostenartikel
|
|
4075
4081
|
*/
|
|
4076
|
-
|
|
4082
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4077
4083
|
|
|
4078
4084
|
/**
|
|
4079
|
-
*
|
|
4085
|
+
* free shipping net value
|
|
4080
4086
|
*/
|
|
4081
|
-
|
|
4087
|
+
freeShippingNetValue: number;
|
|
4082
4088
|
|
|
4083
4089
|
/**
|
|
4084
4090
|
* MetaInformations for this Object
|
|
@@ -4089,14 +4095,14 @@ export interface DeliveryTerm {
|
|
|
4089
4095
|
export interface Document {
|
|
4090
4096
|
|
|
4091
4097
|
/**
|
|
4092
|
-
*
|
|
4098
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4093
4099
|
*/
|
|
4094
|
-
|
|
4100
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4095
4101
|
|
|
4096
4102
|
/**
|
|
4097
|
-
*
|
|
4103
|
+
* Referenz zum Rechnungskonto
|
|
4098
4104
|
*/
|
|
4099
|
-
|
|
4105
|
+
billingAccountRef: ApiObjectReference;
|
|
4100
4106
|
|
|
4101
4107
|
/**
|
|
4102
4108
|
* Externe Belegnummer
|
|
@@ -4177,14 +4183,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4177
4183
|
deliveryQuantityPackages: number;
|
|
4178
4184
|
|
|
4179
4185
|
/**
|
|
4180
|
-
*
|
|
4186
|
+
* Bestellnummer aus Vorbeleg
|
|
4181
4187
|
*/
|
|
4182
|
-
|
|
4188
|
+
referencedOrderNumber: string;
|
|
4183
4189
|
|
|
4184
4190
|
/**
|
|
4185
|
-
*
|
|
4191
|
+
* Leitweg-ID
|
|
4186
4192
|
*/
|
|
4187
|
-
|
|
4193
|
+
buyerReference: string;
|
|
4188
4194
|
|
|
4189
4195
|
/**
|
|
4190
4196
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4301,13 +4307,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4301
4307
|
*/
|
|
4302
4308
|
posPayments: Array<DocumentPosPayment>;
|
|
4303
4309
|
|
|
4304
|
-
/**
|
|
4305
|
-
* Ist die Quittung bezahlt
|
|
4306
|
-
true wenn die Quittung bezahlt ist
|
|
4307
|
-
|
|
4308
|
-
*/
|
|
4309
|
-
posReceiptPayed: boolean;
|
|
4310
|
-
|
|
4311
4310
|
/**
|
|
4312
4311
|
* Kundennummer beim Lieferanten
|
|
4313
4312
|
*/
|
|
@@ -4318,6 +4317,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4318
4317
|
*/
|
|
4319
4318
|
maxDeliveries: number;
|
|
4320
4319
|
|
|
4320
|
+
/**
|
|
4321
|
+
* Ist die Quittung bezahlt
|
|
4322
|
+
true wenn die Quittung bezahlt ist
|
|
4323
|
+
|
|
4324
|
+
*/
|
|
4325
|
+
posReceiptPayed: boolean;
|
|
4326
|
+
|
|
4321
4327
|
/**
|
|
4322
4328
|
* Quittung: Summe Zahlbetrag
|
|
4323
4329
|
*/
|
|
@@ -4353,26 +4359,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4353
4359
|
*/
|
|
4354
4360
|
fabricationDetail: DocumentFabricationDetail;
|
|
4355
4361
|
|
|
4356
|
-
/**
|
|
4357
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4358
|
-
*/
|
|
4359
|
-
accountNumber: string;
|
|
4360
|
-
|
|
4361
4362
|
/**
|
|
4362
4363
|
* Berechnungsmodus
|
|
4363
4364
|
*/
|
|
4364
4365
|
calculationMode: CalculationMode;
|
|
4365
4366
|
|
|
4366
4367
|
/**
|
|
4367
|
-
*
|
|
4368
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4368
4369
|
*/
|
|
4369
|
-
|
|
4370
|
+
accountNumber: string;
|
|
4370
4371
|
|
|
4371
4372
|
/**
|
|
4372
4373
|
* Wird vom Workflow verarbeitet?
|
|
4373
4374
|
*/
|
|
4374
4375
|
processedByWorkflow: boolean;
|
|
4375
4376
|
|
|
4377
|
+
/**
|
|
4378
|
+
* Referenz auf Zahlungsbedingung
|
|
4379
|
+
*/
|
|
4380
|
+
paymentTermRef: PaymentTermRef;
|
|
4381
|
+
|
|
4376
4382
|
/**
|
|
4377
4383
|
* Preisanpassungen - Beleg Basiswährung
|
|
4378
4384
|
*/
|
|
@@ -4404,14 +4410,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4404
4410
|
defaultAddress: DocumentAddress;
|
|
4405
4411
|
|
|
4406
4412
|
/**
|
|
4407
|
-
*
|
|
4413
|
+
* Leistungsdatum
|
|
4408
4414
|
*/
|
|
4409
|
-
|
|
4415
|
+
performanceDate: ScriptingDate;
|
|
4410
4416
|
|
|
4411
4417
|
/**
|
|
4412
|
-
*
|
|
4418
|
+
* Verarbeitungsoption für Stapel
|
|
4413
4419
|
*/
|
|
4414
|
-
|
|
4420
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4415
4421
|
|
|
4416
4422
|
/**
|
|
4417
4423
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4603,6 +4609,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4603
4609
|
*/
|
|
4604
4610
|
posReceiptChangeAmount: number;
|
|
4605
4611
|
|
|
4612
|
+
/**
|
|
4613
|
+
* Referenz auf Lieferbedingung
|
|
4614
|
+
*/
|
|
4615
|
+
deliveryTermRef: ApiObjectReference;
|
|
4616
|
+
|
|
4606
4617
|
/**
|
|
4607
4618
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4608
4619
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4610,11 +4621,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4610
4621
|
*/
|
|
4611
4622
|
posReceiptBalanced: boolean;
|
|
4612
4623
|
|
|
4613
|
-
/**
|
|
4614
|
-
* Referenz auf Lieferbedingung
|
|
4615
|
-
*/
|
|
4616
|
-
deliveryTermRef: ApiObjectReference;
|
|
4617
|
-
|
|
4618
4624
|
/**
|
|
4619
4625
|
* Gesamtbruttogewicht
|
|
4620
4626
|
*/
|
|
@@ -4635,25 +4641,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4635
4641
|
*/
|
|
4636
4642
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4637
4643
|
|
|
4638
|
-
/**
|
|
4639
|
-
* Rechnungsadresse
|
|
4640
|
-
*/
|
|
4641
|
-
billingAddress: DocumentAddress;
|
|
4642
|
-
|
|
4643
4644
|
/**
|
|
4644
4645
|
* Status der USt-ID-Prüfung
|
|
4645
4646
|
*/
|
|
4646
4647
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4647
4648
|
|
|
4648
4649
|
/**
|
|
4649
|
-
*
|
|
4650
|
+
* Rechnungsadresse
|
|
4650
4651
|
*/
|
|
4651
|
-
|
|
4652
|
+
billingAddress: DocumentAddress;
|
|
4652
4653
|
|
|
4653
4654
|
/**
|
|
4654
4655
|
* Report-Gruppe, falls vom Standard abweichend
|
|
4655
4656
|
*/
|
|
4656
4657
|
reportGroupRef: ApiObjectReference;
|
|
4658
|
+
|
|
4659
|
+
/**
|
|
4660
|
+
* Bestellt durch Ansprechpartner
|
|
4661
|
+
*/
|
|
4662
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4657
4663
|
}
|
|
4658
4664
|
|
|
4659
4665
|
export interface DocumentAdditionalInfo {
|
|
@@ -4679,14 +4685,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4679
4685
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4680
4686
|
|
|
4681
4687
|
/**
|
|
4682
|
-
*
|
|
4688
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4683
4689
|
*/
|
|
4684
|
-
|
|
4690
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4685
4691
|
|
|
4686
4692
|
/**
|
|
4687
|
-
*
|
|
4693
|
+
* Herkunft des Berechnungsmodus
|
|
4688
4694
|
*/
|
|
4689
|
-
|
|
4695
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4690
4696
|
|
|
4691
4697
|
/**
|
|
4692
4698
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4804,14 +4810,14 @@ export interface DocumentAddress {
|
|
|
4804
4810
|
postOfficeBox: string;
|
|
4805
4811
|
|
|
4806
4812
|
/**
|
|
4807
|
-
*
|
|
4813
|
+
* Street
|
|
4808
4814
|
*/
|
|
4809
|
-
|
|
4815
|
+
street: string;
|
|
4810
4816
|
|
|
4811
4817
|
/**
|
|
4812
|
-
*
|
|
4818
|
+
* country code IsoAlpha3
|
|
4813
4819
|
*/
|
|
4814
|
-
|
|
4820
|
+
countryCode: string;
|
|
4815
4821
|
|
|
4816
4822
|
/**
|
|
4817
4823
|
* Unique identifier of the Object
|
|
@@ -5014,18 +5020,18 @@ export interface DocumentContractDetail {
|
|
|
5014
5020
|
/**
|
|
5015
5021
|
* Laufzeit bis
|
|
5016
5022
|
*/
|
|
5017
|
-
runtimeToDate: ScriptingDate;
|
|
5018
|
-
|
|
5019
|
-
/**
|
|
5020
|
-
* Letztmöglicher kündigungstermin des Anbieters
|
|
5021
|
-
*/
|
|
5022
|
-
lastProviderCancellationDate: ScriptingDate;
|
|
5023
|
+
runtimeToDate: ScriptingDate;
|
|
5023
5024
|
|
|
5024
5025
|
/**
|
|
5025
5026
|
* Nächste Fälligkeit
|
|
5026
5027
|
*/
|
|
5027
5028
|
nextDueDate: ScriptingDate;
|
|
5028
5029
|
|
|
5030
|
+
/**
|
|
5031
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5032
|
+
*/
|
|
5033
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5034
|
+
|
|
5029
5035
|
/**
|
|
5030
5036
|
* Letztmöglicher kündigungstermin des Kunden
|
|
5031
5037
|
*/
|
|
@@ -5055,14 +5061,14 @@ export interface DocumentFabricationDetail {
|
|
|
5055
5061
|
targetStorageRef: ApiObjectReference;
|
|
5056
5062
|
|
|
5057
5063
|
/**
|
|
5058
|
-
*
|
|
5064
|
+
* Notiz
|
|
5059
5065
|
*/
|
|
5060
|
-
|
|
5066
|
+
note: string;
|
|
5061
5067
|
|
|
5062
5068
|
/**
|
|
5063
|
-
*
|
|
5069
|
+
* Material-Lager
|
|
5064
5070
|
*/
|
|
5065
|
-
|
|
5071
|
+
componentsStorageRef: ApiObjectReference;
|
|
5066
5072
|
|
|
5067
5073
|
/**
|
|
5068
5074
|
* QS-Lager
|
|
@@ -5204,14 +5210,14 @@ export interface DocumentLine {
|
|
|
5204
5210
|
country: CountryReference;
|
|
5205
5211
|
|
|
5206
5212
|
/**
|
|
5207
|
-
*
|
|
5213
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5208
5214
|
*/
|
|
5209
|
-
|
|
5215
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5210
5216
|
|
|
5211
5217
|
/**
|
|
5212
|
-
*
|
|
5218
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5213
5219
|
*/
|
|
5214
|
-
|
|
5220
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5215
5221
|
|
|
5216
5222
|
/**
|
|
5217
5223
|
* verarbeitete Menge
|
|
@@ -5259,14 +5265,14 @@ export interface DocumentLine {
|
|
|
5259
5265
|
number: string;
|
|
5260
5266
|
|
|
5261
5267
|
/**
|
|
5262
|
-
*
|
|
5268
|
+
* Gesamtbruttogewicht
|
|
5263
5269
|
*/
|
|
5264
|
-
|
|
5270
|
+
totalGrossWeight: number;
|
|
5265
5271
|
|
|
5266
5272
|
/**
|
|
5267
|
-
*
|
|
5273
|
+
* Referenz zur Kundenauftragszeile
|
|
5268
5274
|
*/
|
|
5269
|
-
|
|
5275
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5270
5276
|
|
|
5271
5277
|
/**
|
|
5272
5278
|
* skontierbare Position?
|
|
@@ -5328,6 +5334,11 @@ export interface DocumentLine {
|
|
|
5328
5334
|
*/
|
|
5329
5335
|
id: number;
|
|
5330
5336
|
|
|
5337
|
+
/**
|
|
5338
|
+
* Serientyp
|
|
5339
|
+
*/
|
|
5340
|
+
serialType: ArticleSerialType;
|
|
5341
|
+
|
|
5331
5342
|
/**
|
|
5332
5343
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5333
5344
|
*/
|
|
@@ -5343,11 +5354,6 @@ export interface DocumentLine {
|
|
|
5343
5354
|
*/
|
|
5344
5355
|
basePrice: number;
|
|
5345
5356
|
|
|
5346
|
-
/**
|
|
5347
|
-
* Serientyp
|
|
5348
|
-
*/
|
|
5349
|
-
serialType: ArticleSerialType;
|
|
5350
|
-
|
|
5351
5357
|
/**
|
|
5352
5358
|
* MetaInformations for this Object
|
|
5353
5359
|
*/
|
|
@@ -5509,14 +5515,14 @@ export interface DocumentLine {
|
|
|
5509
5515
|
unitType: UnitTypeReference;
|
|
5510
5516
|
|
|
5511
5517
|
/**
|
|
5512
|
-
*
|
|
5518
|
+
* Zubehör Einfügeart
|
|
5513
5519
|
*/
|
|
5514
|
-
|
|
5520
|
+
insertTerm: AccessoryInsertTerm;
|
|
5515
5521
|
|
|
5516
5522
|
/**
|
|
5517
|
-
*
|
|
5523
|
+
* Referenz zur Basiszeile
|
|
5518
5524
|
*/
|
|
5519
|
-
|
|
5525
|
+
baseLineId: number;
|
|
5520
5526
|
|
|
5521
5527
|
/**
|
|
5522
5528
|
* Einheit Bruttogewicht
|
|
@@ -5544,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5544
5550
|
productType: ProductType;
|
|
5545
5551
|
|
|
5546
5552
|
/**
|
|
5547
|
-
*
|
|
5553
|
+
* Vertragsinformationen
|
|
5548
5554
|
*/
|
|
5549
|
-
|
|
5555
|
+
contractDetail: DocumentContractDetail;
|
|
5550
5556
|
|
|
5551
5557
|
/**
|
|
5552
|
-
*
|
|
5558
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5553
5559
|
*/
|
|
5554
|
-
|
|
5560
|
+
baseSalesValueNet: number;
|
|
5555
5561
|
|
|
5556
5562
|
/**
|
|
5557
5563
|
* Einheit Nettogewicht
|
|
@@ -6033,14 +6039,14 @@ export interface DocumentLinePosDetail {
|
|
|
6033
6039
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6034
6040
|
|
|
6035
6041
|
/**
|
|
6036
|
-
*
|
|
6042
|
+
* Status der externen Zahlung
|
|
6037
6043
|
*/
|
|
6038
|
-
|
|
6044
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6039
6045
|
|
|
6040
6046
|
/**
|
|
6041
|
-
*
|
|
6047
|
+
* Typ der Einlage/Ausgabe
|
|
6042
6048
|
*/
|
|
6043
|
-
|
|
6049
|
+
depositExpenseTypeId: number;
|
|
6044
6050
|
|
|
6045
6051
|
/**
|
|
6046
6052
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6448,14 +6454,14 @@ export interface DocumentRef {
|
|
|
6448
6454
|
export interface DocumentShippingCost {
|
|
6449
6455
|
|
|
6450
6456
|
/**
|
|
6451
|
-
*
|
|
6457
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6452
6458
|
*/
|
|
6453
|
-
|
|
6459
|
+
manualCosts: boolean;
|
|
6454
6460
|
|
|
6455
6461
|
/**
|
|
6456
|
-
*
|
|
6462
|
+
* Die Versandkosten
|
|
6457
6463
|
*/
|
|
6458
|
-
|
|
6464
|
+
costs: number;
|
|
6459
6465
|
|
|
6460
6466
|
/**
|
|
6461
6467
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6908,14 +6914,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6908
6914
|
bookDate: ScriptingDate;
|
|
6909
6915
|
|
|
6910
6916
|
/**
|
|
6911
|
-
*
|
|
6917
|
+
* Die gültige Seriennummer
|
|
6912
6918
|
*/
|
|
6913
|
-
|
|
6919
|
+
targetSerialNumber: string;
|
|
6914
6920
|
|
|
6915
6921
|
/**
|
|
6916
|
-
*
|
|
6922
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6917
6923
|
*/
|
|
6918
|
-
|
|
6924
|
+
targetExpiryDate: ScriptingDate;
|
|
6919
6925
|
|
|
6920
6926
|
/**
|
|
6921
6927
|
* Quell-Lagerplatz
|
|
@@ -7250,14 +7256,14 @@ export interface FabricationRevertRequest {
|
|
|
7250
7256
|
quantity: number;
|
|
7251
7257
|
|
|
7252
7258
|
/**
|
|
7253
|
-
*
|
|
7259
|
+
* Material automatisch stornieren
|
|
7254
7260
|
*/
|
|
7255
|
-
|
|
7261
|
+
autoRevertComponents: boolean;
|
|
7256
7262
|
|
|
7257
7263
|
/**
|
|
7258
|
-
*
|
|
7264
|
+
* ID der zu stornierenden Position
|
|
7259
7265
|
*/
|
|
7260
|
-
|
|
7266
|
+
documentLineId: number;
|
|
7261
7267
|
|
|
7262
7268
|
/**
|
|
7263
7269
|
* Zu stornierende Seriennummern
|
|
@@ -7477,14 +7483,14 @@ export interface PaymentMethod {
|
|
|
7477
7483
|
dunnable: boolean;
|
|
7478
7484
|
|
|
7479
7485
|
/**
|
|
7480
|
-
*
|
|
7486
|
+
* Debitoren-OP abschließen?
|
|
7481
7487
|
*/
|
|
7482
|
-
|
|
7488
|
+
closeCustomerAccountType: boolean;
|
|
7483
7489
|
|
|
7484
7490
|
/**
|
|
7485
|
-
*
|
|
7491
|
+
* translations
|
|
7486
7492
|
*/
|
|
7487
|
-
|
|
7493
|
+
translations: Array<DocumentTypeTerm>;
|
|
7488
7494
|
|
|
7489
7495
|
/**
|
|
7490
7496
|
* +Tage für Folgelastschrift
|
|
@@ -7492,14 +7498,14 @@ export interface PaymentMethod {
|
|
|
7492
7498
|
daysToAddForFollowup: number;
|
|
7493
7499
|
|
|
7494
7500
|
/**
|
|
7495
|
-
*
|
|
7501
|
+
* Die Business Transaction
|
|
7496
7502
|
*/
|
|
7497
|
-
|
|
7503
|
+
businessTransaction: ApiObjectReference;
|
|
7498
7504
|
|
|
7499
7505
|
/**
|
|
7500
|
-
*
|
|
7506
|
+
* external Payment Id
|
|
7501
7507
|
*/
|
|
7502
|
-
|
|
7508
|
+
externalPaymentId: string;
|
|
7503
7509
|
|
|
7504
7510
|
/**
|
|
7505
7511
|
* Unique identifier of the Object
|
|
@@ -7540,14 +7546,14 @@ export interface PaymentTerm {
|
|
|
7540
7546
|
paymentDiscount1: number;
|
|
7541
7547
|
|
|
7542
7548
|
/**
|
|
7543
|
-
*
|
|
7549
|
+
* for deposit: remaining term
|
|
7544
7550
|
*/
|
|
7545
|
-
|
|
7551
|
+
remainingTermRef: ApiObjectReference;
|
|
7546
7552
|
|
|
7547
7553
|
/**
|
|
7548
|
-
* for
|
|
7554
|
+
* Days for Discount 1
|
|
7549
7555
|
*/
|
|
7550
|
-
|
|
7556
|
+
paymentDays1: number;
|
|
7551
7557
|
|
|
7552
7558
|
/**
|
|
7553
7559
|
* Days for Discount 2
|
|
@@ -7823,7 +7829,8 @@ export const enum PickingType {
|
|
|
7823
7829
|
CONSOLIDATION = 'CONSOLIDATION',
|
|
7824
7830
|
REPLENISHMENT = 'REPLENISHMENT',
|
|
7825
7831
|
FABRICATION = 'FABRICATION',
|
|
7826
|
-
MISSING_GOODS_PICKING = 'MISSING_GOODS_PICKING'
|
|
7832
|
+
MISSING_GOODS_PICKING = 'MISSING_GOODS_PICKING',
|
|
7833
|
+
INCORRECTLY_PICKED_GOODS = 'INCORRECTLY_PICKED_GOODS'
|
|
7827
7834
|
}
|
|
7828
7835
|
|
|
7829
7836
|
export interface Picklist {
|
|
@@ -8129,6 +8136,7 @@ export interface PicklistLineComponent {
|
|
|
8129
8136
|
}
|
|
8130
8137
|
|
|
8131
8138
|
export const enum PicklistLineState {
|
|
8139
|
+
IN_CREATION = 'IN_CREATION',
|
|
8132
8140
|
CREATED = 'CREATED',
|
|
8133
8141
|
NEWLY_ADDED = 'NEWLY_ADDED',
|
|
8134
8142
|
PICKED = 'PICKED',
|
|
@@ -8148,6 +8156,7 @@ export const enum PicklistScriptType {
|
|
|
8148
8156
|
}
|
|
8149
8157
|
|
|
8150
8158
|
export const enum PicklistState {
|
|
8159
|
+
IN_CREATION = 'IN_CREATION',
|
|
8151
8160
|
CREATED = 'CREATED',
|
|
8152
8161
|
PAUSED_IN_PICKING = 'PAUSED_IN_PICKING',
|
|
8153
8162
|
IN_PICKING = 'IN_PICKING',
|
|
@@ -8364,26 +8373,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8364
8373
|
*/
|
|
8365
8374
|
specifyStorageBins: boolean;
|
|
8366
8375
|
|
|
8367
|
-
/**
|
|
8368
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8369
|
-
*/
|
|
8370
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8371
|
-
|
|
8372
8376
|
/**
|
|
8373
8377
|
* Der zu verwendende Pickwagen
|
|
8374
8378
|
*/
|
|
8375
8379
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
8376
8380
|
|
|
8377
8381
|
/**
|
|
8378
|
-
*
|
|
8382
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8379
8383
|
*/
|
|
8380
|
-
|
|
8384
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8381
8385
|
|
|
8382
8386
|
/**
|
|
8383
8387
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8384
8388
|
*/
|
|
8385
8389
|
sortByRoutePosition: boolean;
|
|
8386
8390
|
|
|
8391
|
+
/**
|
|
8392
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8393
|
+
*/
|
|
8394
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8395
|
+
|
|
8387
8396
|
/**
|
|
8388
8397
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
8389
8398
|
*/
|
|
@@ -8443,14 +8452,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8443
8452
|
showShippingFormOnPickingFinish: boolean;
|
|
8444
8453
|
|
|
8445
8454
|
/**
|
|
8446
|
-
*
|
|
8455
|
+
* Sammelbestätigung erlauben
|
|
8447
8456
|
*/
|
|
8448
|
-
|
|
8457
|
+
allowFullConfirmation: boolean;
|
|
8449
8458
|
|
|
8450
8459
|
/**
|
|
8451
|
-
*
|
|
8460
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8452
8461
|
*/
|
|
8453
|
-
|
|
8462
|
+
useDigitalPicklist: boolean;
|
|
8454
8463
|
|
|
8455
8464
|
/**
|
|
8456
8465
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
@@ -8473,14 +8482,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8473
8482
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8474
8483
|
|
|
8475
8484
|
/**
|
|
8476
|
-
*
|
|
8485
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8477
8486
|
*/
|
|
8478
|
-
|
|
8487
|
+
autoDeterminationOfLots: boolean;
|
|
8479
8488
|
|
|
8480
8489
|
/**
|
|
8481
|
-
*
|
|
8490
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8482
8491
|
*/
|
|
8483
|
-
|
|
8492
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8484
8493
|
|
|
8485
8494
|
/**
|
|
8486
8495
|
* Zielmengen in Masken verstecken?
|
|
@@ -8556,14 +8565,14 @@ export interface PriceSelectionCriteria {
|
|
|
8556
8565
|
quantity: number;
|
|
8557
8566
|
|
|
8558
8567
|
/**
|
|
8559
|
-
* Liste von
|
|
8568
|
+
* Liste von Account-IDs
|
|
8560
8569
|
*/
|
|
8561
|
-
|
|
8570
|
+
accountIds: Array<number>;
|
|
8562
8571
|
|
|
8563
8572
|
/**
|
|
8564
|
-
* Liste von
|
|
8573
|
+
* Liste von Artikel-IDs
|
|
8565
8574
|
*/
|
|
8566
|
-
|
|
8575
|
+
articleIds: Array<number>;
|
|
8567
8576
|
|
|
8568
8577
|
/**
|
|
8569
8578
|
* ein qualifier
|
|
@@ -8760,14 +8769,14 @@ export interface ProductDiscount {
|
|
|
8760
8769
|
validFrom: ScriptingDate;
|
|
8761
8770
|
|
|
8762
8771
|
/**
|
|
8763
|
-
*
|
|
8772
|
+
* Warengruppe
|
|
8764
8773
|
*/
|
|
8765
|
-
|
|
8774
|
+
productGroupRef: ApiObjectReference;
|
|
8766
8775
|
|
|
8767
8776
|
/**
|
|
8768
|
-
*
|
|
8777
|
+
* Bestimmt die Art des Rabatts
|
|
8769
8778
|
*/
|
|
8770
|
-
|
|
8779
|
+
modifierType: PriceModifierType;
|
|
8771
8780
|
|
|
8772
8781
|
/**
|
|
8773
8782
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8785,14 +8794,14 @@ export interface ProductDiscount {
|
|
|
8785
8794
|
currencyRef: CurrencyReference;
|
|
8786
8795
|
|
|
8787
8796
|
/**
|
|
8788
|
-
*
|
|
8797
|
+
* Preisgruppe
|
|
8789
8798
|
*/
|
|
8790
|
-
|
|
8799
|
+
priceGroupRef: ApiObjectReference;
|
|
8791
8800
|
|
|
8792
8801
|
/**
|
|
8793
|
-
*
|
|
8802
|
+
* Wert des Rabatts
|
|
8794
8803
|
*/
|
|
8795
|
-
|
|
8804
|
+
modifierValue: number;
|
|
8796
8805
|
|
|
8797
8806
|
/**
|
|
8798
8807
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -9128,19 +9137,19 @@ export const enum RegulationSet {
|
|
|
9128
9137
|
export interface RequestDocument {
|
|
9129
9138
|
|
|
9130
9139
|
/**
|
|
9131
|
-
*
|
|
9140
|
+
* Belegdatum
|
|
9132
9141
|
*/
|
|
9133
|
-
|
|
9142
|
+
documentDate: ScriptingDate;
|
|
9134
9143
|
|
|
9135
9144
|
/**
|
|
9136
|
-
*
|
|
9145
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9137
9146
|
*/
|
|
9138
|
-
|
|
9147
|
+
incomingGoodsStorageBinId: number;
|
|
9139
9148
|
|
|
9140
9149
|
/**
|
|
9141
|
-
*
|
|
9150
|
+
* Leistungsdatum
|
|
9142
9151
|
*/
|
|
9143
|
-
|
|
9152
|
+
performanceDate: ScriptingDate;
|
|
9144
9153
|
|
|
9145
9154
|
/**
|
|
9146
9155
|
* Der Anzahlungsbetrag
|
|
@@ -9148,9 +9157,9 @@ export interface RequestDocument {
|
|
|
9148
9157
|
depositPaymentAmount: number;
|
|
9149
9158
|
|
|
9150
9159
|
/**
|
|
9151
|
-
*
|
|
9160
|
+
* ID der Kassenschublade (bei POS)
|
|
9152
9161
|
*/
|
|
9153
|
-
|
|
9162
|
+
cashDrawerId: number;
|
|
9154
9163
|
|
|
9155
9164
|
/**
|
|
9156
9165
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9213,14 +9222,14 @@ export interface RequestDocument {
|
|
|
9213
9222
|
lines: Array<RequestDocumentLine>;
|
|
9214
9223
|
|
|
9215
9224
|
/**
|
|
9216
|
-
*
|
|
9225
|
+
* Die Vertragsdetails
|
|
9217
9226
|
*/
|
|
9218
|
-
|
|
9227
|
+
contractDetail: DocumentContractDetail;
|
|
9219
9228
|
|
|
9220
9229
|
/**
|
|
9221
|
-
*
|
|
9230
|
+
* ID der Kasse (bei POS)
|
|
9222
9231
|
*/
|
|
9223
|
-
|
|
9232
|
+
posRegisterId: number;
|
|
9224
9233
|
|
|
9225
9234
|
/**
|
|
9226
9235
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9968,14 +9977,14 @@ export interface SequencerConfiguration {
|
|
|
9968
9977
|
key: string;
|
|
9969
9978
|
|
|
9970
9979
|
/**
|
|
9971
|
-
*
|
|
9980
|
+
* Contains details about the sequencer configuration
|
|
9972
9981
|
*/
|
|
9973
|
-
|
|
9982
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9974
9983
|
|
|
9975
9984
|
/**
|
|
9976
|
-
*
|
|
9985
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9977
9986
|
*/
|
|
9978
|
-
|
|
9987
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9979
9988
|
|
|
9980
9989
|
/**
|
|
9981
9990
|
* MetaInformations for this Object
|
|
@@ -10216,14 +10225,14 @@ export interface ShelfDocumentType {
|
|
|
10216
10225
|
accessLevelWrite: number;
|
|
10217
10226
|
|
|
10218
10227
|
/**
|
|
10219
|
-
*
|
|
10228
|
+
* Ist die Dokumentenart aktiv
|
|
10220
10229
|
*/
|
|
10221
|
-
|
|
10230
|
+
active: boolean;
|
|
10222
10231
|
|
|
10223
10232
|
/**
|
|
10224
|
-
*
|
|
10233
|
+
* system presetting
|
|
10225
10234
|
*/
|
|
10226
|
-
|
|
10235
|
+
systemPresetting: boolean;
|
|
10227
10236
|
|
|
10228
10237
|
/**
|
|
10229
10238
|
* access level or reading
|
|
@@ -10314,14 +10323,14 @@ export interface ShelfFile {
|
|
|
10314
10323
|
version: number;
|
|
10315
10324
|
|
|
10316
10325
|
/**
|
|
10317
|
-
*
|
|
10326
|
+
* current reference of this file in our storage
|
|
10318
10327
|
*/
|
|
10319
|
-
|
|
10328
|
+
storageHandle: string;
|
|
10320
10329
|
|
|
10321
10330
|
/**
|
|
10322
|
-
*
|
|
10331
|
+
* meta data
|
|
10323
10332
|
*/
|
|
10324
|
-
|
|
10333
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10325
10334
|
|
|
10326
10335
|
/**
|
|
10327
10336
|
* MetaInformations for this Object
|
|
@@ -10866,14 +10875,14 @@ export interface Supplier {
|
|
|
10866
10875
|
performanceCountryCode: string;
|
|
10867
10876
|
|
|
10868
10877
|
/**
|
|
10869
|
-
*
|
|
10878
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10870
10879
|
*/
|
|
10871
|
-
|
|
10880
|
+
defaultDeliveryTime: number;
|
|
10872
10881
|
|
|
10873
10882
|
/**
|
|
10874
|
-
*
|
|
10883
|
+
* reference to the payment method
|
|
10875
10884
|
*/
|
|
10876
|
-
|
|
10885
|
+
paymentMethodRef: ApiObjectReference;
|
|
10877
10886
|
|
|
10878
10887
|
/**
|
|
10879
10888
|
* currency code IsoAlpha3
|
|
@@ -11202,11 +11211,6 @@ export interface User {
|
|
|
11202
11211
|
*/
|
|
11203
11212
|
roles: Array<ApiObjectReference>;
|
|
11204
11213
|
|
|
11205
|
-
/**
|
|
11206
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11207
|
-
*/
|
|
11208
|
-
referencedCustomerUserId: number;
|
|
11209
|
-
|
|
11210
11214
|
/**
|
|
11211
11215
|
* Gruppen
|
|
11212
11216
|
*/
|
|
@@ -11217,6 +11221,11 @@ export interface User {
|
|
|
11217
11221
|
*/
|
|
11218
11222
|
active: boolean;
|
|
11219
11223
|
|
|
11224
|
+
/**
|
|
11225
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11226
|
+
*/
|
|
11227
|
+
referencedCustomerUserId: number;
|
|
11228
|
+
|
|
11220
11229
|
/**
|
|
11221
11230
|
* App-Identifier
|
|
11222
11231
|
*/
|
|
@@ -11233,14 +11242,14 @@ export interface User {
|
|
|
11233
11242
|
version: number;
|
|
11234
11243
|
|
|
11235
11244
|
/**
|
|
11236
|
-
*
|
|
11245
|
+
* first-name
|
|
11237
11246
|
*/
|
|
11238
|
-
|
|
11247
|
+
firstName: string;
|
|
11239
11248
|
|
|
11240
11249
|
/**
|
|
11241
|
-
*
|
|
11250
|
+
* is the email verified
|
|
11242
11251
|
*/
|
|
11243
|
-
|
|
11252
|
+
emailVerified: boolean;
|
|
11244
11253
|
|
|
11245
11254
|
/**
|
|
11246
11255
|
* email-address
|
|
@@ -11253,14 +11262,14 @@ export interface User {
|
|
|
11253
11262
|
id: number;
|
|
11254
11263
|
|
|
11255
11264
|
/**
|
|
11256
|
-
*
|
|
11265
|
+
* username
|
|
11257
11266
|
*/
|
|
11258
|
-
|
|
11267
|
+
username: string;
|
|
11259
11268
|
|
|
11260
11269
|
/**
|
|
11261
|
-
*
|
|
11270
|
+
* Valid to
|
|
11262
11271
|
*/
|
|
11263
|
-
|
|
11272
|
+
validTo: ScriptingDateTime;
|
|
11264
11273
|
|
|
11265
11274
|
/**
|
|
11266
11275
|
* MetaInformations for this Object
|
|
@@ -11314,14 +11323,14 @@ export interface VariantAttributeListing {
|
|
|
11314
11323
|
salesChannelRef: ApiObjectReference;
|
|
11315
11324
|
|
|
11316
11325
|
/**
|
|
11317
|
-
*
|
|
11326
|
+
* Freifelder
|
|
11318
11327
|
*/
|
|
11319
|
-
|
|
11328
|
+
custom: EavVariantattributelisting;
|
|
11320
11329
|
|
|
11321
11330
|
/**
|
|
11322
|
-
*
|
|
11331
|
+
* Variantenattribut
|
|
11323
11332
|
*/
|
|
11324
|
-
|
|
11333
|
+
variantAttributeRef: ApiObjectReference;
|
|
11325
11334
|
|
|
11326
11335
|
/**
|
|
11327
11336
|
* Unique identifier of the Object
|