@vario-software/types 2026.22.3 → 2026.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +123 -27
- package/scripting/services.d.ts +46 -46
- package/scripting/types.d.ts +325 -316
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* Is default bank?
|
|
508
503
|
*/
|
|
509
504
|
defaultBank: boolean;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* origin type
|
|
508
|
+
*/
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -1023,6 +1023,11 @@ export interface Article {
|
|
|
1023
1023
|
*/
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* Durchschnittl. EKP (Startwert)
|
|
1028
|
+
*/
|
|
1029
|
+
initialAvgPurchasePrice: number;
|
|
1030
|
+
|
|
1026
1031
|
/**
|
|
1027
1032
|
* is this product sellable without any quantity at the stock
|
|
1028
1033
|
*/
|
|
@@ -1033,11 +1038,6 @@ export interface Article {
|
|
|
1033
1038
|
*/
|
|
1034
1039
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1035
1040
|
|
|
1036
|
-
/**
|
|
1037
|
-
* Durchschnittl. EKP (Startwert)
|
|
1038
|
-
*/
|
|
1039
|
-
initialAvgPurchasePrice: number;
|
|
1040
|
-
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
1043
1043
|
*/
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1134,14 +1134,14 @@ export interface Article {
|
|
|
1134
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Soll-Handelsspanne
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
targetTradingMargin: number;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
|
-
*
|
|
1142
|
+
* Produktion
|
|
1143
1143
|
*/
|
|
1144
|
-
|
|
1144
|
+
fabrication: boolean;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* active
|
|
@@ -1199,14 +1199,14 @@ export interface Article {
|
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
1201
|
/**
|
|
1202
|
-
*
|
|
1202
|
+
* Arbeitseinheit in Minuten
|
|
1203
1203
|
*/
|
|
1204
|
-
|
|
1204
|
+
workUnitInMinutes: number;
|
|
1205
1205
|
|
|
1206
1206
|
/**
|
|
1207
|
-
*
|
|
1207
|
+
* Country code
|
|
1208
1208
|
*/
|
|
1209
|
-
|
|
1209
|
+
countryOfOriginRef: CountryReference;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* Frei kommissionierbar
|
|
@@ -1298,11 +1298,6 @@ export interface Article {
|
|
|
1298
1298
|
*/
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
|
-
/**
|
|
1302
|
-
* rabattierbarer Artikel?
|
|
1303
|
-
*/
|
|
1304
|
-
discountable: boolean;
|
|
1305
|
-
|
|
1306
1301
|
/**
|
|
1307
1302
|
* Kontingentartikel
|
|
1308
1303
|
*/
|
|
@@ -1313,6 +1308,11 @@ export interface Article {
|
|
|
1313
1308
|
*/
|
|
1314
1309
|
alternativeName: string;
|
|
1315
1310
|
|
|
1311
|
+
/**
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
|
+
*/
|
|
1314
|
+
discountable: boolean;
|
|
1315
|
+
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
1318
1318
|
*/
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Art des Haltbarkeitsdatums
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* Nur manuelle Produktion
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
onlyManualFabrication: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* provisionsberechtiger Artikel?
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
commissionable: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1488,11 +1488,6 @@ export interface ArticleCustomer {
|
|
|
1488
1488
|
*/
|
|
1489
1489
|
accountDisplayName: string;
|
|
1490
1490
|
|
|
1491
|
-
/**
|
|
1492
|
-
* Nur Sonderpreis/-rabatt verwenden?
|
|
1493
|
-
*/
|
|
1494
|
-
useOnlyRelatedPriceOrDiscount: boolean;
|
|
1495
|
-
|
|
1496
1491
|
/**
|
|
1497
1492
|
* Referenced Article name
|
|
1498
1493
|
*/
|
|
@@ -1563,6 +1558,11 @@ export interface ArticleCustomer {
|
|
|
1563
1558
|
*/
|
|
1564
1559
|
deviatingArticleNumber: string;
|
|
1565
1560
|
|
|
1561
|
+
/**
|
|
1562
|
+
* Art der Preisermittlung
|
|
1563
|
+
*/
|
|
1564
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1565
|
+
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Artikelnummer
|
|
1568
1568
|
*/
|
|
@@ -1599,6 +1599,12 @@ export interface ArticleCustomer {
|
|
|
1599
1599
|
info: MetaInfo;
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
|
+
export const enum ArticleCustomerPriceDetermination {
|
|
1603
|
+
DEFAULT = 'DEFAULT',
|
|
1604
|
+
SPECIAL = 'SPECIAL',
|
|
1605
|
+
ONLY_DEFAULT_PRICE = 'ONLY_DEFAULT_PRICE'
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1602
1608
|
export interface ArticleIdentifier {
|
|
1603
1609
|
|
|
1604
1610
|
/**
|
|
@@ -1888,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1888
1894
|
replenishmentFrom: number;
|
|
1889
1895
|
|
|
1890
1896
|
/**
|
|
1891
|
-
*
|
|
1897
|
+
* Meldebestand
|
|
1892
1898
|
*/
|
|
1893
|
-
|
|
1899
|
+
reorderPoint: number;
|
|
1894
1900
|
|
|
1895
1901
|
/**
|
|
1896
1902
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1898,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1898
1904
|
quantityInPicking: number;
|
|
1899
1905
|
|
|
1900
1906
|
/**
|
|
1901
|
-
*
|
|
1907
|
+
* Bestellte Menge
|
|
1902
1908
|
*/
|
|
1903
|
-
|
|
1909
|
+
orderedQuantity: number;
|
|
1904
1910
|
|
|
1905
1911
|
/**
|
|
1906
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1907
1913
|
*/
|
|
1908
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1909
1915
|
|
|
1910
1916
|
/**
|
|
1911
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1912
1918
|
*/
|
|
1913
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1914
1920
|
|
|
1915
1921
|
/**
|
|
1916
1922
|
* Reservierte Menge
|
|
@@ -1953,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1953
1959
|
storageRef: ApiObjectReference;
|
|
1954
1960
|
|
|
1955
1961
|
/**
|
|
1956
|
-
*
|
|
1962
|
+
* Sollbestand
|
|
1957
1963
|
*/
|
|
1958
|
-
|
|
1964
|
+
targetStock: number;
|
|
1959
1965
|
|
|
1960
1966
|
/**
|
|
1961
|
-
*
|
|
1967
|
+
* Vorgabe-Lagerplätze
|
|
1962
1968
|
*/
|
|
1963
|
-
|
|
1969
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1964
1970
|
|
|
1965
1971
|
/**
|
|
1966
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1980,6 +1986,11 @@ export interface ArticleStorage {
|
|
|
1980
1986
|
|
|
1981
1987
|
export interface ArticleSupplier {
|
|
1982
1988
|
|
|
1989
|
+
/**
|
|
1990
|
+
* Lieferanten-Meldebestand
|
|
1991
|
+
*/
|
|
1992
|
+
supplierReportingStock: number;
|
|
1993
|
+
|
|
1983
1994
|
/**
|
|
1984
1995
|
* Anzeigename des Accounts
|
|
1985
1996
|
*/
|
|
@@ -1990,11 +2001,6 @@ export interface ArticleSupplier {
|
|
|
1990
2001
|
*/
|
|
1991
2002
|
useSupplierArticleDescription: boolean;
|
|
1992
2003
|
|
|
1993
|
-
/**
|
|
1994
|
-
* Lieferanten-Meldebestand
|
|
1995
|
-
*/
|
|
1996
|
-
supplierReportingStock: number;
|
|
1997
|
-
|
|
1998
2004
|
/**
|
|
1999
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2000
2006
|
*/
|
|
@@ -2106,14 +2112,14 @@ export interface ArticleSupplier {
|
|
|
2106
2112
|
defaultNetPrice: number;
|
|
2107
2113
|
|
|
2108
2114
|
/**
|
|
2109
|
-
*
|
|
2115
|
+
* Einkaufseinheit
|
|
2110
2116
|
*/
|
|
2111
|
-
|
|
2117
|
+
purchaseUnit: number;
|
|
2112
2118
|
|
|
2113
2119
|
/**
|
|
2114
|
-
*
|
|
2120
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2115
2121
|
*/
|
|
2116
|
-
|
|
2122
|
+
orderOnComponentBase: boolean;
|
|
2117
2123
|
|
|
2118
2124
|
/**
|
|
2119
2125
|
* Referenced Supplier-Account
|
|
@@ -2401,14 +2407,14 @@ export interface CrmActivity {
|
|
|
2401
2407
|
info: MetaInfo;
|
|
2402
2408
|
|
|
2403
2409
|
/**
|
|
2404
|
-
*
|
|
2410
|
+
* geplante Dauer
|
|
2405
2411
|
*/
|
|
2406
|
-
|
|
2412
|
+
plannedDurationInSeconds: number;
|
|
2407
2413
|
|
|
2408
2414
|
/**
|
|
2409
|
-
*
|
|
2415
|
+
* Aktivität intern abgerechnet?
|
|
2410
2416
|
*/
|
|
2411
|
-
|
|
2417
|
+
internalBilled: boolean;
|
|
2412
2418
|
|
|
2413
2419
|
/**
|
|
2414
2420
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2678,20 +2684,25 @@ export interface CrmDeal {
|
|
|
2678
2684
|
info: MetaInfo;
|
|
2679
2685
|
|
|
2680
2686
|
/**
|
|
2681
|
-
*
|
|
2687
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2682
2688
|
*/
|
|
2683
|
-
|
|
2689
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2684
2690
|
|
|
2685
2691
|
/**
|
|
2686
|
-
*
|
|
2692
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2687
2693
|
*/
|
|
2688
|
-
|
|
2694
|
+
assignedUserRef: ApiObjectReference;
|
|
2689
2695
|
|
|
2690
2696
|
/**
|
|
2691
2697
|
* Chance (in Prozent)
|
|
2692
2698
|
*/
|
|
2693
2699
|
chance: number;
|
|
2694
2700
|
|
|
2701
|
+
/**
|
|
2702
|
+
* Übergeordnete CRM-Objekte
|
|
2703
|
+
*/
|
|
2704
|
+
parentRefs: Array<CrmObjectRef>;
|
|
2705
|
+
|
|
2695
2706
|
/**
|
|
2696
2707
|
* Zugewiesen von
|
|
2697
2708
|
*/
|
|
@@ -2722,11 +2733,6 @@ export interface CrmDeal {
|
|
|
2722
2733
|
*/
|
|
2723
2734
|
childRefs: Array<CrmObjectRef>;
|
|
2724
2735
|
|
|
2725
|
-
/**
|
|
2726
|
-
* Übergeordnetes CRM-Objekt
|
|
2727
|
-
*/
|
|
2728
|
-
parentRef: CrmObjectRef;
|
|
2729
|
-
|
|
2730
2736
|
/**
|
|
2731
2737
|
* Tags
|
|
2732
2738
|
*/
|
|
@@ -3018,15 +3024,20 @@ export interface CrmProject {
|
|
|
3018
3024
|
*/
|
|
3019
3025
|
info: MetaInfo;
|
|
3020
3026
|
|
|
3027
|
+
/**
|
|
3028
|
+
* Projektleiter vom Auftraggeber
|
|
3029
|
+
*/
|
|
3030
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3031
|
+
|
|
3021
3032
|
/**
|
|
3022
3033
|
* Weitere Teilnehmer vom Auftraggeber
|
|
3023
3034
|
*/
|
|
3024
3035
|
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3025
3036
|
|
|
3026
3037
|
/**
|
|
3027
|
-
*
|
|
3038
|
+
* Übergeordnete CRM-Objekte
|
|
3028
3039
|
*/
|
|
3029
|
-
|
|
3040
|
+
parentRefs: Array<CrmObjectRef>;
|
|
3030
3041
|
|
|
3031
3042
|
/**
|
|
3032
3043
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3068,11 +3079,6 @@ export interface CrmProject {
|
|
|
3068
3079
|
*/
|
|
3069
3080
|
childRefs: Array<CrmObjectRef>;
|
|
3070
3081
|
|
|
3071
|
-
/**
|
|
3072
|
-
* Übergeordnetes CRM-Objekt
|
|
3073
|
-
*/
|
|
3074
|
-
parentRef: CrmObjectRef;
|
|
3075
|
-
|
|
3076
3082
|
/**
|
|
3077
3083
|
* Tags
|
|
3078
3084
|
*/
|
|
@@ -3214,14 +3220,14 @@ export interface CrmState {
|
|
|
3214
3220
|
readyToBill: boolean;
|
|
3215
3221
|
|
|
3216
3222
|
/**
|
|
3217
|
-
*
|
|
3223
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3218
3224
|
*/
|
|
3219
|
-
|
|
3225
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3220
3226
|
|
|
3221
3227
|
/**
|
|
3222
|
-
*
|
|
3228
|
+
* Handelt es sich um einen Anfang-Status
|
|
3223
3229
|
*/
|
|
3224
|
-
|
|
3230
|
+
startState: boolean;
|
|
3225
3231
|
|
|
3226
3232
|
/**
|
|
3227
3233
|
* MetaInformations for this Object
|
|
@@ -3270,14 +3276,14 @@ export interface CrmSubType {
|
|
|
3270
3276
|
export interface CrmTask {
|
|
3271
3277
|
|
|
3272
3278
|
/**
|
|
3273
|
-
*
|
|
3279
|
+
* Angebot
|
|
3274
3280
|
*/
|
|
3275
|
-
|
|
3281
|
+
customerOfferRef: DocumentRef;
|
|
3276
3282
|
|
|
3277
3283
|
/**
|
|
3278
|
-
*
|
|
3284
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3279
3285
|
*/
|
|
3280
|
-
|
|
3286
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3281
3287
|
|
|
3282
3288
|
/**
|
|
3283
3289
|
* Liste von Erinnerungen
|
|
@@ -3465,15 +3471,20 @@ export interface CrmTask {
|
|
|
3465
3471
|
assignedUserRef: ApiObjectReference;
|
|
3466
3472
|
|
|
3467
3473
|
/**
|
|
3468
|
-
*
|
|
3474
|
+
* Übergeordnete CRM-Objekte
|
|
3469
3475
|
*/
|
|
3470
|
-
|
|
3476
|
+
parentRefs: Array<CrmObjectRef>;
|
|
3471
3477
|
|
|
3472
3478
|
/**
|
|
3473
3479
|
* Beauftragte Zeit in Sekunden
|
|
3474
3480
|
*/
|
|
3475
3481
|
effortCommissioned: number;
|
|
3476
3482
|
|
|
3483
|
+
/**
|
|
3484
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3485
|
+
*/
|
|
3486
|
+
externalRecordedTimes: number;
|
|
3487
|
+
|
|
3477
3488
|
/**
|
|
3478
3489
|
* Aufwandsschätzung in Sekunden
|
|
3479
3490
|
*/
|
|
@@ -3504,11 +3515,6 @@ export interface CrmTask {
|
|
|
3504
3515
|
*/
|
|
3505
3516
|
internalBilledTimes: number;
|
|
3506
3517
|
|
|
3507
|
-
/**
|
|
3508
|
-
* Übergeordnetes CRM-Objekt
|
|
3509
|
-
*/
|
|
3510
|
-
parentRef: CrmObjectRef;
|
|
3511
|
-
|
|
3512
3518
|
/**
|
|
3513
3519
|
* Blockiert diese Aufgaben
|
|
3514
3520
|
*/
|
|
@@ -3893,14 +3899,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3893
3899
|
export interface DeliveryMethod {
|
|
3894
3900
|
|
|
3895
3901
|
/**
|
|
3896
|
-
*
|
|
3902
|
+
* E-Mail an Versender übergeben
|
|
3897
3903
|
*/
|
|
3898
|
-
|
|
3904
|
+
forwardEmailToShipper: boolean;
|
|
3899
3905
|
|
|
3900
3906
|
/**
|
|
3901
|
-
*
|
|
3907
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3902
3908
|
*/
|
|
3903
|
-
|
|
3909
|
+
splitIntoNewDocument: boolean;
|
|
3904
3910
|
|
|
3905
3911
|
/**
|
|
3906
3912
|
* Min. Gewicht pro Paket
|
|
@@ -3963,14 +3969,14 @@ export interface DeliveryMethod {
|
|
|
3963
3969
|
translations: Array<DocumentTypeTerm>;
|
|
3964
3970
|
|
|
3965
3971
|
/**
|
|
3966
|
-
*
|
|
3972
|
+
* Gültige Ländercodes
|
|
3967
3973
|
*/
|
|
3968
|
-
|
|
3974
|
+
validCountryCodes: Array<string>;
|
|
3969
3975
|
|
|
3970
3976
|
/**
|
|
3971
|
-
*
|
|
3977
|
+
* Versand-Anbieter
|
|
3972
3978
|
*/
|
|
3973
|
-
|
|
3979
|
+
vdsCarrierId: number;
|
|
3974
3980
|
|
|
3975
3981
|
/**
|
|
3976
3982
|
* Standardgewichtseinheit
|
|
@@ -4071,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4071
4077
|
id: number;
|
|
4072
4078
|
|
|
4073
4079
|
/**
|
|
4074
|
-
*
|
|
4080
|
+
* Versandkostenartikel
|
|
4075
4081
|
*/
|
|
4076
|
-
|
|
4082
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4077
4083
|
|
|
4078
4084
|
/**
|
|
4079
|
-
*
|
|
4085
|
+
* free shipping net value
|
|
4080
4086
|
*/
|
|
4081
|
-
|
|
4087
|
+
freeShippingNetValue: number;
|
|
4082
4088
|
|
|
4083
4089
|
/**
|
|
4084
4090
|
* MetaInformations for this Object
|
|
@@ -4134,14 +4140,14 @@ export interface Document {
|
|
|
4134
4140
|
totalVat: number;
|
|
4135
4141
|
|
|
4136
4142
|
/**
|
|
4137
|
-
*
|
|
4143
|
+
* Standardlager für neue Positionen
|
|
4138
4144
|
*/
|
|
4139
|
-
|
|
4145
|
+
defaultStorageRef: ApiObjectReference;
|
|
4140
4146
|
|
|
4141
4147
|
/**
|
|
4142
|
-
*
|
|
4148
|
+
* Name der bestellenden Person
|
|
4143
4149
|
*/
|
|
4144
|
-
|
|
4150
|
+
orderedBy: string;
|
|
4145
4151
|
|
|
4146
4152
|
/**
|
|
4147
4153
|
* Lieferadresse
|
|
@@ -4237,14 +4243,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4237
4243
|
accountId: number;
|
|
4238
4244
|
|
|
4239
4245
|
/**
|
|
4240
|
-
* Länderkennzeichen
|
|
4246
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4241
4247
|
*/
|
|
4242
|
-
|
|
4248
|
+
sourceCountryCode: string;
|
|
4243
4249
|
|
|
4244
4250
|
/**
|
|
4245
|
-
* Länderkennzeichen
|
|
4251
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4246
4252
|
*/
|
|
4247
|
-
|
|
4253
|
+
performanceCountryCode: string;
|
|
4248
4254
|
|
|
4249
4255
|
/**
|
|
4250
4256
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4286,27 +4292,20 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4286
4292
|
*/
|
|
4287
4293
|
supplierNumber: string;
|
|
4288
4294
|
|
|
4289
|
-
/**
|
|
4290
|
-
* Gesamtpreis brutto
|
|
4291
|
-
*/
|
|
4292
|
-
totalGrossPrice: number;
|
|
4293
|
-
|
|
4294
4295
|
/**
|
|
4295
4296
|
* Ist der Beleg zur Lieferung freigegeben?
|
|
4296
4297
|
*/
|
|
4297
4298
|
deliveryApproved: boolean;
|
|
4298
4299
|
|
|
4299
4300
|
/**
|
|
4300
|
-
*
|
|
4301
|
+
* Gesamtpreis brutto
|
|
4301
4302
|
*/
|
|
4302
|
-
|
|
4303
|
+
totalGrossPrice: number;
|
|
4303
4304
|
|
|
4304
4305
|
/**
|
|
4305
|
-
*
|
|
4306
|
-
true wenn die Quittung bezahlt ist
|
|
4307
|
-
|
|
4306
|
+
* Kassen-Zahlungspositionen
|
|
4308
4307
|
*/
|
|
4309
|
-
|
|
4308
|
+
posPayments: Array<DocumentPosPayment>;
|
|
4310
4309
|
|
|
4311
4310
|
/**
|
|
4312
4311
|
* Kundennummer beim Lieferanten
|
|
@@ -4318,6 +4317,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4318
4317
|
*/
|
|
4319
4318
|
maxDeliveries: number;
|
|
4320
4319
|
|
|
4320
|
+
/**
|
|
4321
|
+
* Ist die Quittung bezahlt
|
|
4322
|
+
true wenn die Quittung bezahlt ist
|
|
4323
|
+
|
|
4324
|
+
*/
|
|
4325
|
+
posReceiptPayed: boolean;
|
|
4326
|
+
|
|
4321
4327
|
/**
|
|
4322
4328
|
* Quittung: Summe Zahlbetrag
|
|
4323
4329
|
*/
|
|
@@ -4364,14 +4370,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4364
4370
|
accountNumber: string;
|
|
4365
4371
|
|
|
4366
4372
|
/**
|
|
4367
|
-
*
|
|
4373
|
+
* Wird vom Workflow verarbeitet?
|
|
4368
4374
|
*/
|
|
4369
|
-
|
|
4375
|
+
processedByWorkflow: boolean;
|
|
4370
4376
|
|
|
4371
4377
|
/**
|
|
4372
|
-
*
|
|
4378
|
+
* Referenz auf Zahlungsbedingung
|
|
4373
4379
|
*/
|
|
4374
|
-
|
|
4380
|
+
paymentTermRef: PaymentTermRef;
|
|
4375
4381
|
|
|
4376
4382
|
/**
|
|
4377
4383
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4404,14 +4410,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4404
4410
|
defaultAddress: DocumentAddress;
|
|
4405
4411
|
|
|
4406
4412
|
/**
|
|
4407
|
-
*
|
|
4413
|
+
* Leistungsdatum
|
|
4408
4414
|
*/
|
|
4409
|
-
|
|
4415
|
+
performanceDate: ScriptingDate;
|
|
4410
4416
|
|
|
4411
4417
|
/**
|
|
4412
|
-
*
|
|
4418
|
+
* Verarbeitungsoption für Stapel
|
|
4413
4419
|
*/
|
|
4414
|
-
|
|
4420
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4415
4421
|
|
|
4416
4422
|
/**
|
|
4417
4423
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4469,14 +4475,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4469
4475
|
dropShipping: boolean;
|
|
4470
4476
|
|
|
4471
4477
|
/**
|
|
4472
|
-
*
|
|
4478
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4473
4479
|
*/
|
|
4474
|
-
|
|
4480
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4475
4481
|
|
|
4476
4482
|
/**
|
|
4477
|
-
*
|
|
4483
|
+
* Gesamtpreis netto
|
|
4478
4484
|
*/
|
|
4479
|
-
|
|
4485
|
+
totalNetPrice: number;
|
|
4480
4486
|
|
|
4481
4487
|
/**
|
|
4482
4488
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4603,6 +4609,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4603
4609
|
*/
|
|
4604
4610
|
posReceiptChangeAmount: number;
|
|
4605
4611
|
|
|
4612
|
+
/**
|
|
4613
|
+
* Referenz auf Lieferbedingung
|
|
4614
|
+
*/
|
|
4615
|
+
deliveryTermRef: ApiObjectReference;
|
|
4616
|
+
|
|
4606
4617
|
/**
|
|
4607
4618
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4608
4619
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4610,11 +4621,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4610
4621
|
*/
|
|
4611
4622
|
posReceiptBalanced: boolean;
|
|
4612
4623
|
|
|
4613
|
-
/**
|
|
4614
|
-
* Referenz auf Lieferbedingung
|
|
4615
|
-
*/
|
|
4616
|
-
deliveryTermRef: ApiObjectReference;
|
|
4617
|
-
|
|
4618
4624
|
/**
|
|
4619
4625
|
* Gesamtbruttogewicht
|
|
4620
4626
|
*/
|
|
@@ -4636,14 +4642,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4636
4642
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4637
4643
|
|
|
4638
4644
|
/**
|
|
4639
|
-
*
|
|
4645
|
+
* Status der USt-ID-Prüfung
|
|
4640
4646
|
*/
|
|
4641
|
-
|
|
4647
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4642
4648
|
|
|
4643
4649
|
/**
|
|
4644
|
-
*
|
|
4650
|
+
* Rechnungsadresse
|
|
4645
4651
|
*/
|
|
4646
|
-
|
|
4652
|
+
billingAddress: DocumentAddress;
|
|
4647
4653
|
|
|
4648
4654
|
/**
|
|
4649
4655
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -4679,14 +4685,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4679
4685
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4680
4686
|
|
|
4681
4687
|
/**
|
|
4682
|
-
*
|
|
4688
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4683
4689
|
*/
|
|
4684
|
-
|
|
4690
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4685
4691
|
|
|
4686
4692
|
/**
|
|
4687
|
-
*
|
|
4693
|
+
* Herkunft des Berechnungsmodus
|
|
4688
4694
|
*/
|
|
4689
|
-
|
|
4695
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4690
4696
|
|
|
4691
4697
|
/**
|
|
4692
4698
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4804,14 +4810,14 @@ export interface DocumentAddress {
|
|
|
4804
4810
|
postOfficeBox: string;
|
|
4805
4811
|
|
|
4806
4812
|
/**
|
|
4807
|
-
*
|
|
4813
|
+
* Street
|
|
4808
4814
|
*/
|
|
4809
|
-
|
|
4815
|
+
street: string;
|
|
4810
4816
|
|
|
4811
4817
|
/**
|
|
4812
|
-
*
|
|
4818
|
+
* country code IsoAlpha3
|
|
4813
4819
|
*/
|
|
4814
|
-
|
|
4820
|
+
countryCode: string;
|
|
4815
4821
|
|
|
4816
4822
|
/**
|
|
4817
4823
|
* Unique identifier of the Object
|
|
@@ -4829,14 +4835,14 @@ export interface DocumentAddress {
|
|
|
4829
4835
|
info: MetaInfo;
|
|
4830
4836
|
|
|
4831
4837
|
/**
|
|
4832
|
-
*
|
|
4838
|
+
* GLN
|
|
4833
4839
|
*/
|
|
4834
|
-
|
|
4840
|
+
globalLocationNumber: string;
|
|
4835
4841
|
|
|
4836
4842
|
/**
|
|
4837
|
-
*
|
|
4843
|
+
* Lieferart
|
|
4838
4844
|
*/
|
|
4839
|
-
|
|
4845
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4840
4846
|
|
|
4841
4847
|
/**
|
|
4842
4848
|
* Postcode
|
|
@@ -5017,14 +5023,14 @@ export interface DocumentContractDetail {
|
|
|
5017
5023
|
runtimeToDate: ScriptingDate;
|
|
5018
5024
|
|
|
5019
5025
|
/**
|
|
5020
|
-
*
|
|
5026
|
+
* Nächste Fälligkeit
|
|
5021
5027
|
*/
|
|
5022
|
-
|
|
5028
|
+
nextDueDate: ScriptingDate;
|
|
5023
5029
|
|
|
5024
5030
|
/**
|
|
5025
|
-
*
|
|
5031
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5026
5032
|
*/
|
|
5027
|
-
|
|
5033
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5028
5034
|
|
|
5029
5035
|
/**
|
|
5030
5036
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5055,14 +5061,14 @@ export interface DocumentFabricationDetail {
|
|
|
5055
5061
|
targetStorageRef: ApiObjectReference;
|
|
5056
5062
|
|
|
5057
5063
|
/**
|
|
5058
|
-
*
|
|
5064
|
+
* Notiz
|
|
5059
5065
|
*/
|
|
5060
|
-
|
|
5066
|
+
note: string;
|
|
5061
5067
|
|
|
5062
5068
|
/**
|
|
5063
|
-
*
|
|
5069
|
+
* Material-Lager
|
|
5064
5070
|
*/
|
|
5065
|
-
|
|
5071
|
+
componentsStorageRef: ApiObjectReference;
|
|
5066
5072
|
|
|
5067
5073
|
/**
|
|
5068
5074
|
* QS-Lager
|
|
@@ -5328,6 +5334,11 @@ export interface DocumentLine {
|
|
|
5328
5334
|
*/
|
|
5329
5335
|
id: number;
|
|
5330
5336
|
|
|
5337
|
+
/**
|
|
5338
|
+
* Serientyp
|
|
5339
|
+
*/
|
|
5340
|
+
serialType: ArticleSerialType;
|
|
5341
|
+
|
|
5331
5342
|
/**
|
|
5332
5343
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5333
5344
|
*/
|
|
@@ -5343,11 +5354,6 @@ export interface DocumentLine {
|
|
|
5343
5354
|
*/
|
|
5344
5355
|
basePrice: number;
|
|
5345
5356
|
|
|
5346
|
-
/**
|
|
5347
|
-
* Serientyp
|
|
5348
|
-
*/
|
|
5349
|
-
serialType: ArticleSerialType;
|
|
5350
|
-
|
|
5351
5357
|
/**
|
|
5352
5358
|
* MetaInformations for this Object
|
|
5353
5359
|
*/
|
|
@@ -5544,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5544
5550
|
productType: ProductType;
|
|
5545
5551
|
|
|
5546
5552
|
/**
|
|
5547
|
-
*
|
|
5553
|
+
* Vertragsinformationen
|
|
5548
5554
|
*/
|
|
5549
|
-
|
|
5555
|
+
contractDetail: DocumentContractDetail;
|
|
5550
5556
|
|
|
5551
5557
|
/**
|
|
5552
|
-
*
|
|
5558
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5553
5559
|
*/
|
|
5554
|
-
|
|
5560
|
+
baseSalesValueNet: number;
|
|
5555
5561
|
|
|
5556
5562
|
/**
|
|
5557
5563
|
* Einheit Nettogewicht
|
|
@@ -5927,14 +5933,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5927
5933
|
quantityFinished: number;
|
|
5928
5934
|
|
|
5929
5935
|
/**
|
|
5930
|
-
*
|
|
5936
|
+
* Produzierte Seriennummern
|
|
5931
5937
|
*/
|
|
5932
|
-
|
|
5938
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5933
5939
|
|
|
5934
5940
|
/**
|
|
5935
|
-
*
|
|
5941
|
+
* Menge defekt
|
|
5936
5942
|
*/
|
|
5937
|
-
|
|
5943
|
+
quantityDefective: number;
|
|
5938
5944
|
|
|
5939
5945
|
/**
|
|
5940
5946
|
* Freifeld
|
|
@@ -6033,14 +6039,14 @@ export interface DocumentLinePosDetail {
|
|
|
6033
6039
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6034
6040
|
|
|
6035
6041
|
/**
|
|
6036
|
-
*
|
|
6042
|
+
* Status der externen Zahlung
|
|
6037
6043
|
*/
|
|
6038
|
-
|
|
6044
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6039
6045
|
|
|
6040
6046
|
/**
|
|
6041
|
-
*
|
|
6047
|
+
* Typ der Einlage/Ausgabe
|
|
6042
6048
|
*/
|
|
6043
|
-
|
|
6049
|
+
depositExpenseTypeId: number;
|
|
6044
6050
|
|
|
6045
6051
|
/**
|
|
6046
6052
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6078,14 +6084,14 @@ export interface DocumentLinePosDetail {
|
|
|
6078
6084
|
balanceBeforeWithdrawal: number;
|
|
6079
6085
|
|
|
6080
6086
|
/**
|
|
6081
|
-
*
|
|
6087
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6082
6088
|
*/
|
|
6083
|
-
|
|
6089
|
+
externalPaymentId: string;
|
|
6084
6090
|
|
|
6085
6091
|
/**
|
|
6086
|
-
*
|
|
6092
|
+
* Typ der Position
|
|
6087
6093
|
*/
|
|
6088
|
-
|
|
6094
|
+
posLineType: PosLineType;
|
|
6089
6095
|
|
|
6090
6096
|
/**
|
|
6091
6097
|
* Unique identifier of the Object
|
|
@@ -6318,14 +6324,14 @@ export interface DocumentPosPayment {
|
|
|
6318
6324
|
balanceBeforeWithdrawal: number;
|
|
6319
6325
|
|
|
6320
6326
|
/**
|
|
6321
|
-
*
|
|
6327
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6322
6328
|
*/
|
|
6323
|
-
|
|
6329
|
+
externalPaymentId: string;
|
|
6324
6330
|
|
|
6325
6331
|
/**
|
|
6326
|
-
*
|
|
6332
|
+
* Typ der Position
|
|
6327
6333
|
*/
|
|
6328
|
-
|
|
6334
|
+
posLineType: PosLineType;
|
|
6329
6335
|
|
|
6330
6336
|
/**
|
|
6331
6337
|
* Unique identifier of the Object
|
|
@@ -6448,14 +6454,14 @@ export interface DocumentRef {
|
|
|
6448
6454
|
export interface DocumentShippingCost {
|
|
6449
6455
|
|
|
6450
6456
|
/**
|
|
6451
|
-
*
|
|
6457
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6452
6458
|
*/
|
|
6453
|
-
|
|
6459
|
+
manualCosts: boolean;
|
|
6454
6460
|
|
|
6455
6461
|
/**
|
|
6456
|
-
*
|
|
6462
|
+
* Die Versandkosten
|
|
6457
6463
|
*/
|
|
6458
|
-
|
|
6464
|
+
costs: number;
|
|
6459
6465
|
|
|
6460
6466
|
/**
|
|
6461
6467
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6583,14 +6589,14 @@ export interface DocumentText {
|
|
|
6583
6589
|
transferableIntoSubsequentDocuments: boolean;
|
|
6584
6590
|
|
|
6585
6591
|
/**
|
|
6586
|
-
*
|
|
6592
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6587
6593
|
*/
|
|
6588
|
-
|
|
6594
|
+
textPosition: TextPosition;
|
|
6589
6595
|
|
|
6590
6596
|
/**
|
|
6591
|
-
*
|
|
6597
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6592
6598
|
*/
|
|
6593
|
-
|
|
6599
|
+
deleted: boolean;
|
|
6594
6600
|
|
|
6595
6601
|
/**
|
|
6596
6602
|
* textBaustein Vorlage
|
|
@@ -7273,14 +7279,14 @@ export interface FabricationRevertRequest {
|
|
|
7273
7279
|
export interface FabricationSerialNumber {
|
|
7274
7280
|
|
|
7275
7281
|
/**
|
|
7276
|
-
*
|
|
7282
|
+
* MHD / Verfallsdatum
|
|
7277
7283
|
*/
|
|
7278
|
-
|
|
7284
|
+
expiryDate: ScriptingDate;
|
|
7279
7285
|
|
|
7280
7286
|
/**
|
|
7281
|
-
*
|
|
7287
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7282
7288
|
*/
|
|
7283
|
-
|
|
7289
|
+
serialNumberId: number;
|
|
7284
7290
|
|
|
7285
7291
|
/**
|
|
7286
7292
|
* Bemerkung
|
|
@@ -7477,14 +7483,14 @@ export interface PaymentMethod {
|
|
|
7477
7483
|
dunnable: boolean;
|
|
7478
7484
|
|
|
7479
7485
|
/**
|
|
7480
|
-
*
|
|
7486
|
+
* Debitoren-OP abschließen?
|
|
7481
7487
|
*/
|
|
7482
|
-
|
|
7488
|
+
closeCustomerAccountType: boolean;
|
|
7483
7489
|
|
|
7484
7490
|
/**
|
|
7485
|
-
*
|
|
7491
|
+
* translations
|
|
7486
7492
|
*/
|
|
7487
|
-
|
|
7493
|
+
translations: Array<DocumentTypeTerm>;
|
|
7488
7494
|
|
|
7489
7495
|
/**
|
|
7490
7496
|
* +Tage für Folgelastschrift
|
|
@@ -7529,26 +7535,26 @@ export interface PaymentTerm {
|
|
|
7529
7535
|
*/
|
|
7530
7536
|
paymentDiscount2: number;
|
|
7531
7537
|
|
|
7532
|
-
/**
|
|
7533
|
-
* Percent for Discount 1
|
|
7534
|
-
*/
|
|
7535
|
-
paymentDiscount1: number;
|
|
7536
|
-
|
|
7537
7538
|
/**
|
|
7538
7539
|
* printDescription
|
|
7539
7540
|
*/
|
|
7540
7541
|
printDescription: string;
|
|
7541
7542
|
|
|
7542
7543
|
/**
|
|
7543
|
-
*
|
|
7544
|
+
* Percent for Discount 1
|
|
7544
7545
|
*/
|
|
7545
|
-
|
|
7546
|
+
paymentDiscount1: number;
|
|
7546
7547
|
|
|
7547
7548
|
/**
|
|
7548
7549
|
* for deposit: remaining term
|
|
7549
7550
|
*/
|
|
7550
7551
|
remainingTermRef: ApiObjectReference;
|
|
7551
7552
|
|
|
7553
|
+
/**
|
|
7554
|
+
* Days for Discount 1
|
|
7555
|
+
*/
|
|
7556
|
+
paymentDays1: number;
|
|
7557
|
+
|
|
7552
7558
|
/**
|
|
7553
7559
|
* Days for Discount 2
|
|
7554
7560
|
*/
|
|
@@ -7668,14 +7674,14 @@ export interface PickTrolley {
|
|
|
7668
7674
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7669
7675
|
|
|
7670
7676
|
/**
|
|
7671
|
-
*
|
|
7677
|
+
* Bearbeiter der Pickliste
|
|
7672
7678
|
*/
|
|
7673
|
-
|
|
7679
|
+
processedByUserRef: ApiObjectReference;
|
|
7674
7680
|
|
|
7675
7681
|
/**
|
|
7676
|
-
*
|
|
7682
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7677
7683
|
*/
|
|
7678
|
-
|
|
7684
|
+
storageBinRef: StorageBinRef;
|
|
7679
7685
|
|
|
7680
7686
|
/**
|
|
7681
7687
|
* Beschreibung des Wagens
|
|
@@ -7823,20 +7829,21 @@ export const enum PickingType {
|
|
|
7823
7829
|
CONSOLIDATION = 'CONSOLIDATION',
|
|
7824
7830
|
REPLENISHMENT = 'REPLENISHMENT',
|
|
7825
7831
|
FABRICATION = 'FABRICATION',
|
|
7826
|
-
MISSING_GOODS_PICKING = 'MISSING_GOODS_PICKING'
|
|
7832
|
+
MISSING_GOODS_PICKING = 'MISSING_GOODS_PICKING',
|
|
7833
|
+
INCORRECTLY_PICKED_GOODS = 'INCORRECTLY_PICKED_GOODS'
|
|
7827
7834
|
}
|
|
7828
7835
|
|
|
7829
7836
|
export interface Picklist {
|
|
7830
7837
|
|
|
7831
7838
|
/**
|
|
7832
|
-
*
|
|
7839
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7833
7840
|
*/
|
|
7834
|
-
|
|
7841
|
+
usedTemplate: PicklistTemplate;
|
|
7835
7842
|
|
|
7836
7843
|
/**
|
|
7837
|
-
*
|
|
7844
|
+
* Ziellager für Nachschub
|
|
7838
7845
|
*/
|
|
7839
|
-
|
|
7846
|
+
targetStorageRef: ApiObjectReference;
|
|
7840
7847
|
|
|
7841
7848
|
/**
|
|
7842
7849
|
* Nummer der Pickliste
|
|
@@ -8129,6 +8136,7 @@ export interface PicklistLineComponent {
|
|
|
8129
8136
|
}
|
|
8130
8137
|
|
|
8131
8138
|
export const enum PicklistLineState {
|
|
8139
|
+
IN_CREATION = 'IN_CREATION',
|
|
8132
8140
|
CREATED = 'CREATED',
|
|
8133
8141
|
NEWLY_ADDED = 'NEWLY_ADDED',
|
|
8134
8142
|
PICKED = 'PICKED',
|
|
@@ -8148,6 +8156,7 @@ export const enum PicklistScriptType {
|
|
|
8148
8156
|
}
|
|
8149
8157
|
|
|
8150
8158
|
export const enum PicklistState {
|
|
8159
|
+
IN_CREATION = 'IN_CREATION',
|
|
8151
8160
|
CREATED = 'CREATED',
|
|
8152
8161
|
PAUSED_IN_PICKING = 'PAUSED_IN_PICKING',
|
|
8153
8162
|
IN_PICKING = 'IN_PICKING',
|
|
@@ -8276,11 +8285,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8276
8285
|
*/
|
|
8277
8286
|
maxOrderValue: number;
|
|
8278
8287
|
|
|
8279
|
-
/**
|
|
8280
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
8281
|
-
*/
|
|
8282
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8283
|
-
|
|
8284
8288
|
/**
|
|
8285
8289
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8286
8290
|
*/
|
|
@@ -8291,6 +8295,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8291
8295
|
*/
|
|
8292
8296
|
onlyFullDeliverableOrderLines: boolean;
|
|
8293
8297
|
|
|
8298
|
+
/**
|
|
8299
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8300
|
+
*/
|
|
8301
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8302
|
+
|
|
8294
8303
|
/**
|
|
8295
8304
|
* Selektion über den Bereich vom Belegdatum
|
|
8296
8305
|
*/
|
|
@@ -8365,14 +8374,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8365
8374
|
specifyStorageBins: boolean;
|
|
8366
8375
|
|
|
8367
8376
|
/**
|
|
8368
|
-
*
|
|
8377
|
+
* Der zu verwendende Pickwagen
|
|
8369
8378
|
*/
|
|
8370
|
-
|
|
8379
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8371
8380
|
|
|
8372
8381
|
/**
|
|
8373
|
-
*
|
|
8382
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8374
8383
|
*/
|
|
8375
|
-
|
|
8384
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8376
8385
|
|
|
8377
8386
|
/**
|
|
8378
8387
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8448,14 +8457,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8448
8457
|
allowFullConfirmation: boolean;
|
|
8449
8458
|
|
|
8450
8459
|
/**
|
|
8451
|
-
*
|
|
8460
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8452
8461
|
*/
|
|
8453
|
-
|
|
8462
|
+
useDigitalPicklist: boolean;
|
|
8454
8463
|
|
|
8455
8464
|
/**
|
|
8456
|
-
*
|
|
8465
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8457
8466
|
*/
|
|
8458
|
-
|
|
8467
|
+
allowPickingOfServiceArticles: boolean;
|
|
8459
8468
|
|
|
8460
8469
|
/**
|
|
8461
8470
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8473,14 +8482,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8473
8482
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8474
8483
|
|
|
8475
8484
|
/**
|
|
8476
|
-
*
|
|
8485
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8477
8486
|
*/
|
|
8478
|
-
|
|
8487
|
+
autoDeterminationOfLots: boolean;
|
|
8479
8488
|
|
|
8480
8489
|
/**
|
|
8481
|
-
*
|
|
8490
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8482
8491
|
*/
|
|
8483
|
-
|
|
8492
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8484
8493
|
|
|
8485
8494
|
/**
|
|
8486
8495
|
* Zielmengen in Masken verstecken?
|
|
@@ -8556,14 +8565,14 @@ export interface PriceSelectionCriteria {
|
|
|
8556
8565
|
quantity: number;
|
|
8557
8566
|
|
|
8558
8567
|
/**
|
|
8559
|
-
* Liste von
|
|
8568
|
+
* Liste von Account-IDs
|
|
8560
8569
|
*/
|
|
8561
|
-
|
|
8570
|
+
accountIds: Array<number>;
|
|
8562
8571
|
|
|
8563
8572
|
/**
|
|
8564
|
-
* Liste von
|
|
8573
|
+
* Liste von Artikel-IDs
|
|
8565
8574
|
*/
|
|
8566
|
-
|
|
8575
|
+
articleIds: Array<number>;
|
|
8567
8576
|
|
|
8568
8577
|
/**
|
|
8569
8578
|
* ein qualifier
|
|
@@ -8760,14 +8769,14 @@ export interface ProductDiscount {
|
|
|
8760
8769
|
validFrom: ScriptingDate;
|
|
8761
8770
|
|
|
8762
8771
|
/**
|
|
8763
|
-
*
|
|
8772
|
+
* Warengruppe
|
|
8764
8773
|
*/
|
|
8765
|
-
|
|
8774
|
+
productGroupRef: ApiObjectReference;
|
|
8766
8775
|
|
|
8767
8776
|
/**
|
|
8768
|
-
*
|
|
8777
|
+
* Bestimmt die Art des Rabatts
|
|
8769
8778
|
*/
|
|
8770
|
-
|
|
8779
|
+
modifierType: PriceModifierType;
|
|
8771
8780
|
|
|
8772
8781
|
/**
|
|
8773
8782
|
* Version Identifier for this Object (for PUT)
|
|
@@ -9128,19 +9137,19 @@ export const enum RegulationSet {
|
|
|
9128
9137
|
export interface RequestDocument {
|
|
9129
9138
|
|
|
9130
9139
|
/**
|
|
9131
|
-
*
|
|
9140
|
+
* Belegdatum
|
|
9132
9141
|
*/
|
|
9133
|
-
|
|
9142
|
+
documentDate: ScriptingDate;
|
|
9134
9143
|
|
|
9135
9144
|
/**
|
|
9136
|
-
*
|
|
9145
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9137
9146
|
*/
|
|
9138
|
-
|
|
9147
|
+
incomingGoodsStorageBinId: number;
|
|
9139
9148
|
|
|
9140
9149
|
/**
|
|
9141
|
-
*
|
|
9150
|
+
* Leistungsdatum
|
|
9142
9151
|
*/
|
|
9143
|
-
|
|
9152
|
+
performanceDate: ScriptingDate;
|
|
9144
9153
|
|
|
9145
9154
|
/**
|
|
9146
9155
|
* Der Anzahlungsbetrag
|
|
@@ -9148,9 +9157,9 @@ export interface RequestDocument {
|
|
|
9148
9157
|
depositPaymentAmount: number;
|
|
9149
9158
|
|
|
9150
9159
|
/**
|
|
9151
|
-
*
|
|
9160
|
+
* ID der Kassenschublade (bei POS)
|
|
9152
9161
|
*/
|
|
9153
|
-
|
|
9162
|
+
cashDrawerId: number;
|
|
9154
9163
|
|
|
9155
9164
|
/**
|
|
9156
9165
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9592,14 +9601,14 @@ export interface RequestDocumentText {
|
|
|
9592
9601
|
export interface RevenueCalculation {
|
|
9593
9602
|
|
|
9594
9603
|
/**
|
|
9595
|
-
*
|
|
9604
|
+
* Netto Umsatz
|
|
9596
9605
|
*/
|
|
9597
|
-
|
|
9606
|
+
salesValue: number;
|
|
9598
9607
|
|
|
9599
9608
|
/**
|
|
9600
|
-
*
|
|
9609
|
+
* Deckungsbeitrag (absolut)
|
|
9601
9610
|
*/
|
|
9602
|
-
|
|
9611
|
+
revenue: number;
|
|
9603
9612
|
|
|
9604
9613
|
/**
|
|
9605
9614
|
* Einkaufspreis
|
|
@@ -9620,14 +9629,14 @@ export interface SalesAgent {
|
|
|
9620
9629
|
note: string;
|
|
9621
9630
|
|
|
9622
9631
|
/**
|
|
9623
|
-
*
|
|
9632
|
+
* is sales agent taxable
|
|
9624
9633
|
*/
|
|
9625
|
-
|
|
9634
|
+
taxable: boolean;
|
|
9626
9635
|
|
|
9627
9636
|
/**
|
|
9628
|
-
*
|
|
9637
|
+
* reference to the delivery method
|
|
9629
9638
|
*/
|
|
9630
|
-
|
|
9639
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9631
9640
|
|
|
9632
9641
|
/**
|
|
9633
9642
|
* Freifelder
|
|
@@ -10216,14 +10225,14 @@ export interface ShelfDocumentType {
|
|
|
10216
10225
|
accessLevelWrite: number;
|
|
10217
10226
|
|
|
10218
10227
|
/**
|
|
10219
|
-
*
|
|
10228
|
+
* Ist die Dokumentenart aktiv
|
|
10220
10229
|
*/
|
|
10221
|
-
|
|
10230
|
+
active: boolean;
|
|
10222
10231
|
|
|
10223
10232
|
/**
|
|
10224
|
-
*
|
|
10233
|
+
* system presetting
|
|
10225
10234
|
*/
|
|
10226
|
-
|
|
10235
|
+
systemPresetting: boolean;
|
|
10227
10236
|
|
|
10228
10237
|
/**
|
|
10229
10238
|
* access level or reading
|
|
@@ -10801,14 +10810,14 @@ export interface Supplier {
|
|
|
10801
10810
|
info: MetaInfo;
|
|
10802
10811
|
|
|
10803
10812
|
/**
|
|
10804
|
-
*
|
|
10813
|
+
* Lieferantengruppe
|
|
10805
10814
|
*/
|
|
10806
|
-
|
|
10815
|
+
supplierGroupRef: ApiObjectReference;
|
|
10807
10816
|
|
|
10808
10817
|
/**
|
|
10809
|
-
*
|
|
10818
|
+
* reference to the delivery method
|
|
10810
10819
|
*/
|
|
10811
|
-
|
|
10820
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10812
10821
|
|
|
10813
10822
|
/**
|
|
10814
10823
|
* tax able or tax free
|
|
@@ -11202,11 +11211,6 @@ export interface User {
|
|
|
11202
11211
|
*/
|
|
11203
11212
|
roles: Array<ApiObjectReference>;
|
|
11204
11213
|
|
|
11205
|
-
/**
|
|
11206
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11207
|
-
*/
|
|
11208
|
-
referencedCustomerUserId: number;
|
|
11209
|
-
|
|
11210
11214
|
/**
|
|
11211
11215
|
* Gruppen
|
|
11212
11216
|
*/
|
|
@@ -11217,6 +11221,11 @@ export interface User {
|
|
|
11217
11221
|
*/
|
|
11218
11222
|
active: boolean;
|
|
11219
11223
|
|
|
11224
|
+
/**
|
|
11225
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11226
|
+
*/
|
|
11227
|
+
referencedCustomerUserId: number;
|
|
11228
|
+
|
|
11220
11229
|
/**
|
|
11221
11230
|
* App-Identifier
|
|
11222
11231
|
*/
|
|
@@ -11233,14 +11242,14 @@ export interface User {
|
|
|
11233
11242
|
version: number;
|
|
11234
11243
|
|
|
11235
11244
|
/**
|
|
11236
|
-
*
|
|
11245
|
+
* first-name
|
|
11237
11246
|
*/
|
|
11238
|
-
|
|
11247
|
+
firstName: string;
|
|
11239
11248
|
|
|
11240
11249
|
/**
|
|
11241
|
-
*
|
|
11250
|
+
* is the email verified
|
|
11242
11251
|
*/
|
|
11243
|
-
|
|
11252
|
+
emailVerified: boolean;
|
|
11244
11253
|
|
|
11245
11254
|
/**
|
|
11246
11255
|
* email-address
|
|
@@ -11253,14 +11262,14 @@ export interface User {
|
|
|
11253
11262
|
id: number;
|
|
11254
11263
|
|
|
11255
11264
|
/**
|
|
11256
|
-
*
|
|
11265
|
+
* username
|
|
11257
11266
|
*/
|
|
11258
|
-
|
|
11267
|
+
username: string;
|
|
11259
11268
|
|
|
11260
11269
|
/**
|
|
11261
|
-
*
|
|
11270
|
+
* Valid to
|
|
11262
11271
|
*/
|
|
11263
|
-
|
|
11272
|
+
validTo: ScriptingDateTime;
|
|
11264
11273
|
|
|
11265
11274
|
/**
|
|
11266
11275
|
* MetaInformations for this Object
|
|
@@ -11314,14 +11323,14 @@ export interface VariantAttributeListing {
|
|
|
11314
11323
|
salesChannelRef: ApiObjectReference;
|
|
11315
11324
|
|
|
11316
11325
|
/**
|
|
11317
|
-
*
|
|
11326
|
+
* Freifelder
|
|
11318
11327
|
*/
|
|
11319
|
-
|
|
11328
|
+
custom: EavVariantattributelisting;
|
|
11320
11329
|
|
|
11321
11330
|
/**
|
|
11322
|
-
*
|
|
11331
|
+
* Variantenattribut
|
|
11323
11332
|
*/
|
|
11324
|
-
|
|
11333
|
+
variantAttributeRef: ApiObjectReference;
|
|
11325
11334
|
|
|
11326
11335
|
/**
|
|
11327
11336
|
* Unique identifier of the Object
|