@vario-software/types 2026.32.7 → 2026.32.9
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 +10 -5
- package/readme.md +24 -5
- package/scripting/services.d.ts +50 -50
- package/scripting/types.d.ts +442 -442
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* first contact type for this account
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
accountZoneId: AccountZoneId;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -144,14 +144,14 @@ export interface Account {
|
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Summe Forderungen
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
receivablesSum: number;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Kostenstelle
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* companyLegal for this account
|
|
@@ -292,14 +292,14 @@ export interface AccountAddress {
|
|
|
292
292
|
regionRef: ApiObjectReference;
|
|
293
293
|
|
|
294
294
|
/**
|
|
295
|
-
*
|
|
295
|
+
* Title
|
|
296
296
|
*/
|
|
297
|
-
|
|
297
|
+
titleRef: ApiCreatableReference;
|
|
298
298
|
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Post office box
|
|
301
301
|
*/
|
|
302
|
-
|
|
302
|
+
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
305
|
* Street
|
|
@@ -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
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* abweichende Zahlungsbedingungen
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* Contacts
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
contacts: Array<Contact>;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -494,26 +494,26 @@ export interface AccountBankdetail {
|
|
|
494
494
|
*/
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
|
-
/**
|
|
498
|
-
* Hauptbankverbindung für
|
|
499
|
-
*/
|
|
500
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
501
|
-
|
|
502
497
|
/**
|
|
503
498
|
* city of the bank
|
|
504
499
|
*/
|
|
505
500
|
bankCity: string;
|
|
506
501
|
|
|
507
502
|
/**
|
|
508
|
-
*
|
|
503
|
+
* Hauptbankverbindung für
|
|
509
504
|
*/
|
|
510
|
-
|
|
505
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
511
506
|
|
|
512
507
|
/**
|
|
513
508
|
* origin type
|
|
514
509
|
*/
|
|
515
510
|
originType: AccountBankdetail$OriginType;
|
|
516
511
|
|
|
512
|
+
/**
|
|
513
|
+
* Is default bank?
|
|
514
|
+
*/
|
|
515
|
+
defaultBank: boolean;
|
|
516
|
+
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
519
519
|
*/
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
payablesSum: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Kreditlimit
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
maximalLoan: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1029,6 +1029,11 @@ export interface Article {
|
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Seriennummern Auszeichnungsart
|
|
1034
|
+
*/
|
|
1035
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* Durchschnittl. EKP (Startwert)
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
sellableWithoutStock: boolean;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Seriennummern Auszeichnungsart
|
|
1044
|
-
*/
|
|
1045
|
-
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1070,14 +1070,14 @@ export interface Article {
|
|
|
1070
1070
|
warrantyInMonths: number;
|
|
1071
1071
|
|
|
1072
1072
|
/**
|
|
1073
|
-
*
|
|
1073
|
+
* weight and size w.o. packaging
|
|
1074
1074
|
*/
|
|
1075
|
-
|
|
1075
|
+
netMetric: Article$Metric;
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
|
-
*
|
|
1078
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
1083
|
* unique product number
|
|
@@ -1224,20 +1224,15 @@ export interface Article {
|
|
|
1224
1224
|
*/
|
|
1225
1225
|
countryOfOriginRef: CountryReference;
|
|
1226
1226
|
|
|
1227
|
-
/**
|
|
1228
|
-
* Frei kommissionierbar
|
|
1229
|
-
*/
|
|
1230
|
-
freelyPickable: boolean;
|
|
1231
|
-
|
|
1232
1227
|
/**
|
|
1233
1228
|
* description custom data
|
|
1234
1229
|
*/
|
|
1235
1230
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1236
1231
|
|
|
1237
1232
|
/**
|
|
1238
|
-
*
|
|
1233
|
+
* Frei kommissionierbar
|
|
1239
1234
|
*/
|
|
1240
|
-
|
|
1235
|
+
freelyPickable: boolean;
|
|
1241
1236
|
|
|
1242
1237
|
/**
|
|
1243
1238
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
@@ -1249,6 +1244,11 @@ export interface Article {
|
|
|
1249
1244
|
*/
|
|
1250
1245
|
taxLiabilityReversed: boolean;
|
|
1251
1246
|
|
|
1247
|
+
/**
|
|
1248
|
+
* Notiz
|
|
1249
|
+
*/
|
|
1250
|
+
note: string;
|
|
1251
|
+
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
1254
1254
|
*/
|
|
@@ -1285,9 +1285,9 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* gross sales prices
|
|
1289
1289
|
*/
|
|
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
|
|
@@ -1295,9 +1295,9 @@ export interface Article {
|
|
|
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)
|
|
@@ -1310,14 +1310,14 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* reference to Product
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
productRef: ApiObjectReference;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* Versandlabeldruck
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
shippingLabelPrinting: boolean;
|
|
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
|
+
* rabattierbarer Artikel?
|
|
1329
1329
|
*/
|
|
1330
|
-
|
|
1330
|
+
discountable: boolean;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* Kontingentartikel
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
contingentArticleRef: ApiObjectReference;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* provisionsberechtiger Artikel?
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
commissionable: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* Nur manuelle Produktion
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
onlyManualFabrication: boolean;
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* size
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
sizeZ: number;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* weight unit
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
weightUnit: UnitTypeReference;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1562,11 +1562,6 @@ export interface ArticleCustomer {
|
|
|
1562
1562
|
*/
|
|
1563
1563
|
useDeviatingArticleIdentifier: boolean;
|
|
1564
1564
|
|
|
1565
|
-
/**
|
|
1566
|
-
* Kunden-Preise
|
|
1567
|
-
*/
|
|
1568
|
-
productPrices: Array<ProductPrice>;
|
|
1569
|
-
|
|
1570
1565
|
/**
|
|
1571
1566
|
* Referenced Article
|
|
1572
1567
|
*/
|
|
@@ -1577,6 +1572,11 @@ export interface ArticleCustomer {
|
|
|
1577
1572
|
*/
|
|
1578
1573
|
useDeviatingArticleDescription: boolean;
|
|
1579
1574
|
|
|
1575
|
+
/**
|
|
1576
|
+
* Kunden-Preise
|
|
1577
|
+
*/
|
|
1578
|
+
productPrices: Array<ProductPrice>;
|
|
1579
|
+
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Aktiv?
|
|
1582
1582
|
*/
|
|
@@ -1612,11 +1612,6 @@ export interface ArticleCustomer {
|
|
|
1612
1612
|
*/
|
|
1613
1613
|
defaultGrossPrice: number;
|
|
1614
1614
|
|
|
1615
|
-
/**
|
|
1616
|
-
* Artikelnummer
|
|
1617
|
-
*/
|
|
1618
|
-
articleNumber: string;
|
|
1619
|
-
|
|
1620
1615
|
/**
|
|
1621
1616
|
* Abweichende Produktnummer
|
|
1622
1617
|
*/
|
|
@@ -1627,6 +1622,11 @@ export interface ArticleCustomer {
|
|
|
1627
1622
|
*/
|
|
1628
1623
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1629
1624
|
|
|
1625
|
+
/**
|
|
1626
|
+
* Artikelnummer
|
|
1627
|
+
*/
|
|
1628
|
+
articleNumber: string;
|
|
1629
|
+
|
|
1630
1630
|
/**
|
|
1631
1631
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1632
1632
|
*/
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
* der
|
|
1738
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
customLowestPriceGross: number;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
*
|
|
1743
|
+
* der Sales Channel
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
salesChannelRef: ApiObjectReference;
|
|
1746
1746
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* soll der Artikel gelistet werden
|
|
@@ -1775,14 +1775,14 @@ export interface ArticleListing {
|
|
|
1775
1775
|
alternativeName: WithDefaults<String>;
|
|
1776
1776
|
|
|
1777
1777
|
/**
|
|
1778
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1778
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1779
1779
|
*/
|
|
1780
|
-
|
|
1780
|
+
customLowestPriceNet: number;
|
|
1781
1781
|
|
|
1782
1782
|
/**
|
|
1783
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1783
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1784
1784
|
*/
|
|
1785
|
-
|
|
1785
|
+
proposedLowestPriceNet: number;
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* der aktuelle listing stand
|
|
@@ -1957,6 +1957,11 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
+
/**
|
|
1961
|
+
* Meldebestand
|
|
1962
|
+
*/
|
|
1963
|
+
reorderPoint: number;
|
|
1964
|
+
|
|
1960
1965
|
/**
|
|
1961
1966
|
* Bestellte Menge
|
|
1962
1967
|
*/
|
|
@@ -1967,11 +1972,6 @@ export interface ArticleStorage {
|
|
|
1967
1972
|
*/
|
|
1968
1973
|
quantityInPicking: number;
|
|
1969
1974
|
|
|
1970
|
-
/**
|
|
1971
|
-
* Meldebestand
|
|
1972
|
-
*/
|
|
1973
|
-
reorderPoint: number;
|
|
1974
|
-
|
|
1975
1975
|
/**
|
|
1976
1976
|
* Nachschub auf
|
|
1977
1977
|
*/
|
|
@@ -2050,6 +2050,11 @@ export interface ArticleStorage {
|
|
|
2050
2050
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
|
+
/**
|
|
2054
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2055
|
+
*/
|
|
2056
|
+
useSupplierArticleDescription: boolean;
|
|
2057
|
+
|
|
2053
2058
|
/**
|
|
2054
2059
|
* Lieferanten-Meldebestand
|
|
2055
2060
|
*/
|
|
@@ -2060,11 +2065,6 @@ export interface ArticleSupplier {
|
|
|
2060
2065
|
*/
|
|
2061
2066
|
accountDisplayName: string;
|
|
2062
2067
|
|
|
2063
|
-
/**
|
|
2064
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2065
|
-
*/
|
|
2066
|
-
useSupplierArticleDescription: boolean;
|
|
2067
|
-
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Lieferzeit in (Werk-)Tagen
|
|
2070
2070
|
*/
|
|
@@ -2131,14 +2131,14 @@ export interface ArticleSupplier {
|
|
|
2131
2131
|
articleName: string;
|
|
2132
2132
|
|
|
2133
2133
|
/**
|
|
2134
|
-
*
|
|
2134
|
+
* Referenced Article
|
|
2135
2135
|
*/
|
|
2136
|
-
|
|
2136
|
+
articleId: number;
|
|
2137
2137
|
|
|
2138
2138
|
/**
|
|
2139
|
-
*
|
|
2139
|
+
* Lieferanten-Preise
|
|
2140
2140
|
*/
|
|
2141
|
-
|
|
2141
|
+
productPrices: Array<ProductPrice>;
|
|
2142
2142
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* Aktiv?
|
|
@@ -2181,14 +2181,14 @@ export interface ArticleSupplier {
|
|
|
2181
2181
|
purchaseUnit: number;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
orderOnComponentBase: boolean;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
|
-
*
|
|
2189
|
+
* Referenced Supplier-Account
|
|
2190
2190
|
*/
|
|
2191
|
-
|
|
2191
|
+
accountId: number;
|
|
2192
2192
|
|
|
2193
2193
|
/**
|
|
2194
2194
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2214,14 +2214,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2214
|
quantity: number;
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
2217
|
-
*
|
|
2217
|
+
* Buchungen zu der Komponente
|
|
2218
2218
|
*/
|
|
2219
|
-
|
|
2219
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2220
2220
|
|
|
2221
2221
|
/**
|
|
2222
|
-
*
|
|
2222
|
+
* ID der Baugruppen-Quellposition
|
|
2223
2223
|
*/
|
|
2224
|
-
|
|
2224
|
+
sourceLineId: number;
|
|
2225
2225
|
|
|
2226
2226
|
/**
|
|
2227
2227
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2262,14 +2262,14 @@ export interface Asset {
|
|
|
2262
2262
|
active: boolean;
|
|
2263
2263
|
|
|
2264
2264
|
/**
|
|
2265
|
-
*
|
|
2265
|
+
* Ende Garantie
|
|
2266
2266
|
*/
|
|
2267
|
-
|
|
2267
|
+
warrantyEndDate: ScriptingDate;
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
2270
|
-
*
|
|
2270
|
+
* Zugehörige Assets
|
|
2271
2271
|
*/
|
|
2272
|
-
|
|
2272
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2273
2273
|
|
|
2274
2274
|
/**
|
|
2275
2275
|
* Asset-Bezeichnung
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* tatsächliche Startzeit
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
startDateTime: ScriptingDateTime;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
system: boolean;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
assignedUserRef: ApiObjectReference;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3227,14 +3227,14 @@ export interface CrmProject {
|
|
|
3227
3227
|
billedTimes: number;
|
|
3228
3228
|
|
|
3229
3229
|
/**
|
|
3230
|
-
*
|
|
3230
|
+
* Einkaufsbelege
|
|
3231
3231
|
*/
|
|
3232
|
-
|
|
3232
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3233
3233
|
|
|
3234
3234
|
/**
|
|
3235
|
-
*
|
|
3235
|
+
* Geplanter Projektzeitraum (von)
|
|
3236
3236
|
*/
|
|
3237
|
-
|
|
3237
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3238
3238
|
|
|
3239
3239
|
/**
|
|
3240
3240
|
* Verkaufsbelege
|
|
@@ -3267,14 +3267,14 @@ export interface CrmProject {
|
|
|
3267
3267
|
info: MetaInfo;
|
|
3268
3268
|
|
|
3269
3269
|
/**
|
|
3270
|
-
*
|
|
3270
|
+
* Projektleiter vom Auftraggeber
|
|
3271
3271
|
*/
|
|
3272
|
-
|
|
3272
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3273
3273
|
|
|
3274
3274
|
/**
|
|
3275
|
-
*
|
|
3275
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3276
3276
|
*/
|
|
3277
|
-
|
|
3277
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3278
3278
|
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Übergeordnete CRM-Objekte
|
|
@@ -3365,14 +3365,14 @@ export const enum CrmReferenceType {
|
|
|
3365
3365
|
export interface CrmReminder {
|
|
3366
3366
|
|
|
3367
3367
|
/**
|
|
3368
|
-
*
|
|
3368
|
+
* ID des CRM Objekts
|
|
3369
3369
|
*/
|
|
3370
|
-
|
|
3370
|
+
crmId: number;
|
|
3371
3371
|
|
|
3372
3372
|
/**
|
|
3373
|
-
*
|
|
3373
|
+
* Notiz zur Erinnerung
|
|
3374
3374
|
*/
|
|
3375
|
-
|
|
3375
|
+
note: string;
|
|
3376
3376
|
|
|
3377
3377
|
/**
|
|
3378
3378
|
* Wer soll erinnert werden
|
|
@@ -3724,14 +3724,14 @@ export interface CrmTask {
|
|
|
3724
3724
|
parentRefs: Array<CrmObjectRef>;
|
|
3725
3725
|
|
|
3726
3726
|
/**
|
|
3727
|
-
*
|
|
3727
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3728
3728
|
*/
|
|
3729
|
-
|
|
3729
|
+
externalRecordedTimes: number;
|
|
3730
3730
|
|
|
3731
3731
|
/**
|
|
3732
|
-
*
|
|
3732
|
+
* Beauftragte Zeit in Sekunden
|
|
3733
3733
|
*/
|
|
3734
|
-
|
|
3734
|
+
effortCommissioned: number;
|
|
3735
3735
|
|
|
3736
3736
|
/**
|
|
3737
3737
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* reference to product price group
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
collectiveInvoiceManually: boolean;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the Object
|
|
@@ -3988,14 +3988,14 @@ export interface Customer {
|
|
|
3988
3988
|
info: MetaInfo;
|
|
3989
3989
|
|
|
3990
3990
|
/**
|
|
3991
|
-
*
|
|
3991
|
+
* reference to the delivery method
|
|
3992
3992
|
*/
|
|
3993
|
-
|
|
3993
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3994
3994
|
|
|
3995
3995
|
/**
|
|
3996
|
-
*
|
|
3996
|
+
* tax able or tax free
|
|
3997
3997
|
*/
|
|
3998
|
-
|
|
3998
|
+
taxable: boolean;
|
|
3999
3999
|
|
|
4000
4000
|
/**
|
|
4001
4001
|
* active true/false
|
|
@@ -4147,14 +4147,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4147
4147
|
export interface DeliveryMethod {
|
|
4148
4148
|
|
|
4149
4149
|
/**
|
|
4150
|
-
*
|
|
4150
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4151
4151
|
*/
|
|
4152
|
-
|
|
4152
|
+
splitIntoNewDocument: boolean;
|
|
4153
4153
|
|
|
4154
4154
|
/**
|
|
4155
|
-
*
|
|
4155
|
+
* E-Mail an Versender übergeben
|
|
4156
4156
|
*/
|
|
4157
|
-
|
|
4157
|
+
forwardEmailToShipper: boolean;
|
|
4158
4158
|
|
|
4159
4159
|
/**
|
|
4160
4160
|
* Min. Gewicht pro Paket
|
|
@@ -4207,14 +4207,14 @@ export interface DeliveryMethod {
|
|
|
4207
4207
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4208
|
|
|
4209
4209
|
/**
|
|
4210
|
-
*
|
|
4210
|
+
* Quelle für Paketgewicht
|
|
4211
4211
|
*/
|
|
4212
|
-
|
|
4212
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4213
4213
|
|
|
4214
4214
|
/**
|
|
4215
|
-
*
|
|
4215
|
+
* translations
|
|
4216
4216
|
*/
|
|
4217
|
-
|
|
4217
|
+
translations: Array<DocumentTypeTerm>;
|
|
4218
4218
|
|
|
4219
4219
|
/**
|
|
4220
4220
|
* Versand-Anbieter
|
|
@@ -4305,14 +4305,14 @@ export interface DeliveryTerm {
|
|
|
4305
4305
|
version: number;
|
|
4306
4306
|
|
|
4307
4307
|
/**
|
|
4308
|
-
*
|
|
4308
|
+
* information, how the shipping charges should be calculated
|
|
4309
4309
|
*/
|
|
4310
|
-
|
|
4310
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4311
4311
|
|
|
4312
4312
|
/**
|
|
4313
|
-
*
|
|
4313
|
+
* translations
|
|
4314
4314
|
*/
|
|
4315
|
-
|
|
4315
|
+
translations: Array<DocumentTypeTerm>;
|
|
4316
4316
|
|
|
4317
4317
|
/**
|
|
4318
4318
|
* Lieferarten
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* Versandkostenartikel
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* free shipping net value
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
freeShippingNetValue: number;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* MetaInformations for this Object
|
|
@@ -4355,14 +4355,14 @@ export interface DmsOutputStream {
|
|
|
4355
4355
|
export interface Document {
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Referenz zum Rechnungskonto
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
billingAccountRef: ApiObjectReference;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4366
4366
|
|
|
4367
4367
|
/**
|
|
4368
4368
|
* Externe Belegnummer
|
|
@@ -4400,14 +4400,14 @@ export interface Document {
|
|
|
4400
4400
|
totalVat: number;
|
|
4401
4401
|
|
|
4402
4402
|
/**
|
|
4403
|
-
*
|
|
4403
|
+
* Standardlager für neue Positionen
|
|
4404
4404
|
*/
|
|
4405
|
-
|
|
4405
|
+
defaultStorageRef: ApiObjectReference;
|
|
4406
4406
|
|
|
4407
4407
|
/**
|
|
4408
|
-
*
|
|
4408
|
+
* Name der bestellenden Person
|
|
4409
4409
|
*/
|
|
4410
|
-
|
|
4410
|
+
orderedBy: string;
|
|
4411
4411
|
|
|
4412
4412
|
/**
|
|
4413
4413
|
* Lieferadresse
|
|
@@ -4448,14 +4448,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
4451
|
-
*
|
|
4451
|
+
* Leitweg-ID
|
|
4452
4452
|
*/
|
|
4453
|
-
|
|
4453
|
+
buyerReference: string;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
|
-
*
|
|
4456
|
+
* Bestellnummer aus Vorbeleg
|
|
4457
4457
|
*/
|
|
4458
|
-
|
|
4458
|
+
referencedOrderNumber: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4473,14 +4473,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4473
4473
|
baseDepositPaymentAmount: number;
|
|
4474
4474
|
|
|
4475
4475
|
/**
|
|
4476
|
-
*
|
|
4476
|
+
* Ist der Beleg festgeschrieben?
|
|
4477
4477
|
*/
|
|
4478
|
-
|
|
4478
|
+
frozen: boolean;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
|
-
*
|
|
4481
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4482
4482
|
*/
|
|
4483
|
-
|
|
4483
|
+
totalBeforeModifier: number;
|
|
4484
4484
|
|
|
4485
4485
|
/**
|
|
4486
4486
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4513,14 +4513,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4513
|
accountId: number;
|
|
4514
4514
|
|
|
4515
4515
|
/**
|
|
4516
|
-
* Länderkennzeichen
|
|
4516
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4517
4517
|
*/
|
|
4518
|
-
|
|
4518
|
+
sourceCountryCode: string;
|
|
4519
4519
|
|
|
4520
4520
|
/**
|
|
4521
|
-
* Länderkennzeichen
|
|
4521
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4522
4522
|
*/
|
|
4523
|
-
|
|
4523
|
+
performanceCountryCode: string;
|
|
4524
4524
|
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4645,14 +4645,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4645
4645
|
accountNumber: string;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
|
-
*
|
|
4648
|
+
* Referenz auf Zahlungsbedingung
|
|
4649
4649
|
*/
|
|
4650
|
-
|
|
4650
|
+
paymentTermRef: PaymentTermRef;
|
|
4651
4651
|
|
|
4652
4652
|
/**
|
|
4653
|
-
*
|
|
4653
|
+
* Wird vom Workflow verarbeitet?
|
|
4654
4654
|
*/
|
|
4655
|
-
|
|
4655
|
+
processedByWorkflow: boolean;
|
|
4656
4656
|
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Leistungsdatum
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
performanceDate: ScriptingDate;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Verarbeitungsoption für Stapel
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4864,25 +4864,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4864
4864
|
*/
|
|
4865
4865
|
customerNumber: string;
|
|
4866
4866
|
|
|
4867
|
-
/**
|
|
4868
|
-
* Statusinstanz des Belegs
|
|
4869
|
-
*/
|
|
4870
|
-
documentState: DocumentTypeState;
|
|
4871
|
-
|
|
4872
4867
|
/**
|
|
4873
4868
|
* Umsatzsteuer-Identifikationsnummer
|
|
4874
4869
|
*/
|
|
4875
4870
|
taxIdentificationNumber: string;
|
|
4876
4871
|
|
|
4877
4872
|
/**
|
|
4878
|
-
*
|
|
4873
|
+
* Statusinstanz des Belegs
|
|
4879
4874
|
*/
|
|
4880
|
-
|
|
4875
|
+
documentState: DocumentTypeState;
|
|
4881
4876
|
|
|
4882
4877
|
/**
|
|
4883
|
-
*
|
|
4878
|
+
* Versandkostenpositionen
|
|
4884
4879
|
*/
|
|
4885
|
-
|
|
4880
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4886
4881
|
|
|
4887
4882
|
/**
|
|
4888
4883
|
* Referenz auf Lieferbedingung
|
|
@@ -4896,6 +4891,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4896
4891
|
*/
|
|
4897
4892
|
posReceiptBalanced: boolean;
|
|
4898
4893
|
|
|
4894
|
+
/**
|
|
4895
|
+
* Rückgeld
|
|
4896
|
+
*/
|
|
4897
|
+
posReceiptChangeAmount: number;
|
|
4898
|
+
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
4901
4901
|
*/
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Rechnungsadresse
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
billingAddress: DocumentAddress;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Status der USt-ID-Prüfung
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -5287,14 +5287,14 @@ export interface DocumentContractDetail {
|
|
|
5287
5287
|
runtimeToDate: ScriptingDate;
|
|
5288
5288
|
|
|
5289
5289
|
/**
|
|
5290
|
-
*
|
|
5290
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
|
-
*
|
|
5295
|
+
* Nächste Fälligkeit
|
|
5296
5296
|
*/
|
|
5297
|
-
|
|
5297
|
+
nextDueDate: ScriptingDate;
|
|
5298
5298
|
|
|
5299
5299
|
/**
|
|
5300
5300
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5550,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5550
5550
|
serialType: ArticleSerialType;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
|
-
*
|
|
5553
|
+
* Preis pro Einheit in Basiswährung
|
|
5554
5554
|
*/
|
|
5555
|
-
|
|
5555
|
+
basePrice: number;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
|
-
*
|
|
5558
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5559
5559
|
*/
|
|
5560
|
-
|
|
5560
|
+
positionOfArticleLine: number;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
5563
|
* Preiseinheit
|
|
@@ -5664,6 +5664,11 @@ export interface DocumentLine {
|
|
|
5664
5664
|
*/
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
|
+
/**
|
|
5668
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5669
|
+
*/
|
|
5670
|
+
baseSalesValueNet: number;
|
|
5671
|
+
|
|
5667
5672
|
/**
|
|
5668
5673
|
* Vertragsinformationen
|
|
5669
5674
|
*/
|
|
@@ -5674,11 +5679,6 @@ export interface DocumentLine {
|
|
|
5674
5679
|
*/
|
|
5675
5680
|
netWeightUnit: UnitTypeReference;
|
|
5676
5681
|
|
|
5677
|
-
/**
|
|
5678
|
-
* Nettoverkaufswert der Position in Basiswährung
|
|
5679
|
-
*/
|
|
5680
|
-
baseSalesValueNet: number;
|
|
5681
|
-
|
|
5682
5682
|
/**
|
|
5683
5683
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5684
5684
|
*/
|
|
@@ -5765,14 +5765,14 @@ export interface DocumentLine {
|
|
|
5765
5765
|
commissions: Array<DocumentLineCommission>;
|
|
5766
5766
|
|
|
5767
5767
|
/**
|
|
5768
|
-
*
|
|
5768
|
+
* Gesamtpreis Position in Basiswährung
|
|
5769
5769
|
*/
|
|
5770
|
-
|
|
5770
|
+
baseTotalLinePrice: number;
|
|
5771
5771
|
|
|
5772
5772
|
/**
|
|
5773
|
-
*
|
|
5773
|
+
* Positionstyp
|
|
5774
5774
|
*/
|
|
5775
|
-
|
|
5775
|
+
lineType: DocumentLineType;
|
|
5776
5776
|
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5810,14 +5810,14 @@ export interface DocumentLine {
|
|
|
5810
5810
|
countryRegion: ApiObjectReference;
|
|
5811
5811
|
|
|
5812
5812
|
/**
|
|
5813
|
-
*
|
|
5813
|
+
* Provisionsursprung
|
|
5814
5814
|
*/
|
|
5815
|
-
|
|
5815
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5816
5816
|
|
|
5817
5817
|
/**
|
|
5818
|
-
*
|
|
5818
|
+
* Nettogewicht
|
|
5819
5819
|
*/
|
|
5820
|
-
|
|
5820
|
+
netWeight: number;
|
|
5821
5821
|
|
|
5822
5822
|
/**
|
|
5823
5823
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -5870,14 +5870,14 @@ export interface DocumentLine {
|
|
|
5870
5870
|
description: string;
|
|
5871
5871
|
|
|
5872
5872
|
/**
|
|
5873
|
-
*
|
|
5873
|
+
* Preisherkunft
|
|
5874
5874
|
*/
|
|
5875
|
-
|
|
5875
|
+
priceOrigin: ProductPriceOrigin;
|
|
5876
5876
|
|
|
5877
5877
|
/**
|
|
5878
|
-
*
|
|
5878
|
+
* Referenz zum Lager
|
|
5879
5879
|
*/
|
|
5880
|
-
|
|
5880
|
+
storage: ApiObjectReference;
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
5883
5883
|
* Rohertragsermittlung
|
|
@@ -6336,14 +6336,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6336
6336
|
quantityFinished: number;
|
|
6337
6337
|
|
|
6338
6338
|
/**
|
|
6339
|
-
*
|
|
6339
|
+
* Menge defekt
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
quantityDefective: number;
|
|
6342
6342
|
|
|
6343
6343
|
/**
|
|
6344
|
-
*
|
|
6344
|
+
* Produzierte Seriennummern
|
|
6345
6345
|
*/
|
|
6346
|
-
|
|
6346
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6347
6347
|
|
|
6348
6348
|
/**
|
|
6349
6349
|
* Freifeld
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Typ der Einlage/Ausgabe
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
depositExpenseTypeId: number;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Status der externen Zahlung
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6979,14 +6979,14 @@ export interface DocumentShippingCost {
|
|
|
6979
6979
|
manualCosts: boolean;
|
|
6980
6980
|
|
|
6981
6981
|
/**
|
|
6982
|
-
*
|
|
6982
|
+
* Keine Versandkosten (freier Versand)
|
|
6983
6983
|
*/
|
|
6984
|
-
|
|
6984
|
+
freeShipping: boolean;
|
|
6985
6985
|
|
|
6986
6986
|
/**
|
|
6987
|
-
*
|
|
6987
|
+
* Texte
|
|
6988
6988
|
*/
|
|
6989
|
-
|
|
6989
|
+
texts: Array<DocumentText>;
|
|
6990
6990
|
|
|
6991
6991
|
/**
|
|
6992
6992
|
* skontierbar
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
deleted: boolean;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
textPosition: TextPosition;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* nächste Belegnummer
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
nextNumber: string;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* Zählerkreis
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Ziel-Lager
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
targetStorageId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Seriennummer
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
serialNumberId: number;
|
|
7410
7410
|
|
|
7411
7411
|
/**
|
|
7412
7412
|
* Bemerkung
|
|
@@ -7677,14 +7677,14 @@ export interface ExternalDocumentWithTaxesLine {
|
|
|
7677
7677
|
quantity: number;
|
|
7678
7678
|
|
|
7679
7679
|
/**
|
|
7680
|
-
*
|
|
7680
|
+
* Zeilen-Netto
|
|
7681
7681
|
*/
|
|
7682
|
-
|
|
7682
|
+
netAmount: number;
|
|
7683
7683
|
|
|
7684
7684
|
/**
|
|
7685
|
-
*
|
|
7685
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7686
7686
|
*/
|
|
7687
|
-
|
|
7687
|
+
taxValue: number;
|
|
7688
7688
|
|
|
7689
7689
|
/**
|
|
7690
7690
|
* Netto-Einzelpreis
|
|
@@ -7743,14 +7743,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7743
7743
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7744
7744
|
|
|
7745
7745
|
/**
|
|
7746
|
-
*
|
|
7746
|
+
* Key der Belegart
|
|
7747
7747
|
*/
|
|
7748
|
-
|
|
7748
|
+
documentTypeKey: string;
|
|
7749
7749
|
|
|
7750
7750
|
/**
|
|
7751
|
-
*
|
|
7751
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7752
7752
|
*/
|
|
7753
|
-
|
|
7753
|
+
taxIdentificationNumber: string;
|
|
7754
7754
|
}
|
|
7755
7755
|
|
|
7756
7756
|
export interface FabricationComponentForProduction {
|
|
@@ -8216,26 +8216,26 @@ export interface OpenItem {
|
|
|
8216
8216
|
*/
|
|
8217
8217
|
paymentDueDate: ScriptingDate;
|
|
8218
8218
|
|
|
8219
|
-
/**
|
|
8220
|
-
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8221
|
-
*/
|
|
8222
|
-
performanceCountryCode: string;
|
|
8223
|
-
|
|
8224
8219
|
/**
|
|
8225
8220
|
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8226
8221
|
*/
|
|
8227
8222
|
sourceCountryCode: string;
|
|
8228
8223
|
|
|
8229
8224
|
/**
|
|
8230
|
-
*
|
|
8225
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8231
8226
|
*/
|
|
8232
|
-
|
|
8227
|
+
performanceCountryCode: string;
|
|
8233
8228
|
|
|
8234
8229
|
/**
|
|
8235
8230
|
* agreed Deposit payment date
|
|
8236
8231
|
*/
|
|
8237
8232
|
depositPaymentDate: ScriptingDate;
|
|
8238
8233
|
|
|
8234
|
+
/**
|
|
8235
|
+
* Valutadatum schreibgeschützt
|
|
8236
|
+
*/
|
|
8237
|
+
valueDateReadOnly: boolean;
|
|
8238
|
+
|
|
8239
8239
|
/**
|
|
8240
8240
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8241
8241
|
*/
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* The full amount of the payment
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
fullPaymentAmount: number;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* Zahlungsplan
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -8372,14 +8372,14 @@ export interface OpenItem {
|
|
|
8372
8372
|
baseSumDiscount: number;
|
|
8373
8373
|
|
|
8374
8374
|
/**
|
|
8375
|
-
*
|
|
8375
|
+
* Zahlungsvorlage
|
|
8376
8376
|
*/
|
|
8377
|
-
|
|
8377
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
baseSumDunnings: number;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
@@ -8392,14 +8392,14 @@ export interface OpenItem {
|
|
|
8392
8392
|
taxRateRef: ApiObjectReference;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
|
-
*
|
|
8395
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8396
8396
|
*/
|
|
8397
|
-
|
|
8397
|
+
baseCurrencyCode: string;
|
|
8398
8398
|
|
|
8399
8399
|
/**
|
|
8400
|
-
*
|
|
8400
|
+
* Anzahlungsrechnung
|
|
8401
8401
|
*/
|
|
8402
|
-
|
|
8402
|
+
depositInvoice: ApiObjectReference;
|
|
8403
8403
|
|
|
8404
8404
|
/**
|
|
8405
8405
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8615,14 +8615,14 @@ export interface OpenItemRecord {
|
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
8617
|
/**
|
|
8618
|
-
*
|
|
8618
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8619
8619
|
*/
|
|
8620
|
-
|
|
8620
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8621
8621
|
|
|
8622
8622
|
/**
|
|
8623
|
-
*
|
|
8623
|
+
* record discountable amount
|
|
8624
8624
|
*/
|
|
8625
|
-
|
|
8625
|
+
discountableAmount: number;
|
|
8626
8626
|
|
|
8627
8627
|
/**
|
|
8628
8628
|
* record date
|
|
@@ -8680,14 +8680,14 @@ export interface OpenItemRecord {
|
|
|
8680
8680
|
version: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* Buchungsbetrag in Basiswährung
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
baseAmount: number;
|
|
8686
8686
|
|
|
8687
8687
|
/**
|
|
8688
|
-
*
|
|
8688
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8689
8689
|
*/
|
|
8690
|
-
|
|
8690
|
+
transactionId: number;
|
|
8691
8691
|
|
|
8692
8692
|
/**
|
|
8693
8693
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8860,14 +8860,14 @@ export interface PaymentMethod {
|
|
|
8860
8860
|
dunnable: boolean;
|
|
8861
8861
|
|
|
8862
8862
|
/**
|
|
8863
|
-
*
|
|
8863
|
+
* translations
|
|
8864
8864
|
*/
|
|
8865
|
-
|
|
8865
|
+
translations: Array<DocumentTypeTerm>;
|
|
8866
8866
|
|
|
8867
8867
|
/**
|
|
8868
|
-
*
|
|
8868
|
+
* Debitoren-OP abschließen?
|
|
8869
8869
|
*/
|
|
8870
|
-
|
|
8870
|
+
closeCustomerAccountType: boolean;
|
|
8871
8871
|
|
|
8872
8872
|
/**
|
|
8873
8873
|
* +Tage für Folgelastschrift
|
|
@@ -8875,14 +8875,14 @@ export interface PaymentMethod {
|
|
|
8875
8875
|
daysToAddForFollowup: number;
|
|
8876
8876
|
|
|
8877
8877
|
/**
|
|
8878
|
-
*
|
|
8878
|
+
* external Payment Id
|
|
8879
8879
|
*/
|
|
8880
|
-
|
|
8880
|
+
externalPaymentId: string;
|
|
8881
8881
|
|
|
8882
8882
|
/**
|
|
8883
|
-
*
|
|
8883
|
+
* Die Business Transaction
|
|
8884
8884
|
*/
|
|
8885
|
-
|
|
8885
|
+
businessTransaction: ApiObjectReference;
|
|
8886
8886
|
|
|
8887
8887
|
/**
|
|
8888
8888
|
* Unique identifier of the Object
|
|
@@ -8965,26 +8965,26 @@ export interface PaymentTerm {
|
|
|
8965
8965
|
*/
|
|
8966
8966
|
paymentDiscount2: number;
|
|
8967
8967
|
|
|
8968
|
-
/**
|
|
8969
|
-
* Percent for Discount 1
|
|
8970
|
-
*/
|
|
8971
|
-
paymentDiscount1: number;
|
|
8972
|
-
|
|
8973
8968
|
/**
|
|
8974
8969
|
* printDescription
|
|
8975
8970
|
*/
|
|
8976
8971
|
printDescription: string;
|
|
8977
8972
|
|
|
8978
8973
|
/**
|
|
8979
|
-
*
|
|
8974
|
+
* Percent for Discount 1
|
|
8980
8975
|
*/
|
|
8981
|
-
|
|
8976
|
+
paymentDiscount1: number;
|
|
8982
8977
|
|
|
8983
8978
|
/**
|
|
8984
8979
|
* for deposit: remaining term
|
|
8985
8980
|
*/
|
|
8986
8981
|
remainingTermRef: ApiObjectReference;
|
|
8987
8982
|
|
|
8983
|
+
/**
|
|
8984
|
+
* Days for Discount 1
|
|
8985
|
+
*/
|
|
8986
|
+
paymentDays1: number;
|
|
8987
|
+
|
|
8988
8988
|
/**
|
|
8989
8989
|
* Days for Discount 2
|
|
8990
8990
|
*/
|
|
@@ -9104,14 +9104,14 @@ export interface PickTrolley {
|
|
|
9104
9104
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9105
9105
|
|
|
9106
9106
|
/**
|
|
9107
|
-
*
|
|
9107
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9108
9108
|
*/
|
|
9109
|
-
|
|
9109
|
+
storageBinRef: StorageBinRef;
|
|
9110
9110
|
|
|
9111
9111
|
/**
|
|
9112
|
-
*
|
|
9112
|
+
* Bearbeiter der Pickliste
|
|
9113
9113
|
*/
|
|
9114
|
-
|
|
9114
|
+
processedByUserRef: ApiObjectReference;
|
|
9115
9115
|
|
|
9116
9116
|
/**
|
|
9117
9117
|
* Beschreibung des Wagens
|
|
@@ -9266,14 +9266,14 @@ export const enum PickingType {
|
|
|
9266
9266
|
export interface Picklist {
|
|
9267
9267
|
|
|
9268
9268
|
/**
|
|
9269
|
-
*
|
|
9269
|
+
* Ziellager für Nachschub
|
|
9270
9270
|
*/
|
|
9271
|
-
|
|
9271
|
+
targetStorageRef: ApiObjectReference;
|
|
9272
9272
|
|
|
9273
9273
|
/**
|
|
9274
|
-
*
|
|
9274
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
9275
9275
|
*/
|
|
9276
|
-
|
|
9276
|
+
usedTemplate: PicklistTemplate;
|
|
9277
9277
|
|
|
9278
9278
|
/**
|
|
9279
9279
|
* Nummer der Pickliste
|
|
@@ -9324,14 +9324,14 @@ export interface Picklist {
|
|
|
9324
9324
|
export interface PicklistLine {
|
|
9325
9325
|
|
|
9326
9326
|
/**
|
|
9327
|
-
*
|
|
9327
|
+
* Gesammelte Menge der Position
|
|
9328
9328
|
*/
|
|
9329
|
-
|
|
9329
|
+
quantityCollected: number;
|
|
9330
9330
|
|
|
9331
9331
|
/**
|
|
9332
|
-
*
|
|
9332
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9333
9333
|
*/
|
|
9334
|
-
|
|
9334
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9335
9335
|
|
|
9336
9336
|
/**
|
|
9337
9337
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9455,14 +9455,14 @@ export interface PicklistLineComponent {
|
|
|
9455
9455
|
quantityCollected: number;
|
|
9456
9456
|
|
|
9457
9457
|
/**
|
|
9458
|
-
*
|
|
9458
|
+
* Artikelbezeichnung
|
|
9459
9459
|
*/
|
|
9460
|
-
|
|
9460
|
+
articleName: string;
|
|
9461
9461
|
|
|
9462
9462
|
/**
|
|
9463
|
-
*
|
|
9463
|
+
* Menge der Position
|
|
9464
9464
|
*/
|
|
9465
|
-
|
|
9465
|
+
quantity: number;
|
|
9466
9466
|
|
|
9467
9467
|
/**
|
|
9468
9468
|
* Artikelbeschreibung
|
|
@@ -9500,14 +9500,14 @@ export interface PicklistLineComponent {
|
|
|
9500
9500
|
targetDocumentLineComponentId: number;
|
|
9501
9501
|
|
|
9502
9502
|
/**
|
|
9503
|
-
*
|
|
9503
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9504
9504
|
*/
|
|
9505
|
-
|
|
9505
|
+
quantityPerAssemblyGroup: number;
|
|
9506
9506
|
|
|
9507
9507
|
/**
|
|
9508
|
-
*
|
|
9508
|
+
* abweichende Artikelbezeichnung
|
|
9509
9509
|
*/
|
|
9510
|
-
|
|
9510
|
+
articleAlternativeName: string;
|
|
9511
9511
|
|
|
9512
9512
|
/**
|
|
9513
9513
|
* Verpackte Menge der Position
|
|
@@ -9676,19 +9676,19 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9676
9676
|
maxArticleCountPerOrder: number;
|
|
9677
9677
|
|
|
9678
9678
|
/**
|
|
9679
|
-
*
|
|
9679
|
+
* Maximaler Auftragswert
|
|
9680
9680
|
*/
|
|
9681
|
-
|
|
9681
|
+
maxOrderValue: number;
|
|
9682
9682
|
|
|
9683
9683
|
/**
|
|
9684
|
-
*
|
|
9684
|
+
* Alternative Selektion in VQL
|
|
9685
9685
|
*/
|
|
9686
|
-
|
|
9686
|
+
alternativeSelectionInVql: string;
|
|
9687
9687
|
|
|
9688
9688
|
/**
|
|
9689
|
-
*
|
|
9689
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9690
9690
|
*/
|
|
9691
|
-
|
|
9691
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9692
9692
|
|
|
9693
9693
|
/**
|
|
9694
9694
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9696,9 +9696,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9696
9696
|
onlyFullDeliverableOrderLines: boolean;
|
|
9697
9697
|
|
|
9698
9698
|
/**
|
|
9699
|
-
*
|
|
9699
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9700
9700
|
*/
|
|
9701
|
-
|
|
9701
|
+
maxOrderCount: number;
|
|
9702
9702
|
|
|
9703
9703
|
/**
|
|
9704
9704
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9769,19 +9769,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9769
9769
|
printPicklist: boolean;
|
|
9770
9770
|
|
|
9771
9771
|
/**
|
|
9772
|
-
*
|
|
9772
|
+
* Die zu verwendende Pickwagengruppe
|
|
9773
9773
|
*/
|
|
9774
|
-
|
|
9774
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9775
9775
|
|
|
9776
9776
|
/**
|
|
9777
|
-
*
|
|
9777
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9778
9778
|
*/
|
|
9779
|
-
|
|
9779
|
+
maxPicklistLineCount: number;
|
|
9780
9780
|
|
|
9781
9781
|
/**
|
|
9782
|
-
*
|
|
9782
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9783
9783
|
*/
|
|
9784
|
-
|
|
9784
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9785
9785
|
|
|
9786
9786
|
/**
|
|
9787
9787
|
* Der zu verwendende Pickwagen
|
|
@@ -9789,19 +9789,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9789
9789
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9790
9790
|
|
|
9791
9791
|
/**
|
|
9792
|
-
*
|
|
9792
|
+
* Lagerplätze vorgeben
|
|
9793
9793
|
*/
|
|
9794
|
-
|
|
9794
|
+
specifyStorageBins: boolean;
|
|
9795
9795
|
|
|
9796
9796
|
/**
|
|
9797
|
-
*
|
|
9797
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9798
9798
|
*/
|
|
9799
|
-
|
|
9799
|
+
sortByRoutePosition: boolean;
|
|
9800
9800
|
|
|
9801
9801
|
/**
|
|
9802
|
-
*
|
|
9802
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9803
9803
|
*/
|
|
9804
|
-
|
|
9804
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9805
9805
|
|
|
9806
9806
|
/**
|
|
9807
9807
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -9861,26 +9861,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9861
9861
|
*/
|
|
9862
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9863
|
|
|
9864
|
-
/**
|
|
9865
|
-
* Sammelbestätigung erlauben
|
|
9866
|
-
*/
|
|
9867
|
-
allowFullConfirmation: boolean;
|
|
9868
|
-
|
|
9869
9864
|
/**
|
|
9870
9865
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9871
9866
|
*/
|
|
9872
9867
|
useDigitalPicklist: boolean;
|
|
9873
9868
|
|
|
9874
9869
|
/**
|
|
9875
|
-
*
|
|
9870
|
+
* Sammelbestätigung erlauben
|
|
9876
9871
|
*/
|
|
9877
|
-
|
|
9872
|
+
allowFullConfirmation: boolean;
|
|
9878
9873
|
|
|
9879
9874
|
/**
|
|
9880
9875
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
9881
9876
|
*/
|
|
9882
9877
|
allowPickingOfServiceArticles: boolean;
|
|
9883
9878
|
|
|
9879
|
+
/**
|
|
9880
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9881
|
+
*/
|
|
9882
|
+
printLabelOnScan: boolean;
|
|
9883
|
+
|
|
9884
9884
|
/**
|
|
9885
9885
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9886
9886
|
*/
|
|
@@ -9896,26 +9896,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9896
9896
|
*/
|
|
9897
9897
|
printLabelOnCompleteOrder: boolean;
|
|
9898
9898
|
|
|
9899
|
-
/**
|
|
9900
|
-
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9901
|
-
*/
|
|
9902
|
-
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9903
|
-
|
|
9904
9899
|
/**
|
|
9905
9900
|
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9906
9901
|
*/
|
|
9907
9902
|
printLabelAfterPicking: boolean;
|
|
9908
9903
|
|
|
9909
9904
|
/**
|
|
9910
|
-
*
|
|
9905
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9911
9906
|
*/
|
|
9912
|
-
|
|
9907
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9913
9908
|
|
|
9914
9909
|
/**
|
|
9915
9910
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9916
9911
|
*/
|
|
9917
9912
|
autoDeterminationOfLots: boolean;
|
|
9918
9913
|
|
|
9914
|
+
/**
|
|
9915
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9916
|
+
*/
|
|
9917
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9918
|
+
|
|
9919
9919
|
/**
|
|
9920
9920
|
* Zielmengen in Masken verstecken?
|
|
9921
9921
|
*/
|
|
@@ -9985,26 +9985,26 @@ export interface PriceSelectionCriteria {
|
|
|
9985
9985
|
*/
|
|
9986
9986
|
date: ScriptingDate;
|
|
9987
9987
|
|
|
9988
|
-
/**
|
|
9989
|
-
* Eine Menge
|
|
9990
|
-
*/
|
|
9991
|
-
quantity: number;
|
|
9992
|
-
|
|
9993
9988
|
/**
|
|
9994
9989
|
* Die Preisgruppe
|
|
9995
9990
|
*/
|
|
9996
9991
|
priceGroupId: number;
|
|
9997
9992
|
|
|
9998
9993
|
/**
|
|
9999
|
-
*
|
|
9994
|
+
* Eine Menge
|
|
10000
9995
|
*/
|
|
10001
|
-
|
|
9996
|
+
quantity: number;
|
|
10002
9997
|
|
|
10003
9998
|
/**
|
|
10004
9999
|
* Liste von Artikel-IDs
|
|
10005
10000
|
*/
|
|
10006
10001
|
articleIds: Array<number>;
|
|
10007
10002
|
|
|
10003
|
+
/**
|
|
10004
|
+
* Liste von Account-IDs
|
|
10005
|
+
*/
|
|
10006
|
+
accountIds: Array<number>;
|
|
10007
|
+
|
|
10008
10008
|
/**
|
|
10009
10009
|
* ein qualifier
|
|
10010
10010
|
*/
|
|
@@ -10029,14 +10029,14 @@ export interface PriceSelectionCriteria {
|
|
|
10029
10029
|
export interface Product {
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
|
-
*
|
|
10032
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10033
10033
|
*/
|
|
10034
|
-
|
|
10034
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10035
10035
|
|
|
10036
10036
|
/**
|
|
10037
|
-
*
|
|
10037
|
+
* Zolltarifnummer
|
|
10038
10038
|
*/
|
|
10039
|
-
|
|
10039
|
+
customsTariffNumber: string;
|
|
10040
10040
|
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Gebindeschema dieses Produkts
|
|
@@ -10220,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10220
10220
|
validFrom: ScriptingDate;
|
|
10221
10221
|
|
|
10222
10222
|
/**
|
|
10223
|
-
*
|
|
10223
|
+
* Bestimmt die Art des Rabatts
|
|
10224
10224
|
*/
|
|
10225
|
-
|
|
10225
|
+
modifierType: PriceModifierType;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* Warengruppe
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
productGroupRef: ApiObjectReference;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10245,14 +10245,14 @@ export interface ProductDiscount {
|
|
|
10245
10245
|
currencyRef: CurrencyReference;
|
|
10246
10246
|
|
|
10247
10247
|
/**
|
|
10248
|
-
*
|
|
10248
|
+
* Wert des Rabatts
|
|
10249
10249
|
*/
|
|
10250
|
-
|
|
10250
|
+
modifierValue: number;
|
|
10251
10251
|
|
|
10252
10252
|
/**
|
|
10253
|
-
*
|
|
10253
|
+
* Preisgruppe
|
|
10254
10254
|
*/
|
|
10255
|
-
|
|
10255
|
+
priceGroupRef: ApiObjectReference;
|
|
10256
10256
|
|
|
10257
10257
|
/**
|
|
10258
10258
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10260,14 +10260,14 @@ export interface ProductDiscount {
|
|
|
10260
10260
|
qualifier: ProductPriceQualifier;
|
|
10261
10261
|
|
|
10262
10262
|
/**
|
|
10263
|
-
*
|
|
10263
|
+
* Aktionpreis
|
|
10264
10264
|
*/
|
|
10265
|
-
|
|
10265
|
+
specialOfferPrice: boolean;
|
|
10266
10266
|
|
|
10267
10267
|
/**
|
|
10268
|
-
*
|
|
10268
|
+
* Gültig bis
|
|
10269
10269
|
*/
|
|
10270
|
-
|
|
10270
|
+
validUntil: ScriptingDate;
|
|
10271
10271
|
|
|
10272
10272
|
/**
|
|
10273
10273
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10275,14 +10275,14 @@ export interface ProductDiscount {
|
|
|
10275
10275
|
modifierValueType: ValueType;
|
|
10276
10276
|
|
|
10277
10277
|
/**
|
|
10278
|
-
*
|
|
10278
|
+
* Name des Rabatts
|
|
10279
10279
|
*/
|
|
10280
|
-
|
|
10280
|
+
modifierName: string;
|
|
10281
10281
|
|
|
10282
10282
|
/**
|
|
10283
|
-
*
|
|
10283
|
+
* Account, für den der Rabatt gültig ist
|
|
10284
10284
|
*/
|
|
10285
|
-
|
|
10285
|
+
accountRef: ApiObjectReference;
|
|
10286
10286
|
|
|
10287
10287
|
/**
|
|
10288
10288
|
* Unique identifier of the Object
|
|
@@ -10498,11 +10498,6 @@ export interface ProductPrice {
|
|
|
10498
10498
|
*/
|
|
10499
10499
|
qualifier: ProductPriceQualifier;
|
|
10500
10500
|
|
|
10501
|
-
/**
|
|
10502
|
-
* Gültig bis
|
|
10503
|
-
*/
|
|
10504
|
-
validUntil: ScriptingDate;
|
|
10505
|
-
|
|
10506
10501
|
/**
|
|
10507
10502
|
* Aktionpreis
|
|
10508
10503
|
*/
|
|
@@ -10513,6 +10508,11 @@ export interface ProductPrice {
|
|
|
10513
10508
|
*/
|
|
10514
10509
|
priceBase: ArticlePriceBase;
|
|
10515
10510
|
|
|
10511
|
+
/**
|
|
10512
|
+
* Gültig bis
|
|
10513
|
+
*/
|
|
10514
|
+
validUntil: ScriptingDate;
|
|
10515
|
+
|
|
10516
10516
|
/**
|
|
10517
10517
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10518
10518
|
*/
|
|
@@ -10714,14 +10714,14 @@ export interface RequestDocument {
|
|
|
10714
10714
|
posRegisterId: number;
|
|
10715
10715
|
|
|
10716
10716
|
/**
|
|
10717
|
-
*
|
|
10717
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10718
10718
|
*/
|
|
10719
|
-
|
|
10719
|
+
supplierAccountId: number;
|
|
10720
10720
|
|
|
10721
10721
|
/**
|
|
10722
|
-
*
|
|
10722
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10723
10723
|
*/
|
|
10724
|
-
|
|
10724
|
+
paymentTermId: number;
|
|
10725
10725
|
|
|
10726
10726
|
/**
|
|
10727
10727
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10734,14 +10734,14 @@ export interface RequestDocument {
|
|
|
10734
10734
|
custom: EavDocument;
|
|
10735
10735
|
|
|
10736
10736
|
/**
|
|
10737
|
-
*
|
|
10737
|
+
* target document type for document copy
|
|
10738
10738
|
*/
|
|
10739
|
-
|
|
10739
|
+
targetDocumentType: DocumentType;
|
|
10740
10740
|
|
|
10741
10741
|
/**
|
|
10742
|
-
*
|
|
10742
|
+
* reference to the corresponding document in an external system
|
|
10743
10743
|
*/
|
|
10744
|
-
|
|
10744
|
+
externalId: string;
|
|
10745
10745
|
|
|
10746
10746
|
/**
|
|
10747
10747
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10812,14 +10812,14 @@ export interface RequestDocumentLine {
|
|
|
10812
10812
|
description: string;
|
|
10813
10813
|
|
|
10814
10814
|
/**
|
|
10815
|
-
*
|
|
10815
|
+
* Herkunft des Preises
|
|
10816
10816
|
*/
|
|
10817
|
-
|
|
10817
|
+
priceOrigin: ProductPriceOrigin;
|
|
10818
10818
|
|
|
10819
10819
|
/**
|
|
10820
|
-
*
|
|
10820
|
+
* Quittungsdetails zur Belegposition
|
|
10821
10821
|
*/
|
|
10822
|
-
|
|
10822
|
+
posDetail: DocumentLinePosDetail;
|
|
10823
10823
|
|
|
10824
10824
|
/**
|
|
10825
10825
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10857,14 +10857,14 @@ export interface RequestDocumentLine {
|
|
|
10857
10857
|
dropShippingPolicy: DropShippingPolicy;
|
|
10858
10858
|
|
|
10859
10859
|
/**
|
|
10860
|
-
*
|
|
10860
|
+
* (optional) Lager-ID
|
|
10861
10861
|
*/
|
|
10862
|
-
|
|
10862
|
+
storageId: number;
|
|
10863
10863
|
|
|
10864
10864
|
/**
|
|
10865
|
-
*
|
|
10865
|
+
* Positionsnummer der Artikel
|
|
10866
10866
|
*/
|
|
10867
|
-
|
|
10867
|
+
positionOfArticleLine: number;
|
|
10868
10868
|
|
|
10869
10869
|
/**
|
|
10870
10870
|
* Vertragsdetails zur Belegposition
|
|
@@ -10877,14 +10877,14 @@ export interface RequestDocumentLine {
|
|
|
10877
10877
|
supplierAccountId: number;
|
|
10878
10878
|
|
|
10879
10879
|
/**
|
|
10880
|
-
*
|
|
10880
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
10881
10881
|
*/
|
|
10882
|
-
|
|
10882
|
+
mainArticleLinePosition: number;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
quantity: number;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
10890
|
* Versandkosten mit Bedingungen
|
|
@@ -10952,9 +10952,9 @@ export interface RequestDocumentLine {
|
|
|
10952
10952
|
name: string;
|
|
10953
10953
|
|
|
10954
10954
|
/**
|
|
10955
|
-
*
|
|
10955
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10956
10956
|
*/
|
|
10957
|
-
|
|
10957
|
+
externalArticleNumber: string;
|
|
10958
10958
|
|
|
10959
10959
|
/**
|
|
10960
10960
|
* Buchungen zu dieser Belegposition
|
|
@@ -10962,19 +10962,19 @@ export interface RequestDocumentLine {
|
|
|
10962
10962
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10963
10963
|
|
|
10964
10964
|
/**
|
|
10965
|
-
*
|
|
10965
|
+
* ID der Quell-Belegposition
|
|
10966
10966
|
*/
|
|
10967
|
-
|
|
10967
|
+
sourceLineId: number;
|
|
10968
10968
|
|
|
10969
10969
|
/**
|
|
10970
|
-
*
|
|
10970
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10971
10971
|
*/
|
|
10972
|
-
|
|
10972
|
+
doLabelPrint: boolean;
|
|
10973
10973
|
|
|
10974
10974
|
/**
|
|
10975
|
-
*
|
|
10975
|
+
* (optional) Preis des Artikels dieser Position
|
|
10976
10976
|
*/
|
|
10977
|
-
|
|
10977
|
+
productPrice: number;
|
|
10978
10978
|
}
|
|
10979
10979
|
|
|
10980
10980
|
export interface RequestDocumentLineBooking {
|
|
@@ -11139,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11139
11139
|
note: string;
|
|
11140
11140
|
|
|
11141
11141
|
/**
|
|
11142
|
-
*
|
|
11142
|
+
* is sales agent taxable
|
|
11143
11143
|
*/
|
|
11144
|
-
|
|
11144
|
+
taxable: boolean;
|
|
11145
11145
|
|
|
11146
11146
|
/**
|
|
11147
|
-
*
|
|
11147
|
+
* reference to the delivery method
|
|
11148
11148
|
*/
|
|
11149
|
-
|
|
11149
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11150
11150
|
|
|
11151
11151
|
/**
|
|
11152
11152
|
* Freifelder
|
|
@@ -11395,14 +11395,14 @@ export interface ScenarioDimensionValue {
|
|
|
11395
11395
|
export interface ScenarioFactDef {
|
|
11396
11396
|
|
|
11397
11397
|
/**
|
|
11398
|
-
* Attribut
|
|
11398
|
+
* Attribut Name
|
|
11399
11399
|
*/
|
|
11400
|
-
|
|
11400
|
+
factAttribute: string;
|
|
11401
11401
|
|
|
11402
11402
|
/**
|
|
11403
|
-
* Attribut
|
|
11403
|
+
* Attribut Typ
|
|
11404
11404
|
*/
|
|
11405
|
-
|
|
11405
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11406
11406
|
|
|
11407
11407
|
/**
|
|
11408
11408
|
* Unique identifier of the Object
|
|
@@ -11623,14 +11623,14 @@ export interface ShelfDocument {
|
|
|
11623
11623
|
tags: Array<TagDto>;
|
|
11624
11624
|
|
|
11625
11625
|
/**
|
|
11626
|
-
*
|
|
11626
|
+
* share informations
|
|
11627
11627
|
*/
|
|
11628
|
-
|
|
11628
|
+
shares: Array<ShelfShare>;
|
|
11629
11629
|
|
|
11630
11630
|
/**
|
|
11631
|
-
*
|
|
11631
|
+
* Mehrsprachige Bezeichnungen
|
|
11632
11632
|
*/
|
|
11633
|
-
|
|
11633
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11634
11634
|
|
|
11635
11635
|
/**
|
|
11636
11636
|
* Automatische Löschung ab
|
|
@@ -12123,14 +12123,14 @@ export interface StockMovementManualApi {
|
|
|
12123
12123
|
export interface StockTransferApi {
|
|
12124
12124
|
|
|
12125
12125
|
/**
|
|
12126
|
-
*
|
|
12126
|
+
* Ziel-Lager
|
|
12127
12127
|
*/
|
|
12128
|
-
|
|
12128
|
+
targetStorageId: number;
|
|
12129
12129
|
|
|
12130
12130
|
/**
|
|
12131
|
-
*
|
|
12131
|
+
* Seriennummer
|
|
12132
12132
|
*/
|
|
12133
|
-
|
|
12133
|
+
serialNumberId: number;
|
|
12134
12134
|
|
|
12135
12135
|
/**
|
|
12136
12136
|
* Bemerkung
|
|
@@ -12351,9 +12351,9 @@ export interface Supplier {
|
|
|
12351
12351
|
info: MetaInfo;
|
|
12352
12352
|
|
|
12353
12353
|
/**
|
|
12354
|
-
*
|
|
12354
|
+
* Lieferantengruppe
|
|
12355
12355
|
*/
|
|
12356
|
-
|
|
12356
|
+
supplierGroupRef: ApiObjectReference;
|
|
12357
12357
|
|
|
12358
12358
|
/**
|
|
12359
12359
|
* reference to the delivery method
|
|
@@ -12361,9 +12361,9 @@ export interface Supplier {
|
|
|
12361
12361
|
deliveryMethodRef: ApiObjectReference;
|
|
12362
12362
|
|
|
12363
12363
|
/**
|
|
12364
|
-
*
|
|
12364
|
+
* tax able or tax free
|
|
12365
12365
|
*/
|
|
12366
|
-
|
|
12366
|
+
taxable: boolean;
|
|
12367
12367
|
|
|
12368
12368
|
/**
|
|
12369
12369
|
* Mahnen?
|
|
@@ -12688,14 +12688,14 @@ export interface TextTemplate {
|
|
|
12688
12688
|
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12689
12689
|
|
|
12690
12690
|
/**
|
|
12691
|
-
*
|
|
12691
|
+
* Texte in den angebotenen Sprachen
|
|
12692
12692
|
*/
|
|
12693
|
-
|
|
12693
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12694
12694
|
|
|
12695
12695
|
/**
|
|
12696
|
-
*
|
|
12696
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12697
12697
|
*/
|
|
12698
|
-
|
|
12698
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12699
12699
|
|
|
12700
12700
|
/**
|
|
12701
12701
|
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
@@ -12861,11 +12861,6 @@ export interface User {
|
|
|
12861
12861
|
*/
|
|
12862
12862
|
roles: Array<ApiObjectReference>;
|
|
12863
12863
|
|
|
12864
|
-
/**
|
|
12865
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12866
|
-
*/
|
|
12867
|
-
referencedCustomerUserId: number;
|
|
12868
|
-
|
|
12869
12864
|
/**
|
|
12870
12865
|
* Gruppen
|
|
12871
12866
|
*/
|
|
@@ -12876,6 +12871,11 @@ export interface User {
|
|
|
12876
12871
|
*/
|
|
12877
12872
|
active: boolean;
|
|
12878
12873
|
|
|
12874
|
+
/**
|
|
12875
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12876
|
+
*/
|
|
12877
|
+
referencedCustomerUserId: number;
|
|
12878
|
+
|
|
12879
12879
|
/**
|
|
12880
12880
|
* App-Identifier
|
|
12881
12881
|
*/
|