@vario-software/types 2026.21.2 → 2026.21.4
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 +5 -0
- package/scripting/services.d.ts +28 -28
- package/scripting/types.d.ts +310 -310
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
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
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
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
|
|
@@ -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
|
* Country code
|
|
310
305
|
*/
|
|
311
306
|
countryCode: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* origin type
|
|
508
503
|
*/
|
|
509
504
|
originType: AccountBankdetail$OriginType;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* Is default bank?
|
|
508
|
+
*/
|
|
509
|
+
defaultBank: boolean;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
payablesSum: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Kreditlimit
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
maximalLoan: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -1003,25 +1003,20 @@ export interface Article {
|
|
|
1003
1003
|
*/
|
|
1004
1004
|
customsTariffNumber: string;
|
|
1005
1005
|
|
|
1006
|
-
/**
|
|
1007
|
-
* Product custom data
|
|
1008
|
-
*/
|
|
1009
|
-
listingCustom: EavArticleListing;
|
|
1010
|
-
|
|
1011
1006
|
/**
|
|
1012
1007
|
* is this product purchasable
|
|
1013
1008
|
*/
|
|
1014
1009
|
purchasable: boolean;
|
|
1015
1010
|
|
|
1016
1011
|
/**
|
|
1017
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1018
1013
|
*/
|
|
1019
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1020
1015
|
|
|
1021
1016
|
/**
|
|
1022
|
-
*
|
|
1017
|
+
* base capacity unit
|
|
1023
1018
|
*/
|
|
1024
|
-
|
|
1019
|
+
baseCapacityUnit: UnitTypeReference;
|
|
1025
1020
|
|
|
1026
1021
|
/**
|
|
1027
1022
|
* Seriennummern Auszeichnungsart
|
|
@@ -1033,6 +1028,11 @@ export interface Article {
|
|
|
1033
1028
|
*/
|
|
1034
1029
|
initialAvgPurchasePrice: number;
|
|
1035
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* is this product sellable without any quantity at the stock
|
|
1033
|
+
*/
|
|
1034
|
+
sellableWithoutStock: boolean;
|
|
1035
|
+
|
|
1036
1036
|
/**
|
|
1037
1037
|
* gross Volume in cubic meters
|
|
1038
1038
|
*/
|
|
@@ -1059,14 +1059,14 @@ export interface Article {
|
|
|
1059
1059
|
warrantyInMonths: number;
|
|
1060
1060
|
|
|
1061
1061
|
/**
|
|
1062
|
-
*
|
|
1062
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1063
1063
|
*/
|
|
1064
|
-
|
|
1064
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
1072
|
* 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
|
|
@@ -1179,14 +1179,14 @@ export interface Article {
|
|
|
1179
1179
|
solvable: boolean;
|
|
1180
1180
|
|
|
1181
1181
|
/**
|
|
1182
|
-
*
|
|
1182
|
+
* Verkaufseinheit
|
|
1183
1183
|
*/
|
|
1184
|
-
|
|
1184
|
+
salesUnit: number;
|
|
1185
1185
|
|
|
1186
1186
|
/**
|
|
1187
|
-
*
|
|
1187
|
+
* weight and size inc. packaging
|
|
1188
1188
|
*/
|
|
1189
|
-
|
|
1189
|
+
grossMetric: Article$Metric;
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
1192
|
* name of this product
|
|
@@ -1198,20 +1198,15 @@ export interface Article {
|
|
|
1198
1198
|
*/
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
|
-
/**
|
|
1202
|
-
* Country code
|
|
1203
|
-
*/
|
|
1204
|
-
countryOfOriginRef: CountryReference;
|
|
1205
|
-
|
|
1206
1201
|
/**
|
|
1207
1202
|
* Arbeitseinheit in Minuten
|
|
1208
1203
|
*/
|
|
1209
1204
|
workUnitInMinutes: number;
|
|
1210
1205
|
|
|
1211
1206
|
/**
|
|
1212
|
-
*
|
|
1207
|
+
* Country code
|
|
1213
1208
|
*/
|
|
1214
|
-
|
|
1209
|
+
countryOfOriginRef: CountryReference;
|
|
1215
1210
|
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Frei kommissionierbar
|
|
@@ -1219,20 +1214,25 @@ export interface Article {
|
|
|
1219
1214
|
freelyPickable: boolean;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* description custom data
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
|
-
*
|
|
1222
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1223
|
*/
|
|
1229
|
-
|
|
1224
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1225
|
|
|
1231
1226
|
/**
|
|
1232
1227
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1233
1228
|
*/
|
|
1234
1229
|
taxLiabilityReversed: boolean;
|
|
1235
1230
|
|
|
1231
|
+
/**
|
|
1232
|
+
* Notiz
|
|
1233
|
+
*/
|
|
1234
|
+
note: string;
|
|
1235
|
+
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Erlaubte Arten der Kommissionierung
|
|
1238
1238
|
*/
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* gross sales prices
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
grossSalesPrice: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1288,11 +1288,6 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
-
/**
|
|
1292
|
-
* Versandlabeldruck
|
|
1293
|
-
*/
|
|
1294
|
-
shippingLabelPrinting: boolean;
|
|
1295
|
-
|
|
1296
1291
|
/**
|
|
1297
1292
|
* reference to Product
|
|
1298
1293
|
*/
|
|
@@ -1304,9 +1299,9 @@ export interface Article {
|
|
|
1304
1299
|
isDangerousGood: boolean;
|
|
1305
1300
|
|
|
1306
1301
|
/**
|
|
1307
|
-
*
|
|
1302
|
+
* Versandlabeldruck
|
|
1308
1303
|
*/
|
|
1309
|
-
|
|
1304
|
+
shippingLabelPrinting: boolean;
|
|
1310
1305
|
|
|
1311
1306
|
/**
|
|
1312
1307
|
* rabattierbarer Artikel?
|
|
@@ -1318,6 +1313,11 @@ export interface Article {
|
|
|
1318
1313
|
*/
|
|
1319
1314
|
alternativeName: string;
|
|
1320
1315
|
|
|
1316
|
+
/**
|
|
1317
|
+
* Kontingentartikel
|
|
1318
|
+
*/
|
|
1319
|
+
contingentArticleRef: ApiObjectReference;
|
|
1320
|
+
|
|
1321
1321
|
/**
|
|
1322
1322
|
* base capacity
|
|
1323
1323
|
*/
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
commissionable: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* Nur manuelle Produktion
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
onlyManualFabrication: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1421,30 +1421,30 @@ export interface Article$Metric {
|
|
|
1421
1421
|
*/
|
|
1422
1422
|
sizeX: number;
|
|
1423
1423
|
|
|
1424
|
-
/**
|
|
1425
|
-
* size unit
|
|
1426
|
-
*/
|
|
1427
|
-
sizeUnit: UnitTypeReference;
|
|
1428
|
-
|
|
1429
1424
|
/**
|
|
1430
1425
|
* weight
|
|
1431
1426
|
*/
|
|
1432
1427
|
weight: number;
|
|
1433
1428
|
|
|
1434
1429
|
/**
|
|
1435
|
-
* size
|
|
1430
|
+
* size unit
|
|
1436
1431
|
*/
|
|
1437
|
-
|
|
1432
|
+
sizeUnit: UnitTypeReference;
|
|
1438
1433
|
|
|
1439
1434
|
/**
|
|
1440
1435
|
* size
|
|
1441
1436
|
*/
|
|
1442
|
-
|
|
1437
|
+
sizeY: number;
|
|
1443
1438
|
|
|
1444
1439
|
/**
|
|
1445
1440
|
* weight unit
|
|
1446
1441
|
*/
|
|
1447
1442
|
weightUnit: UnitTypeReference;
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* size
|
|
1446
|
+
*/
|
|
1447
|
+
sizeZ: number;
|
|
1448
1448
|
}
|
|
1449
1449
|
|
|
1450
1450
|
export interface ArticleAvailabilityDetermination {
|
|
@@ -1769,11 +1769,6 @@ export interface ArticleStorage {
|
|
|
1769
1769
|
*/
|
|
1770
1770
|
replenishmentFrom: number;
|
|
1771
1771
|
|
|
1772
|
-
/**
|
|
1773
|
-
* Meldebestand
|
|
1774
|
-
*/
|
|
1775
|
-
reorderPoint: number;
|
|
1776
|
-
|
|
1777
1772
|
/**
|
|
1778
1773
|
* Bestellte Menge
|
|
1779
1774
|
*/
|
|
@@ -1785,15 +1780,20 @@ export interface ArticleStorage {
|
|
|
1785
1780
|
quantityInPicking: number;
|
|
1786
1781
|
|
|
1787
1782
|
/**
|
|
1788
|
-
*
|
|
1783
|
+
* Meldebestand
|
|
1789
1784
|
*/
|
|
1790
|
-
|
|
1785
|
+
reorderPoint: number;
|
|
1791
1786
|
|
|
1792
1787
|
/**
|
|
1793
1788
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1794
1789
|
*/
|
|
1795
1790
|
virtualStockAmount: number;
|
|
1796
1791
|
|
|
1792
|
+
/**
|
|
1793
|
+
* Nachschub auf
|
|
1794
|
+
*/
|
|
1795
|
+
replenishmentOn: number;
|
|
1796
|
+
|
|
1797
1797
|
/**
|
|
1798
1798
|
* Reservierte Menge
|
|
1799
1799
|
*/
|
|
@@ -1862,6 +1862,11 @@ export interface ArticleStorage {
|
|
|
1862
1862
|
|
|
1863
1863
|
export interface ArticleSupplier {
|
|
1864
1864
|
|
|
1865
|
+
/**
|
|
1866
|
+
* Lieferanten-Meldebestand
|
|
1867
|
+
*/
|
|
1868
|
+
supplierReportingStock: number;
|
|
1869
|
+
|
|
1865
1870
|
/**
|
|
1866
1871
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1867
1872
|
*/
|
|
@@ -1872,11 +1877,6 @@ export interface ArticleSupplier {
|
|
|
1872
1877
|
*/
|
|
1873
1878
|
accountDisplayName: string;
|
|
1874
1879
|
|
|
1875
|
-
/**
|
|
1876
|
-
* Lieferanten-Meldebestand
|
|
1877
|
-
*/
|
|
1878
|
-
supplierReportingStock: number;
|
|
1879
|
-
|
|
1880
1880
|
/**
|
|
1881
1881
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1882
1882
|
*/
|
|
@@ -1973,14 +1973,14 @@ export interface ArticleSupplier {
|
|
|
1973
1973
|
dropShippingAllowed: boolean;
|
|
1974
1974
|
|
|
1975
1975
|
/**
|
|
1976
|
-
* Abweichende
|
|
1976
|
+
* Abweichende Produktbeschreibung
|
|
1977
1977
|
*/
|
|
1978
|
-
|
|
1978
|
+
supplierArticleDescription: string;
|
|
1979
1979
|
|
|
1980
1980
|
/**
|
|
1981
|
-
* Abweichende
|
|
1981
|
+
* Abweichende Produktbezeichnung
|
|
1982
1982
|
*/
|
|
1983
|
-
|
|
1983
|
+
supplierArticleName: string;
|
|
1984
1984
|
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Standardpreis Netto
|
|
@@ -1988,14 +1988,14 @@ export interface ArticleSupplier {
|
|
|
1988
1988
|
defaultNetPrice: number;
|
|
1989
1989
|
|
|
1990
1990
|
/**
|
|
1991
|
-
*
|
|
1991
|
+
* Einkaufseinheit
|
|
1992
1992
|
*/
|
|
1993
|
-
|
|
1993
|
+
purchaseUnit: number;
|
|
1994
1994
|
|
|
1995
1995
|
/**
|
|
1996
|
-
*
|
|
1996
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1997
1997
|
*/
|
|
1998
|
-
|
|
1998
|
+
orderOnComponentBase: boolean;
|
|
1999
1999
|
|
|
2000
2000
|
/**
|
|
2001
2001
|
* Referenced Supplier-Account
|
|
@@ -2271,14 +2271,14 @@ export interface CrmActivity {
|
|
|
2271
2271
|
info: MetaInfo;
|
|
2272
2272
|
|
|
2273
2273
|
/**
|
|
2274
|
-
*
|
|
2274
|
+
* Aktivität intern abgerechnet?
|
|
2275
2275
|
*/
|
|
2276
|
-
|
|
2276
|
+
internalBilled: boolean;
|
|
2277
2277
|
|
|
2278
2278
|
/**
|
|
2279
|
-
*
|
|
2279
|
+
* geplante Dauer
|
|
2280
2280
|
*/
|
|
2281
|
-
|
|
2281
|
+
plannedDurationInSeconds: number;
|
|
2282
2282
|
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2430,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2430
2430
|
export interface CrmChecklistItem {
|
|
2431
2431
|
|
|
2432
2432
|
/**
|
|
2433
|
-
*
|
|
2433
|
+
* Ist das Element "angehakt"?
|
|
2434
2434
|
*/
|
|
2435
|
-
|
|
2435
|
+
checked: boolean;
|
|
2436
2436
|
|
|
2437
2437
|
/**
|
|
2438
|
-
*
|
|
2438
|
+
* Text des Checklisten-Elements
|
|
2439
2439
|
*/
|
|
2440
|
-
|
|
2440
|
+
memo: string;
|
|
2441
2441
|
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Unique identifier of the Object
|
|
@@ -2829,14 +2829,14 @@ export interface CrmProject {
|
|
|
2829
2829
|
priorityRef: ApiObjectReference;
|
|
2830
2830
|
|
|
2831
2831
|
/**
|
|
2832
|
-
*
|
|
2832
|
+
* Phase
|
|
2833
2833
|
*/
|
|
2834
|
-
|
|
2834
|
+
phaseRef: ApiObjectReference;
|
|
2835
2835
|
|
|
2836
2836
|
/**
|
|
2837
|
-
*
|
|
2837
|
+
* Projektleiter vom Auftragnehmer
|
|
2838
2838
|
*/
|
|
2839
|
-
|
|
2839
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2840
2840
|
|
|
2841
2841
|
/**
|
|
2842
2842
|
* Aufgaben-Nummer
|
|
@@ -2854,14 +2854,14 @@ export interface CrmProject {
|
|
|
2854
2854
|
billedTimes: number;
|
|
2855
2855
|
|
|
2856
2856
|
/**
|
|
2857
|
-
*
|
|
2857
|
+
* Einkaufsbelege
|
|
2858
2858
|
*/
|
|
2859
|
-
|
|
2859
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
*
|
|
2862
|
+
* Geplanter Projektzeitraum (von)
|
|
2863
2863
|
*/
|
|
2864
|
-
|
|
2864
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
2867
|
* Verkaufsbelege
|
|
@@ -2889,14 +2889,14 @@ export interface CrmProject {
|
|
|
2889
2889
|
info: MetaInfo;
|
|
2890
2890
|
|
|
2891
2891
|
/**
|
|
2892
|
-
*
|
|
2892
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2893
2893
|
*/
|
|
2894
|
-
|
|
2894
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2895
2895
|
|
|
2896
2896
|
/**
|
|
2897
|
-
*
|
|
2897
|
+
* Projektleiter vom Auftraggeber
|
|
2898
2898
|
*/
|
|
2899
|
-
|
|
2899
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2900
2900
|
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3084,14 +3084,14 @@ export interface CrmState {
|
|
|
3084
3084
|
readyToBill: boolean;
|
|
3085
3085
|
|
|
3086
3086
|
/**
|
|
3087
|
-
*
|
|
3087
|
+
* Handelt es sich um einen Anfang-Status
|
|
3088
3088
|
*/
|
|
3089
|
-
|
|
3089
|
+
startState: boolean;
|
|
3090
3090
|
|
|
3091
3091
|
/**
|
|
3092
|
-
*
|
|
3092
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3093
3093
|
*/
|
|
3094
|
-
|
|
3094
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3095
3095
|
|
|
3096
3096
|
/**
|
|
3097
3097
|
* MetaInformations for this Object
|
|
@@ -3140,9 +3140,9 @@ export interface CrmSubType {
|
|
|
3140
3140
|
export interface CrmTask {
|
|
3141
3141
|
|
|
3142
3142
|
/**
|
|
3143
|
-
*
|
|
3143
|
+
* Liste von Erinnerungen
|
|
3144
3144
|
*/
|
|
3145
|
-
|
|
3145
|
+
reminders: Array<CrmReminder>;
|
|
3146
3146
|
|
|
3147
3147
|
/**
|
|
3148
3148
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3150,9 +3150,9 @@ export interface CrmTask {
|
|
|
3150
3150
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3151
3151
|
|
|
3152
3152
|
/**
|
|
3153
|
-
*
|
|
3153
|
+
* Angebot
|
|
3154
3154
|
*/
|
|
3155
|
-
|
|
3155
|
+
customerOfferRef: DocumentRef;
|
|
3156
3156
|
|
|
3157
3157
|
/**
|
|
3158
3158
|
* Notizen
|
|
@@ -3519,14 +3519,14 @@ export interface CurrencyReference {
|
|
|
3519
3519
|
export interface Customer {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* reference to customer group
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
customerGroupRef: ApiObjectReference;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* Option für die Stapelverarbeitung
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3579,14 +3579,14 @@ export interface Customer {
|
|
|
3579
3579
|
stackProcessingPriority: number;
|
|
3580
3580
|
|
|
3581
3581
|
/**
|
|
3582
|
-
*
|
|
3582
|
+
* reference to product price group
|
|
3583
3583
|
*/
|
|
3584
|
-
|
|
3584
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3585
3585
|
|
|
3586
3586
|
/**
|
|
3587
|
-
*
|
|
3587
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3588
3588
|
*/
|
|
3589
|
-
|
|
3589
|
+
collectiveInvoiceManually: boolean;
|
|
3590
3590
|
|
|
3591
3591
|
/**
|
|
3592
3592
|
* Unique identifier of the Object
|
|
@@ -3730,14 +3730,14 @@ export interface DeliveryMethod {
|
|
|
3730
3730
|
defaultSizeUnit: UnitTypeReference;
|
|
3731
3731
|
|
|
3732
3732
|
/**
|
|
3733
|
-
*
|
|
3733
|
+
* translations
|
|
3734
3734
|
*/
|
|
3735
|
-
|
|
3735
|
+
translations: Array<DocumentTypeTerm>;
|
|
3736
3736
|
|
|
3737
3737
|
/**
|
|
3738
|
-
*
|
|
3738
|
+
* Quelle für Paketgewicht
|
|
3739
3739
|
*/
|
|
3740
|
-
|
|
3740
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
3743
|
* Versand-Anbieter
|
|
@@ -3828,14 +3828,14 @@ export interface DeliveryTerm {
|
|
|
3828
3828
|
version: number;
|
|
3829
3829
|
|
|
3830
3830
|
/**
|
|
3831
|
-
*
|
|
3831
|
+
* translations
|
|
3832
3832
|
*/
|
|
3833
|
-
|
|
3833
|
+
translations: Array<DocumentTypeTerm>;
|
|
3834
3834
|
|
|
3835
3835
|
/**
|
|
3836
|
-
*
|
|
3836
|
+
* information, how the shipping charges should be calculated
|
|
3837
3837
|
*/
|
|
3838
|
-
|
|
3838
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3839
3839
|
|
|
3840
3840
|
/**
|
|
3841
3841
|
* Lieferarten
|
|
@@ -3954,9 +3954,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3954
3954
|
deliveryQuantityPackages: number;
|
|
3955
3955
|
|
|
3956
3956
|
/**
|
|
3957
|
-
*
|
|
3957
|
+
* Steuerpflichtig oder steuerfrei
|
|
3958
3958
|
*/
|
|
3959
|
-
|
|
3959
|
+
taxable: boolean;
|
|
3960
3960
|
|
|
3961
3961
|
/**
|
|
3962
3962
|
* Bestellnummer aus Vorbeleg
|
|
@@ -3964,9 +3964,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3964
3964
|
referencedOrderNumber: string;
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
|
-
*
|
|
3967
|
+
* Leitweg-ID
|
|
3968
3968
|
*/
|
|
3969
|
-
|
|
3969
|
+
buyerReference: string;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4130,20 +4130,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4130
4130
|
*/
|
|
4131
4131
|
fabricationDetail: DocumentFabricationDetail;
|
|
4132
4132
|
|
|
4133
|
-
/**
|
|
4134
|
-
* Berechnungsmodus
|
|
4135
|
-
*/
|
|
4136
|
-
calculationMode: CalculationMode;
|
|
4137
|
-
|
|
4138
4133
|
/**
|
|
4139
4134
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
4140
4135
|
*/
|
|
4141
4136
|
accountNumber: string;
|
|
4142
4137
|
|
|
4143
4138
|
/**
|
|
4144
|
-
*
|
|
4139
|
+
* Berechnungsmodus
|
|
4145
4140
|
*/
|
|
4146
|
-
|
|
4141
|
+
calculationMode: CalculationMode;
|
|
4147
4142
|
|
|
4148
4143
|
/**
|
|
4149
4144
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4151,15 +4146,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4151
4146
|
paymentTermRef: PaymentTermRef;
|
|
4152
4147
|
|
|
4153
4148
|
/**
|
|
4154
|
-
*
|
|
4149
|
+
* Wird vom Workflow verarbeitet?
|
|
4155
4150
|
*/
|
|
4156
|
-
|
|
4151
|
+
processedByWorkflow: boolean;
|
|
4157
4152
|
|
|
4158
4153
|
/**
|
|
4159
4154
|
* Preisanpassungen - Beleg Basiswährung
|
|
4160
4155
|
*/
|
|
4161
4156
|
baseTotalDocumentPriceModifier: number;
|
|
4162
4157
|
|
|
4158
|
+
/**
|
|
4159
|
+
* Telefon an Versender übergeben
|
|
4160
|
+
*/
|
|
4161
|
+
forwardPhoneToShipper: boolean;
|
|
4162
|
+
|
|
4163
4163
|
/**
|
|
4164
4164
|
* Liste der Belegtexte
|
|
4165
4165
|
*/
|
|
@@ -4216,14 +4216,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4216
4216
|
additionalInfo: DocumentAdditionalInfo;
|
|
4217
4217
|
|
|
4218
4218
|
/**
|
|
4219
|
-
*
|
|
4219
|
+
* Bestelldatum
|
|
4220
4220
|
*/
|
|
4221
|
-
|
|
4221
|
+
orderedOn: ScriptingDate;
|
|
4222
4222
|
|
|
4223
4223
|
/**
|
|
4224
|
-
*
|
|
4224
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4225
4225
|
*/
|
|
4226
|
-
|
|
4226
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4227
4227
|
|
|
4228
4228
|
/**
|
|
4229
4229
|
* MetaInformations for this Object
|
|
@@ -4376,11 +4376,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4376
4376
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
4377
|
|
|
4378
4378
|
/**
|
|
4379
|
-
*
|
|
4380
|
-
true wenn die Quittung ausbalanciert ist
|
|
4381
|
-
|
|
4379
|
+
* Rückgeld
|
|
4382
4380
|
*/
|
|
4383
|
-
|
|
4381
|
+
posReceiptChangeAmount: number;
|
|
4384
4382
|
|
|
4385
4383
|
/**
|
|
4386
4384
|
* Referenz auf Lieferbedingung
|
|
@@ -4388,9 +4386,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4388
4386
|
deliveryTermRef: ApiObjectReference;
|
|
4389
4387
|
|
|
4390
4388
|
/**
|
|
4391
|
-
* Rückgeld
|
|
4389
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4390
|
+
true wenn die Quittung ausbalanciert ist
|
|
4391
|
+
|
|
4392
4392
|
*/
|
|
4393
|
-
|
|
4393
|
+
posReceiptBalanced: boolean;
|
|
4394
4394
|
|
|
4395
4395
|
/**
|
|
4396
4396
|
* Gesamtbruttogewicht
|
|
@@ -4581,14 +4581,14 @@ export interface DocumentAddress {
|
|
|
4581
4581
|
postOfficeBox: string;
|
|
4582
4582
|
|
|
4583
4583
|
/**
|
|
4584
|
-
*
|
|
4584
|
+
* country code IsoAlpha3
|
|
4585
4585
|
*/
|
|
4586
|
-
|
|
4586
|
+
countryCode: string;
|
|
4587
4587
|
|
|
4588
4588
|
/**
|
|
4589
|
-
*
|
|
4589
|
+
* Street
|
|
4590
4590
|
*/
|
|
4591
|
-
|
|
4591
|
+
street: string;
|
|
4592
4592
|
|
|
4593
4593
|
/**
|
|
4594
4594
|
* Unique identifier of the Object
|
|
@@ -4606,14 +4606,14 @@ export interface DocumentAddress {
|
|
|
4606
4606
|
info: MetaInfo;
|
|
4607
4607
|
|
|
4608
4608
|
/**
|
|
4609
|
-
*
|
|
4609
|
+
* GLN
|
|
4610
4610
|
*/
|
|
4611
|
-
|
|
4611
|
+
globalLocationNumber: string;
|
|
4612
4612
|
|
|
4613
4613
|
/**
|
|
4614
|
-
*
|
|
4614
|
+
* Lieferart
|
|
4615
4615
|
*/
|
|
4616
|
-
|
|
4616
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4617
4617
|
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Postcode
|
|
@@ -4965,14 +4965,14 @@ export const enum DocumentImportType {
|
|
|
4965
4965
|
export interface DocumentLine {
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Zolltarifnummer
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
customsTariffNumber: string;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
|
-
*
|
|
4973
|
+
* Leistungsdatum
|
|
4974
4974
|
*/
|
|
4975
|
-
|
|
4975
|
+
performanceDate: ScriptingDate;
|
|
4976
4976
|
|
|
4977
4977
|
/**
|
|
4978
4978
|
* Land der Herkunft
|
|
@@ -5065,14 +5065,14 @@ export interface DocumentLine {
|
|
|
5065
5065
|
baseTotalLinePrice: number;
|
|
5066
5066
|
|
|
5067
5067
|
/**
|
|
5068
|
-
*
|
|
5068
|
+
* Positionstyp
|
|
5069
5069
|
*/
|
|
5070
|
-
|
|
5070
|
+
lineType: DocumentLineType;
|
|
5071
5071
|
|
|
5072
5072
|
/**
|
|
5073
|
-
*
|
|
5073
|
+
* FiBu-Buchung
|
|
5074
5074
|
*/
|
|
5075
|
-
|
|
5075
|
+
financeBooking: DocumentFinanceBooking;
|
|
5076
5076
|
|
|
5077
5077
|
/**
|
|
5078
5078
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5275,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5275
5275
|
revenueCalculation: RevenueCalculation;
|
|
5276
5276
|
|
|
5277
5277
|
/**
|
|
5278
|
-
*
|
|
5278
|
+
* Einheitentyp
|
|
5279
5279
|
*/
|
|
5280
|
-
|
|
5280
|
+
unitType: UnitTypeReference;
|
|
5281
5281
|
|
|
5282
5282
|
/**
|
|
5283
|
-
*
|
|
5283
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5284
5284
|
*/
|
|
5285
|
-
|
|
5285
|
+
totalLinePrice: number;
|
|
5286
5286
|
|
|
5287
5287
|
/**
|
|
5288
5288
|
* Referenz zur Basiszeile
|
|
@@ -5320,14 +5320,14 @@ export interface DocumentLine {
|
|
|
5320
5320
|
productType: ProductType;
|
|
5321
5321
|
|
|
5322
5322
|
/**
|
|
5323
|
-
*
|
|
5323
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5324
5324
|
*/
|
|
5325
|
-
|
|
5325
|
+
baseSalesValueNet: number;
|
|
5326
5326
|
|
|
5327
5327
|
/**
|
|
5328
|
-
*
|
|
5328
|
+
* Vertragsinformationen
|
|
5329
5329
|
*/
|
|
5330
|
-
|
|
5330
|
+
contractDetail: DocumentContractDetail;
|
|
5331
5331
|
|
|
5332
5332
|
/**
|
|
5333
5333
|
* Einheit Nettogewicht
|
|
@@ -7003,14 +7003,14 @@ export interface FabricationRevertRequest {
|
|
|
7003
7003
|
export interface FabricationSerialNumber {
|
|
7004
7004
|
|
|
7005
7005
|
/**
|
|
7006
|
-
*
|
|
7006
|
+
* MHD / Verfallsdatum
|
|
7007
7007
|
*/
|
|
7008
|
-
|
|
7008
|
+
expiryDate: ScriptingDate;
|
|
7009
7009
|
|
|
7010
7010
|
/**
|
|
7011
|
-
*
|
|
7011
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7012
7012
|
*/
|
|
7013
|
-
|
|
7013
|
+
serialNumberId: number;
|
|
7014
7014
|
|
|
7015
7015
|
/**
|
|
7016
7016
|
* Bemerkung
|
|
@@ -7260,14 +7260,14 @@ export interface PaymentTerm {
|
|
|
7260
7260
|
printDescription: string;
|
|
7261
7261
|
|
|
7262
7262
|
/**
|
|
7263
|
-
* for
|
|
7263
|
+
* Days for Discount 1
|
|
7264
7264
|
*/
|
|
7265
|
-
|
|
7265
|
+
paymentDays1: number;
|
|
7266
7266
|
|
|
7267
7267
|
/**
|
|
7268
|
-
*
|
|
7268
|
+
* for deposit: remaining term
|
|
7269
7269
|
*/
|
|
7270
|
-
|
|
7270
|
+
remainingTermRef: ApiObjectReference;
|
|
7271
7271
|
|
|
7272
7272
|
/**
|
|
7273
7273
|
* Days for Discount 2
|
|
@@ -7388,14 +7388,14 @@ export interface PickTrolley {
|
|
|
7388
7388
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7389
7389
|
|
|
7390
7390
|
/**
|
|
7391
|
-
*
|
|
7391
|
+
* Bearbeiter der Pickliste
|
|
7392
7392
|
*/
|
|
7393
|
-
|
|
7393
|
+
processedByUserRef: ApiObjectReference;
|
|
7394
7394
|
|
|
7395
7395
|
/**
|
|
7396
|
-
*
|
|
7396
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7397
7397
|
*/
|
|
7398
|
-
|
|
7398
|
+
storageBinRef: StorageBinRef;
|
|
7399
7399
|
|
|
7400
7400
|
/**
|
|
7401
7401
|
* Beschreibung des Wagens
|
|
@@ -7548,14 +7548,14 @@ export const enum PickingType {
|
|
|
7548
7548
|
export interface Picklist {
|
|
7549
7549
|
|
|
7550
7550
|
/**
|
|
7551
|
-
*
|
|
7551
|
+
* Ziellager für Nachschub
|
|
7552
7552
|
*/
|
|
7553
|
-
|
|
7553
|
+
targetStorageRef: ApiObjectReference;
|
|
7554
7554
|
|
|
7555
7555
|
/**
|
|
7556
|
-
*
|
|
7556
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7557
7557
|
*/
|
|
7558
|
-
|
|
7558
|
+
usedTemplate: PicklistTemplate;
|
|
7559
7559
|
|
|
7560
7560
|
/**
|
|
7561
7561
|
* Nummer der Pickliste
|
|
@@ -7606,14 +7606,14 @@ export interface Picklist {
|
|
|
7606
7606
|
export interface PicklistLine {
|
|
7607
7607
|
|
|
7608
7608
|
/**
|
|
7609
|
-
*
|
|
7609
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7610
7610
|
*/
|
|
7611
|
-
|
|
7611
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7612
7612
|
|
|
7613
7613
|
/**
|
|
7614
|
-
*
|
|
7614
|
+
* Gesammelte Menge der Position
|
|
7615
7615
|
*/
|
|
7616
|
-
|
|
7616
|
+
quantityCollected: number;
|
|
7617
7617
|
|
|
7618
7618
|
/**
|
|
7619
7619
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7651,14 +7651,14 @@ export interface PicklistLine {
|
|
|
7651
7651
|
version: number;
|
|
7652
7652
|
|
|
7653
7653
|
/**
|
|
7654
|
-
*
|
|
7654
|
+
* ID der Quell-Dokumentposition
|
|
7655
7655
|
*/
|
|
7656
|
-
|
|
7656
|
+
sourceDocumentLineId: number;
|
|
7657
7657
|
|
|
7658
7658
|
/**
|
|
7659
|
-
*
|
|
7659
|
+
* Lageranzeigename
|
|
7660
7660
|
*/
|
|
7661
|
-
|
|
7661
|
+
storageDisplayName: string;
|
|
7662
7662
|
|
|
7663
7663
|
/**
|
|
7664
7664
|
* Artikelnummer
|
|
@@ -7666,14 +7666,14 @@ export interface PicklistLine {
|
|
|
7666
7666
|
articleNumber: string;
|
|
7667
7667
|
|
|
7668
7668
|
/**
|
|
7669
|
-
*
|
|
7669
|
+
* Art der Position
|
|
7670
7670
|
*/
|
|
7671
|
-
|
|
7671
|
+
lineType: PicklistLineType;
|
|
7672
7672
|
|
|
7673
7673
|
/**
|
|
7674
|
-
*
|
|
7674
|
+
* Lagernummer
|
|
7675
7675
|
*/
|
|
7676
|
-
|
|
7676
|
+
storageNumber: string;
|
|
7677
7677
|
|
|
7678
7678
|
/**
|
|
7679
7679
|
* ID der Ziel-Dokumentposition
|
|
@@ -7985,15 +7985,20 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7985
7985
|
*/
|
|
7986
7986
|
maxArticleCountPerOrder: number;
|
|
7987
7987
|
|
|
7988
|
+
/**
|
|
7989
|
+
* Alternative Selektion in VQL
|
|
7990
|
+
*/
|
|
7991
|
+
alternativeSelectionInVql: string;
|
|
7992
|
+
|
|
7988
7993
|
/**
|
|
7989
7994
|
* Maximaler Auftragswert
|
|
7990
7995
|
*/
|
|
7991
7996
|
maxOrderValue: number;
|
|
7992
7997
|
|
|
7993
7998
|
/**
|
|
7994
|
-
*
|
|
7999
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7995
8000
|
*/
|
|
7996
|
-
|
|
8001
|
+
maxOrderCount: number;
|
|
7997
8002
|
|
|
7998
8003
|
/**
|
|
7999
8004
|
* Nur vollständig lieferbare Positionen
|
|
@@ -8005,11 +8010,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8005
8010
|
*/
|
|
8006
8011
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8007
8012
|
|
|
8008
|
-
/**
|
|
8009
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8010
|
-
*/
|
|
8011
|
-
maxOrderCount: number;
|
|
8012
|
-
|
|
8013
8013
|
/**
|
|
8014
8014
|
* Selektion über den Bereich vom Belegdatum
|
|
8015
8015
|
*/
|
|
@@ -8162,14 +8162,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8162
8162
|
showShippingFormOnPickingFinish: boolean;
|
|
8163
8163
|
|
|
8164
8164
|
/**
|
|
8165
|
-
*
|
|
8165
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8166
8166
|
*/
|
|
8167
|
-
|
|
8167
|
+
useDigitalPicklist: boolean;
|
|
8168
8168
|
|
|
8169
8169
|
/**
|
|
8170
|
-
*
|
|
8170
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8171
8171
|
*/
|
|
8172
|
-
|
|
8172
|
+
allowPickingOfServiceArticles: boolean;
|
|
8173
8173
|
|
|
8174
8174
|
/**
|
|
8175
8175
|
* Sammelbestätigung erlauben
|
|
@@ -8307,14 +8307,14 @@ export interface PriceSelectionCriteria {
|
|
|
8307
8307
|
export interface Product {
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* Zolltarifnummer
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
customsTariffNumber: string;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
|
-
*
|
|
8315
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
8316
8316
|
*/
|
|
8317
|
-
|
|
8317
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
8318
8318
|
|
|
8319
8319
|
/**
|
|
8320
8320
|
* Gebindeschema dieses Produkts
|
|
@@ -8448,14 +8448,14 @@ export interface ProductArticleRef {
|
|
|
8448
8448
|
export interface ProductDiscount {
|
|
8449
8449
|
|
|
8450
8450
|
/**
|
|
8451
|
-
*
|
|
8451
|
+
* Kundengruppe
|
|
8452
8452
|
*/
|
|
8453
|
-
|
|
8453
|
+
customerGroupRef: ApiObjectReference;
|
|
8454
8454
|
|
|
8455
8455
|
/**
|
|
8456
|
-
*
|
|
8456
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8457
8457
|
*/
|
|
8458
|
-
|
|
8458
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8459
8459
|
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Lieferantengruppe
|
|
@@ -8503,14 +8503,14 @@ export interface ProductDiscount {
|
|
|
8503
8503
|
currencyRef: CurrencyReference;
|
|
8504
8504
|
|
|
8505
8505
|
/**
|
|
8506
|
-
*
|
|
8506
|
+
* Wert des Rabatts
|
|
8507
8507
|
*/
|
|
8508
|
-
|
|
8508
|
+
modifierValue: number;
|
|
8509
8509
|
|
|
8510
8510
|
/**
|
|
8511
|
-
*
|
|
8511
|
+
* Preisgruppe
|
|
8512
8512
|
*/
|
|
8513
|
-
|
|
8513
|
+
priceGroupRef: ApiObjectReference;
|
|
8514
8514
|
|
|
8515
8515
|
/**
|
|
8516
8516
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8571,14 +8571,14 @@ export interface ProductGroup {
|
|
|
8571
8571
|
targetTradingMargin: number;
|
|
8572
8572
|
|
|
8573
8573
|
/**
|
|
8574
|
-
*
|
|
8574
|
+
* Freifeld
|
|
8575
8575
|
*/
|
|
8576
|
-
|
|
8576
|
+
custom: EavProductgroup;
|
|
8577
8577
|
|
|
8578
8578
|
/**
|
|
8579
|
-
*
|
|
8579
|
+
* main product group
|
|
8580
8580
|
*/
|
|
8581
|
-
|
|
8581
|
+
mainGroupRef: ApiObjectReference;
|
|
8582
8582
|
|
|
8583
8583
|
/**
|
|
8584
8584
|
* warengruppe aktiv ja/nein
|
|
@@ -8657,14 +8657,14 @@ export interface ProductMainGroup {
|
|
|
8657
8657
|
export interface ProductPrice {
|
|
8658
8658
|
|
|
8659
8659
|
/**
|
|
8660
|
-
*
|
|
8660
|
+
* Kundengruppe
|
|
8661
8661
|
*/
|
|
8662
|
-
|
|
8662
|
+
customerGroupRef: ApiObjectReference;
|
|
8663
8663
|
|
|
8664
8664
|
/**
|
|
8665
|
-
*
|
|
8665
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8666
8666
|
*/
|
|
8667
|
-
|
|
8667
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8668
8668
|
|
|
8669
8669
|
/**
|
|
8670
8670
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8833,15 +8833,20 @@ export interface Referenceable {
|
|
|
8833
8833
|
|
|
8834
8834
|
export interface RequestDocument {
|
|
8835
8835
|
|
|
8836
|
+
/**
|
|
8837
|
+
* Belegdatum
|
|
8838
|
+
*/
|
|
8839
|
+
documentDate: ScriptingDate;
|
|
8840
|
+
|
|
8836
8841
|
/**
|
|
8837
8842
|
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8838
8843
|
*/
|
|
8839
8844
|
incomingGoodsStorageBinId: number;
|
|
8840
8845
|
|
|
8841
8846
|
/**
|
|
8842
|
-
*
|
|
8847
|
+
* Der Anzahlungsbetrag
|
|
8843
8848
|
*/
|
|
8844
|
-
|
|
8849
|
+
depositPaymentAmount: number;
|
|
8845
8850
|
|
|
8846
8851
|
/**
|
|
8847
8852
|
* ID der Kassenschublade (bei POS)
|
|
@@ -8853,11 +8858,6 @@ export interface RequestDocument {
|
|
|
8853
8858
|
*/
|
|
8854
8859
|
performanceDate: ScriptingDate;
|
|
8855
8860
|
|
|
8856
|
-
/**
|
|
8857
|
-
* Der Anzahlungsbetrag
|
|
8858
|
-
*/
|
|
8859
|
-
depositPaymentAmount: number;
|
|
8860
|
-
|
|
8861
8861
|
/**
|
|
8862
8862
|
* Für interne Zwecke: Liefermethode für das Document
|
|
8863
8863
|
*/
|
|
@@ -8919,14 +8919,14 @@ export interface RequestDocument {
|
|
|
8919
8919
|
lines: Array<RequestDocumentLine>;
|
|
8920
8920
|
|
|
8921
8921
|
/**
|
|
8922
|
-
*
|
|
8922
|
+
* ID der Kasse (bei POS)
|
|
8923
8923
|
*/
|
|
8924
|
-
|
|
8924
|
+
posRegisterId: number;
|
|
8925
8925
|
|
|
8926
8926
|
/**
|
|
8927
|
-
*
|
|
8927
|
+
* Die Vertragsdetails
|
|
8928
8928
|
*/
|
|
8929
|
-
|
|
8929
|
+
contractDetail: DocumentContractDetail;
|
|
8930
8930
|
|
|
8931
8931
|
/**
|
|
8932
8932
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9047,14 +9047,14 @@ export interface RequestDocumentLine {
|
|
|
9047
9047
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9048
9048
|
|
|
9049
9049
|
/**
|
|
9050
|
-
*
|
|
9050
|
+
* Typ dieser Position
|
|
9051
9051
|
*/
|
|
9052
|
-
|
|
9052
|
+
lineType: DocumentLineType;
|
|
9053
9053
|
|
|
9054
9054
|
/**
|
|
9055
|
-
*
|
|
9055
|
+
* FiBu-Angaben
|
|
9056
9056
|
*/
|
|
9057
|
-
|
|
9057
|
+
financeBooking: DocumentFinanceBooking;
|
|
9058
9058
|
|
|
9059
9059
|
/**
|
|
9060
9060
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9147,9 +9147,9 @@ export interface RequestDocumentLine {
|
|
|
9147
9147
|
name: string;
|
|
9148
9148
|
|
|
9149
9149
|
/**
|
|
9150
|
-
*
|
|
9150
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9151
9151
|
*/
|
|
9152
|
-
|
|
9152
|
+
externalArticleNumber: string;
|
|
9153
9153
|
|
|
9154
9154
|
/**
|
|
9155
9155
|
* ID der Quell-Belegposition
|
|
@@ -9157,9 +9157,9 @@ export interface RequestDocumentLine {
|
|
|
9157
9157
|
sourceLineId: number;
|
|
9158
9158
|
|
|
9159
9159
|
/**
|
|
9160
|
-
*
|
|
9160
|
+
* Buchungen zu dieser Belegposition
|
|
9161
9161
|
*/
|
|
9162
|
-
|
|
9162
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9163
9163
|
|
|
9164
9164
|
/**
|
|
9165
9165
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9303,14 +9303,14 @@ export interface SalesAgent {
|
|
|
9303
9303
|
note: string;
|
|
9304
9304
|
|
|
9305
9305
|
/**
|
|
9306
|
-
*
|
|
9306
|
+
* is sales agent taxable
|
|
9307
9307
|
*/
|
|
9308
|
-
|
|
9308
|
+
taxable: boolean;
|
|
9309
9309
|
|
|
9310
9310
|
/**
|
|
9311
|
-
*
|
|
9311
|
+
* reference to the delivery method
|
|
9312
9312
|
*/
|
|
9313
|
-
|
|
9313
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9314
9314
|
|
|
9315
9315
|
/**
|
|
9316
9316
|
* Freifelder
|
|
@@ -9997,14 +9997,14 @@ export interface ShelfFile {
|
|
|
9997
9997
|
version: number;
|
|
9998
9998
|
|
|
9999
9999
|
/**
|
|
10000
|
-
*
|
|
10000
|
+
* meta data
|
|
10001
10001
|
*/
|
|
10002
|
-
|
|
10002
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10003
10003
|
|
|
10004
10004
|
/**
|
|
10005
|
-
*
|
|
10005
|
+
* current reference of this file in our storage
|
|
10006
10006
|
*/
|
|
10007
|
-
|
|
10007
|
+
storageHandle: string;
|
|
10008
10008
|
|
|
10009
10009
|
/**
|
|
10010
10010
|
* MetaInformations for this Object
|
|
@@ -10484,14 +10484,14 @@ export interface Supplier {
|
|
|
10484
10484
|
info: MetaInfo;
|
|
10485
10485
|
|
|
10486
10486
|
/**
|
|
10487
|
-
*
|
|
10487
|
+
* Lieferantengruppe
|
|
10488
10488
|
*/
|
|
10489
|
-
|
|
10489
|
+
supplierGroupRef: ApiObjectReference;
|
|
10490
10490
|
|
|
10491
10491
|
/**
|
|
10492
|
-
*
|
|
10492
|
+
* reference to the delivery method
|
|
10493
10493
|
*/
|
|
10494
|
-
|
|
10494
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10495
10495
|
|
|
10496
10496
|
/**
|
|
10497
10497
|
* tax able or tax free
|
|
@@ -10549,14 +10549,14 @@ export interface Supplier {
|
|
|
10549
10549
|
performanceCountryCode: string;
|
|
10550
10550
|
|
|
10551
10551
|
/**
|
|
10552
|
-
*
|
|
10552
|
+
* reference to the payment method
|
|
10553
10553
|
*/
|
|
10554
|
-
|
|
10554
|
+
paymentMethodRef: ApiObjectReference;
|
|
10555
10555
|
|
|
10556
10556
|
/**
|
|
10557
|
-
*
|
|
10557
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10558
10558
|
*/
|
|
10559
|
-
|
|
10559
|
+
defaultDeliveryTime: number;
|
|
10560
10560
|
|
|
10561
10561
|
/**
|
|
10562
10562
|
* currency code IsoAlpha3
|
|
@@ -10577,14 +10577,14 @@ export interface TagDto {
|
|
|
10577
10577
|
editColor: string;
|
|
10578
10578
|
|
|
10579
10579
|
/**
|
|
10580
|
-
* Farbe
|
|
10580
|
+
* Farbe für die Anzeige des Tags
|
|
10581
10581
|
*/
|
|
10582
|
-
|
|
10582
|
+
color: string;
|
|
10583
10583
|
|
|
10584
10584
|
/**
|
|
10585
|
-
* Farbe
|
|
10585
|
+
* Farbe in Such-GUI
|
|
10586
10586
|
*/
|
|
10587
|
-
|
|
10587
|
+
searchColor: string;
|
|
10588
10588
|
|
|
10589
10589
|
/**
|
|
10590
10590
|
* Beschriftung des Tags
|
|
@@ -10628,14 +10628,14 @@ export const enum TagType {
|
|
|
10628
10628
|
export interface TaxIdForeignCountry {
|
|
10629
10629
|
|
|
10630
10630
|
/**
|
|
10631
|
-
*
|
|
10631
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10632
10632
|
*/
|
|
10633
|
-
|
|
10633
|
+
countryCode: string;
|
|
10634
10634
|
|
|
10635
10635
|
/**
|
|
10636
|
-
*
|
|
10636
|
+
* Tax ID of the company in the associated country
|
|
10637
10637
|
*/
|
|
10638
|
-
|
|
10638
|
+
taxId: string;
|
|
10639
10639
|
|
|
10640
10640
|
/**
|
|
10641
10641
|
* Unique identifier of the Object
|
|
@@ -10908,14 +10908,14 @@ export interface User {
|
|
|
10908
10908
|
version: number;
|
|
10909
10909
|
|
|
10910
10910
|
/**
|
|
10911
|
-
*
|
|
10911
|
+
* is the email verified
|
|
10912
10912
|
*/
|
|
10913
|
-
|
|
10913
|
+
emailVerified: boolean;
|
|
10914
10914
|
|
|
10915
10915
|
/**
|
|
10916
|
-
*
|
|
10916
|
+
* first-name
|
|
10917
10917
|
*/
|
|
10918
|
-
|
|
10918
|
+
firstName: string;
|
|
10919
10919
|
|
|
10920
10920
|
/**
|
|
10921
10921
|
* email-address
|
|
@@ -11118,14 +11118,14 @@ export interface VariantValue {
|
|
|
11118
11118
|
version: number;
|
|
11119
11119
|
|
|
11120
11120
|
/**
|
|
11121
|
-
*
|
|
11121
|
+
* Variantenattribut
|
|
11122
11122
|
*/
|
|
11123
|
-
|
|
11123
|
+
attributeRef: ApiObjectReference;
|
|
11124
11124
|
|
|
11125
11125
|
/**
|
|
11126
|
-
*
|
|
11126
|
+
* Mehrsprachige Bezeichnungen
|
|
11127
11127
|
*/
|
|
11128
|
-
|
|
11128
|
+
labels: Array<VariantDescription>;
|
|
11129
11129
|
|
|
11130
11130
|
/**
|
|
11131
11131
|
* MetaInformations for this Object
|