@vario-software/types 2026.32.8 → 2026.33.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/app/context.d.ts +3 -0
- package/package.json +1 -1
- package/schema/erp.d.ts +1092 -795
- package/scripting/services.d.ts +130 -49
- package/scripting/types.d.ts +729 -607
package/scripting/types.d.ts
CHANGED
|
@@ -19,14 +19,14 @@ export const enum AccessoryInsertTerm {
|
|
|
19
19
|
export interface Account {
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Notiz
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
note: string;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
taxLiabilityReversed: boolean;
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* Alle Adressen außer der Standard-Adresse
|
|
@@ -179,9 +179,9 @@ export interface Account {
|
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* Sprache des Accounts
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
languageCode: string;
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
187
|
* Erstkontakt am
|
|
@@ -189,9 +189,9 @@ export interface Account {
|
|
|
189
189
|
initialContactAt: ScriptingDate;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* calculation mode of this document
|
|
193
193
|
*/
|
|
194
|
-
|
|
194
|
+
calculationMode: CalculationMode;
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Has this Account a possible duplicate
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Standard-Ansprechpartner
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
defaultPerson: AccountPerson;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -229,14 +229,14 @@ export interface Account {
|
|
|
229
229
|
relations: Array<AccountRelation>;
|
|
230
230
|
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* currency code IsoAlpha3
|
|
233
233
|
*/
|
|
234
|
-
|
|
234
|
+
currencyCode: string;
|
|
235
235
|
|
|
236
236
|
/**
|
|
237
|
-
*
|
|
237
|
+
* Aktuell berechnete Werte zum Kreditlimit des Accounts
|
|
238
238
|
*/
|
|
239
|
-
|
|
239
|
+
loanValue: AccountLoanValue;
|
|
240
240
|
|
|
241
241
|
/**
|
|
242
242
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Country code
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
countryCode: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Street
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
street: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* GLN/ILN as location identifier for this address
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
globalLocationNumber: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* Leitweg-ID
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* abweichende Zahlungsart
|
|
@@ -372,14 +372,14 @@ export interface AccountAddress {
|
|
|
372
372
|
defaultForType: boolean;
|
|
373
373
|
|
|
374
374
|
/**
|
|
375
|
-
*
|
|
375
|
+
* Sprache der Adresse
|
|
376
376
|
*/
|
|
377
|
-
|
|
377
|
+
languageCode: string;
|
|
378
378
|
|
|
379
379
|
/**
|
|
380
|
-
*
|
|
380
|
+
* calculation mode of this address
|
|
381
381
|
*/
|
|
382
|
-
|
|
382
|
+
calculationMode: CalculationMode;
|
|
383
383
|
|
|
384
384
|
/**
|
|
385
385
|
* Version Identifier for this Object (for PUT)
|
|
@@ -387,14 +387,14 @@ export interface AccountAddress {
|
|
|
387
387
|
version: number;
|
|
388
388
|
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* Additional address line1
|
|
391
391
|
*/
|
|
392
|
-
|
|
392
|
+
additionalAddressLine1: string;
|
|
393
393
|
|
|
394
394
|
/**
|
|
395
|
-
*
|
|
395
|
+
* tax identification number/ UST-ID-Nr.
|
|
396
396
|
*/
|
|
397
|
-
|
|
397
|
+
taxIdentificationNumber: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
400
|
* Parcel station
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Parcel station customer number
|
|
416
416
|
*/
|
|
417
|
-
|
|
417
|
+
parcelStationCustomerNumber: string;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Default contacts
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
425
|
* Name3
|
|
@@ -848,14 +848,14 @@ export interface AccountPerson {
|
|
|
848
848
|
sortOrder: number;
|
|
849
849
|
|
|
850
850
|
/**
|
|
851
|
-
*
|
|
851
|
+
* Comment
|
|
852
852
|
*/
|
|
853
|
-
|
|
853
|
+
comment: string;
|
|
854
854
|
|
|
855
855
|
/**
|
|
856
|
-
*
|
|
856
|
+
* Middle name
|
|
857
857
|
*/
|
|
858
|
-
|
|
858
|
+
middleName: string;
|
|
859
859
|
|
|
860
860
|
/**
|
|
861
861
|
* List of contacts
|
|
@@ -959,14 +959,14 @@ export interface ApiCreatableReference {
|
|
|
959
959
|
description: string;
|
|
960
960
|
|
|
961
961
|
/**
|
|
962
|
-
*
|
|
962
|
+
* Identifier
|
|
963
963
|
*/
|
|
964
|
-
|
|
964
|
+
id: number;
|
|
965
965
|
|
|
966
966
|
/**
|
|
967
|
-
*
|
|
967
|
+
* a label
|
|
968
968
|
*/
|
|
969
|
-
|
|
969
|
+
label: string;
|
|
970
970
|
}
|
|
971
971
|
|
|
972
972
|
export interface ApiObjectReference {
|
|
@@ -982,14 +982,14 @@ export interface ApiObjectReference {
|
|
|
982
982
|
description: string;
|
|
983
983
|
|
|
984
984
|
/**
|
|
985
|
-
*
|
|
985
|
+
* Identifier
|
|
986
986
|
*/
|
|
987
|
-
|
|
987
|
+
id: number;
|
|
988
988
|
|
|
989
989
|
/**
|
|
990
|
-
*
|
|
990
|
+
* a label
|
|
991
991
|
*/
|
|
992
|
-
|
|
992
|
+
label: string;
|
|
993
993
|
}
|
|
994
994
|
|
|
995
995
|
export interface Article {
|
|
@@ -1004,26 +1004,26 @@ export interface Article {
|
|
|
1004
1004
|
*/
|
|
1005
1005
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1006
1006
|
|
|
1007
|
-
/**
|
|
1008
|
-
* Gefahrgut Informationen
|
|
1009
|
-
*/
|
|
1010
|
-
dangerousGoodInformation: DangerousGoodInformation;
|
|
1011
|
-
|
|
1012
1007
|
/**
|
|
1013
1008
|
* Zolltarifnummer
|
|
1014
1009
|
*/
|
|
1015
1010
|
customsTariffNumber: string;
|
|
1016
1011
|
|
|
1017
1012
|
/**
|
|
1018
|
-
*
|
|
1013
|
+
* Gefahrgut Informationen
|
|
1019
1014
|
*/
|
|
1020
|
-
|
|
1015
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1021
1016
|
|
|
1022
1017
|
/**
|
|
1023
1018
|
* Product custom data
|
|
1024
1019
|
*/
|
|
1025
1020
|
listingCustom: EavArticleListing;
|
|
1026
1021
|
|
|
1022
|
+
/**
|
|
1023
|
+
* is this product purchasable
|
|
1024
|
+
*/
|
|
1025
|
+
purchasable: boolean;
|
|
1026
|
+
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
@@ -1069,6 +1069,11 @@ export interface Article {
|
|
|
1069
1069
|
*/
|
|
1070
1070
|
warrantyInMonths: number;
|
|
1071
1071
|
|
|
1072
|
+
/**
|
|
1073
|
+
* unique product number
|
|
1074
|
+
*/
|
|
1075
|
+
number: string;
|
|
1076
|
+
|
|
1072
1077
|
/**
|
|
1073
1078
|
* weight and size w.o. packaging
|
|
1074
1079
|
*/
|
|
@@ -1079,11 +1084,6 @@ export interface Article {
|
|
|
1079
1084
|
*/
|
|
1080
1085
|
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1081
1086
|
|
|
1082
|
-
/**
|
|
1083
|
-
* unique product number
|
|
1084
|
-
*/
|
|
1085
|
-
number: string;
|
|
1086
|
-
|
|
1087
1087
|
/**
|
|
1088
1088
|
* is this product mergeable to another package-variant
|
|
1089
1089
|
*/
|
|
@@ -1235,14 +1235,14 @@ export interface Article {
|
|
|
1235
1235
|
freelyPickable: boolean;
|
|
1236
1236
|
|
|
1237
1237
|
/**
|
|
1238
|
-
*
|
|
1238
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1239
1239
|
*/
|
|
1240
|
-
|
|
1240
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
taxLiabilityReversed: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* Notiz
|
|
@@ -1290,14 +1290,14 @@ export interface Article {
|
|
|
1290
1290
|
grossSalesPrice: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
|
-
*
|
|
1298
|
+
* Vorgabe Herstellungskosten
|
|
1299
1299
|
*/
|
|
1300
|
-
|
|
1300
|
+
defaultFabricationCost: number;
|
|
1301
1301
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
@@ -1319,6 +1319,11 @@ export interface Article {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
|
+
/**
|
|
1323
|
+
* alternative name of this product
|
|
1324
|
+
*/
|
|
1325
|
+
alternativeName: string;
|
|
1326
|
+
|
|
1322
1327
|
/**
|
|
1323
1328
|
* Kontingentartikel
|
|
1324
1329
|
*/
|
|
@@ -1329,11 +1334,6 @@ export interface Article {
|
|
|
1329
1334
|
*/
|
|
1330
1335
|
discountable: boolean;
|
|
1331
1336
|
|
|
1332
|
-
/**
|
|
1333
|
-
* alternative name of this product
|
|
1334
|
-
*/
|
|
1335
|
-
alternativeName: string;
|
|
1336
|
-
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
1339
1339
|
*/
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* Nur manuelle Produktion
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
onlyManualFabrication: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* provisionsberechtiger Artikel?
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
commissionable: boolean;
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1540,6 +1540,42 @@ export const enum ArticleAvailabilityDetermination$Operation {
|
|
|
1540
1540
|
SUBTRACT = 'SUBTRACT'
|
|
1541
1541
|
}
|
|
1542
1542
|
|
|
1543
|
+
export interface ArticleBundleConversionInfo {
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Mögliche Ziele für die Auflösung
|
|
1547
|
+
*/
|
|
1548
|
+
dissolveRatios: Array<ArticleConversionRatio>;
|
|
1549
|
+
|
|
1550
|
+
/**
|
|
1551
|
+
* Artikels, zu dem hier die Infos zu finden sind
|
|
1552
|
+
*/
|
|
1553
|
+
articleRef: ProductArticleRef;
|
|
1554
|
+
|
|
1555
|
+
/**
|
|
1556
|
+
* Mögliche Ziele für die Zusammenführung
|
|
1557
|
+
*/
|
|
1558
|
+
mergeRatios: Array<ArticleConversionRatio>;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
export interface ArticleConversionRatio {
|
|
1562
|
+
|
|
1563
|
+
/**
|
|
1564
|
+
* Quelleinheit
|
|
1565
|
+
*/
|
|
1566
|
+
sourceUnitTypeRef: UnitTypeReference;
|
|
1567
|
+
|
|
1568
|
+
/**
|
|
1569
|
+
* Ein Artikel
|
|
1570
|
+
*/
|
|
1571
|
+
articleRef: ProductArticleRef;
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Faktor
|
|
1575
|
+
*/
|
|
1576
|
+
factor: number;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1543
1579
|
export interface ArticleCustomer {
|
|
1544
1580
|
|
|
1545
1581
|
/**
|
|
@@ -1568,14 +1604,14 @@ export interface ArticleCustomer {
|
|
|
1568
1604
|
productPrices: Array<ProductPrice>;
|
|
1569
1605
|
|
|
1570
1606
|
/**
|
|
1571
|
-
*
|
|
1607
|
+
* Referenced Article
|
|
1572
1608
|
*/
|
|
1573
|
-
|
|
1609
|
+
articleId: number;
|
|
1574
1610
|
|
|
1575
1611
|
/**
|
|
1576
|
-
*
|
|
1612
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1577
1613
|
*/
|
|
1578
|
-
|
|
1614
|
+
useDeviatingArticleDescription: boolean;
|
|
1579
1615
|
|
|
1580
1616
|
/**
|
|
1581
1617
|
* Aktiv?
|
|
@@ -1750,14 +1786,14 @@ export interface ArticleListing {
|
|
|
1750
1786
|
listed: boolean;
|
|
1751
1787
|
|
|
1752
1788
|
/**
|
|
1753
|
-
*
|
|
1789
|
+
* name of this article
|
|
1754
1790
|
*/
|
|
1755
|
-
|
|
1791
|
+
name: WithDefaults<String>;
|
|
1756
1792
|
|
|
1757
1793
|
/**
|
|
1758
|
-
*
|
|
1794
|
+
* Kategorien, denen dieses Listing zugeordnet ist
|
|
1759
1795
|
*/
|
|
1760
|
-
|
|
1796
|
+
categoryRefs: Array<ApiObjectReference>;
|
|
1761
1797
|
|
|
1762
1798
|
/**
|
|
1763
1799
|
* die letzte aktualisierung des listingStates
|
|
@@ -1958,14 +1994,14 @@ export interface ArticleStorage {
|
|
|
1958
1994
|
replenishmentFrom: number;
|
|
1959
1995
|
|
|
1960
1996
|
/**
|
|
1961
|
-
*
|
|
1997
|
+
* Aktuelle Menge in Kommissionierung
|
|
1962
1998
|
*/
|
|
1963
|
-
|
|
1999
|
+
quantityInPicking: number;
|
|
1964
2000
|
|
|
1965
2001
|
/**
|
|
1966
|
-
*
|
|
2002
|
+
* Bestellte Menge
|
|
1967
2003
|
*/
|
|
1968
|
-
|
|
2004
|
+
orderedQuantity: number;
|
|
1969
2005
|
|
|
1970
2006
|
/**
|
|
1971
2007
|
* Meldebestand
|
|
@@ -2121,14 +2157,14 @@ export interface ArticleSupplier {
|
|
|
2121
2157
|
info: MetaInfo;
|
|
2122
2158
|
|
|
2123
2159
|
/**
|
|
2124
|
-
*
|
|
2160
|
+
* Referenced Article name
|
|
2125
2161
|
*/
|
|
2126
|
-
|
|
2162
|
+
articleName: string;
|
|
2127
2163
|
|
|
2128
2164
|
/**
|
|
2129
|
-
*
|
|
2165
|
+
* Verpackungseinheit
|
|
2130
2166
|
*/
|
|
2131
|
-
|
|
2167
|
+
packagingUnit: number;
|
|
2132
2168
|
|
|
2133
2169
|
/**
|
|
2134
2170
|
* Lieferanten-Preise
|
|
@@ -2161,14 +2197,14 @@ export interface ArticleSupplier {
|
|
|
2161
2197
|
dropShippingAllowed: boolean;
|
|
2162
2198
|
|
|
2163
2199
|
/**
|
|
2164
|
-
* Abweichende
|
|
2200
|
+
* Abweichende Produktbezeichnung
|
|
2165
2201
|
*/
|
|
2166
|
-
|
|
2202
|
+
supplierArticleName: string;
|
|
2167
2203
|
|
|
2168
2204
|
/**
|
|
2169
|
-
* Abweichende
|
|
2205
|
+
* Abweichende Produktbeschreibung
|
|
2170
2206
|
*/
|
|
2171
|
-
|
|
2207
|
+
supplierArticleDescription: string;
|
|
2172
2208
|
|
|
2173
2209
|
/**
|
|
2174
2210
|
* Standardpreis Netto
|
|
@@ -2176,14 +2212,14 @@ export interface ArticleSupplier {
|
|
|
2176
2212
|
defaultNetPrice: number;
|
|
2177
2213
|
|
|
2178
2214
|
/**
|
|
2179
|
-
*
|
|
2215
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2180
2216
|
*/
|
|
2181
|
-
|
|
2217
|
+
orderOnComponentBase: boolean;
|
|
2182
2218
|
|
|
2183
2219
|
/**
|
|
2184
|
-
*
|
|
2220
|
+
* Einkaufseinheit
|
|
2185
2221
|
*/
|
|
2186
|
-
|
|
2222
|
+
purchaseUnit: number;
|
|
2187
2223
|
|
|
2188
2224
|
/**
|
|
2189
2225
|
* Referenced Supplier-Account
|
|
@@ -2246,6 +2282,11 @@ export interface Asset {
|
|
|
2246
2282
|
*/
|
|
2247
2283
|
serialNumber: ArticleSerialNumber;
|
|
2248
2284
|
|
|
2285
|
+
/**
|
|
2286
|
+
* frei eingebbare Seriennummer / MHD
|
|
2287
|
+
*/
|
|
2288
|
+
freeSerialNumber: string;
|
|
2289
|
+
|
|
2249
2290
|
/**
|
|
2250
2291
|
* Asset Zusatzfelder
|
|
2251
2292
|
*/
|
|
@@ -2287,14 +2328,14 @@ export interface Asset {
|
|
|
2287
2328
|
billingAddressRef: ApiObjectReference;
|
|
2288
2329
|
|
|
2289
2330
|
/**
|
|
2290
|
-
*
|
|
2331
|
+
* Vertrag
|
|
2291
2332
|
*/
|
|
2292
|
-
|
|
2333
|
+
contractRef: ApiObjectReference;
|
|
2293
2334
|
|
|
2294
2335
|
/**
|
|
2295
|
-
*
|
|
2336
|
+
* Zusatzadresse
|
|
2296
2337
|
*/
|
|
2297
|
-
|
|
2338
|
+
accountAddressRef: ApiObjectReference;
|
|
2298
2339
|
|
|
2299
2340
|
/**
|
|
2300
2341
|
* Asset-Nummer
|
|
@@ -2414,22 +2455,93 @@ export interface BulkTransferResult {
|
|
|
2414
2455
|
stocks: Array<StockTransferResult>;
|
|
2415
2456
|
}
|
|
2416
2457
|
|
|
2417
|
-
export
|
|
2418
|
-
B2B = 'B2B',
|
|
2419
|
-
B2C = 'B2C',
|
|
2420
|
-
B2G = 'B2G'
|
|
2421
|
-
}
|
|
2458
|
+
export interface BundleSchema {
|
|
2422
2459
|
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
}
|
|
2460
|
+
/**
|
|
2461
|
+
* Produkt, zu dem dieses Schema gehört
|
|
2462
|
+
*/
|
|
2463
|
+
productId: number;
|
|
2428
2464
|
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2465
|
+
/**
|
|
2466
|
+
* Name
|
|
2467
|
+
*/
|
|
2468
|
+
label: string;
|
|
2469
|
+
|
|
2470
|
+
/**
|
|
2471
|
+
* Unique identifier of the Object
|
|
2472
|
+
*/
|
|
2473
|
+
id: number;
|
|
2474
|
+
|
|
2475
|
+
/**
|
|
2476
|
+
* Basis-Einheit des Schemas
|
|
2477
|
+
*/
|
|
2478
|
+
baseTypeRef: UnitTypeReference;
|
|
2479
|
+
|
|
2480
|
+
/**
|
|
2481
|
+
* Umrechnungen für Artikel des zugehörigen Produkts
|
|
2482
|
+
*/
|
|
2483
|
+
ratios: Array<BundleUnitTypeRatio>;
|
|
2484
|
+
|
|
2485
|
+
/**
|
|
2486
|
+
* Version Identifier for this Object (for PUT)
|
|
2487
|
+
*/
|
|
2488
|
+
version: number;
|
|
2489
|
+
|
|
2490
|
+
/**
|
|
2491
|
+
* MetaInformations for this Object
|
|
2492
|
+
*/
|
|
2493
|
+
info: MetaInfo;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
export interface BundleUnitTypeRatio {
|
|
2497
|
+
|
|
2498
|
+
/**
|
|
2499
|
+
* Mengeneinheit
|
|
2500
|
+
*/
|
|
2501
|
+
baseUnitTypeRef: UnitTypeReference;
|
|
2502
|
+
|
|
2503
|
+
/**
|
|
2504
|
+
* Verhältnis-Mengeneinheit
|
|
2505
|
+
*/
|
|
2506
|
+
relationUnitTypeRef: UnitTypeReference;
|
|
2507
|
+
|
|
2508
|
+
/**
|
|
2509
|
+
* Unique identifier of the Object
|
|
2510
|
+
*/
|
|
2511
|
+
id: number;
|
|
2512
|
+
|
|
2513
|
+
/**
|
|
2514
|
+
* Faktor
|
|
2515
|
+
*/
|
|
2516
|
+
factor: number;
|
|
2517
|
+
|
|
2518
|
+
/**
|
|
2519
|
+
* Version Identifier for this Object (for PUT)
|
|
2520
|
+
*/
|
|
2521
|
+
version: number;
|
|
2522
|
+
|
|
2523
|
+
/**
|
|
2524
|
+
* MetaInformations for this Object
|
|
2525
|
+
*/
|
|
2526
|
+
info: MetaInfo;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
export const enum BusinessRelationType {
|
|
2530
|
+
B2B = 'B2B',
|
|
2531
|
+
B2C = 'B2C',
|
|
2532
|
+
B2G = 'B2G'
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
export const enum BuyerReferenceOrigin {
|
|
2536
|
+
FROM_BILLING_ADDRESS = 'FROM_BILLING_ADDRESS',
|
|
2537
|
+
FROM_DEFAULT_ADDRESS = 'FROM_DEFAULT_ADDRESS',
|
|
2538
|
+
USER_DEFINED = 'USER_DEFINED'
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
export const enum CalculateFreightChargesFromType {
|
|
2542
|
+
CHARGES_FROM_ORDER = 'CHARGES_FROM_ORDER',
|
|
2543
|
+
RECALCULATE = 'RECALCULATE'
|
|
2544
|
+
}
|
|
2433
2545
|
|
|
2434
2546
|
export const enum CalculateFreightChargesWithType {
|
|
2435
2547
|
EVERY_SHIPPING = 'EVERY_SHIPPING',
|
|
@@ -2540,14 +2652,14 @@ export interface CountryReference {
|
|
|
2540
2652
|
isoAlpha3: string;
|
|
2541
2653
|
|
|
2542
2654
|
/**
|
|
2543
|
-
*
|
|
2655
|
+
* ID des Landes
|
|
2544
2656
|
*/
|
|
2545
|
-
|
|
2657
|
+
id: number;
|
|
2546
2658
|
|
|
2547
2659
|
/**
|
|
2548
|
-
*
|
|
2660
|
+
* Bezeichnung des Landes
|
|
2549
2661
|
*/
|
|
2550
|
-
|
|
2662
|
+
label: string;
|
|
2551
2663
|
}
|
|
2552
2664
|
|
|
2553
2665
|
/**
|
|
@@ -2634,14 +2746,14 @@ export interface CrmActivity {
|
|
|
2634
2746
|
info: MetaInfo;
|
|
2635
2747
|
|
|
2636
2748
|
/**
|
|
2637
|
-
*
|
|
2749
|
+
* Aktivität intern abgerechnet?
|
|
2638
2750
|
*/
|
|
2639
|
-
|
|
2751
|
+
internalBilled: boolean;
|
|
2640
2752
|
|
|
2641
2753
|
/**
|
|
2642
|
-
*
|
|
2754
|
+
* geplante Dauer
|
|
2643
2755
|
*/
|
|
2644
|
-
|
|
2756
|
+
plannedDurationInSeconds: number;
|
|
2645
2757
|
|
|
2646
2758
|
/**
|
|
2647
2759
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2735,14 +2847,14 @@ export interface CrmActivityType {
|
|
|
2735
2847
|
description: string;
|
|
2736
2848
|
|
|
2737
2849
|
/**
|
|
2738
|
-
*
|
|
2850
|
+
* Bezeichnung
|
|
2739
2851
|
*/
|
|
2740
|
-
|
|
2852
|
+
label: string;
|
|
2741
2853
|
|
|
2742
2854
|
/**
|
|
2743
|
-
*
|
|
2855
|
+
* Für "E-Mail-Archivieren"?
|
|
2744
2856
|
*/
|
|
2745
|
-
|
|
2857
|
+
emailArchiving: boolean;
|
|
2746
2858
|
|
|
2747
2859
|
/**
|
|
2748
2860
|
* Abrechenbar?
|
|
@@ -2793,14 +2905,14 @@ export interface CrmActivityType {
|
|
|
2793
2905
|
export interface CrmChecklistItem {
|
|
2794
2906
|
|
|
2795
2907
|
/**
|
|
2796
|
-
*
|
|
2908
|
+
* Text des Checklisten-Elements
|
|
2797
2909
|
*/
|
|
2798
|
-
|
|
2910
|
+
memo: string;
|
|
2799
2911
|
|
|
2800
2912
|
/**
|
|
2801
|
-
*
|
|
2913
|
+
* Ist das Element "angehakt"?
|
|
2802
2914
|
*/
|
|
2803
|
-
|
|
2915
|
+
checked: boolean;
|
|
2804
2916
|
|
|
2805
2917
|
/**
|
|
2806
2918
|
* Unique identifier of the Object
|
|
@@ -3071,11 +3183,6 @@ export interface CrmObjectRef {
|
|
|
3071
3183
|
*/
|
|
3072
3184
|
subType: CrmSubType;
|
|
3073
3185
|
|
|
3074
|
-
/**
|
|
3075
|
-
* Bezeichung
|
|
3076
|
-
*/
|
|
3077
|
-
label: string;
|
|
3078
|
-
|
|
3079
3186
|
/**
|
|
3080
3187
|
* ID
|
|
3081
3188
|
*/
|
|
@@ -3086,6 +3193,11 @@ export interface CrmObjectRef {
|
|
|
3086
3193
|
*/
|
|
3087
3194
|
state: CrmState;
|
|
3088
3195
|
|
|
3196
|
+
/**
|
|
3197
|
+
* Bezeichung
|
|
3198
|
+
*/
|
|
3199
|
+
label: string;
|
|
3200
|
+
|
|
3089
3201
|
/**
|
|
3090
3202
|
* CRM-Typ
|
|
3091
3203
|
*/
|
|
@@ -3202,14 +3314,14 @@ export interface CrmProject {
|
|
|
3202
3314
|
priorityRef: ApiObjectReference;
|
|
3203
3315
|
|
|
3204
3316
|
/**
|
|
3205
|
-
*
|
|
3317
|
+
* Phase
|
|
3206
3318
|
*/
|
|
3207
|
-
|
|
3319
|
+
phaseRef: ApiObjectReference;
|
|
3208
3320
|
|
|
3209
3321
|
/**
|
|
3210
|
-
*
|
|
3322
|
+
* Projektleiter vom Auftragnehmer
|
|
3211
3323
|
*/
|
|
3212
|
-
|
|
3324
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3213
3325
|
|
|
3214
3326
|
/**
|
|
3215
3327
|
* Aufgaben-Nummer
|
|
@@ -3227,14 +3339,14 @@ export interface CrmProject {
|
|
|
3227
3339
|
billedTimes: number;
|
|
3228
3340
|
|
|
3229
3341
|
/**
|
|
3230
|
-
*
|
|
3342
|
+
* Geplanter Projektzeitraum (von)
|
|
3231
3343
|
*/
|
|
3232
|
-
|
|
3344
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3233
3345
|
|
|
3234
3346
|
/**
|
|
3235
|
-
*
|
|
3347
|
+
* Einkaufsbelege
|
|
3236
3348
|
*/
|
|
3237
|
-
|
|
3349
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3238
3350
|
|
|
3239
3351
|
/**
|
|
3240
3352
|
* Verkaufsbelege
|
|
@@ -3463,14 +3575,14 @@ export interface CrmState {
|
|
|
3463
3575
|
readyToBill: boolean;
|
|
3464
3576
|
|
|
3465
3577
|
/**
|
|
3466
|
-
*
|
|
3578
|
+
* Handelt es sich um einen Anfang-Status
|
|
3467
3579
|
*/
|
|
3468
|
-
|
|
3580
|
+
startState: boolean;
|
|
3469
3581
|
|
|
3470
3582
|
/**
|
|
3471
|
-
*
|
|
3583
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3472
3584
|
*/
|
|
3473
|
-
|
|
3585
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3474
3586
|
|
|
3475
3587
|
/**
|
|
3476
3588
|
* MetaInformations for this Object
|
|
@@ -3724,14 +3836,14 @@ export interface CrmTask {
|
|
|
3724
3836
|
parentRefs: Array<CrmObjectRef>;
|
|
3725
3837
|
|
|
3726
3838
|
/**
|
|
3727
|
-
*
|
|
3839
|
+
* Beauftragte Zeit in Sekunden
|
|
3728
3840
|
*/
|
|
3729
|
-
|
|
3841
|
+
effortCommissioned: number;
|
|
3730
3842
|
|
|
3731
3843
|
/**
|
|
3732
|
-
*
|
|
3844
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3733
3845
|
*/
|
|
3734
|
-
|
|
3846
|
+
externalRecordedTimes: number;
|
|
3735
3847
|
|
|
3736
3848
|
/**
|
|
3737
3849
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3890,14 +4002,14 @@ export interface CurrencyReference {
|
|
|
3890
4002
|
isoAlpha3: string;
|
|
3891
4003
|
|
|
3892
4004
|
/**
|
|
3893
|
-
*
|
|
4005
|
+
* ID der Währung
|
|
3894
4006
|
*/
|
|
3895
|
-
|
|
4007
|
+
id: number;
|
|
3896
4008
|
|
|
3897
4009
|
/**
|
|
3898
|
-
*
|
|
4010
|
+
* Bezeichnung der Währung
|
|
3899
4011
|
*/
|
|
3900
|
-
|
|
4012
|
+
label: string;
|
|
3901
4013
|
}
|
|
3902
4014
|
|
|
3903
4015
|
export interface Customer {
|
|
@@ -4206,26 +4318,26 @@ export interface DeliveryMethod {
|
|
|
4206
4318
|
*/
|
|
4207
4319
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4320
|
|
|
4209
|
-
/**
|
|
4210
|
-
* Quelle für Paketgewicht
|
|
4211
|
-
*/
|
|
4212
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4213
|
-
|
|
4214
4321
|
/**
|
|
4215
4322
|
* translations
|
|
4216
4323
|
*/
|
|
4217
4324
|
translations: Array<DocumentTypeTerm>;
|
|
4218
4325
|
|
|
4219
4326
|
/**
|
|
4220
|
-
*
|
|
4327
|
+
* Quelle für Paketgewicht
|
|
4221
4328
|
*/
|
|
4222
|
-
|
|
4329
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4223
4330
|
|
|
4224
4331
|
/**
|
|
4225
4332
|
* Versand-Anbieter
|
|
4226
4333
|
*/
|
|
4227
4334
|
vdsCarrierId: number;
|
|
4228
4335
|
|
|
4336
|
+
/**
|
|
4337
|
+
* Gültige Ländercodes
|
|
4338
|
+
*/
|
|
4339
|
+
validCountryCodes: Array<string>;
|
|
4340
|
+
|
|
4229
4341
|
/**
|
|
4230
4342
|
* Standardgewichtseinheit
|
|
4231
4343
|
*/
|
|
@@ -4325,14 +4437,14 @@ export interface DeliveryTerm {
|
|
|
4325
4437
|
id: number;
|
|
4326
4438
|
|
|
4327
4439
|
/**
|
|
4328
|
-
*
|
|
4440
|
+
* free shipping net value
|
|
4329
4441
|
*/
|
|
4330
|
-
|
|
4442
|
+
freeShippingNetValue: number;
|
|
4331
4443
|
|
|
4332
4444
|
/**
|
|
4333
|
-
*
|
|
4445
|
+
* Versandkostenartikel
|
|
4334
4446
|
*/
|
|
4335
|
-
|
|
4447
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4336
4448
|
|
|
4337
4449
|
/**
|
|
4338
4450
|
* MetaInformations for this Object
|
|
@@ -4447,6 +4559,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4447
4559
|
*/
|
|
4448
4560
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4561
|
|
|
4562
|
+
/**
|
|
4563
|
+
* Steuerpflichtig oder steuerfrei
|
|
4564
|
+
*/
|
|
4565
|
+
taxable: boolean;
|
|
4566
|
+
|
|
4450
4567
|
/**
|
|
4451
4568
|
* Leitweg-ID
|
|
4452
4569
|
*/
|
|
@@ -4457,11 +4574,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4457
4574
|
*/
|
|
4458
4575
|
referencedOrderNumber: string;
|
|
4459
4576
|
|
|
4460
|
-
/**
|
|
4461
|
-
* Steuerpflichtig oder steuerfrei
|
|
4462
|
-
*/
|
|
4463
|
-
taxable: boolean;
|
|
4464
|
-
|
|
4465
4577
|
/**
|
|
4466
4578
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4467
4579
|
*/
|
|
@@ -4473,14 +4585,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4473
4585
|
baseDepositPaymentAmount: number;
|
|
4474
4586
|
|
|
4475
4587
|
/**
|
|
4476
|
-
*
|
|
4588
|
+
* Ist der Beleg festgeschrieben?
|
|
4477
4589
|
*/
|
|
4478
|
-
|
|
4590
|
+
frozen: boolean;
|
|
4479
4591
|
|
|
4480
4592
|
/**
|
|
4481
|
-
*
|
|
4593
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4482
4594
|
*/
|
|
4483
|
-
|
|
4595
|
+
totalBeforeModifier: number;
|
|
4484
4596
|
|
|
4485
4597
|
/**
|
|
4486
4598
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4513,14 +4625,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4625
|
accountId: number;
|
|
4514
4626
|
|
|
4515
4627
|
/**
|
|
4516
|
-
* Länderkennzeichen
|
|
4628
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4517
4629
|
*/
|
|
4518
|
-
|
|
4630
|
+
performanceCountryCode: string;
|
|
4519
4631
|
|
|
4520
4632
|
/**
|
|
4521
|
-
* Länderkennzeichen
|
|
4633
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4522
4634
|
*/
|
|
4523
|
-
|
|
4635
|
+
sourceCountryCode: string;
|
|
4524
4636
|
|
|
4525
4637
|
/**
|
|
4526
4638
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4548,14 +4660,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4548
4660
|
documentDate: ScriptingDate;
|
|
4549
4661
|
|
|
4550
4662
|
/**
|
|
4551
|
-
*
|
|
4663
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4552
4664
|
*/
|
|
4553
|
-
|
|
4665
|
+
roundingAmount: number;
|
|
4554
4666
|
|
|
4555
4667
|
/**
|
|
4556
|
-
*
|
|
4668
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4557
4669
|
*/
|
|
4558
|
-
|
|
4670
|
+
taxLiabilityReversed: boolean;
|
|
4559
4671
|
|
|
4560
4672
|
/**
|
|
4561
4673
|
* Versanddatum
|
|
@@ -4568,14 +4680,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4568
4680
|
supplierNumber: string;
|
|
4569
4681
|
|
|
4570
4682
|
/**
|
|
4571
|
-
*
|
|
4683
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4572
4684
|
*/
|
|
4573
|
-
|
|
4685
|
+
deliveryApproved: boolean;
|
|
4574
4686
|
|
|
4575
4687
|
/**
|
|
4576
|
-
*
|
|
4688
|
+
* Gesamtpreis brutto
|
|
4577
4689
|
*/
|
|
4578
|
-
|
|
4690
|
+
totalGrossPrice: number;
|
|
4579
4691
|
|
|
4580
4692
|
/**
|
|
4581
4693
|
* Kassen-Zahlungspositionen
|
|
@@ -4583,9 +4695,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4583
4695
|
posPayments: Array<DocumentPosPayment>;
|
|
4584
4696
|
|
|
4585
4697
|
/**
|
|
4586
|
-
*
|
|
4698
|
+
* Ist die Quittung bezahlt
|
|
4699
|
+
true wenn die Quittung bezahlt ist
|
|
4700
|
+
|
|
4587
4701
|
*/
|
|
4588
|
-
|
|
4702
|
+
posReceiptPayed: boolean;
|
|
4589
4703
|
|
|
4590
4704
|
/**
|
|
4591
4705
|
* Maximal mögliche Lieferungen
|
|
@@ -4593,11 +4707,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4593
4707
|
maxDeliveries: number;
|
|
4594
4708
|
|
|
4595
4709
|
/**
|
|
4596
|
-
*
|
|
4597
|
-
true wenn die Quittung bezahlt ist
|
|
4598
|
-
|
|
4710
|
+
* Kundennummer beim Lieferanten
|
|
4599
4711
|
*/
|
|
4600
|
-
|
|
4712
|
+
ourCustomerNumber: string;
|
|
4601
4713
|
|
|
4602
4714
|
/**
|
|
4603
4715
|
* Quittung: Summe Zahlbetrag
|
|
@@ -4620,14 +4732,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4620
4732
|
contractDetail: DocumentContractDetail;
|
|
4621
4733
|
|
|
4622
4734
|
/**
|
|
4623
|
-
*
|
|
4735
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4624
4736
|
*/
|
|
4625
|
-
|
|
4737
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4626
4738
|
|
|
4627
4739
|
/**
|
|
4628
|
-
*
|
|
4740
|
+
* Zahlungsplan vorhanden?
|
|
4629
4741
|
*/
|
|
4630
|
-
|
|
4742
|
+
paymentPlan: boolean;
|
|
4631
4743
|
|
|
4632
4744
|
/**
|
|
4633
4745
|
* Produktionsdetails
|
|
@@ -4669,6 +4781,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4669
4781
|
*/
|
|
4670
4782
|
texts: Array<DocumentText>;
|
|
4671
4783
|
|
|
4784
|
+
/**
|
|
4785
|
+
* Standort (bei Produktionsaufträgen)
|
|
4786
|
+
*/
|
|
4787
|
+
locationRef: ApiObjectReference;
|
|
4788
|
+
|
|
4672
4789
|
/**
|
|
4673
4790
|
* Sammelrechnung?
|
|
4674
4791
|
*/
|
|
@@ -4694,26 +4811,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4694
4811
|
*/
|
|
4695
4812
|
performanceDate: ScriptingDate;
|
|
4696
4813
|
|
|
4697
|
-
/**
|
|
4698
|
-
* EN16931-Profil für elektronische Rechnungen
|
|
4699
|
-
*/
|
|
4700
|
-
en16931Profile: EN16931Profile;
|
|
4701
|
-
|
|
4702
4814
|
/**
|
|
4703
4815
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4704
4816
|
*/
|
|
4705
4817
|
dropShippingInvoiceApproved: boolean;
|
|
4706
4818
|
|
|
4707
4819
|
/**
|
|
4708
|
-
*
|
|
4820
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4709
4821
|
*/
|
|
4710
|
-
|
|
4822
|
+
en16931Profile: EN16931Profile;
|
|
4711
4823
|
|
|
4712
4824
|
/**
|
|
4713
4825
|
* Wechselkurs
|
|
4714
4826
|
*/
|
|
4715
4827
|
exchangeRate: number;
|
|
4716
4828
|
|
|
4829
|
+
/**
|
|
4830
|
+
* Ort der steuerlichen Leistungserbringung
|
|
4831
|
+
*/
|
|
4832
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
4833
|
+
|
|
4717
4834
|
/**
|
|
4718
4835
|
* Zusätzliche Infos zu Entscheidungen im Belegkontext
|
|
4719
4836
|
*/
|
|
@@ -4750,14 +4867,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4750
4867
|
dropShipping: boolean;
|
|
4751
4868
|
|
|
4752
4869
|
/**
|
|
4753
|
-
*
|
|
4870
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4754
4871
|
*/
|
|
4755
|
-
|
|
4872
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4756
4873
|
|
|
4757
4874
|
/**
|
|
4758
|
-
*
|
|
4875
|
+
* Gesamtpreis netto
|
|
4759
4876
|
*/
|
|
4760
|
-
|
|
4877
|
+
totalNetPrice: number;
|
|
4761
4878
|
|
|
4762
4879
|
/**
|
|
4763
4880
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4800,14 +4917,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4800
4917
|
documentTypeCategory: DocumentCategory;
|
|
4801
4918
|
|
|
4802
4919
|
/**
|
|
4803
|
-
*
|
|
4920
|
+
* Importmodus des Belegs
|
|
4804
4921
|
*/
|
|
4805
|
-
|
|
4922
|
+
importType: DocumentImportType;
|
|
4806
4923
|
|
|
4807
4924
|
/**
|
|
4808
|
-
*
|
|
4925
|
+
* Gesamtgewicht wurde manuell gesetzt
|
|
4809
4926
|
*/
|
|
4810
|
-
|
|
4927
|
+
userDefinedWeight: boolean;
|
|
4811
4928
|
|
|
4812
4929
|
/**
|
|
4813
4930
|
* Referenz zum zugeordneten Vertriebskanal
|
|
@@ -4864,6 +4981,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4864
4981
|
*/
|
|
4865
4982
|
customerNumber: string;
|
|
4866
4983
|
|
|
4984
|
+
/**
|
|
4985
|
+
* Versandkostenpositionen
|
|
4986
|
+
*/
|
|
4987
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4988
|
+
|
|
4867
4989
|
/**
|
|
4868
4990
|
* Statusinstanz des Belegs
|
|
4869
4991
|
*/
|
|
@@ -4874,16 +4996,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4874
4996
|
*/
|
|
4875
4997
|
taxIdentificationNumber: string;
|
|
4876
4998
|
|
|
4877
|
-
/**
|
|
4878
|
-
* Versandkostenpositionen
|
|
4879
|
-
*/
|
|
4880
|
-
shippingCosts: Array<DocumentShippingCost>;
|
|
4881
|
-
|
|
4882
|
-
/**
|
|
4883
|
-
* Rückgeld
|
|
4884
|
-
*/
|
|
4885
|
-
posReceiptChangeAmount: number;
|
|
4886
|
-
|
|
4887
4999
|
/**
|
|
4888
5000
|
* Referenz auf Lieferbedingung
|
|
4889
5001
|
*/
|
|
@@ -4896,6 +5008,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4896
5008
|
*/
|
|
4897
5009
|
posReceiptBalanced: boolean;
|
|
4898
5010
|
|
|
5011
|
+
/**
|
|
5012
|
+
* Rückgeld
|
|
5013
|
+
*/
|
|
5014
|
+
posReceiptChangeAmount: number;
|
|
5015
|
+
|
|
4899
5016
|
/**
|
|
4900
5017
|
* Gesamtbruttogewicht
|
|
4901
5018
|
*/
|
|
@@ -4917,14 +5034,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
5034
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
5035
|
|
|
4919
5036
|
/**
|
|
4920
|
-
*
|
|
5037
|
+
* Rechnungsadresse
|
|
4921
5038
|
*/
|
|
4922
|
-
|
|
5039
|
+
billingAddress: DocumentAddress;
|
|
4923
5040
|
|
|
4924
5041
|
/**
|
|
4925
|
-
*
|
|
5042
|
+
* Status der USt-ID-Prüfung
|
|
4926
5043
|
*/
|
|
4927
|
-
|
|
5044
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4928
5045
|
|
|
4929
5046
|
/**
|
|
4930
5047
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -4944,6 +5061,11 @@ export interface DocumentAdditionalInfo {
|
|
|
4944
5061
|
*/
|
|
4945
5062
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4946
5063
|
|
|
5064
|
+
/**
|
|
5065
|
+
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
5066
|
+
*/
|
|
5067
|
+
roundingMode: DocumentRounding;
|
|
5068
|
+
|
|
4947
5069
|
/**
|
|
4948
5070
|
* Herkunft der Sprache
|
|
4949
5071
|
*/
|
|
@@ -4954,11 +5076,6 @@ export interface DocumentAdditionalInfo {
|
|
|
4954
5076
|
*/
|
|
4955
5077
|
contextParameters: Array<AdditionalParameter>;
|
|
4956
5078
|
|
|
4957
|
-
/**
|
|
4958
|
-
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
4959
|
-
*/
|
|
4960
|
-
roundingMode: DocumentRounding;
|
|
4961
|
-
|
|
4962
5079
|
/**
|
|
4963
5080
|
* Herkunft der Käufer-Referenz
|
|
4964
5081
|
*/
|
|
@@ -5072,14 +5189,14 @@ export interface DocumentAddress {
|
|
|
5072
5189
|
postOfficeBox: string;
|
|
5073
5190
|
|
|
5074
5191
|
/**
|
|
5075
|
-
*
|
|
5192
|
+
* country code IsoAlpha3
|
|
5076
5193
|
*/
|
|
5077
|
-
|
|
5194
|
+
countryCode: string;
|
|
5078
5195
|
|
|
5079
5196
|
/**
|
|
5080
|
-
*
|
|
5197
|
+
* Street
|
|
5081
5198
|
*/
|
|
5082
|
-
|
|
5199
|
+
street: string;
|
|
5083
5200
|
|
|
5084
5201
|
/**
|
|
5085
5202
|
* Unique identifier of the Object
|
|
@@ -5097,14 +5214,14 @@ export interface DocumentAddress {
|
|
|
5097
5214
|
info: MetaInfo;
|
|
5098
5215
|
|
|
5099
5216
|
/**
|
|
5100
|
-
*
|
|
5217
|
+
* GLN
|
|
5101
5218
|
*/
|
|
5102
|
-
|
|
5219
|
+
globalLocationNumber: string;
|
|
5103
5220
|
|
|
5104
5221
|
/**
|
|
5105
|
-
*
|
|
5222
|
+
* Lieferart
|
|
5106
5223
|
*/
|
|
5107
|
-
|
|
5224
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5108
5225
|
|
|
5109
5226
|
/**
|
|
5110
5227
|
* Postcode
|
|
@@ -5287,14 +5404,14 @@ export interface DocumentContractDetail {
|
|
|
5287
5404
|
runtimeToDate: ScriptingDate;
|
|
5288
5405
|
|
|
5289
5406
|
/**
|
|
5290
|
-
*
|
|
5407
|
+
* Nächste Fälligkeit
|
|
5291
5408
|
*/
|
|
5292
|
-
|
|
5409
|
+
nextDueDate: ScriptingDate;
|
|
5293
5410
|
|
|
5294
5411
|
/**
|
|
5295
|
-
*
|
|
5412
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5296
5413
|
*/
|
|
5297
|
-
|
|
5414
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5298
5415
|
|
|
5299
5416
|
/**
|
|
5300
5417
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5423,14 +5540,14 @@ export interface DocumentFinanceBooking {
|
|
|
5423
5540
|
description: string;
|
|
5424
5541
|
|
|
5425
5542
|
/**
|
|
5426
|
-
*
|
|
5543
|
+
* Kommentar
|
|
5427
5544
|
*/
|
|
5428
|
-
|
|
5545
|
+
comment: string;
|
|
5429
5546
|
|
|
5430
5547
|
/**
|
|
5431
|
-
*
|
|
5548
|
+
* Buchungsschlüssel
|
|
5432
5549
|
*/
|
|
5433
|
-
|
|
5550
|
+
transactionKey: string;
|
|
5434
5551
|
|
|
5435
5552
|
/**
|
|
5436
5553
|
* Unique identifier of the Object
|
|
@@ -5495,14 +5612,14 @@ export interface DocumentLine {
|
|
|
5495
5612
|
number: string;
|
|
5496
5613
|
|
|
5497
5614
|
/**
|
|
5498
|
-
*
|
|
5615
|
+
* Referenz zur Kundenauftragszeile
|
|
5499
5616
|
*/
|
|
5500
|
-
|
|
5617
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5501
5618
|
|
|
5502
5619
|
/**
|
|
5503
|
-
*
|
|
5620
|
+
* Gesamtbruttogewicht
|
|
5504
5621
|
*/
|
|
5505
|
-
|
|
5622
|
+
totalGrossWeight: number;
|
|
5506
5623
|
|
|
5507
5624
|
/**
|
|
5508
5625
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5560,14 +5677,14 @@ export interface DocumentLine {
|
|
|
5560
5677
|
positionOfArticleLine: number;
|
|
5561
5678
|
|
|
5562
5679
|
/**
|
|
5563
|
-
*
|
|
5680
|
+
* Preiseinheit
|
|
5564
5681
|
*/
|
|
5565
|
-
|
|
5682
|
+
priceUnit: number;
|
|
5566
5683
|
|
|
5567
5684
|
/**
|
|
5568
|
-
*
|
|
5685
|
+
* Steuerschema
|
|
5569
5686
|
*/
|
|
5570
|
-
|
|
5687
|
+
taxSchemaRef: ApiObjectReference;
|
|
5571
5688
|
|
|
5572
5689
|
/**
|
|
5573
5690
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5665,9 +5782,9 @@ export interface DocumentLine {
|
|
|
5665
5782
|
settledOpenItemDiscountAmount: number;
|
|
5666
5783
|
|
|
5667
5784
|
/**
|
|
5668
|
-
*
|
|
5785
|
+
* Einheit Nettogewicht
|
|
5669
5786
|
*/
|
|
5670
|
-
|
|
5787
|
+
netWeightUnit: UnitTypeReference;
|
|
5671
5788
|
|
|
5672
5789
|
/**
|
|
5673
5790
|
* Nettoverkaufswert der Position in Basiswährung
|
|
@@ -5675,9 +5792,9 @@ export interface DocumentLine {
|
|
|
5675
5792
|
baseSalesValueNet: number;
|
|
5676
5793
|
|
|
5677
5794
|
/**
|
|
5678
|
-
*
|
|
5795
|
+
* Vertragsinformationen
|
|
5679
5796
|
*/
|
|
5680
|
-
|
|
5797
|
+
contractDetail: DocumentContractDetail;
|
|
5681
5798
|
|
|
5682
5799
|
/**
|
|
5683
5800
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
@@ -5720,9 +5837,9 @@ export interface DocumentLine {
|
|
|
5720
5837
|
settledOpenItemPaymentDueDate: ScriptingDate;
|
|
5721
5838
|
|
|
5722
5839
|
/**
|
|
5723
|
-
*
|
|
5840
|
+
* Land der Herkunft
|
|
5724
5841
|
*/
|
|
5725
|
-
|
|
5842
|
+
country: CountryReference;
|
|
5726
5843
|
|
|
5727
5844
|
/**
|
|
5728
5845
|
* Zolltarifnummer
|
|
@@ -5730,9 +5847,9 @@ export interface DocumentLine {
|
|
|
5730
5847
|
customsTariffNumber: string;
|
|
5731
5848
|
|
|
5732
5849
|
/**
|
|
5733
|
-
*
|
|
5850
|
+
* Leistungsdatum
|
|
5734
5851
|
*/
|
|
5735
|
-
|
|
5852
|
+
performanceDate: ScriptingDate;
|
|
5736
5853
|
|
|
5737
5854
|
/**
|
|
5738
5855
|
* wurde aufgelöst in Gebindeartikel
|
|
@@ -5810,14 +5927,14 @@ export interface DocumentLine {
|
|
|
5810
5927
|
countryRegion: ApiObjectReference;
|
|
5811
5928
|
|
|
5812
5929
|
/**
|
|
5813
|
-
*
|
|
5930
|
+
* Nettogewicht
|
|
5814
5931
|
*/
|
|
5815
|
-
|
|
5932
|
+
netWeight: number;
|
|
5816
5933
|
|
|
5817
5934
|
/**
|
|
5818
|
-
*
|
|
5935
|
+
* Provisionsursprung
|
|
5819
5936
|
*/
|
|
5820
|
-
|
|
5937
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5821
5938
|
|
|
5822
5939
|
/**
|
|
5823
5940
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -5870,14 +5987,14 @@ export interface DocumentLine {
|
|
|
5870
5987
|
description: string;
|
|
5871
5988
|
|
|
5872
5989
|
/**
|
|
5873
|
-
*
|
|
5990
|
+
* Preisherkunft
|
|
5874
5991
|
*/
|
|
5875
|
-
|
|
5992
|
+
priceOrigin: ProductPriceOrigin;
|
|
5876
5993
|
|
|
5877
5994
|
/**
|
|
5878
|
-
*
|
|
5995
|
+
* Referenz zum Lager
|
|
5879
5996
|
*/
|
|
5880
|
-
|
|
5997
|
+
storage: ApiObjectReference;
|
|
5881
5998
|
|
|
5882
5999
|
/**
|
|
5883
6000
|
* Rohertragsermittlung
|
|
@@ -6081,14 +6198,14 @@ export interface DocumentLineCommission {
|
|
|
6081
6198
|
id: number;
|
|
6082
6199
|
|
|
6083
6200
|
/**
|
|
6084
|
-
*
|
|
6201
|
+
* Provision Prozent/Wert
|
|
6085
6202
|
*/
|
|
6086
|
-
|
|
6203
|
+
value: number;
|
|
6087
6204
|
|
|
6088
6205
|
/**
|
|
6089
|
-
*
|
|
6206
|
+
* Vertreter
|
|
6090
6207
|
*/
|
|
6091
|
-
|
|
6208
|
+
salesAgentAccountRef: ApiObjectReference;
|
|
6092
6209
|
|
|
6093
6210
|
/**
|
|
6094
6211
|
* Version Identifier for this Object (for PUT)
|
|
@@ -6113,26 +6230,26 @@ export interface DocumentLineComponent {
|
|
|
6113
6230
|
*/
|
|
6114
6231
|
pickingQuantity: number;
|
|
6115
6232
|
|
|
6116
|
-
/**
|
|
6117
|
-
* Produktionsdetails
|
|
6118
|
-
*/
|
|
6119
|
-
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6120
|
-
|
|
6121
6233
|
/**
|
|
6122
6234
|
* Freifelder
|
|
6123
6235
|
*/
|
|
6124
6236
|
custom: EavDocumentlinecomponent;
|
|
6125
6237
|
|
|
6126
6238
|
/**
|
|
6127
|
-
*
|
|
6239
|
+
* Produktionsdetails
|
|
6128
6240
|
*/
|
|
6129
|
-
|
|
6241
|
+
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6130
6242
|
|
|
6131
6243
|
/**
|
|
6132
6244
|
* Referenz auf den Artikel der Komponente
|
|
6133
6245
|
*/
|
|
6134
6246
|
articleId: number;
|
|
6135
6247
|
|
|
6248
|
+
/**
|
|
6249
|
+
* Gelieferte Menge
|
|
6250
|
+
*/
|
|
6251
|
+
quantityCommitted: number;
|
|
6252
|
+
|
|
6136
6253
|
/**
|
|
6137
6254
|
* Beschreibung des Artikels
|
|
6138
6255
|
*/
|
|
@@ -6250,14 +6367,14 @@ export interface DocumentLineFabricationBookedComponent {
|
|
|
6250
6367
|
quantity: number;
|
|
6251
6368
|
|
|
6252
6369
|
/**
|
|
6253
|
-
*
|
|
6370
|
+
* Name des Artikels
|
|
6254
6371
|
*/
|
|
6255
|
-
|
|
6372
|
+
name: string;
|
|
6256
6373
|
|
|
6257
6374
|
/**
|
|
6258
|
-
*
|
|
6375
|
+
* ID des Artikels
|
|
6259
6376
|
*/
|
|
6260
|
-
|
|
6377
|
+
articleId: number;
|
|
6261
6378
|
|
|
6262
6379
|
/**
|
|
6263
6380
|
* Beschreibung des Artikels
|
|
@@ -6273,14 +6390,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6273
6390
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6274
6391
|
|
|
6275
6392
|
/**
|
|
6276
|
-
*
|
|
6393
|
+
* Menge
|
|
6277
6394
|
*/
|
|
6278
|
-
|
|
6395
|
+
quantity: number;
|
|
6279
6396
|
|
|
6280
6397
|
/**
|
|
6281
|
-
*
|
|
6398
|
+
* Abweichende Herstellungskosten
|
|
6282
6399
|
*/
|
|
6283
|
-
|
|
6400
|
+
deviatingUnitPrice: number;
|
|
6284
6401
|
|
|
6285
6402
|
/**
|
|
6286
6403
|
* Beschreibung
|
|
@@ -6341,14 +6458,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6341
6458
|
quantityDefective: number;
|
|
6342
6459
|
|
|
6343
6460
|
/**
|
|
6344
|
-
*
|
|
6461
|
+
* Freifeld
|
|
6345
6462
|
*/
|
|
6346
|
-
|
|
6463
|
+
custom: EavFabricationline;
|
|
6347
6464
|
|
|
6348
6465
|
/**
|
|
6349
|
-
*
|
|
6466
|
+
* Produzierte Seriennummern
|
|
6350
6467
|
*/
|
|
6351
|
-
|
|
6468
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6352
6469
|
|
|
6353
6470
|
/**
|
|
6354
6471
|
* Menge produziert
|
|
@@ -6442,14 +6559,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6559
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6560
|
|
|
6444
6561
|
/**
|
|
6445
|
-
*
|
|
6562
|
+
* Typ der Einlage/Ausgabe
|
|
6446
6563
|
*/
|
|
6447
|
-
|
|
6564
|
+
depositExpenseTypeId: number;
|
|
6448
6565
|
|
|
6449
6566
|
/**
|
|
6450
|
-
*
|
|
6567
|
+
* Status der externen Zahlung
|
|
6451
6568
|
*/
|
|
6452
|
-
|
|
6569
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6453
6570
|
|
|
6454
6571
|
/**
|
|
6455
6572
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6519,26 +6636,26 @@ export interface DocumentLineRef {
|
|
|
6519
6636
|
*/
|
|
6520
6637
|
quantity: number;
|
|
6521
6638
|
|
|
6522
|
-
/**
|
|
6523
|
-
* Belegart
|
|
6524
|
-
*/
|
|
6525
|
-
documentType: string;
|
|
6526
|
-
|
|
6527
6639
|
/**
|
|
6528
6640
|
* Artikelnummer
|
|
6529
6641
|
*/
|
|
6530
6642
|
articleNumber: string;
|
|
6531
6643
|
|
|
6532
6644
|
/**
|
|
6533
|
-
*
|
|
6645
|
+
* Belegart
|
|
6534
6646
|
*/
|
|
6535
|
-
|
|
6647
|
+
documentType: string;
|
|
6536
6648
|
|
|
6537
6649
|
/**
|
|
6538
6650
|
* Kurzbezeichnung des Kunden
|
|
6539
6651
|
*/
|
|
6540
6652
|
displayName: string;
|
|
6541
6653
|
|
|
6654
|
+
/**
|
|
6655
|
+
* price per quantity [GROSS, NET]
|
|
6656
|
+
*/
|
|
6657
|
+
price: number;
|
|
6658
|
+
|
|
6542
6659
|
/**
|
|
6543
6660
|
* Artikelbezeichnung
|
|
6544
6661
|
*/
|
|
@@ -6979,14 +7096,14 @@ export interface DocumentShippingCost {
|
|
|
6979
7096
|
manualCosts: boolean;
|
|
6980
7097
|
|
|
6981
7098
|
/**
|
|
6982
|
-
*
|
|
7099
|
+
* Keine Versandkosten (freier Versand)
|
|
6983
7100
|
*/
|
|
6984
|
-
|
|
7101
|
+
freeShipping: boolean;
|
|
6985
7102
|
|
|
6986
7103
|
/**
|
|
6987
|
-
*
|
|
7104
|
+
* Texte
|
|
6988
7105
|
*/
|
|
6989
|
-
|
|
7106
|
+
texts: Array<DocumentText>;
|
|
6990
7107
|
|
|
6991
7108
|
/**
|
|
6992
7109
|
* skontierbar
|
|
@@ -7094,14 +7211,14 @@ export interface DocumentText {
|
|
|
7094
7211
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7212
|
|
|
7096
7213
|
/**
|
|
7097
|
-
*
|
|
7214
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7098
7215
|
*/
|
|
7099
|
-
|
|
7216
|
+
deleted: boolean;
|
|
7100
7217
|
|
|
7101
7218
|
/**
|
|
7102
|
-
*
|
|
7219
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7103
7220
|
*/
|
|
7104
|
-
|
|
7221
|
+
textPosition: TextPosition;
|
|
7105
7222
|
|
|
7106
7223
|
/**
|
|
7107
7224
|
* textBaustein Vorlage
|
|
@@ -7173,14 +7290,14 @@ export interface DocumentTransferToTypeRequest {
|
|
|
7173
7290
|
documentId: number;
|
|
7174
7291
|
|
|
7175
7292
|
/**
|
|
7176
|
-
*
|
|
7293
|
+
* Zusätzliche Parameter
|
|
7177
7294
|
*/
|
|
7178
|
-
|
|
7295
|
+
parameters: Array<AdditionalParameter>;
|
|
7179
7296
|
|
|
7180
7297
|
/**
|
|
7181
|
-
*
|
|
7298
|
+
* Soll der Beleg kopiert werden? (Standard: nein)
|
|
7182
7299
|
*/
|
|
7183
|
-
|
|
7300
|
+
copyDocument: boolean;
|
|
7184
7301
|
}
|
|
7185
7302
|
|
|
7186
7303
|
export interface DocumentType {
|
|
@@ -7418,26 +7535,26 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7418
7535
|
*/
|
|
7419
7536
|
bookDate: ScriptingDate;
|
|
7420
7537
|
|
|
7421
|
-
/**
|
|
7422
|
-
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7423
|
-
*/
|
|
7424
|
-
targetExpiryDate: ScriptingDate;
|
|
7425
|
-
|
|
7426
7538
|
/**
|
|
7427
7539
|
* Die gültige Seriennummer
|
|
7428
7540
|
*/
|
|
7429
7541
|
targetSerialNumber: string;
|
|
7430
7542
|
|
|
7431
7543
|
/**
|
|
7432
|
-
*
|
|
7544
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7433
7545
|
*/
|
|
7434
|
-
|
|
7546
|
+
targetExpiryDate: ScriptingDate;
|
|
7435
7547
|
|
|
7436
7548
|
/**
|
|
7437
7549
|
* Menge
|
|
7438
7550
|
*/
|
|
7439
7551
|
quantity: number;
|
|
7440
7552
|
|
|
7553
|
+
/**
|
|
7554
|
+
* Quell-Lagerplatz
|
|
7555
|
+
*/
|
|
7556
|
+
sourceStorageBinId: number;
|
|
7557
|
+
|
|
7441
7558
|
/**
|
|
7442
7559
|
* Quell-Lager
|
|
7443
7560
|
*/
|
|
@@ -7677,14 +7794,14 @@ export interface ExternalDocumentWithTaxesLine {
|
|
|
7677
7794
|
quantity: number;
|
|
7678
7795
|
|
|
7679
7796
|
/**
|
|
7680
|
-
*
|
|
7797
|
+
* Zeilen-Netto
|
|
7681
7798
|
*/
|
|
7682
|
-
|
|
7799
|
+
netAmount: number;
|
|
7683
7800
|
|
|
7684
7801
|
/**
|
|
7685
|
-
*
|
|
7802
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7686
7803
|
*/
|
|
7687
|
-
|
|
7804
|
+
taxValue: number;
|
|
7688
7805
|
|
|
7689
7806
|
/**
|
|
7690
7807
|
* Netto-Einzelpreis
|
|
@@ -7743,14 +7860,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7743
7860
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7744
7861
|
|
|
7745
7862
|
/**
|
|
7746
|
-
*
|
|
7863
|
+
* Key der Belegart
|
|
7747
7864
|
*/
|
|
7748
|
-
|
|
7865
|
+
documentTypeKey: string;
|
|
7749
7866
|
|
|
7750
7867
|
/**
|
|
7751
|
-
*
|
|
7868
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7752
7869
|
*/
|
|
7753
|
-
|
|
7870
|
+
taxIdentificationNumber: string;
|
|
7754
7871
|
}
|
|
7755
7872
|
|
|
7756
7873
|
export interface FabricationComponentForProduction {
|
|
@@ -7804,14 +7921,14 @@ export const enum FabricationOfComponents {
|
|
|
7804
7921
|
export interface FabricationProduceRequest {
|
|
7805
7922
|
|
|
7806
7923
|
/**
|
|
7807
|
-
*
|
|
7924
|
+
* Zu produzierende Menge
|
|
7808
7925
|
*/
|
|
7809
|
-
|
|
7926
|
+
quantity: number;
|
|
7810
7927
|
|
|
7811
7928
|
/**
|
|
7812
|
-
*
|
|
7929
|
+
* Material automatisch bestätigen
|
|
7813
7930
|
*/
|
|
7814
|
-
|
|
7931
|
+
autoCommitComponents: boolean;
|
|
7815
7932
|
|
|
7816
7933
|
/**
|
|
7817
7934
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8112,14 +8229,14 @@ export interface OpenItem {
|
|
|
8112
8229
|
baseSumTotalAmount: number;
|
|
8113
8230
|
|
|
8114
8231
|
/**
|
|
8115
|
-
*
|
|
8232
|
+
* OP-Nummer
|
|
8116
8233
|
*/
|
|
8117
|
-
|
|
8234
|
+
number: string;
|
|
8118
8235
|
|
|
8119
8236
|
/**
|
|
8120
|
-
*
|
|
8237
|
+
* The kind of payment
|
|
8121
8238
|
*/
|
|
8122
|
-
|
|
8239
|
+
paymentKind: OpenItem$OpenItemPaymentKind;
|
|
8123
8240
|
|
|
8124
8241
|
/**
|
|
8125
8242
|
* saldo
|
|
@@ -8127,14 +8244,14 @@ export interface OpenItem {
|
|
|
8127
8244
|
balance: number;
|
|
8128
8245
|
|
|
8129
8246
|
/**
|
|
8130
|
-
*
|
|
8247
|
+
* Kurs der Währung zu Basiswährung
|
|
8131
8248
|
*/
|
|
8132
|
-
|
|
8249
|
+
exchangeRate: number;
|
|
8133
8250
|
|
|
8134
8251
|
/**
|
|
8135
|
-
*
|
|
8252
|
+
* Steuersachverhalt Leistungserbringung (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8136
8253
|
*/
|
|
8137
|
-
|
|
8254
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
8138
8255
|
|
|
8139
8256
|
/**
|
|
8140
8257
|
* Die Mahnstufe
|
|
@@ -8216,26 +8333,26 @@ export interface OpenItem {
|
|
|
8216
8333
|
*/
|
|
8217
8334
|
paymentDueDate: ScriptingDate;
|
|
8218
8335
|
|
|
8219
|
-
/**
|
|
8220
|
-
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8221
|
-
*/
|
|
8222
|
-
sourceCountryCode: string;
|
|
8223
|
-
|
|
8224
8336
|
/**
|
|
8225
8337
|
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8226
8338
|
*/
|
|
8227
8339
|
performanceCountryCode: string;
|
|
8228
8340
|
|
|
8229
8341
|
/**
|
|
8230
|
-
*
|
|
8342
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8231
8343
|
*/
|
|
8232
|
-
|
|
8344
|
+
sourceCountryCode: string;
|
|
8233
8345
|
|
|
8234
8346
|
/**
|
|
8235
8347
|
* Valutadatum schreibgeschützt
|
|
8236
8348
|
*/
|
|
8237
8349
|
valueDateReadOnly: boolean;
|
|
8238
8350
|
|
|
8351
|
+
/**
|
|
8352
|
+
* agreed Deposit payment date
|
|
8353
|
+
*/
|
|
8354
|
+
depositPaymentDate: ScriptingDate;
|
|
8355
|
+
|
|
8239
8356
|
/**
|
|
8240
8357
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8241
8358
|
*/
|
|
@@ -8272,14 +8389,14 @@ export interface OpenItem {
|
|
|
8272
8389
|
depositPaymentAmount: number;
|
|
8273
8390
|
|
|
8274
8391
|
/**
|
|
8275
|
-
*
|
|
8392
|
+
* Verwendungszweck
|
|
8276
8393
|
*/
|
|
8277
|
-
|
|
8394
|
+
purpose: string;
|
|
8278
8395
|
|
|
8279
8396
|
/**
|
|
8280
|
-
*
|
|
8397
|
+
* free payments
|
|
8281
8398
|
*/
|
|
8282
|
-
|
|
8399
|
+
records: Array<OpenItemRecord>;
|
|
8283
8400
|
|
|
8284
8401
|
/**
|
|
8285
8402
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8302,14 +8419,14 @@ export interface OpenItem {
|
|
|
8302
8419
|
paymentAmount: number;
|
|
8303
8420
|
|
|
8304
8421
|
/**
|
|
8305
|
-
*
|
|
8422
|
+
* how should a refund be done?
|
|
8306
8423
|
*/
|
|
8307
|
-
|
|
8424
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8308
8425
|
|
|
8309
8426
|
/**
|
|
8310
|
-
*
|
|
8427
|
+
* Rechnungskorrektur
|
|
8311
8428
|
*/
|
|
8312
|
-
|
|
8429
|
+
creditNote: ApiObjectReference;
|
|
8313
8430
|
|
|
8314
8431
|
/**
|
|
8315
8432
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8332,14 +8449,14 @@ export interface OpenItem {
|
|
|
8332
8449
|
sumFee: number;
|
|
8333
8450
|
|
|
8334
8451
|
/**
|
|
8335
|
-
*
|
|
8452
|
+
* Zahlungsplan
|
|
8336
8453
|
*/
|
|
8337
|
-
|
|
8454
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8338
8455
|
|
|
8339
8456
|
/**
|
|
8340
|
-
*
|
|
8457
|
+
* The full amount of the payment
|
|
8341
8458
|
*/
|
|
8342
|
-
|
|
8459
|
+
fullPaymentAmount: number;
|
|
8343
8460
|
|
|
8344
8461
|
/**
|
|
8345
8462
|
* Zahlungssperre
|
|
@@ -8352,14 +8469,14 @@ export interface OpenItem {
|
|
|
8352
8469
|
originalPaymentDueDate: ScriptingDate;
|
|
8353
8470
|
|
|
8354
8471
|
/**
|
|
8355
|
-
*
|
|
8472
|
+
* whether this open item is balanced, partially paid or open
|
|
8356
8473
|
*/
|
|
8357
|
-
|
|
8474
|
+
balanceState: OpenItemBalanceState;
|
|
8358
8475
|
|
|
8359
8476
|
/**
|
|
8360
|
-
*
|
|
8477
|
+
* Valutadatum
|
|
8361
8478
|
*/
|
|
8362
|
-
|
|
8479
|
+
valueDate: ScriptingDate;
|
|
8363
8480
|
|
|
8364
8481
|
/**
|
|
8365
8482
|
* Skontobetrag 1
|
|
@@ -8372,14 +8489,14 @@ export interface OpenItem {
|
|
|
8372
8489
|
baseSumDiscount: number;
|
|
8373
8490
|
|
|
8374
8491
|
/**
|
|
8375
|
-
*
|
|
8492
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8376
8493
|
*/
|
|
8377
|
-
|
|
8494
|
+
baseSumDunnings: number;
|
|
8378
8495
|
|
|
8379
8496
|
/**
|
|
8380
|
-
*
|
|
8497
|
+
* Zahlungsvorlage
|
|
8381
8498
|
*/
|
|
8382
|
-
|
|
8499
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8383
8500
|
|
|
8384
8501
|
/**
|
|
8385
8502
|
* Rechnungsbetrag
|
|
@@ -8470,14 +8587,14 @@ export const enum OpenItemDunningState {
|
|
|
8470
8587
|
export interface OpenItemPaymentPlan {
|
|
8471
8588
|
|
|
8472
8589
|
/**
|
|
8473
|
-
*
|
|
8590
|
+
* Betrag
|
|
8474
8591
|
*/
|
|
8475
|
-
|
|
8592
|
+
amount: number;
|
|
8476
8593
|
|
|
8477
8594
|
/**
|
|
8478
|
-
*
|
|
8595
|
+
* Fälligkeitsregel
|
|
8479
8596
|
*/
|
|
8480
|
-
|
|
8597
|
+
dueDateCalculation: string;
|
|
8481
8598
|
|
|
8482
8599
|
/**
|
|
8483
8600
|
* Enddatum
|
|
@@ -8489,11 +8606,6 @@ export interface OpenItemPaymentPlan {
|
|
|
8489
8606
|
*/
|
|
8490
8607
|
dueDate: ScriptingDate;
|
|
8491
8608
|
|
|
8492
|
-
/**
|
|
8493
|
-
* Zahlungsplantyp
|
|
8494
|
-
*/
|
|
8495
|
-
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
8496
|
-
|
|
8497
8609
|
/**
|
|
8498
8610
|
* Aktiv
|
|
8499
8611
|
*/
|
|
@@ -8504,6 +8616,11 @@ export interface OpenItemPaymentPlan {
|
|
|
8504
8616
|
*/
|
|
8505
8617
|
description: string;
|
|
8506
8618
|
|
|
8619
|
+
/**
|
|
8620
|
+
* Zahlungsplantyp
|
|
8621
|
+
*/
|
|
8622
|
+
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
8623
|
+
|
|
8507
8624
|
/**
|
|
8508
8625
|
* Version Identifier for this Object (for PUT)
|
|
8509
8626
|
*/
|
|
@@ -8595,14 +8712,14 @@ export interface OpenItemRecord {
|
|
|
8595
8712
|
recordReferenceNumber: string;
|
|
8596
8713
|
|
|
8597
8714
|
/**
|
|
8598
|
-
*
|
|
8715
|
+
* Eine Vorgangsnummer die zur Buchung führte
|
|
8599
8716
|
*/
|
|
8600
|
-
|
|
8717
|
+
number: string;
|
|
8601
8718
|
|
|
8602
8719
|
/**
|
|
8603
|
-
*
|
|
8720
|
+
* ref to the financialBookingRecord
|
|
8604
8721
|
*/
|
|
8605
|
-
|
|
8722
|
+
bookingRecordId: number;
|
|
8606
8723
|
|
|
8607
8724
|
/**
|
|
8608
8725
|
* revertable
|
|
@@ -8615,14 +8732,14 @@ export interface OpenItemRecord {
|
|
|
8615
8732
|
exchangeRate: number;
|
|
8616
8733
|
|
|
8617
8734
|
/**
|
|
8618
|
-
*
|
|
8735
|
+
* record discountable amount
|
|
8619
8736
|
*/
|
|
8620
|
-
|
|
8737
|
+
discountableAmount: number;
|
|
8621
8738
|
|
|
8622
8739
|
/**
|
|
8623
|
-
*
|
|
8740
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8624
8741
|
*/
|
|
8625
|
-
|
|
8742
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8626
8743
|
|
|
8627
8744
|
/**
|
|
8628
8745
|
* record date
|
|
@@ -8705,14 +8822,14 @@ export interface OpenItemRecord {
|
|
|
8705
8822
|
totalAmount: number;
|
|
8706
8823
|
|
|
8707
8824
|
/**
|
|
8708
|
-
*
|
|
8825
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8709
8826
|
*/
|
|
8710
|
-
|
|
8827
|
+
baseCurrencyCode: string;
|
|
8711
8828
|
|
|
8712
8829
|
/**
|
|
8713
|
-
*
|
|
8830
|
+
* id des records, der diesen storniert hat
|
|
8714
8831
|
*/
|
|
8715
|
-
|
|
8832
|
+
revertedByRecordId: number;
|
|
8716
8833
|
|
|
8717
8834
|
/**
|
|
8718
8835
|
* qualifier of open item
|
|
@@ -8725,14 +8842,14 @@ export interface OpenItemRecord {
|
|
|
8725
8842
|
paymentMethod: ApiObjectReference;
|
|
8726
8843
|
|
|
8727
8844
|
/**
|
|
8728
|
-
*
|
|
8845
|
+
* comment
|
|
8729
8846
|
*/
|
|
8730
|
-
|
|
8847
|
+
comment: string;
|
|
8731
8848
|
|
|
8732
8849
|
/**
|
|
8733
|
-
*
|
|
8850
|
+
* Geschäftsvorfall
|
|
8734
8851
|
*/
|
|
8735
|
-
|
|
8852
|
+
businessTransaction: ApiObjectReference;
|
|
8736
8853
|
|
|
8737
8854
|
/**
|
|
8738
8855
|
* Währung des offenen Postens (ISO-A3)
|
|
@@ -8860,14 +8977,14 @@ export interface PaymentMethod {
|
|
|
8860
8977
|
dunnable: boolean;
|
|
8861
8978
|
|
|
8862
8979
|
/**
|
|
8863
|
-
*
|
|
8980
|
+
* translations
|
|
8864
8981
|
*/
|
|
8865
|
-
|
|
8982
|
+
translations: Array<DocumentTypeTerm>;
|
|
8866
8983
|
|
|
8867
8984
|
/**
|
|
8868
|
-
*
|
|
8985
|
+
* Debitoren-OP abschließen?
|
|
8869
8986
|
*/
|
|
8870
|
-
|
|
8987
|
+
closeCustomerAccountType: boolean;
|
|
8871
8988
|
|
|
8872
8989
|
/**
|
|
8873
8990
|
* +Tage für Folgelastschrift
|
|
@@ -8976,14 +9093,14 @@ export interface PaymentTerm {
|
|
|
8976
9093
|
paymentDiscount1: number;
|
|
8977
9094
|
|
|
8978
9095
|
/**
|
|
8979
|
-
* for
|
|
9096
|
+
* Days for Discount 1
|
|
8980
9097
|
*/
|
|
8981
|
-
|
|
9098
|
+
paymentDays1: number;
|
|
8982
9099
|
|
|
8983
9100
|
/**
|
|
8984
|
-
*
|
|
9101
|
+
* for deposit: remaining term
|
|
8985
9102
|
*/
|
|
8986
|
-
|
|
9103
|
+
remainingTermRef: ApiObjectReference;
|
|
8987
9104
|
|
|
8988
9105
|
/**
|
|
8989
9106
|
* Days for Discount 2
|
|
@@ -9064,14 +9181,14 @@ export interface PaymentTermRef {
|
|
|
9064
9181
|
description: string;
|
|
9065
9182
|
|
|
9066
9183
|
/**
|
|
9067
|
-
*
|
|
9184
|
+
* Identifier
|
|
9068
9185
|
*/
|
|
9069
|
-
|
|
9186
|
+
id: number;
|
|
9070
9187
|
|
|
9071
9188
|
/**
|
|
9072
|
-
*
|
|
9189
|
+
* a label
|
|
9073
9190
|
*/
|
|
9074
|
-
|
|
9191
|
+
label: string;
|
|
9075
9192
|
|
|
9076
9193
|
/**
|
|
9077
9194
|
* payment type
|
|
@@ -9144,14 +9261,14 @@ export interface PickTrolley {
|
|
|
9144
9261
|
picklistTemplateRefs: Array<ApiObjectReference>;
|
|
9145
9262
|
|
|
9146
9263
|
/**
|
|
9147
|
-
*
|
|
9264
|
+
* Status des Wagens
|
|
9148
9265
|
*/
|
|
9149
|
-
|
|
9266
|
+
state: PickTrolleyState;
|
|
9150
9267
|
|
|
9151
9268
|
/**
|
|
9152
|
-
*
|
|
9269
|
+
* Wagen gehört zu dieser Pickwagen-Gruppe
|
|
9153
9270
|
*/
|
|
9154
|
-
|
|
9271
|
+
pickTrolleyGroupRef: ApiObjectReference;
|
|
9155
9272
|
|
|
9156
9273
|
/**
|
|
9157
9274
|
* Unique identifier of the Object
|
|
@@ -9187,14 +9304,14 @@ export interface PickTrolleyBox {
|
|
|
9187
9304
|
description: string;
|
|
9188
9305
|
|
|
9189
9306
|
/**
|
|
9190
|
-
*
|
|
9307
|
+
* Status der Box
|
|
9191
9308
|
*/
|
|
9192
|
-
|
|
9309
|
+
state: PickTrolleyBoxState;
|
|
9193
9310
|
|
|
9194
9311
|
/**
|
|
9195
|
-
*
|
|
9312
|
+
* Bezeichnung der Box
|
|
9196
9313
|
*/
|
|
9197
|
-
|
|
9314
|
+
label: string;
|
|
9198
9315
|
|
|
9199
9316
|
/**
|
|
9200
9317
|
* Unique identifier of the Object
|
|
@@ -9324,14 +9441,14 @@ export interface Picklist {
|
|
|
9324
9441
|
export interface PicklistLine {
|
|
9325
9442
|
|
|
9326
9443
|
/**
|
|
9327
|
-
*
|
|
9444
|
+
* Gesammelte Menge der Position
|
|
9328
9445
|
*/
|
|
9329
|
-
|
|
9446
|
+
quantityCollected: number;
|
|
9330
9447
|
|
|
9331
9448
|
/**
|
|
9332
|
-
*
|
|
9449
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9333
9450
|
*/
|
|
9334
|
-
|
|
9451
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9335
9452
|
|
|
9336
9453
|
/**
|
|
9337
9454
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9379,14 +9496,14 @@ export interface PicklistLine {
|
|
|
9379
9496
|
targetDocumentLineId: number;
|
|
9380
9497
|
|
|
9381
9498
|
/**
|
|
9382
|
-
*
|
|
9499
|
+
* Status der Position
|
|
9383
9500
|
*/
|
|
9384
|
-
|
|
9501
|
+
state: PicklistLineState;
|
|
9385
9502
|
|
|
9386
9503
|
/**
|
|
9387
|
-
*
|
|
9504
|
+
* Verpackte Menge der Position
|
|
9388
9505
|
*/
|
|
9389
|
-
|
|
9506
|
+
quantityPacked: number;
|
|
9390
9507
|
|
|
9391
9508
|
/**
|
|
9392
9509
|
* Unique identifier of the Object
|
|
@@ -9432,14 +9549,14 @@ export interface PicklistLineBooking {
|
|
|
9432
9549
|
storageBinId: number;
|
|
9433
9550
|
|
|
9434
9551
|
/**
|
|
9435
|
-
*
|
|
9552
|
+
* Status der Buchung
|
|
9436
9553
|
*/
|
|
9437
|
-
|
|
9554
|
+
state: PicklistLineBookingState;
|
|
9438
9555
|
|
|
9439
9556
|
/**
|
|
9440
|
-
*
|
|
9557
|
+
* Zu buchende Menge (verpackt)
|
|
9441
9558
|
*/
|
|
9442
|
-
|
|
9559
|
+
quantityPacked: number;
|
|
9443
9560
|
}
|
|
9444
9561
|
|
|
9445
9562
|
export const enum PicklistLineBookingState {
|
|
@@ -9510,14 +9627,14 @@ export interface PicklistLineComponent {
|
|
|
9510
9627
|
quantityPerAssemblyGroup: number;
|
|
9511
9628
|
|
|
9512
9629
|
/**
|
|
9513
|
-
*
|
|
9630
|
+
* Position der Komponente in der Baugruppe
|
|
9514
9631
|
*/
|
|
9515
|
-
|
|
9632
|
+
position: number;
|
|
9516
9633
|
|
|
9517
9634
|
/**
|
|
9518
|
-
*
|
|
9635
|
+
* Verpackte Menge der Position
|
|
9519
9636
|
*/
|
|
9520
|
-
|
|
9637
|
+
quantityPacked: number;
|
|
9521
9638
|
|
|
9522
9639
|
/**
|
|
9523
9640
|
* Unique identifier of the Object
|
|
@@ -9676,19 +9793,19 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9676
9793
|
maxArticleCountPerOrder: number;
|
|
9677
9794
|
|
|
9678
9795
|
/**
|
|
9679
|
-
*
|
|
9796
|
+
* Alternative Selektion in VQL
|
|
9680
9797
|
*/
|
|
9681
|
-
|
|
9798
|
+
alternativeSelectionInVql: string;
|
|
9682
9799
|
|
|
9683
9800
|
/**
|
|
9684
|
-
*
|
|
9801
|
+
* Maximaler Auftragswert
|
|
9685
9802
|
*/
|
|
9686
|
-
|
|
9803
|
+
maxOrderValue: number;
|
|
9687
9804
|
|
|
9688
9805
|
/**
|
|
9689
|
-
*
|
|
9806
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9690
9807
|
*/
|
|
9691
|
-
|
|
9808
|
+
maxOrderCount: number;
|
|
9692
9809
|
|
|
9693
9810
|
/**
|
|
9694
9811
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9696,9 +9813,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9696
9813
|
onlyFullDeliverableOrderLines: boolean;
|
|
9697
9814
|
|
|
9698
9815
|
/**
|
|
9699
|
-
*
|
|
9816
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9700
9817
|
*/
|
|
9701
|
-
|
|
9818
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9702
9819
|
|
|
9703
9820
|
/**
|
|
9704
9821
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9768,15 +9885,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9768
9885
|
*/
|
|
9769
9886
|
printPicklist: boolean;
|
|
9770
9887
|
|
|
9888
|
+
/**
|
|
9889
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9890
|
+
*/
|
|
9891
|
+
maxPicklistLineCount: number;
|
|
9892
|
+
|
|
9771
9893
|
/**
|
|
9772
9894
|
* Die zu verwendende Pickwagengruppe
|
|
9773
9895
|
*/
|
|
9774
9896
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9775
9897
|
|
|
9776
9898
|
/**
|
|
9777
|
-
*
|
|
9899
|
+
* Lagerplätze vorgeben
|
|
9778
9900
|
*/
|
|
9779
|
-
|
|
9901
|
+
specifyStorageBins: boolean;
|
|
9780
9902
|
|
|
9781
9903
|
/**
|
|
9782
9904
|
* Der zu verwendende Pickwagen
|
|
@@ -9789,20 +9911,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9789
9911
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9790
9912
|
|
|
9791
9913
|
/**
|
|
9792
|
-
*
|
|
9914
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9793
9915
|
*/
|
|
9794
|
-
|
|
9916
|
+
sortByRoutePosition: boolean;
|
|
9795
9917
|
|
|
9796
9918
|
/**
|
|
9797
9919
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9798
9920
|
*/
|
|
9799
9921
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
9800
9922
|
|
|
9801
|
-
/**
|
|
9802
|
-
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9803
|
-
*/
|
|
9804
|
-
sortByRoutePosition: boolean;
|
|
9805
|
-
|
|
9806
9923
|
/**
|
|
9807
9924
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9808
9925
|
*/
|
|
@@ -9821,6 +9938,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9821
9938
|
*/
|
|
9822
9939
|
autoPrintShippingLabel: boolean;
|
|
9823
9940
|
|
|
9941
|
+
/**
|
|
9942
|
+
* Ist das Überspringen von Positionen erlaubt?
|
|
9943
|
+
*/
|
|
9944
|
+
allowSkipPosition: boolean;
|
|
9945
|
+
|
|
9824
9946
|
/**
|
|
9825
9947
|
* Automatischer Abschluss nach letztem Artikel vom aktuellen Auftrag
|
|
9826
9948
|
*/
|
|
@@ -9846,25 +9968,20 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9846
9968
|
*/
|
|
9847
9969
|
alwaysShowDeliveryMethod: boolean;
|
|
9848
9970
|
|
|
9849
|
-
/**
|
|
9850
|
-
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9851
|
-
*/
|
|
9852
|
-
autoPrintDeliveryDocument: boolean;
|
|
9853
|
-
|
|
9854
9971
|
/**
|
|
9855
9972
|
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9856
9973
|
*/
|
|
9857
9974
|
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9858
9975
|
|
|
9859
9976
|
/**
|
|
9860
|
-
*
|
|
9977
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9861
9978
|
*/
|
|
9862
|
-
|
|
9979
|
+
autoPrintDeliveryDocument: boolean;
|
|
9863
9980
|
|
|
9864
9981
|
/**
|
|
9865
|
-
*
|
|
9982
|
+
* Versand-Dialog beim Abschluss zeigen
|
|
9866
9983
|
*/
|
|
9867
|
-
|
|
9984
|
+
showShippingFormOnPickingFinish: boolean;
|
|
9868
9985
|
|
|
9869
9986
|
/**
|
|
9870
9987
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
@@ -9881,6 +9998,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9881
9998
|
*/
|
|
9882
9999
|
allowFullConfirmation: boolean;
|
|
9883
10000
|
|
|
10001
|
+
/**
|
|
10002
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
10003
|
+
*/
|
|
10004
|
+
allowPickingOfServiceArticles: boolean;
|
|
10005
|
+
|
|
9884
10006
|
/**
|
|
9885
10007
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9886
10008
|
*/
|
|
@@ -9985,26 +10107,26 @@ export interface PriceSelectionCriteria {
|
|
|
9985
10107
|
*/
|
|
9986
10108
|
date: ScriptingDate;
|
|
9987
10109
|
|
|
9988
|
-
/**
|
|
9989
|
-
* Die Preisgruppe
|
|
9990
|
-
*/
|
|
9991
|
-
priceGroupId: number;
|
|
9992
|
-
|
|
9993
10110
|
/**
|
|
9994
10111
|
* Eine Menge
|
|
9995
10112
|
*/
|
|
9996
10113
|
quantity: number;
|
|
9997
10114
|
|
|
9998
10115
|
/**
|
|
9999
|
-
*
|
|
10116
|
+
* Die Preisgruppe
|
|
10000
10117
|
*/
|
|
10001
|
-
|
|
10118
|
+
priceGroupId: number;
|
|
10002
10119
|
|
|
10003
10120
|
/**
|
|
10004
10121
|
* Liste von Account-IDs
|
|
10005
10122
|
*/
|
|
10006
10123
|
accountIds: Array<number>;
|
|
10007
10124
|
|
|
10125
|
+
/**
|
|
10126
|
+
* Liste von Artikel-IDs
|
|
10127
|
+
*/
|
|
10128
|
+
articleIds: Array<number>;
|
|
10129
|
+
|
|
10008
10130
|
/**
|
|
10009
10131
|
* ein qualifier
|
|
10010
10132
|
*/
|
|
@@ -10499,14 +10621,14 @@ export interface ProductPrice {
|
|
|
10499
10621
|
qualifier: ProductPriceQualifier;
|
|
10500
10622
|
|
|
10501
10623
|
/**
|
|
10502
|
-
*
|
|
10624
|
+
* Aktionpreis
|
|
10503
10625
|
*/
|
|
10504
|
-
|
|
10626
|
+
specialOfferPrice: boolean;
|
|
10505
10627
|
|
|
10506
10628
|
/**
|
|
10507
|
-
*
|
|
10629
|
+
* Preisbasis
|
|
10508
10630
|
*/
|
|
10509
|
-
|
|
10631
|
+
priceBase: ArticlePriceBase;
|
|
10510
10632
|
|
|
10511
10633
|
/**
|
|
10512
10634
|
* Gültig bis
|
|
@@ -10624,19 +10746,19 @@ export interface RequestDocument {
|
|
|
10624
10746
|
documentDate: ScriptingDate;
|
|
10625
10747
|
|
|
10626
10748
|
/**
|
|
10627
|
-
*
|
|
10749
|
+
* ID der Kassenschublade (bei POS)
|
|
10628
10750
|
*/
|
|
10629
|
-
|
|
10751
|
+
cashDrawerId: number;
|
|
10630
10752
|
|
|
10631
10753
|
/**
|
|
10632
|
-
*
|
|
10754
|
+
* Der Anzahlungsbetrag
|
|
10633
10755
|
*/
|
|
10634
|
-
|
|
10756
|
+
depositPaymentAmount: number;
|
|
10635
10757
|
|
|
10636
10758
|
/**
|
|
10637
|
-
*
|
|
10759
|
+
* Leistungsdatum
|
|
10638
10760
|
*/
|
|
10639
|
-
|
|
10761
|
+
performanceDate: ScriptingDate;
|
|
10640
10762
|
|
|
10641
10763
|
/**
|
|
10642
10764
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10724,14 +10846,14 @@ export interface RequestDocument {
|
|
|
10724
10846
|
supplierAccountId: number;
|
|
10725
10847
|
|
|
10726
10848
|
/**
|
|
10727
|
-
*
|
|
10849
|
+
* Schema Freifelder
|
|
10728
10850
|
*/
|
|
10729
|
-
|
|
10851
|
+
custom: EavDocument;
|
|
10730
10852
|
|
|
10731
10853
|
/**
|
|
10732
|
-
*
|
|
10854
|
+
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10733
10855
|
*/
|
|
10734
|
-
|
|
10856
|
+
dropShipping: boolean;
|
|
10735
10857
|
|
|
10736
10858
|
/**
|
|
10737
10859
|
* target document type for document copy
|
|
@@ -10812,14 +10934,14 @@ export interface RequestDocumentLine {
|
|
|
10812
10934
|
description: string;
|
|
10813
10935
|
|
|
10814
10936
|
/**
|
|
10815
|
-
*
|
|
10937
|
+
* Herkunft des Preises
|
|
10816
10938
|
*/
|
|
10817
|
-
|
|
10939
|
+
priceOrigin: ProductPriceOrigin;
|
|
10818
10940
|
|
|
10819
10941
|
/**
|
|
10820
|
-
*
|
|
10942
|
+
* Quittungsdetails zur Belegposition
|
|
10821
10943
|
*/
|
|
10822
|
-
|
|
10944
|
+
posDetail: DocumentLinePosDetail;
|
|
10823
10945
|
|
|
10824
10946
|
/**
|
|
10825
10947
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10837,14 +10959,14 @@ export interface RequestDocumentLine {
|
|
|
10837
10959
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10838
10960
|
|
|
10839
10961
|
/**
|
|
10840
|
-
*
|
|
10962
|
+
* FiBu-Angaben
|
|
10841
10963
|
*/
|
|
10842
|
-
|
|
10964
|
+
financeBooking: DocumentFinanceBooking;
|
|
10843
10965
|
|
|
10844
10966
|
/**
|
|
10845
|
-
*
|
|
10967
|
+
* Typ dieser Position
|
|
10846
10968
|
*/
|
|
10847
|
-
|
|
10969
|
+
lineType: DocumentLineType;
|
|
10848
10970
|
|
|
10849
10971
|
/**
|
|
10850
10972
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10892,14 +11014,14 @@ export interface RequestDocumentLine {
|
|
|
10892
11014
|
shippingCostDetail: RequestDocumentLineShippingCostDetail;
|
|
10893
11015
|
|
|
10894
11016
|
/**
|
|
10895
|
-
*
|
|
11017
|
+
* Für interne Zwecke: Freifelder
|
|
10896
11018
|
*/
|
|
10897
|
-
|
|
11019
|
+
custom: EavDocumentline;
|
|
10898
11020
|
|
|
10899
11021
|
/**
|
|
10900
|
-
*
|
|
11022
|
+
* Details Produktionsbelegen
|
|
10901
11023
|
*/
|
|
10902
|
-
|
|
11024
|
+
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
10903
11025
|
|
|
10904
11026
|
/**
|
|
10905
11027
|
* (optional) ID des Artikels dieser Position
|
|
@@ -10941,15 +11063,20 @@ export interface RequestDocumentLine {
|
|
|
10941
11063
|
*/
|
|
10942
11064
|
texts: Array<RequestDocumentText>;
|
|
10943
11065
|
|
|
11066
|
+
/**
|
|
11067
|
+
* Artikelname
|
|
11068
|
+
*/
|
|
11069
|
+
name: string;
|
|
11070
|
+
|
|
10944
11071
|
/**
|
|
10945
11072
|
* (optional) Liste von Preismodifikatoren für diese Position
|
|
10946
11073
|
*/
|
|
10947
11074
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
10948
11075
|
|
|
10949
11076
|
/**
|
|
10950
|
-
*
|
|
11077
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10951
11078
|
*/
|
|
10952
|
-
|
|
11079
|
+
externalArticleNumber: string;
|
|
10953
11080
|
|
|
10954
11081
|
/**
|
|
10955
11082
|
* ID der Quell-Belegposition
|
|
@@ -10961,11 +11088,6 @@ export interface RequestDocumentLine {
|
|
|
10961
11088
|
*/
|
|
10962
11089
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10963
11090
|
|
|
10964
|
-
/**
|
|
10965
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
10966
|
-
*/
|
|
10967
|
-
externalArticleNumber: string;
|
|
10968
|
-
|
|
10969
11091
|
/**
|
|
10970
11092
|
* Zu der Zeile Etikettendruck anstoßen
|
|
10971
11093
|
*/
|
|
@@ -11023,14 +11145,14 @@ export interface RequestDocumentLineCommission {
|
|
|
11023
11145
|
comment: string;
|
|
11024
11146
|
|
|
11025
11147
|
/**
|
|
11026
|
-
*
|
|
11148
|
+
* Provision Prozent/Wert
|
|
11027
11149
|
*/
|
|
11028
|
-
|
|
11150
|
+
value: number;
|
|
11029
11151
|
|
|
11030
11152
|
/**
|
|
11031
|
-
*
|
|
11153
|
+
* Vertreter
|
|
11032
11154
|
*/
|
|
11033
|
-
|
|
11155
|
+
salesAgentAccountRef: Account;
|
|
11034
11156
|
}
|
|
11035
11157
|
|
|
11036
11158
|
export interface RequestDocumentLineFabricationDetail {
|
|
@@ -11111,14 +11233,14 @@ export const enum ReturnCategory {
|
|
|
11111
11233
|
export interface RevenueCalculation {
|
|
11112
11234
|
|
|
11113
11235
|
/**
|
|
11114
|
-
*
|
|
11236
|
+
* Deckungsbeitrag (absolut)
|
|
11115
11237
|
*/
|
|
11116
|
-
|
|
11238
|
+
revenue: number;
|
|
11117
11239
|
|
|
11118
11240
|
/**
|
|
11119
|
-
*
|
|
11241
|
+
* Netto Umsatz
|
|
11120
11242
|
*/
|
|
11121
|
-
|
|
11243
|
+
salesValue: number;
|
|
11122
11244
|
|
|
11123
11245
|
/**
|
|
11124
11246
|
* Einkaufspreis
|
|
@@ -11139,14 +11261,14 @@ export interface SalesAgent {
|
|
|
11139
11261
|
note: string;
|
|
11140
11262
|
|
|
11141
11263
|
/**
|
|
11142
|
-
*
|
|
11264
|
+
* is sales agent taxable
|
|
11143
11265
|
*/
|
|
11144
|
-
|
|
11266
|
+
taxable: boolean;
|
|
11145
11267
|
|
|
11146
11268
|
/**
|
|
11147
|
-
*
|
|
11269
|
+
* reference to the delivery method
|
|
11148
11270
|
*/
|
|
11149
|
-
|
|
11271
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11150
11272
|
|
|
11151
11273
|
/**
|
|
11152
11274
|
* Freifelder
|
|
@@ -11179,14 +11301,14 @@ export interface SalesAgent {
|
|
|
11179
11301
|
deliveryTermRef: ApiObjectReference;
|
|
11180
11302
|
|
|
11181
11303
|
/**
|
|
11182
|
-
*
|
|
11304
|
+
* number of sales agent
|
|
11183
11305
|
*/
|
|
11184
|
-
|
|
11306
|
+
number: string;
|
|
11185
11307
|
|
|
11186
11308
|
/**
|
|
11187
|
-
*
|
|
11309
|
+
* reference to the tax rate
|
|
11188
11310
|
*/
|
|
11189
|
-
|
|
11311
|
+
taxRateRef: ApiObjectReference;
|
|
11190
11312
|
|
|
11191
11313
|
/**
|
|
11192
11314
|
* country code performance country IsoAlpha3
|
|
@@ -11214,14 +11336,14 @@ export interface SalesAgent {
|
|
|
11214
11336
|
id: number;
|
|
11215
11337
|
|
|
11216
11338
|
/**
|
|
11217
|
-
*
|
|
11339
|
+
* currency code IsoAlpha3
|
|
11218
11340
|
*/
|
|
11219
|
-
|
|
11341
|
+
currencyCode: string;
|
|
11220
11342
|
|
|
11221
11343
|
/**
|
|
11222
|
-
*
|
|
11344
|
+
* accounting number
|
|
11223
11345
|
*/
|
|
11224
|
-
|
|
11346
|
+
accountingNumber: string;
|
|
11225
11347
|
|
|
11226
11348
|
/**
|
|
11227
11349
|
* MetaInformations for this Object
|
|
@@ -11395,14 +11517,14 @@ export interface ScenarioDimensionValue {
|
|
|
11395
11517
|
export interface ScenarioFactDef {
|
|
11396
11518
|
|
|
11397
11519
|
/**
|
|
11398
|
-
* Attribut
|
|
11520
|
+
* Attribut Typ
|
|
11399
11521
|
*/
|
|
11400
|
-
|
|
11522
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11401
11523
|
|
|
11402
11524
|
/**
|
|
11403
|
-
* Attribut
|
|
11525
|
+
* Attribut Name
|
|
11404
11526
|
*/
|
|
11405
|
-
|
|
11527
|
+
factAttribute: string;
|
|
11406
11528
|
|
|
11407
11529
|
/**
|
|
11408
11530
|
* Unique identifier of the Object
|
|
@@ -11501,14 +11623,14 @@ export interface SequencerConfiguration {
|
|
|
11501
11623
|
key: string;
|
|
11502
11624
|
|
|
11503
11625
|
/**
|
|
11504
|
-
*
|
|
11626
|
+
* Contains details about the sequencer configuration
|
|
11505
11627
|
*/
|
|
11506
|
-
|
|
11628
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11507
11629
|
|
|
11508
11630
|
/**
|
|
11509
|
-
*
|
|
11631
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11510
11632
|
*/
|
|
11511
|
-
|
|
11633
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11512
11634
|
|
|
11513
11635
|
/**
|
|
11514
11636
|
* MetaInformations for this Object
|
|
@@ -11534,14 +11656,14 @@ export interface SequencerConfigurationDetail {
|
|
|
11534
11656
|
assignmentMode: SequenceAssignmentMode;
|
|
11535
11657
|
|
|
11536
11658
|
/**
|
|
11537
|
-
*
|
|
11659
|
+
* Länge
|
|
11538
11660
|
*/
|
|
11539
|
-
|
|
11661
|
+
length: number;
|
|
11540
11662
|
|
|
11541
11663
|
/**
|
|
11542
|
-
*
|
|
11664
|
+
* Auffüllzeichen
|
|
11543
11665
|
*/
|
|
11544
|
-
|
|
11666
|
+
padChar: string;
|
|
11545
11667
|
|
|
11546
11668
|
/**
|
|
11547
11669
|
* Postfix-Ausdruck
|
|
@@ -11623,14 +11745,14 @@ export interface ShelfDocument {
|
|
|
11623
11745
|
tags: Array<TagDto>;
|
|
11624
11746
|
|
|
11625
11747
|
/**
|
|
11626
|
-
*
|
|
11748
|
+
* share informations
|
|
11627
11749
|
*/
|
|
11628
|
-
|
|
11750
|
+
shares: Array<ShelfShare>;
|
|
11629
11751
|
|
|
11630
11752
|
/**
|
|
11631
|
-
*
|
|
11753
|
+
* Mehrsprachige Bezeichnungen
|
|
11632
11754
|
*/
|
|
11633
|
-
|
|
11755
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11634
11756
|
|
|
11635
11757
|
/**
|
|
11636
11758
|
* Automatische Löschung ab
|
|
@@ -11762,14 +11884,14 @@ export interface ShelfDocumentType {
|
|
|
11762
11884
|
active: boolean;
|
|
11763
11885
|
|
|
11764
11886
|
/**
|
|
11765
|
-
*
|
|
11887
|
+
* label of type
|
|
11766
11888
|
*/
|
|
11767
|
-
|
|
11889
|
+
label: string;
|
|
11768
11890
|
|
|
11769
11891
|
/**
|
|
11770
|
-
*
|
|
11892
|
+
* access level or reading
|
|
11771
11893
|
*/
|
|
11772
|
-
|
|
11894
|
+
accessLevelRead: number;
|
|
11773
11895
|
|
|
11774
11896
|
/**
|
|
11775
11897
|
* storage rule for revisions
|
|
@@ -11815,14 +11937,14 @@ export interface ShelfFile {
|
|
|
11815
11937
|
subFiles: Array<SubFileInfo>;
|
|
11816
11938
|
|
|
11817
11939
|
/**
|
|
11818
|
-
*
|
|
11940
|
+
* fileSize
|
|
11819
11941
|
*/
|
|
11820
|
-
|
|
11942
|
+
fileSize: number;
|
|
11821
11943
|
|
|
11822
11944
|
/**
|
|
11823
|
-
*
|
|
11945
|
+
* revision number of this file
|
|
11824
11946
|
*/
|
|
11825
|
-
|
|
11947
|
+
revisionNumber: number;
|
|
11826
11948
|
|
|
11827
11949
|
/**
|
|
11828
11950
|
* file-extension of this entry
|
|
@@ -11850,14 +11972,14 @@ export interface ShelfFile {
|
|
|
11850
11972
|
version: number;
|
|
11851
11973
|
|
|
11852
11974
|
/**
|
|
11853
|
-
*
|
|
11975
|
+
* current reference of this file in our storage
|
|
11854
11976
|
*/
|
|
11855
|
-
|
|
11977
|
+
storageHandle: string;
|
|
11856
11978
|
|
|
11857
11979
|
/**
|
|
11858
|
-
*
|
|
11980
|
+
* meta data
|
|
11859
11981
|
*/
|
|
11860
|
-
|
|
11982
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11861
11983
|
|
|
11862
11984
|
/**
|
|
11863
11985
|
* MetaInformations for this Object
|
|
@@ -11904,14 +12026,14 @@ export interface ShelfShare {
|
|
|
11904
12026
|
publishState: ShelfSharePublishState;
|
|
11905
12027
|
|
|
11906
12028
|
/**
|
|
11907
|
-
*
|
|
12029
|
+
* Freifelder
|
|
11908
12030
|
*/
|
|
11909
|
-
|
|
12031
|
+
custom: EavShelfshare;
|
|
11910
12032
|
|
|
11911
12033
|
/**
|
|
11912
|
-
*
|
|
12034
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11913
12035
|
*/
|
|
11914
|
-
|
|
12036
|
+
publicUrlDurationInMinutes: number;
|
|
11915
12037
|
|
|
11916
12038
|
/**
|
|
11917
12039
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12105,14 +12227,14 @@ export interface StockMovementManualApi {
|
|
|
12105
12227
|
expiryDate: ScriptingDate;
|
|
12106
12228
|
|
|
12107
12229
|
/**
|
|
12108
|
-
*
|
|
12230
|
+
* Zugang oder Abgang
|
|
12109
12231
|
*/
|
|
12110
|
-
|
|
12232
|
+
factor: StockJournalFactor;
|
|
12111
12233
|
|
|
12112
12234
|
/**
|
|
12113
|
-
*
|
|
12235
|
+
* Notiz zur Seriennummer
|
|
12114
12236
|
*/
|
|
12115
|
-
|
|
12237
|
+
serialNumberNote: string;
|
|
12116
12238
|
|
|
12117
12239
|
/**
|
|
12118
12240
|
* Lager
|
|
@@ -12143,14 +12265,14 @@ export interface StockTransferApi {
|
|
|
12143
12265
|
bookDate: ScriptingDate;
|
|
12144
12266
|
|
|
12145
12267
|
/**
|
|
12146
|
-
*
|
|
12268
|
+
* Menge
|
|
12147
12269
|
*/
|
|
12148
|
-
|
|
12270
|
+
quantity: number;
|
|
12149
12271
|
|
|
12150
12272
|
/**
|
|
12151
|
-
*
|
|
12273
|
+
* Quell-Lagerplatz
|
|
12152
12274
|
*/
|
|
12153
|
-
|
|
12275
|
+
sourceStorageBinId: number;
|
|
12154
12276
|
|
|
12155
12277
|
/**
|
|
12156
12278
|
* Quell-Lager
|
|
@@ -12181,14 +12303,14 @@ export interface StockTransferResult {
|
|
|
12181
12303
|
sourceOldStock: number;
|
|
12182
12304
|
|
|
12183
12305
|
/**
|
|
12184
|
-
*
|
|
12306
|
+
* Umgebuchte Seriennummer
|
|
12185
12307
|
*/
|
|
12186
|
-
|
|
12308
|
+
serialNumber: ApiObjectReference;
|
|
12187
12309
|
|
|
12188
12310
|
/**
|
|
12189
|
-
*
|
|
12311
|
+
* Quellager
|
|
12190
12312
|
*/
|
|
12191
|
-
|
|
12313
|
+
sourceStorage: ApiObjectReference;
|
|
12192
12314
|
|
|
12193
12315
|
/**
|
|
12194
12316
|
* Ziellagerplatz
|
|
@@ -12244,14 +12366,14 @@ export interface StorageBinRef {
|
|
|
12244
12366
|
displayName: string;
|
|
12245
12367
|
|
|
12246
12368
|
/**
|
|
12247
|
-
*
|
|
12369
|
+
* ID
|
|
12248
12370
|
*/
|
|
12249
|
-
|
|
12371
|
+
id: number;
|
|
12250
12372
|
|
|
12251
12373
|
/**
|
|
12252
|
-
*
|
|
12374
|
+
* Laufwegposition
|
|
12253
12375
|
*/
|
|
12254
|
-
|
|
12376
|
+
routePosition: number;
|
|
12255
12377
|
}
|
|
12256
12378
|
|
|
12257
12379
|
/**
|
|
@@ -12351,14 +12473,14 @@ export interface Supplier {
|
|
|
12351
12473
|
info: MetaInfo;
|
|
12352
12474
|
|
|
12353
12475
|
/**
|
|
12354
|
-
*
|
|
12476
|
+
* reference to the delivery method
|
|
12355
12477
|
*/
|
|
12356
|
-
|
|
12478
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12357
12479
|
|
|
12358
12480
|
/**
|
|
12359
|
-
*
|
|
12481
|
+
* Lieferantengruppe
|
|
12360
12482
|
*/
|
|
12361
|
-
|
|
12483
|
+
supplierGroupRef: ApiObjectReference;
|
|
12362
12484
|
|
|
12363
12485
|
/**
|
|
12364
12486
|
* tax able or tax free
|
|
@@ -12449,14 +12571,14 @@ export interface TagDto {
|
|
|
12449
12571
|
editColor: string;
|
|
12450
12572
|
|
|
12451
12573
|
/**
|
|
12452
|
-
* Farbe
|
|
12574
|
+
* Farbe für die Anzeige des Tags
|
|
12453
12575
|
*/
|
|
12454
|
-
|
|
12576
|
+
color: string;
|
|
12455
12577
|
|
|
12456
12578
|
/**
|
|
12457
|
-
* Farbe
|
|
12579
|
+
* Farbe in Such-GUI
|
|
12458
12580
|
*/
|
|
12459
|
-
|
|
12581
|
+
searchColor: string;
|
|
12460
12582
|
|
|
12461
12583
|
/**
|
|
12462
12584
|
* Beschriftung des Tags
|
|
@@ -12698,14 +12820,14 @@ export interface TextTemplate {
|
|
|
12698
12820
|
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12699
12821
|
|
|
12700
12822
|
/**
|
|
12701
|
-
*
|
|
12823
|
+
* article für den diese Templates gelten
|
|
12702
12824
|
*/
|
|
12703
|
-
|
|
12825
|
+
articleId: number;
|
|
12704
12826
|
|
|
12705
12827
|
/**
|
|
12706
|
-
*
|
|
12828
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12707
12829
|
*/
|
|
12708
|
-
|
|
12830
|
+
separateLine: boolean;
|
|
12709
12831
|
|
|
12710
12832
|
/**
|
|
12711
12833
|
* Wann wird ein UI-Hint angezeigt
|
|
@@ -12862,14 +12984,14 @@ export interface User {
|
|
|
12862
12984
|
roles: Array<ApiObjectReference>;
|
|
12863
12985
|
|
|
12864
12986
|
/**
|
|
12865
|
-
*
|
|
12987
|
+
* Gruppen
|
|
12866
12988
|
*/
|
|
12867
|
-
|
|
12989
|
+
groups: Array<ApiObjectReference>;
|
|
12868
12990
|
|
|
12869
12991
|
/**
|
|
12870
|
-
*
|
|
12992
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12871
12993
|
*/
|
|
12872
|
-
|
|
12994
|
+
referencedCustomerUserId: number;
|
|
12873
12995
|
|
|
12874
12996
|
/**
|
|
12875
12997
|
* Is the user active?
|
|
@@ -12877,14 +12999,14 @@ export interface User {
|
|
|
12877
12999
|
active: boolean;
|
|
12878
13000
|
|
|
12879
13001
|
/**
|
|
12880
|
-
*
|
|
13002
|
+
* User type
|
|
12881
13003
|
*/
|
|
12882
|
-
|
|
13004
|
+
type: CommonUserType;
|
|
12883
13005
|
|
|
12884
13006
|
/**
|
|
12885
|
-
*
|
|
13007
|
+
* App-Identifier
|
|
12886
13008
|
*/
|
|
12887
|
-
|
|
13009
|
+
appIdentifier: UUID;
|
|
12888
13010
|
|
|
12889
13011
|
/**
|
|
12890
13012
|
* Version Identifier for this Object (for PUT)
|
|
@@ -12892,14 +13014,14 @@ export interface User {
|
|
|
12892
13014
|
version: number;
|
|
12893
13015
|
|
|
12894
13016
|
/**
|
|
12895
|
-
*
|
|
13017
|
+
* is the email verified
|
|
12896
13018
|
*/
|
|
12897
|
-
|
|
13019
|
+
emailVerified: boolean;
|
|
12898
13020
|
|
|
12899
13021
|
/**
|
|
12900
|
-
*
|
|
13022
|
+
* first-name
|
|
12901
13023
|
*/
|
|
12902
|
-
|
|
13024
|
+
firstName: string;
|
|
12903
13025
|
|
|
12904
13026
|
/**
|
|
12905
13027
|
* email-address
|
|
@@ -12912,14 +13034,14 @@ export interface User {
|
|
|
12912
13034
|
id: number;
|
|
12913
13035
|
|
|
12914
13036
|
/**
|
|
12915
|
-
*
|
|
13037
|
+
* username
|
|
12916
13038
|
*/
|
|
12917
|
-
|
|
13039
|
+
username: string;
|
|
12918
13040
|
|
|
12919
13041
|
/**
|
|
12920
|
-
*
|
|
13042
|
+
* Valid to
|
|
12921
13043
|
*/
|
|
12922
|
-
|
|
13044
|
+
validTo: ScriptingDateTime;
|
|
12923
13045
|
|
|
12924
13046
|
/**
|
|
12925
13047
|
* MetaInformations for this Object
|
|
@@ -12978,14 +13100,14 @@ export interface VariantAttributeListing {
|
|
|
12978
13100
|
salesChannelRef: ApiObjectReference;
|
|
12979
13101
|
|
|
12980
13102
|
/**
|
|
12981
|
-
*
|
|
13103
|
+
* Freifelder
|
|
12982
13104
|
*/
|
|
12983
|
-
|
|
13105
|
+
custom: EavVariantattributelisting;
|
|
12984
13106
|
|
|
12985
13107
|
/**
|
|
12986
|
-
*
|
|
13108
|
+
* Variantenattribut
|
|
12987
13109
|
*/
|
|
12988
|
-
|
|
13110
|
+
variantAttributeRef: ApiObjectReference;
|
|
12989
13111
|
|
|
12990
13112
|
/**
|
|
12991
13113
|
* Unique identifier of the Object
|
|
@@ -13168,14 +13290,14 @@ export interface VariantValueReference {
|
|
|
13168
13290
|
description: string;
|
|
13169
13291
|
|
|
13170
13292
|
/**
|
|
13171
|
-
*
|
|
13293
|
+
* Identifier
|
|
13172
13294
|
*/
|
|
13173
|
-
|
|
13295
|
+
id: number;
|
|
13174
13296
|
|
|
13175
13297
|
/**
|
|
13176
|
-
*
|
|
13298
|
+
* Bezeichnung
|
|
13177
13299
|
*/
|
|
13178
|
-
|
|
13300
|
+
label: string;
|
|
13179
13301
|
}
|
|
13180
13302
|
|
|
13181
13303
|
export interface WithDefaults<List<ArticleIdentifier>> {
|