@vario-software/types 2026.32.9 → 2026.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +1092 -795
- package/scripting/services.d.ts +136 -55
- package/scripting/types.d.ts +742 -620
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
|
|
@@ -154,14 +154,14 @@ export interface Account {
|
|
|
154
154
|
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* Custom account data
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
custom: EavAccount;
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* companyLegal for this account
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
companyLegalRef: ApiCreatableReference;
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
@@ -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
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* Custom data
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
custom: EavAccountaddress;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* abweichende Zahlungsart
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -371,25 +371,20 @@ export interface AccountAddress {
|
|
|
371
371
|
*/
|
|
372
372
|
defaultForType: boolean;
|
|
373
373
|
|
|
374
|
-
/**
|
|
375
|
-
* calculation mode of this address
|
|
376
|
-
*/
|
|
377
|
-
calculationMode: CalculationMode;
|
|
378
|
-
|
|
379
374
|
/**
|
|
380
375
|
* Sprache der Adresse
|
|
381
376
|
*/
|
|
382
377
|
languageCode: string;
|
|
383
378
|
|
|
384
379
|
/**
|
|
385
|
-
*
|
|
380
|
+
* calculation mode of this address
|
|
386
381
|
*/
|
|
387
|
-
|
|
382
|
+
calculationMode: CalculationMode;
|
|
388
383
|
|
|
389
384
|
/**
|
|
390
|
-
*
|
|
385
|
+
* Version Identifier for this Object (for PUT)
|
|
391
386
|
*/
|
|
392
|
-
|
|
387
|
+
version: number;
|
|
393
388
|
|
|
394
389
|
/**
|
|
395
390
|
* Additional address line1
|
|
@@ -397,15 +392,20 @@ export interface AccountAddress {
|
|
|
397
392
|
additionalAddressLine1: string;
|
|
398
393
|
|
|
399
394
|
/**
|
|
400
|
-
*
|
|
395
|
+
* tax identification number/ UST-ID-Nr.
|
|
401
396
|
*/
|
|
402
|
-
|
|
397
|
+
taxIdentificationNumber: string;
|
|
403
398
|
|
|
404
399
|
/**
|
|
405
400
|
* Additional address line2
|
|
406
401
|
*/
|
|
407
402
|
additionalAddressLine2: string;
|
|
408
403
|
|
|
404
|
+
/**
|
|
405
|
+
* Parcel station
|
|
406
|
+
*/
|
|
407
|
+
parcelStation: string;
|
|
408
|
+
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
411
411
|
*/
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* First name
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
firstName: string;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* Default contacts
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -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 {
|
|
@@ -1029,6 +1029,11 @@ export interface Article {
|
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* is this product sellable without any quantity at the stock
|
|
1034
|
+
*/
|
|
1035
|
+
sellableWithoutStock: boolean;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* Seriennummern Auszeichnungsart
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
initialAvgPurchasePrice: number;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* is this product sellable without any quantity at the stock
|
|
1044
|
-
*/
|
|
1045
|
-
sellableWithoutStock: boolean;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -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
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Produktion
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
fabrication: boolean;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Soll-Handelsspanne
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
targetTradingMargin: number;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* weight and size inc. packaging
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
grossMetric: Article$Metric;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* Verkaufseinheit
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
salesUnit: number;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Country code
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
countryOfOriginRef: CountryReference;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Arbeitseinheit in Minuten
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
workUnitInMinutes: number;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* gross sales prices
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
grossSalesPrice: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Vorgabe Herstellungskosten
|
|
@@ -1310,14 +1310,14 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* Versandlabeldruck
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
shippingLabelPrinting: boolean;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* reference to Product
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* alternative name of this product
|
|
@@ -1325,14 +1325,14 @@ export interface Article {
|
|
|
1325
1325
|
alternativeName: string;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
|
-
*
|
|
1328
|
+
* Kontingentartikel
|
|
1329
1329
|
*/
|
|
1330
|
-
|
|
1330
|
+
contingentArticleRef: ApiObjectReference;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* rabattierbarer Artikel?
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
discountable: boolean;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1370,14 +1370,14 @@ export interface Article {
|
|
|
1370
1370
|
custom: EavArticle;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
|
-
*
|
|
1373
|
+
* Art des Haltbarkeitsdatums
|
|
1374
1374
|
*/
|
|
1375
|
-
|
|
1375
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1376
1376
|
|
|
1377
1377
|
/**
|
|
1378
|
-
*
|
|
1378
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1379
1379
|
*/
|
|
1380
|
-
|
|
1380
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Hersteller
|
|
@@ -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
|
/**
|
|
@@ -1552,15 +1588,20 @@ export interface ArticleCustomer {
|
|
|
1552
1588
|
*/
|
|
1553
1589
|
articleName: string;
|
|
1554
1590
|
|
|
1591
|
+
/**
|
|
1592
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1593
|
+
*/
|
|
1594
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1595
|
+
|
|
1555
1596
|
/**
|
|
1556
1597
|
* Etikettdruck-Einstellungen
|
|
1557
1598
|
*/
|
|
1558
1599
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1559
1600
|
|
|
1560
1601
|
/**
|
|
1561
|
-
*
|
|
1602
|
+
* Kunden-Preise
|
|
1562
1603
|
*/
|
|
1563
|
-
|
|
1604
|
+
productPrices: Array<ProductPrice>;
|
|
1564
1605
|
|
|
1565
1606
|
/**
|
|
1566
1607
|
* Referenced Article
|
|
@@ -1572,11 +1613,6 @@ export interface ArticleCustomer {
|
|
|
1572
1613
|
*/
|
|
1573
1614
|
useDeviatingArticleDescription: boolean;
|
|
1574
1615
|
|
|
1575
|
-
/**
|
|
1576
|
-
* Kunden-Preise
|
|
1577
|
-
*/
|
|
1578
|
-
productPrices: Array<ProductPrice>;
|
|
1579
|
-
|
|
1580
1616
|
/**
|
|
1581
1617
|
* Aktiv?
|
|
1582
1618
|
*/
|
|
@@ -1613,14 +1649,14 @@ export interface ArticleCustomer {
|
|
|
1613
1649
|
defaultGrossPrice: number;
|
|
1614
1650
|
|
|
1615
1651
|
/**
|
|
1616
|
-
*
|
|
1652
|
+
* Art der Preisermittlung
|
|
1617
1653
|
*/
|
|
1618
|
-
|
|
1654
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1619
1655
|
|
|
1620
1656
|
/**
|
|
1621
|
-
*
|
|
1657
|
+
* Abweichende Produktnummer
|
|
1622
1658
|
*/
|
|
1623
|
-
|
|
1659
|
+
deviatingArticleNumber: string;
|
|
1624
1660
|
|
|
1625
1661
|
/**
|
|
1626
1662
|
* Artikelnummer
|
|
@@ -1705,14 +1741,14 @@ export interface ArticleListing {
|
|
|
1705
1741
|
identifiers: WithDefaults<List<ArticleIdentifier>>;
|
|
1706
1742
|
|
|
1707
1743
|
/**
|
|
1708
|
-
*
|
|
1744
|
+
* custom data
|
|
1709
1745
|
*/
|
|
1710
|
-
|
|
1746
|
+
custom: EavArticleListing;
|
|
1711
1747
|
|
|
1712
1748
|
/**
|
|
1713
|
-
*
|
|
1749
|
+
* is this product sellable without any quantity at the stock
|
|
1714
1750
|
*/
|
|
1715
|
-
|
|
1751
|
+
sellableWithoutStock: boolean;
|
|
1716
1752
|
|
|
1717
1753
|
/**
|
|
1718
1754
|
* description custom data
|
|
@@ -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
|
|
@@ -1775,14 +1811,14 @@ export interface ArticleListing {
|
|
|
1775
1811
|
alternativeName: WithDefaults<String>;
|
|
1776
1812
|
|
|
1777
1813
|
/**
|
|
1778
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1814
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1779
1815
|
*/
|
|
1780
|
-
|
|
1816
|
+
proposedLowestPriceNet: number;
|
|
1781
1817
|
|
|
1782
1818
|
/**
|
|
1783
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1819
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1784
1820
|
*/
|
|
1785
|
-
|
|
1821
|
+
customLowestPriceNet: number;
|
|
1786
1822
|
|
|
1787
1823
|
/**
|
|
1788
1824
|
* der aktuelle listing stand
|
|
@@ -1963,14 +1999,14 @@ export interface ArticleStorage {
|
|
|
1963
1999
|
reorderPoint: number;
|
|
1964
2000
|
|
|
1965
2001
|
/**
|
|
1966
|
-
*
|
|
2002
|
+
* Aktuelle Menge in Kommissionierung
|
|
1967
2003
|
*/
|
|
1968
|
-
|
|
2004
|
+
quantityInPicking: number;
|
|
1969
2005
|
|
|
1970
2006
|
/**
|
|
1971
|
-
*
|
|
2007
|
+
* Bestellte Menge
|
|
1972
2008
|
*/
|
|
1973
|
-
|
|
2009
|
+
orderedQuantity: number;
|
|
1974
2010
|
|
|
1975
2011
|
/**
|
|
1976
2012
|
* Nachschub auf
|
|
@@ -2051,9 +2087,9 @@ export interface ArticleStorage {
|
|
|
2051
2087
|
export interface ArticleSupplier {
|
|
2052
2088
|
|
|
2053
2089
|
/**
|
|
2054
|
-
*
|
|
2090
|
+
* Anzeigename des Accounts
|
|
2055
2091
|
*/
|
|
2056
|
-
|
|
2092
|
+
accountDisplayName: string;
|
|
2057
2093
|
|
|
2058
2094
|
/**
|
|
2059
2095
|
* Lieferanten-Meldebestand
|
|
@@ -2061,19 +2097,19 @@ export interface ArticleSupplier {
|
|
|
2061
2097
|
supplierReportingStock: number;
|
|
2062
2098
|
|
|
2063
2099
|
/**
|
|
2064
|
-
*
|
|
2100
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2065
2101
|
*/
|
|
2066
|
-
|
|
2102
|
+
useSupplierArticleDescription: boolean;
|
|
2067
2103
|
|
|
2068
2104
|
/**
|
|
2069
|
-
*
|
|
2105
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2070
2106
|
*/
|
|
2071
|
-
|
|
2107
|
+
useSupplierArticleIdentifier: boolean;
|
|
2072
2108
|
|
|
2073
2109
|
/**
|
|
2074
|
-
*
|
|
2110
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2075
2111
|
*/
|
|
2076
|
-
|
|
2112
|
+
deliveryTime: number;
|
|
2077
2113
|
|
|
2078
2114
|
/**
|
|
2079
2115
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -2120,26 +2156,26 @@ export interface ArticleSupplier {
|
|
|
2120
2156
|
*/
|
|
2121
2157
|
info: MetaInfo;
|
|
2122
2158
|
|
|
2123
|
-
/**
|
|
2124
|
-
* Verpackungseinheit
|
|
2125
|
-
*/
|
|
2126
|
-
packagingUnit: number;
|
|
2127
|
-
|
|
2128
2159
|
/**
|
|
2129
2160
|
* Referenced Article name
|
|
2130
2161
|
*/
|
|
2131
2162
|
articleName: string;
|
|
2132
2163
|
|
|
2133
2164
|
/**
|
|
2134
|
-
*
|
|
2165
|
+
* Verpackungseinheit
|
|
2135
2166
|
*/
|
|
2136
|
-
|
|
2167
|
+
packagingUnit: number;
|
|
2137
2168
|
|
|
2138
2169
|
/**
|
|
2139
2170
|
* Lieferanten-Preise
|
|
2140
2171
|
*/
|
|
2141
2172
|
productPrices: Array<ProductPrice>;
|
|
2142
2173
|
|
|
2174
|
+
/**
|
|
2175
|
+
* Referenced Article
|
|
2176
|
+
*/
|
|
2177
|
+
articleId: number;
|
|
2178
|
+
|
|
2143
2179
|
/**
|
|
2144
2180
|
* Aktiv?
|
|
2145
2181
|
*/
|
|
@@ -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
|
|
@@ -2214,14 +2250,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2250
|
quantity: number;
|
|
2215
2251
|
|
|
2216
2252
|
/**
|
|
2217
|
-
*
|
|
2253
|
+
* ID der Baugruppen-Quellposition
|
|
2218
2254
|
*/
|
|
2219
|
-
|
|
2255
|
+
sourceLineId: number;
|
|
2220
2256
|
|
|
2221
2257
|
/**
|
|
2222
|
-
*
|
|
2258
|
+
* Buchungen zu der Komponente
|
|
2223
2259
|
*/
|
|
2224
|
-
|
|
2260
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2225
2261
|
|
|
2226
2262
|
/**
|
|
2227
2263
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -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,6 +2455,77 @@ export interface BulkTransferResult {
|
|
|
2414
2455
|
stocks: Array<StockTransferResult>;
|
|
2415
2456
|
}
|
|
2416
2457
|
|
|
2458
|
+
export interface BundleSchema {
|
|
2459
|
+
|
|
2460
|
+
/**
|
|
2461
|
+
* Produkt, zu dem dieses Schema gehört
|
|
2462
|
+
*/
|
|
2463
|
+
productId: number;
|
|
2464
|
+
|
|
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
|
+
* Verhältnis-Mengeneinheit
|
|
2500
|
+
*/
|
|
2501
|
+
relationUnitTypeRef: UnitTypeReference;
|
|
2502
|
+
|
|
2503
|
+
/**
|
|
2504
|
+
* Mengeneinheit
|
|
2505
|
+
*/
|
|
2506
|
+
baseUnitTypeRef: 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
|
+
|
|
2417
2529
|
export const enum BusinessRelationType {
|
|
2418
2530
|
B2B = 'B2B',
|
|
2419
2531
|
B2C = 'B2C',
|
|
@@ -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
|
/**
|
|
@@ -2679,14 +2791,14 @@ export interface CrmActivity {
|
|
|
2679
2791
|
userRef: ApiObjectReference;
|
|
2680
2792
|
|
|
2681
2793
|
/**
|
|
2682
|
-
*
|
|
2794
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2683
2795
|
*/
|
|
2684
|
-
|
|
2796
|
+
system: boolean;
|
|
2685
2797
|
|
|
2686
2798
|
/**
|
|
2687
|
-
*
|
|
2799
|
+
* tatsächliche Startzeit
|
|
2688
2800
|
*/
|
|
2689
|
-
|
|
2801
|
+
startDateTime: ScriptingDateTime;
|
|
2690
2802
|
|
|
2691
2803
|
/**
|
|
2692
2804
|
* Inhalt dieser 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?
|
|
@@ -2916,14 +3028,14 @@ export interface CrmDeal {
|
|
|
2916
3028
|
info: MetaInfo;
|
|
2917
3029
|
|
|
2918
3030
|
/**
|
|
2919
|
-
*
|
|
3031
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2920
3032
|
*/
|
|
2921
|
-
|
|
3033
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2922
3034
|
|
|
2923
3035
|
/**
|
|
2924
|
-
*
|
|
3036
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2925
3037
|
*/
|
|
2926
|
-
|
|
3038
|
+
assignedUserRef: ApiObjectReference;
|
|
2927
3039
|
|
|
2928
3040
|
/**
|
|
2929
3041
|
* Chance (in Prozent)
|
|
@@ -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
|
*/
|
|
@@ -3267,14 +3379,14 @@ export interface CrmProject {
|
|
|
3267
3379
|
info: MetaInfo;
|
|
3268
3380
|
|
|
3269
3381
|
/**
|
|
3270
|
-
*
|
|
3382
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3271
3383
|
*/
|
|
3272
|
-
|
|
3384
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3273
3385
|
|
|
3274
3386
|
/**
|
|
3275
|
-
*
|
|
3387
|
+
* Projektleiter vom Auftraggeber
|
|
3276
3388
|
*/
|
|
3277
|
-
|
|
3389
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3278
3390
|
|
|
3279
3391
|
/**
|
|
3280
3392
|
* Übergeordnete CRM-Objekte
|
|
@@ -3365,14 +3477,14 @@ export const enum CrmReferenceType {
|
|
|
3365
3477
|
export interface CrmReminder {
|
|
3366
3478
|
|
|
3367
3479
|
/**
|
|
3368
|
-
*
|
|
3480
|
+
* Notiz zur Erinnerung
|
|
3369
3481
|
*/
|
|
3370
|
-
|
|
3482
|
+
note: string;
|
|
3371
3483
|
|
|
3372
3484
|
/**
|
|
3373
|
-
*
|
|
3485
|
+
* ID des CRM Objekts
|
|
3374
3486
|
*/
|
|
3375
|
-
|
|
3487
|
+
crmId: number;
|
|
3376
3488
|
|
|
3377
3489
|
/**
|
|
3378
3490
|
* Wer soll erinnert werden
|
|
@@ -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
|
|
@@ -3769,14 +3881,14 @@ export interface CrmTask {
|
|
|
3769
3881
|
blocksTaskRefs: Array<ApiObjectReference>;
|
|
3770
3882
|
|
|
3771
3883
|
/**
|
|
3772
|
-
*
|
|
3884
|
+
* Soll die Aufgabe veröffentlicht werden?
|
|
3773
3885
|
*/
|
|
3774
|
-
|
|
3886
|
+
publish: boolean;
|
|
3775
3887
|
|
|
3776
3888
|
/**
|
|
3777
|
-
*
|
|
3889
|
+
* Weitere Teilnehmer vom Auftragnehmer
|
|
3778
3890
|
*/
|
|
3779
|
-
|
|
3891
|
+
additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
|
|
3780
3892
|
|
|
3781
3893
|
/**
|
|
3782
3894
|
* Fortschritt in Prozent
|
|
@@ -3890,27 +4002,27 @@ 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 {
|
|
3904
4016
|
|
|
3905
4017
|
/**
|
|
3906
|
-
*
|
|
4018
|
+
* reference to customer group
|
|
3907
4019
|
*/
|
|
3908
|
-
|
|
4020
|
+
customerGroupRef: ApiObjectReference;
|
|
3909
4021
|
|
|
3910
4022
|
/**
|
|
3911
|
-
*
|
|
4023
|
+
* Option für die Stapelverarbeitung
|
|
3912
4024
|
*/
|
|
3913
|
-
|
|
4025
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3914
4026
|
|
|
3915
4027
|
/**
|
|
3916
4028
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3928,14 +4040,14 @@ export interface Customer {
|
|
|
3928
4040
|
dueDate: ScriptingDate;
|
|
3929
4041
|
|
|
3930
4042
|
/**
|
|
3931
|
-
*
|
|
4043
|
+
* collective billable
|
|
3932
4044
|
*/
|
|
3933
|
-
|
|
4045
|
+
collectiveBillable: boolean;
|
|
3934
4046
|
|
|
3935
4047
|
/**
|
|
3936
|
-
*
|
|
4048
|
+
* Maximal mögliche Lieferungen
|
|
3937
4049
|
*/
|
|
3938
|
-
|
|
4050
|
+
maxDeliveries: number;
|
|
3939
4051
|
|
|
3940
4052
|
/**
|
|
3941
4053
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3988,14 +4100,14 @@ export interface Customer {
|
|
|
3988
4100
|
info: MetaInfo;
|
|
3989
4101
|
|
|
3990
4102
|
/**
|
|
3991
|
-
*
|
|
4103
|
+
* tax able or tax free
|
|
3992
4104
|
*/
|
|
3993
|
-
|
|
4105
|
+
taxable: boolean;
|
|
3994
4106
|
|
|
3995
4107
|
/**
|
|
3996
|
-
*
|
|
4108
|
+
* reference to the delivery method
|
|
3997
4109
|
*/
|
|
3998
|
-
|
|
4110
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3999
4111
|
|
|
4000
4112
|
/**
|
|
4001
4113
|
* active true/false
|
|
@@ -4207,14 +4319,14 @@ export interface DeliveryMethod {
|
|
|
4207
4319
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4320
|
|
|
4209
4321
|
/**
|
|
4210
|
-
*
|
|
4322
|
+
* translations
|
|
4211
4323
|
*/
|
|
4212
|
-
|
|
4324
|
+
translations: Array<DocumentTypeTerm>;
|
|
4213
4325
|
|
|
4214
4326
|
/**
|
|
4215
|
-
*
|
|
4327
|
+
* Quelle für Paketgewicht
|
|
4216
4328
|
*/
|
|
4217
|
-
|
|
4329
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4218
4330
|
|
|
4219
4331
|
/**
|
|
4220
4332
|
* Versand-Anbieter
|
|
@@ -4285,14 +4397,14 @@ export interface DeliveryTerm {
|
|
|
4285
4397
|
label: string;
|
|
4286
4398
|
|
|
4287
4399
|
/**
|
|
4288
|
-
*
|
|
4400
|
+
* Sprache des Accounts
|
|
4289
4401
|
*/
|
|
4290
|
-
|
|
4402
|
+
languageCode: string;
|
|
4291
4403
|
|
|
4292
4404
|
/**
|
|
4293
|
-
*
|
|
4405
|
+
* information, when the shipping charges should be calculated
|
|
4294
4406
|
*/
|
|
4295
|
-
|
|
4407
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4296
4408
|
|
|
4297
4409
|
/**
|
|
4298
4410
|
* calculate shipping charges per parcel
|
|
@@ -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
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4477
4589
|
*/
|
|
4478
|
-
|
|
4590
|
+
totalBeforeModifier: number;
|
|
4479
4591
|
|
|
4480
4592
|
/**
|
|
4481
|
-
*
|
|
4593
|
+
* Ist der Beleg festgeschrieben?
|
|
4482
4594
|
*/
|
|
4483
|
-
|
|
4595
|
+
frozen: boolean;
|
|
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
|
|
@@ -4567,20 +4679,27 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4567
4679
|
*/
|
|
4568
4680
|
supplierNumber: string;
|
|
4569
4681
|
|
|
4682
|
+
/**
|
|
4683
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4684
|
+
*/
|
|
4685
|
+
deliveryApproved: boolean;
|
|
4686
|
+
|
|
4570
4687
|
/**
|
|
4571
4688
|
* Gesamtpreis brutto
|
|
4572
4689
|
*/
|
|
4573
4690
|
totalGrossPrice: number;
|
|
4574
4691
|
|
|
4575
4692
|
/**
|
|
4576
|
-
*
|
|
4693
|
+
* Kassen-Zahlungspositionen
|
|
4577
4694
|
*/
|
|
4578
|
-
|
|
4695
|
+
posPayments: Array<DocumentPosPayment>;
|
|
4579
4696
|
|
|
4580
4697
|
/**
|
|
4581
|
-
*
|
|
4698
|
+
* Ist die Quittung bezahlt
|
|
4699
|
+
true wenn die Quittung bezahlt ist
|
|
4700
|
+
|
|
4582
4701
|
*/
|
|
4583
|
-
|
|
4702
|
+
posReceiptPayed: boolean;
|
|
4584
4703
|
|
|
4585
4704
|
/**
|
|
4586
4705
|
* Kundennummer beim Lieferanten
|
|
@@ -4592,13 +4711,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4592
4711
|
*/
|
|
4593
4712
|
maxDeliveries: number;
|
|
4594
4713
|
|
|
4595
|
-
/**
|
|
4596
|
-
* Ist die Quittung bezahlt
|
|
4597
|
-
true wenn die Quittung bezahlt ist
|
|
4598
|
-
|
|
4599
|
-
*/
|
|
4600
|
-
posReceiptPayed: boolean;
|
|
4601
|
-
|
|
4602
4714
|
/**
|
|
4603
4715
|
* Quittung: Summe Zahlbetrag
|
|
4604
4716
|
*/
|
|
@@ -4620,14 +4732,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4620
4732
|
contractDetail: DocumentContractDetail;
|
|
4621
4733
|
|
|
4622
4734
|
/**
|
|
4623
|
-
*
|
|
4735
|
+
* Zahlungsplan vorhanden?
|
|
4624
4736
|
*/
|
|
4625
|
-
|
|
4737
|
+
paymentPlan: boolean;
|
|
4626
4738
|
|
|
4627
4739
|
/**
|
|
4628
|
-
*
|
|
4740
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4629
4741
|
*/
|
|
4630
|
-
|
|
4742
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4631
4743
|
|
|
4632
4744
|
/**
|
|
4633
4745
|
* Produktionsdetails
|
|
@@ -4655,20 +4767,25 @@ true wenn die Quittung bezahlt ist
|
|
|
4655
4767
|
processedByWorkflow: boolean;
|
|
4656
4768
|
|
|
4657
4769
|
/**
|
|
4658
|
-
*
|
|
4770
|
+
* Telefon an Versender übergeben
|
|
4659
4771
|
*/
|
|
4660
|
-
|
|
4772
|
+
forwardPhoneToShipper: boolean;
|
|
4661
4773
|
|
|
4662
4774
|
/**
|
|
4663
|
-
*
|
|
4775
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4664
4776
|
*/
|
|
4665
|
-
|
|
4777
|
+
baseTotalDocumentPriceModifier: number;
|
|
4666
4778
|
|
|
4667
4779
|
/**
|
|
4668
4780
|
* Liste der Belegtexte
|
|
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
|
*/
|
|
@@ -4705,14 +4822,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4705
4822
|
en16931Profile: EN16931Profile;
|
|
4706
4823
|
|
|
4707
4824
|
/**
|
|
4708
|
-
*
|
|
4825
|
+
* Wechselkurs
|
|
4709
4826
|
*/
|
|
4710
|
-
|
|
4827
|
+
exchangeRate: number;
|
|
4711
4828
|
|
|
4712
4829
|
/**
|
|
4713
|
-
*
|
|
4830
|
+
* Ort der steuerlichen Leistungserbringung
|
|
4714
4831
|
*/
|
|
4715
|
-
|
|
4832
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
4716
4833
|
|
|
4717
4834
|
/**
|
|
4718
4835
|
* Zusätzliche Infos zu Entscheidungen im Belegkontext
|
|
@@ -4720,14 +4837,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4720
4837
|
additionalInfo: DocumentAdditionalInfo;
|
|
4721
4838
|
|
|
4722
4839
|
/**
|
|
4723
|
-
*
|
|
4840
|
+
* Bestelldatum
|
|
4724
4841
|
*/
|
|
4725
|
-
|
|
4842
|
+
orderedOn: ScriptingDate;
|
|
4726
4843
|
|
|
4727
4844
|
/**
|
|
4728
|
-
*
|
|
4845
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4729
4846
|
*/
|
|
4730
|
-
|
|
4847
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4731
4848
|
|
|
4732
4849
|
/**
|
|
4733
4850
|
* MetaInformations for this Object
|
|
@@ -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
|
|
@@ -4865,20 +4982,25 @@ true wenn die Quittung bezahlt ist
|
|
|
4865
4982
|
customerNumber: string;
|
|
4866
4983
|
|
|
4867
4984
|
/**
|
|
4868
|
-
*
|
|
4985
|
+
* Statusinstanz des Belegs
|
|
4869
4986
|
*/
|
|
4870
|
-
|
|
4987
|
+
documentState: DocumentTypeState;
|
|
4871
4988
|
|
|
4872
4989
|
/**
|
|
4873
|
-
*
|
|
4990
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4874
4991
|
*/
|
|
4875
|
-
|
|
4992
|
+
taxIdentificationNumber: string;
|
|
4876
4993
|
|
|
4877
4994
|
/**
|
|
4878
4995
|
* Versandkostenpositionen
|
|
4879
4996
|
*/
|
|
4880
4997
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4881
4998
|
|
|
4999
|
+
/**
|
|
5000
|
+
* Rückgeld
|
|
5001
|
+
*/
|
|
5002
|
+
posReceiptChangeAmount: number;
|
|
5003
|
+
|
|
4882
5004
|
/**
|
|
4883
5005
|
* Referenz auf Lieferbedingung
|
|
4884
5006
|
*/
|
|
@@ -4891,11 +5013,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4891
5013
|
*/
|
|
4892
5014
|
posReceiptBalanced: boolean;
|
|
4893
5015
|
|
|
4894
|
-
/**
|
|
4895
|
-
* Rückgeld
|
|
4896
|
-
*/
|
|
4897
|
-
posReceiptChangeAmount: number;
|
|
4898
|
-
|
|
4899
5016
|
/**
|
|
4900
5017
|
* Gesamtbruttogewicht
|
|
4901
5018
|
*/
|
|
@@ -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
|
*/
|
|
@@ -5162,14 +5279,14 @@ export interface DocumentAddress {
|
|
|
5162
5279
|
paymentMethodRef: ApiObjectReference;
|
|
5163
5280
|
|
|
5164
5281
|
/**
|
|
5165
|
-
*
|
|
5282
|
+
* salutation for this address
|
|
5166
5283
|
*/
|
|
5167
|
-
|
|
5284
|
+
salutation: string;
|
|
5168
5285
|
|
|
5169
5286
|
/**
|
|
5170
|
-
*
|
|
5287
|
+
* Referenz zum Account
|
|
5171
5288
|
*/
|
|
5172
|
-
|
|
5289
|
+
accountRef: ApiObjectReference;
|
|
5173
5290
|
|
|
5174
5291
|
/**
|
|
5175
5292
|
* address line 2
|
|
@@ -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)
|
|
@@ -5545,9 +5662,9 @@ export interface DocumentLine {
|
|
|
5545
5662
|
id: number;
|
|
5546
5663
|
|
|
5547
5664
|
/**
|
|
5548
|
-
*
|
|
5665
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5549
5666
|
*/
|
|
5550
|
-
|
|
5667
|
+
positionOfArticleLine: number;
|
|
5551
5668
|
|
|
5552
5669
|
/**
|
|
5553
5670
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5555,19 +5672,19 @@ export interface DocumentLine {
|
|
|
5555
5672
|
basePrice: number;
|
|
5556
5673
|
|
|
5557
5674
|
/**
|
|
5558
|
-
*
|
|
5675
|
+
* Serientyp
|
|
5559
5676
|
*/
|
|
5560
|
-
|
|
5677
|
+
serialType: ArticleSerialType;
|
|
5561
5678
|
|
|
5562
5679
|
/**
|
|
5563
|
-
*
|
|
5680
|
+
* Steuerschema
|
|
5564
5681
|
*/
|
|
5565
|
-
|
|
5682
|
+
taxSchemaRef: ApiObjectReference;
|
|
5566
5683
|
|
|
5567
5684
|
/**
|
|
5568
|
-
*
|
|
5685
|
+
* Preiseinheit
|
|
5569
5686
|
*/
|
|
5570
|
-
|
|
5687
|
+
priceUnit: number;
|
|
5571
5688
|
|
|
5572
5689
|
/**
|
|
5573
5690
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5719,6 +5836,11 @@ export interface DocumentLine {
|
|
|
5719
5836
|
*/
|
|
5720
5837
|
settledOpenItemPaymentDueDate: ScriptingDate;
|
|
5721
5838
|
|
|
5839
|
+
/**
|
|
5840
|
+
* Land der Herkunft
|
|
5841
|
+
*/
|
|
5842
|
+
country: CountryReference;
|
|
5843
|
+
|
|
5722
5844
|
/**
|
|
5723
5845
|
* Leistungsdatum
|
|
5724
5846
|
*/
|
|
@@ -5729,11 +5851,6 @@ export interface DocumentLine {
|
|
|
5729
5851
|
*/
|
|
5730
5852
|
customsTariffNumber: string;
|
|
5731
5853
|
|
|
5732
|
-
/**
|
|
5733
|
-
* Land der Herkunft
|
|
5734
|
-
*/
|
|
5735
|
-
country: CountryReference;
|
|
5736
|
-
|
|
5737
5854
|
/**
|
|
5738
5855
|
* wurde aufgelöst in Gebindeartikel
|
|
5739
5856
|
*/
|
|
@@ -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
|
|
@@ -6335,6 +6452,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
6335
6452
|
*/
|
|
6336
6453
|
quantityFinished: number;
|
|
6337
6454
|
|
|
6455
|
+
/**
|
|
6456
|
+
* Freifeld
|
|
6457
|
+
*/
|
|
6458
|
+
custom: EavFabricationline;
|
|
6459
|
+
|
|
6338
6460
|
/**
|
|
6339
6461
|
* Menge defekt
|
|
6340
6462
|
*/
|
|
@@ -6345,11 +6467,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
6345
6467
|
*/
|
|
6346
6468
|
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6347
6469
|
|
|
6348
|
-
/**
|
|
6349
|
-
* Freifeld
|
|
6350
|
-
*/
|
|
6351
|
-
custom: EavFabricationline;
|
|
6352
|
-
|
|
6353
6470
|
/**
|
|
6354
6471
|
* Menge produziert
|
|
6355
6472
|
*/
|
|
@@ -6384,14 +6501,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
6384
6501
|
quantityFinished: number;
|
|
6385
6502
|
|
|
6386
6503
|
/**
|
|
6387
|
-
* Produzierte
|
|
6504
|
+
* Produzierte Seriennummer
|
|
6388
6505
|
*/
|
|
6389
|
-
|
|
6506
|
+
serialNumber: ArticleSerialNumber;
|
|
6390
6507
|
|
|
6391
6508
|
/**
|
|
6392
|
-
* Produzierte
|
|
6509
|
+
* Produzierte/geplante Menge
|
|
6393
6510
|
*/
|
|
6394
|
-
|
|
6511
|
+
quantity: number;
|
|
6395
6512
|
|
|
6396
6513
|
/**
|
|
6397
6514
|
* Gebuchte Komponenten
|
|
@@ -6530,14 +6647,14 @@ export interface DocumentLineRef {
|
|
|
6530
6647
|
articleNumber: string;
|
|
6531
6648
|
|
|
6532
6649
|
/**
|
|
6533
|
-
*
|
|
6650
|
+
* Kurzbezeichnung des Kunden
|
|
6534
6651
|
*/
|
|
6535
|
-
|
|
6652
|
+
displayName: string;
|
|
6536
6653
|
|
|
6537
6654
|
/**
|
|
6538
|
-
*
|
|
6655
|
+
* price per quantity [GROSS, NET]
|
|
6539
6656
|
*/
|
|
6540
|
-
|
|
6657
|
+
price: number;
|
|
6541
6658
|
|
|
6542
6659
|
/**
|
|
6543
6660
|
* Artikelbezeichnung
|
|
@@ -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 {
|
|
@@ -7211,14 +7328,14 @@ export interface DocumentType {
|
|
|
7211
7328
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7329
|
|
|
7213
7330
|
/**
|
|
7214
|
-
*
|
|
7331
|
+
* Zählerkreis
|
|
7215
7332
|
*/
|
|
7216
|
-
|
|
7333
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7217
7334
|
|
|
7218
7335
|
/**
|
|
7219
|
-
*
|
|
7336
|
+
* nächste Belegnummer
|
|
7220
7337
|
*/
|
|
7221
|
-
|
|
7338
|
+
nextNumber: string;
|
|
7222
7339
|
|
|
7223
7340
|
/**
|
|
7224
7341
|
* Sortierung
|
|
@@ -7888,14 +8005,14 @@ export interface FabricationRevertRequest {
|
|
|
7888
8005
|
export interface FabricationSerialNumber {
|
|
7889
8006
|
|
|
7890
8007
|
/**
|
|
7891
|
-
*
|
|
8008
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7892
8009
|
*/
|
|
7893
|
-
|
|
8010
|
+
serialNumberId: number;
|
|
7894
8011
|
|
|
7895
8012
|
/**
|
|
7896
|
-
*
|
|
8013
|
+
* MHD / Verfallsdatum
|
|
7897
8014
|
*/
|
|
7898
|
-
|
|
8015
|
+
expiryDate: ScriptingDate;
|
|
7899
8016
|
|
|
7900
8017
|
/**
|
|
7901
8018
|
* Bemerkung
|
|
@@ -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
|
|
@@ -8162,14 +8279,14 @@ export interface OpenItem {
|
|
|
8162
8279
|
dunningBlock: boolean;
|
|
8163
8280
|
|
|
8164
8281
|
/**
|
|
8165
|
-
*
|
|
8282
|
+
* order
|
|
8166
8283
|
*/
|
|
8167
|
-
|
|
8284
|
+
order: ApiObjectReference;
|
|
8168
8285
|
|
|
8169
8286
|
/**
|
|
8170
|
-
*
|
|
8287
|
+
* Summe der Zahlungen in Basiswährung
|
|
8171
8288
|
*/
|
|
8172
|
-
|
|
8289
|
+
baseSumPayments: number;
|
|
8173
8290
|
|
|
8174
8291
|
/**
|
|
8175
8292
|
* MetaInformations for this Object
|
|
@@ -8201,31 +8318,31 @@ export interface OpenItem {
|
|
|
8201
8318
|
*/
|
|
8202
8319
|
version: number;
|
|
8203
8320
|
|
|
8204
|
-
/**
|
|
8205
|
-
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8206
|
-
*/
|
|
8207
|
-
baseSumDiscountableAmount: number;
|
|
8208
|
-
|
|
8209
8321
|
/**
|
|
8210
8322
|
* List of tags
|
|
8211
8323
|
*/
|
|
8212
8324
|
tags: Array<TagDto>;
|
|
8213
8325
|
|
|
8214
8326
|
/**
|
|
8215
|
-
*
|
|
8327
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8216
8328
|
*/
|
|
8217
|
-
|
|
8329
|
+
baseSumDiscountableAmount: number;
|
|
8218
8330
|
|
|
8219
8331
|
/**
|
|
8220
|
-
*
|
|
8332
|
+
* Fälligkeitsdatum
|
|
8221
8333
|
*/
|
|
8222
|
-
|
|
8334
|
+
paymentDueDate: ScriptingDate;
|
|
8223
8335
|
|
|
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
|
|
|
8341
|
+
/**
|
|
8342
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8343
|
+
*/
|
|
8344
|
+
sourceCountryCode: string;
|
|
8345
|
+
|
|
8229
8346
|
/**
|
|
8230
8347
|
* agreed Deposit payment date
|
|
8231
8348
|
*/
|
|
@@ -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
|
|
@@ -8352,14 +8469,14 @@ export interface OpenItem {
|
|
|
8352
8469
|
originalPaymentDueDate: ScriptingDate;
|
|
8353
8470
|
|
|
8354
8471
|
/**
|
|
8355
|
-
*
|
|
8472
|
+
* Valutadatum
|
|
8356
8473
|
*/
|
|
8357
|
-
|
|
8474
|
+
valueDate: ScriptingDate;
|
|
8358
8475
|
|
|
8359
8476
|
/**
|
|
8360
|
-
*
|
|
8477
|
+
* whether this open item is balanced, partially paid or open
|
|
8361
8478
|
*/
|
|
8362
|
-
|
|
8479
|
+
balanceState: OpenItemBalanceState;
|
|
8363
8480
|
|
|
8364
8481
|
/**
|
|
8365
8482
|
* Skontobetrag 1
|
|
@@ -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
|
|
@@ -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
|
|
@@ -8680,14 +8797,14 @@ export interface OpenItemRecord {
|
|
|
8680
8797
|
version: number;
|
|
8681
8798
|
|
|
8682
8799
|
/**
|
|
8683
|
-
*
|
|
8800
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8684
8801
|
*/
|
|
8685
|
-
|
|
8802
|
+
transactionId: number;
|
|
8686
8803
|
|
|
8687
8804
|
/**
|
|
8688
|
-
*
|
|
8805
|
+
* Buchungsbetrag in Basiswährung
|
|
8689
8806
|
*/
|
|
8690
|
-
|
|
8807
|
+
baseAmount: number;
|
|
8691
8808
|
|
|
8692
8809
|
/**
|
|
8693
8810
|
* Abzugsbetrag in Basiswährung
|
|
@@ -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
|
+
* Debitoren-OP abschließen?
|
|
8864
8981
|
*/
|
|
8865
|
-
|
|
8982
|
+
closeCustomerAccountType: boolean;
|
|
8866
8983
|
|
|
8867
8984
|
/**
|
|
8868
|
-
*
|
|
8985
|
+
* translations
|
|
8869
8986
|
*/
|
|
8870
|
-
|
|
8987
|
+
translations: Array<DocumentTypeTerm>;
|
|
8871
8988
|
|
|
8872
8989
|
/**
|
|
8873
8990
|
* +Tage für Folgelastschrift
|
|
@@ -8875,14 +8992,14 @@ export interface PaymentMethod {
|
|
|
8875
8992
|
daysToAddForFollowup: number;
|
|
8876
8993
|
|
|
8877
8994
|
/**
|
|
8878
|
-
*
|
|
8995
|
+
* Die Business Transaction
|
|
8879
8996
|
*/
|
|
8880
|
-
|
|
8997
|
+
businessTransaction: ApiObjectReference;
|
|
8881
8998
|
|
|
8882
8999
|
/**
|
|
8883
|
-
*
|
|
9000
|
+
* external Payment Id
|
|
8884
9001
|
*/
|
|
8885
|
-
|
|
9002
|
+
externalPaymentId: string;
|
|
8886
9003
|
|
|
8887
9004
|
/**
|
|
8888
9005
|
* Unique identifier of the Object
|
|
@@ -8985,11 +9102,6 @@ export interface PaymentTerm {
|
|
|
8985
9102
|
*/
|
|
8986
9103
|
paymentDays1: number;
|
|
8987
9104
|
|
|
8988
|
-
/**
|
|
8989
|
-
* Days for Discount 2
|
|
8990
|
-
*/
|
|
8991
|
-
paymentDays2: number;
|
|
8992
|
-
|
|
8993
9105
|
/**
|
|
8994
9106
|
* Aktiv?
|
|
8995
9107
|
*/
|
|
@@ -9000,6 +9112,11 @@ export interface PaymentTerm {
|
|
|
9000
9112
|
*/
|
|
9001
9113
|
description: string;
|
|
9002
9114
|
|
|
9115
|
+
/**
|
|
9116
|
+
* Days for Discount 2
|
|
9117
|
+
*/
|
|
9118
|
+
paymentDays2: number;
|
|
9119
|
+
|
|
9003
9120
|
/**
|
|
9004
9121
|
* label for this payment term
|
|
9005
9122
|
*/
|
|
@@ -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
|
|
@@ -9104,14 +9221,14 @@ export interface PickTrolley {
|
|
|
9104
9221
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9105
9222
|
|
|
9106
9223
|
/**
|
|
9107
|
-
*
|
|
9224
|
+
* Bearbeiter der Pickliste
|
|
9108
9225
|
*/
|
|
9109
|
-
|
|
9226
|
+
processedByUserRef: ApiObjectReference;
|
|
9110
9227
|
|
|
9111
9228
|
/**
|
|
9112
|
-
*
|
|
9229
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9113
9230
|
*/
|
|
9114
|
-
|
|
9231
|
+
storageBinRef: StorageBinRef;
|
|
9115
9232
|
|
|
9116
9233
|
/**
|
|
9117
9234
|
* Beschreibung des Wagens
|
|
@@ -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
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9328
9445
|
*/
|
|
9329
|
-
|
|
9446
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9330
9447
|
|
|
9331
9448
|
/**
|
|
9332
|
-
*
|
|
9449
|
+
* Gesammelte Menge der Position
|
|
9333
9450
|
*/
|
|
9334
|
-
|
|
9451
|
+
quantityCollected: number;
|
|
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
|
|
@@ -9412,14 +9529,14 @@ export interface PicklistLine {
|
|
|
9412
9529
|
export interface PicklistLineBooking {
|
|
9413
9530
|
|
|
9414
9531
|
/**
|
|
9415
|
-
*
|
|
9532
|
+
* Seriennummer
|
|
9416
9533
|
*/
|
|
9417
|
-
|
|
9534
|
+
serialNumber: ArticleSerialNumber;
|
|
9418
9535
|
|
|
9419
9536
|
/**
|
|
9420
|
-
*
|
|
9537
|
+
* Zu buchende Menge (gesammelt)
|
|
9421
9538
|
*/
|
|
9422
|
-
|
|
9539
|
+
quantity: number;
|
|
9423
9540
|
|
|
9424
9541
|
/**
|
|
9425
9542
|
* Anzeigename vom Lagerplatz
|
|
@@ -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 {
|
|
@@ -9499,26 +9616,26 @@ export interface PicklistLineComponent {
|
|
|
9499
9616
|
*/
|
|
9500
9617
|
targetDocumentLineComponentId: number;
|
|
9501
9618
|
|
|
9502
|
-
/**
|
|
9503
|
-
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9504
|
-
*/
|
|
9505
|
-
quantityPerAssemblyGroup: number;
|
|
9506
|
-
|
|
9507
9619
|
/**
|
|
9508
9620
|
* abweichende Artikelbezeichnung
|
|
9509
9621
|
*/
|
|
9510
9622
|
articleAlternativeName: string;
|
|
9511
9623
|
|
|
9512
9624
|
/**
|
|
9513
|
-
*
|
|
9625
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9514
9626
|
*/
|
|
9515
|
-
|
|
9627
|
+
quantityPerAssemblyGroup: number;
|
|
9516
9628
|
|
|
9517
9629
|
/**
|
|
9518
9630
|
* Position der Komponente in der Baugruppe
|
|
9519
9631
|
*/
|
|
9520
9632
|
position: number;
|
|
9521
9633
|
|
|
9634
|
+
/**
|
|
9635
|
+
* Verpackte Menge der Position
|
|
9636
|
+
*/
|
|
9637
|
+
quantityPacked: number;
|
|
9638
|
+
|
|
9522
9639
|
/**
|
|
9523
9640
|
* Unique identifier of the Object
|
|
9524
9641
|
*/
|
|
@@ -9675,20 +9792,15 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9675
9792
|
*/
|
|
9676
9793
|
maxArticleCountPerOrder: number;
|
|
9677
9794
|
|
|
9678
|
-
/**
|
|
9679
|
-
* Maximaler Auftragswert
|
|
9680
|
-
*/
|
|
9681
|
-
maxOrderValue: number;
|
|
9682
|
-
|
|
9683
9795
|
/**
|
|
9684
9796
|
* Alternative Selektion in VQL
|
|
9685
9797
|
*/
|
|
9686
9798
|
alternativeSelectionInVql: string;
|
|
9687
9799
|
|
|
9688
9800
|
/**
|
|
9689
|
-
*
|
|
9801
|
+
* Maximaler Auftragswert
|
|
9690
9802
|
*/
|
|
9691
|
-
|
|
9803
|
+
maxOrderValue: number;
|
|
9692
9804
|
|
|
9693
9805
|
/**
|
|
9694
9806
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9700,6 +9812,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9700
9812
|
*/
|
|
9701
9813
|
maxOrderCount: number;
|
|
9702
9814
|
|
|
9815
|
+
/**
|
|
9816
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9817
|
+
*/
|
|
9818
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9819
|
+
|
|
9703
9820
|
/**
|
|
9704
9821
|
* Selektion über den Bereich vom Belegdatum
|
|
9705
9822
|
*/
|
|
@@ -9768,25 +9885,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9768
9885
|
*/
|
|
9769
9886
|
printPicklist: boolean;
|
|
9770
9887
|
|
|
9771
|
-
/**
|
|
9772
|
-
* Die zu verwendende Pickwagengruppe
|
|
9773
|
-
*/
|
|
9774
|
-
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9775
|
-
|
|
9776
9888
|
/**
|
|
9777
9889
|
* Maximale Anzahl an Positionen einer Pickliste
|
|
9778
9890
|
*/
|
|
9779
9891
|
maxPicklistLineCount: number;
|
|
9780
9892
|
|
|
9781
9893
|
/**
|
|
9782
|
-
*
|
|
9894
|
+
* Die zu verwendende Pickwagengruppe
|
|
9783
9895
|
*/
|
|
9784
|
-
|
|
9896
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9785
9897
|
|
|
9786
9898
|
/**
|
|
9787
|
-
*
|
|
9899
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9788
9900
|
*/
|
|
9789
|
-
|
|
9901
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9790
9902
|
|
|
9791
9903
|
/**
|
|
9792
9904
|
* Lagerplätze vorgeben
|
|
@@ -9794,15 +9906,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9794
9906
|
specifyStorageBins: boolean;
|
|
9795
9907
|
|
|
9796
9908
|
/**
|
|
9797
|
-
*
|
|
9909
|
+
* Der zu verwendende Pickwagen
|
|
9798
9910
|
*/
|
|
9799
|
-
|
|
9911
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9800
9912
|
|
|
9801
9913
|
/**
|
|
9802
9914
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9803
9915
|
*/
|
|
9804
9916
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
9805
9917
|
|
|
9918
|
+
/**
|
|
9919
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9920
|
+
*/
|
|
9921
|
+
sortByRoutePosition: boolean;
|
|
9922
|
+
|
|
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
|
*/
|
|
@@ -9862,24 +9984,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9862
9984
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9985
|
|
|
9864
9986
|
/**
|
|
9865
|
-
*
|
|
9987
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9866
9988
|
*/
|
|
9867
|
-
|
|
9989
|
+
printLabelOnScan: boolean;
|
|
9868
9990
|
|
|
9869
9991
|
/**
|
|
9870
|
-
*
|
|
9992
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9871
9993
|
*/
|
|
9872
|
-
|
|
9994
|
+
allowPickingOfServiceArticles: boolean;
|
|
9873
9995
|
|
|
9874
9996
|
/**
|
|
9875
|
-
*
|
|
9997
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9876
9998
|
*/
|
|
9877
|
-
|
|
9999
|
+
useDigitalPicklist: boolean;
|
|
9878
10000
|
|
|
9879
10001
|
/**
|
|
9880
|
-
*
|
|
10002
|
+
* Sammelbestätigung erlauben
|
|
9881
10003
|
*/
|
|
9882
|
-
|
|
10004
|
+
allowFullConfirmation: boolean;
|
|
9883
10005
|
|
|
9884
10006
|
/**
|
|
9885
10007
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9897,14 +10019,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9897
10019
|
printLabelOnCompleteOrder: boolean;
|
|
9898
10020
|
|
|
9899
10021
|
/**
|
|
9900
|
-
*
|
|
10022
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9901
10023
|
*/
|
|
9902
|
-
|
|
10024
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9903
10025
|
|
|
9904
10026
|
/**
|
|
9905
|
-
*
|
|
10027
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9906
10028
|
*/
|
|
9907
|
-
|
|
10029
|
+
printLabelAfterPicking: boolean;
|
|
9908
10030
|
|
|
9909
10031
|
/**
|
|
9910
10032
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10185,14 +10307,14 @@ export interface ProductArticleRef {
|
|
|
10185
10307
|
export interface ProductDiscount {
|
|
10186
10308
|
|
|
10187
10309
|
/**
|
|
10188
|
-
*
|
|
10310
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10189
10311
|
*/
|
|
10190
|
-
|
|
10312
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10191
10313
|
|
|
10192
10314
|
/**
|
|
10193
|
-
*
|
|
10315
|
+
* Kundengruppe
|
|
10194
10316
|
*/
|
|
10195
|
-
|
|
10317
|
+
customerGroupRef: ApiObjectReference;
|
|
10196
10318
|
|
|
10197
10319
|
/**
|
|
10198
10320
|
* Lieferantengruppe
|
|
@@ -10220,14 +10342,14 @@ export interface ProductDiscount {
|
|
|
10220
10342
|
validFrom: ScriptingDate;
|
|
10221
10343
|
|
|
10222
10344
|
/**
|
|
10223
|
-
*
|
|
10345
|
+
* Warengruppe
|
|
10224
10346
|
*/
|
|
10225
|
-
|
|
10347
|
+
productGroupRef: ApiObjectReference;
|
|
10226
10348
|
|
|
10227
10349
|
/**
|
|
10228
|
-
*
|
|
10350
|
+
* Bestimmt die Art des Rabatts
|
|
10229
10351
|
*/
|
|
10230
|
-
|
|
10352
|
+
modifierType: PriceModifierType;
|
|
10231
10353
|
|
|
10232
10354
|
/**
|
|
10233
10355
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10245,14 +10367,14 @@ export interface ProductDiscount {
|
|
|
10245
10367
|
currencyRef: CurrencyReference;
|
|
10246
10368
|
|
|
10247
10369
|
/**
|
|
10248
|
-
*
|
|
10370
|
+
* Preisgruppe
|
|
10249
10371
|
*/
|
|
10250
|
-
|
|
10372
|
+
priceGroupRef: ApiObjectReference;
|
|
10251
10373
|
|
|
10252
10374
|
/**
|
|
10253
|
-
*
|
|
10375
|
+
* Wert des Rabatts
|
|
10254
10376
|
*/
|
|
10255
|
-
|
|
10377
|
+
modifierValue: number;
|
|
10256
10378
|
|
|
10257
10379
|
/**
|
|
10258
10380
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10275,14 +10397,14 @@ export interface ProductDiscount {
|
|
|
10275
10397
|
modifierValueType: ValueType;
|
|
10276
10398
|
|
|
10277
10399
|
/**
|
|
10278
|
-
*
|
|
10400
|
+
* Account, für den der Rabatt gültig ist
|
|
10279
10401
|
*/
|
|
10280
|
-
|
|
10402
|
+
accountRef: ApiObjectReference;
|
|
10281
10403
|
|
|
10282
10404
|
/**
|
|
10283
|
-
*
|
|
10405
|
+
* Name des Rabatts
|
|
10284
10406
|
*/
|
|
10285
|
-
|
|
10407
|
+
modifierName: string;
|
|
10286
10408
|
|
|
10287
10409
|
/**
|
|
10288
10410
|
* Unique identifier of the Object
|
|
@@ -10313,14 +10435,14 @@ export interface ProductGroup {
|
|
|
10313
10435
|
targetTradingMargin: number;
|
|
10314
10436
|
|
|
10315
10437
|
/**
|
|
10316
|
-
*
|
|
10438
|
+
* Freifeld
|
|
10317
10439
|
*/
|
|
10318
|
-
|
|
10440
|
+
custom: EavProductgroup;
|
|
10319
10441
|
|
|
10320
10442
|
/**
|
|
10321
|
-
*
|
|
10443
|
+
* main product group
|
|
10322
10444
|
*/
|
|
10323
|
-
|
|
10445
|
+
mainGroupRef: ApiObjectReference;
|
|
10324
10446
|
|
|
10325
10447
|
/**
|
|
10326
10448
|
* warengruppe aktiv ja/nein
|
|
@@ -10399,14 +10521,14 @@ export interface ProductMainGroup {
|
|
|
10399
10521
|
export interface ProductPrice {
|
|
10400
10522
|
|
|
10401
10523
|
/**
|
|
10402
|
-
*
|
|
10524
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10403
10525
|
*/
|
|
10404
|
-
|
|
10526
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10405
10527
|
|
|
10406
10528
|
/**
|
|
10407
|
-
*
|
|
10529
|
+
* Kundengruppe
|
|
10408
10530
|
*/
|
|
10409
|
-
|
|
10531
|
+
customerGroupRef: ApiObjectReference;
|
|
10410
10532
|
|
|
10411
10533
|
/**
|
|
10412
10534
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10614,19 +10736,19 @@ export const enum RegulationSet {
|
|
|
10614
10736
|
export interface RequestDocument {
|
|
10615
10737
|
|
|
10616
10738
|
/**
|
|
10617
|
-
*
|
|
10739
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10618
10740
|
*/
|
|
10619
|
-
|
|
10741
|
+
incomingGoodsStorageBinId: number;
|
|
10620
10742
|
|
|
10621
10743
|
/**
|
|
10622
|
-
*
|
|
10744
|
+
* Belegdatum
|
|
10623
10745
|
*/
|
|
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
|
* Leistungsdatum
|
|
@@ -10634,9 +10756,9 @@ export interface RequestDocument {
|
|
|
10634
10756
|
performanceDate: ScriptingDate;
|
|
10635
10757
|
|
|
10636
10758
|
/**
|
|
10637
|
-
*
|
|
10759
|
+
* Der Anzahlungsbetrag
|
|
10638
10760
|
*/
|
|
10639
|
-
|
|
10761
|
+
depositPaymentAmount: number;
|
|
10640
10762
|
|
|
10641
10763
|
/**
|
|
10642
10764
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10703,20 +10825,15 @@ export interface RequestDocument {
|
|
|
10703
10825
|
*/
|
|
10704
10826
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10705
10827
|
|
|
10706
|
-
/**
|
|
10707
|
-
* Die Vertragsdetails
|
|
10708
|
-
*/
|
|
10709
|
-
contractDetail: DocumentContractDetail;
|
|
10710
|
-
|
|
10711
10828
|
/**
|
|
10712
10829
|
* ID der Kasse (bei POS)
|
|
10713
10830
|
*/
|
|
10714
10831
|
posRegisterId: number;
|
|
10715
10832
|
|
|
10716
10833
|
/**
|
|
10717
|
-
*
|
|
10834
|
+
* Die Vertragsdetails
|
|
10718
10835
|
*/
|
|
10719
|
-
|
|
10836
|
+
contractDetail: DocumentContractDetail;
|
|
10720
10837
|
|
|
10721
10838
|
/**
|
|
10722
10839
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
@@ -10724,9 +10841,9 @@ export interface RequestDocument {
|
|
|
10724
10841
|
paymentTermId: number;
|
|
10725
10842
|
|
|
10726
10843
|
/**
|
|
10727
|
-
*
|
|
10844
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10728
10845
|
*/
|
|
10729
|
-
|
|
10846
|
+
supplierAccountId: number;
|
|
10730
10847
|
|
|
10731
10848
|
/**
|
|
10732
10849
|
* Schema Freifelder
|
|
@@ -10734,15 +10851,20 @@ export interface RequestDocument {
|
|
|
10734
10851
|
custom: EavDocument;
|
|
10735
10852
|
|
|
10736
10853
|
/**
|
|
10737
|
-
*
|
|
10854
|
+
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10738
10855
|
*/
|
|
10739
|
-
|
|
10856
|
+
dropShipping: boolean;
|
|
10740
10857
|
|
|
10741
10858
|
/**
|
|
10742
10859
|
* reference to the corresponding document in an external system
|
|
10743
10860
|
*/
|
|
10744
10861
|
externalId: string;
|
|
10745
10862
|
|
|
10863
|
+
/**
|
|
10864
|
+
* target document type for document copy
|
|
10865
|
+
*/
|
|
10866
|
+
targetDocumentType: DocumentType;
|
|
10867
|
+
|
|
10746
10868
|
/**
|
|
10747
10869
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
10748
10870
|
*/
|
|
@@ -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
|
|
@@ -10912,14 +11034,14 @@ export interface RequestDocumentLine {
|
|
|
10912
11034
|
settledOpenItemComment: string;
|
|
10913
11035
|
|
|
10914
11036
|
/**
|
|
10915
|
-
*
|
|
11037
|
+
* Referenz auf die zugehörige Position in einem externen System
|
|
10916
11038
|
*/
|
|
10917
|
-
|
|
11039
|
+
externalId: string;
|
|
10918
11040
|
|
|
10919
11041
|
/**
|
|
10920
|
-
*
|
|
11042
|
+
* ID der Belegposition im aktuellen Beleg
|
|
10921
11043
|
*/
|
|
10922
|
-
|
|
11044
|
+
lineId: number;
|
|
10923
11045
|
|
|
10924
11046
|
/**
|
|
10925
11047
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
@@ -10942,14 +11064,14 @@ export interface RequestDocumentLine {
|
|
|
10942
11064
|
texts: Array<RequestDocumentText>;
|
|
10943
11065
|
|
|
10944
11066
|
/**
|
|
10945
|
-
*
|
|
11067
|
+
* Artikelname
|
|
10946
11068
|
*/
|
|
10947
|
-
|
|
11069
|
+
name: string;
|
|
10948
11070
|
|
|
10949
11071
|
/**
|
|
10950
|
-
*
|
|
11072
|
+
* (optional) Liste von Preismodifikatoren für diese Position
|
|
10951
11073
|
*/
|
|
10952
|
-
|
|
11074
|
+
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
10953
11075
|
|
|
10954
11076
|
/**
|
|
10955
11077
|
* Für interne Zwecke: Externe Artikelnummer
|
|
@@ -10957,14 +11079,14 @@ export interface RequestDocumentLine {
|
|
|
10957
11079
|
externalArticleNumber: string;
|
|
10958
11080
|
|
|
10959
11081
|
/**
|
|
10960
|
-
*
|
|
11082
|
+
* ID der Quell-Belegposition
|
|
10961
11083
|
*/
|
|
10962
|
-
|
|
11084
|
+
sourceLineId: number;
|
|
10963
11085
|
|
|
10964
11086
|
/**
|
|
10965
|
-
*
|
|
11087
|
+
* Buchungen zu dieser Belegposition
|
|
10966
11088
|
*/
|
|
10967
|
-
|
|
11089
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10968
11090
|
|
|
10969
11091
|
/**
|
|
10970
11092
|
* Zu der Zeile Etikettendruck anstoßen
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -11562,14 +11684,14 @@ export interface SequencerConfigurationDetail {
|
|
|
11562
11684
|
export interface SerialNumberWithQuantityApi {
|
|
11563
11685
|
|
|
11564
11686
|
/**
|
|
11565
|
-
*
|
|
11687
|
+
* Seriennummer
|
|
11566
11688
|
*/
|
|
11567
|
-
|
|
11689
|
+
serialNumber: ArticleSerialNumber;
|
|
11568
11690
|
|
|
11569
11691
|
/**
|
|
11570
|
-
*
|
|
11692
|
+
* Menge
|
|
11571
11693
|
*/
|
|
11572
|
-
|
|
11694
|
+
quantity: number;
|
|
11573
11695
|
}
|
|
11574
11696
|
|
|
11575
11697
|
export interface ShelfCommonMapper {
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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,9 +12473,9 @@ export interface Supplier {
|
|
|
12351
12473
|
info: MetaInfo;
|
|
12352
12474
|
|
|
12353
12475
|
/**
|
|
12354
|
-
*
|
|
12476
|
+
* tax able or tax free
|
|
12355
12477
|
*/
|
|
12356
|
-
|
|
12478
|
+
taxable: boolean;
|
|
12357
12479
|
|
|
12358
12480
|
/**
|
|
12359
12481
|
* reference to the delivery method
|
|
@@ -12361,9 +12483,9 @@ export interface Supplier {
|
|
|
12361
12483
|
deliveryMethodRef: ApiObjectReference;
|
|
12362
12484
|
|
|
12363
12485
|
/**
|
|
12364
|
-
*
|
|
12486
|
+
* Lieferantengruppe
|
|
12365
12487
|
*/
|
|
12366
|
-
|
|
12488
|
+
supplierGroupRef: ApiObjectReference;
|
|
12367
12489
|
|
|
12368
12490
|
/**
|
|
12369
12491
|
* Mahnen?
|
|
@@ -12416,14 +12538,14 @@ export interface Supplier {
|
|
|
12416
12538
|
performanceCountryCode: string;
|
|
12417
12539
|
|
|
12418
12540
|
/**
|
|
12419
|
-
*
|
|
12541
|
+
* reference to the payment method
|
|
12420
12542
|
*/
|
|
12421
|
-
|
|
12543
|
+
paymentMethodRef: ApiObjectReference;
|
|
12422
12544
|
|
|
12423
12545
|
/**
|
|
12424
|
-
*
|
|
12546
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12425
12547
|
*/
|
|
12426
|
-
|
|
12548
|
+
defaultDeliveryTime: number;
|
|
12427
12549
|
|
|
12428
12550
|
/**
|
|
12429
12551
|
* Bestellsperre
|
|
@@ -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
|
|
@@ -12861,6 +12983,11 @@ export interface User {
|
|
|
12861
12983
|
*/
|
|
12862
12984
|
roles: Array<ApiObjectReference>;
|
|
12863
12985
|
|
|
12986
|
+
/**
|
|
12987
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12988
|
+
*/
|
|
12989
|
+
referencedCustomerUserId: number;
|
|
12990
|
+
|
|
12864
12991
|
/**
|
|
12865
12992
|
* Gruppen
|
|
12866
12993
|
*/
|
|
@@ -12872,34 +12999,29 @@ export interface User {
|
|
|
12872
12999
|
active: boolean;
|
|
12873
13000
|
|
|
12874
13001
|
/**
|
|
12875
|
-
*
|
|
13002
|
+
* User type
|
|
12876
13003
|
*/
|
|
12877
|
-
|
|
13004
|
+
type: CommonUserType;
|
|
12878
13005
|
|
|
12879
13006
|
/**
|
|
12880
13007
|
* App-Identifier
|
|
12881
13008
|
*/
|
|
12882
13009
|
appIdentifier: UUID;
|
|
12883
13010
|
|
|
12884
|
-
/**
|
|
12885
|
-
* User type
|
|
12886
|
-
*/
|
|
12887
|
-
type: CommonUserType;
|
|
12888
|
-
|
|
12889
13011
|
/**
|
|
12890
13012
|
* Version Identifier for this Object (for PUT)
|
|
12891
13013
|
*/
|
|
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
|
|
@@ -13107,14 +13229,14 @@ export interface VariantValue {
|
|
|
13107
13229
|
version: number;
|
|
13108
13230
|
|
|
13109
13231
|
/**
|
|
13110
|
-
*
|
|
13232
|
+
* Mehrsprachige Bezeichnungen
|
|
13111
13233
|
*/
|
|
13112
|
-
|
|
13234
|
+
labels: Array<VariantDescription>;
|
|
13113
13235
|
|
|
13114
13236
|
/**
|
|
13115
|
-
*
|
|
13237
|
+
* Variantenattribut
|
|
13116
13238
|
*/
|
|
13117
|
-
|
|
13239
|
+
attributeRef: ApiObjectReference;
|
|
13118
13240
|
|
|
13119
13241
|
/**
|
|
13120
13242
|
* MetaInformations for this 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>> {
|