@vario-software/types 2026.20.1 → 2026.20.3
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/scripting/services.d.ts +37 -37
- package/scripting/types.d.ts +302 -302
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
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
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
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* Is default bank?
|
|
@@ -999,20 +999,25 @@ export interface Article {
|
|
|
999
999
|
customsTariffNumber: string;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
|
-
*
|
|
1002
|
+
* Product custom data
|
|
1003
1003
|
*/
|
|
1004
|
-
|
|
1004
|
+
listingCustom: EavArticleListing;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* is this product purchasable
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
purchasable: boolean;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* base capacity unit
|
|
1013
1013
|
*/
|
|
1014
1014
|
baseCapacityUnit: UnitTypeReference;
|
|
1015
1015
|
|
|
1016
|
+
/**
|
|
1017
|
+
* is this product sellable without any quantity at the stock
|
|
1018
|
+
*/
|
|
1019
|
+
sellableWithoutStock: boolean;
|
|
1020
|
+
|
|
1016
1021
|
/**
|
|
1017
1022
|
* Seriennummern Auszeichnungsart
|
|
1018
1023
|
*/
|
|
@@ -1023,11 +1028,6 @@ export interface Article {
|
|
|
1023
1028
|
*/
|
|
1024
1029
|
initialAvgPurchasePrice: number;
|
|
1025
1030
|
|
|
1026
|
-
/**
|
|
1027
|
-
* is this product sellable without any quantity at the stock
|
|
1028
|
-
*/
|
|
1029
|
-
sellableWithoutStock: boolean;
|
|
1030
|
-
|
|
1031
1031
|
/**
|
|
1032
1032
|
* gross Volume in cubic meters
|
|
1033
1033
|
*/
|
|
@@ -1049,14 +1049,14 @@ export interface Article {
|
|
|
1049
1049
|
warrantyInMonths: number;
|
|
1050
1050
|
|
|
1051
1051
|
/**
|
|
1052
|
-
*
|
|
1052
|
+
* weight and size w.o. packaging
|
|
1053
1053
|
*/
|
|
1054
|
-
|
|
1054
|
+
netMetric: Article$Metric;
|
|
1055
1055
|
|
|
1056
1056
|
/**
|
|
1057
|
-
*
|
|
1057
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1058
1058
|
*/
|
|
1059
|
-
|
|
1059
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1060
1060
|
|
|
1061
1061
|
/**
|
|
1062
1062
|
* unique product number
|
|
@@ -1124,14 +1124,14 @@ export interface Article {
|
|
|
1124
1124
|
deliveryMethodRef: ApiObjectReference;
|
|
1125
1125
|
|
|
1126
1126
|
/**
|
|
1127
|
-
*
|
|
1127
|
+
* Produktion
|
|
1128
1128
|
*/
|
|
1129
|
-
|
|
1129
|
+
fabrication: boolean;
|
|
1130
1130
|
|
|
1131
1131
|
/**
|
|
1132
|
-
*
|
|
1132
|
+
* Soll-Handelsspanne
|
|
1133
1133
|
*/
|
|
1134
|
-
|
|
1134
|
+
targetTradingMargin: number;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
1137
|
* active
|
|
@@ -1169,14 +1169,14 @@ export interface Article {
|
|
|
1169
1169
|
solvable: boolean;
|
|
1170
1170
|
|
|
1171
1171
|
/**
|
|
1172
|
-
*
|
|
1172
|
+
* weight and size inc. packaging
|
|
1173
1173
|
*/
|
|
1174
|
-
|
|
1174
|
+
grossMetric: Article$Metric;
|
|
1175
1175
|
|
|
1176
1176
|
/**
|
|
1177
|
-
*
|
|
1177
|
+
* Verkaufseinheit
|
|
1178
1178
|
*/
|
|
1179
|
-
|
|
1179
|
+
salesUnit: number;
|
|
1180
1180
|
|
|
1181
1181
|
/**
|
|
1182
1182
|
* name of this product
|
|
@@ -1189,14 +1189,14 @@ export interface Article {
|
|
|
1189
1189
|
listingStateChangeTime: ScriptingDateTime;
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
|
-
*
|
|
1192
|
+
* Country code
|
|
1193
1193
|
*/
|
|
1194
|
-
|
|
1194
|
+
countryOfOriginRef: CountryReference;
|
|
1195
1195
|
|
|
1196
1196
|
/**
|
|
1197
|
-
*
|
|
1197
|
+
* Arbeitseinheit in Minuten
|
|
1198
1198
|
*/
|
|
1199
|
-
|
|
1199
|
+
workUnitInMinutes: number;
|
|
1200
1200
|
|
|
1201
1201
|
/**
|
|
1202
1202
|
* Frei kommissionierbar
|
|
@@ -1268,11 +1268,6 @@ export interface Article {
|
|
|
1268
1268
|
*/
|
|
1269
1269
|
permissibleForOrderProposal: boolean;
|
|
1270
1270
|
|
|
1271
|
-
/**
|
|
1272
|
-
* Artikel ist Gefahrgut
|
|
1273
|
-
*/
|
|
1274
|
-
isDangerousGood: boolean;
|
|
1275
|
-
|
|
1276
1271
|
/**
|
|
1277
1272
|
* reference to Product
|
|
1278
1273
|
*/
|
|
@@ -1284,9 +1279,14 @@ export interface Article {
|
|
|
1284
1279
|
shippingLabelPrinting: boolean;
|
|
1285
1280
|
|
|
1286
1281
|
/**
|
|
1287
|
-
*
|
|
1282
|
+
* Artikel ist Gefahrgut
|
|
1288
1283
|
*/
|
|
1289
|
-
|
|
1284
|
+
isDangerousGood: boolean;
|
|
1285
|
+
|
|
1286
|
+
/**
|
|
1287
|
+
* Kontingentartikel
|
|
1288
|
+
*/
|
|
1289
|
+
contingentArticleRef: ApiObjectReference;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
1292
|
* alternative name of this product
|
|
@@ -1294,9 +1294,9 @@ export interface Article {
|
|
|
1294
1294
|
alternativeName: string;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
|
-
*
|
|
1297
|
+
* rabattierbarer Artikel?
|
|
1298
1298
|
*/
|
|
1299
|
-
|
|
1299
|
+
discountable: boolean;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
1302
|
* base capacity
|
|
@@ -1329,14 +1329,14 @@ export interface Article {
|
|
|
1329
1329
|
custom: EavArticle;
|
|
1330
1330
|
|
|
1331
1331
|
/**
|
|
1332
|
-
*
|
|
1332
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1333
1333
|
*/
|
|
1334
|
-
|
|
1334
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1335
1335
|
|
|
1336
1336
|
/**
|
|
1337
|
-
*
|
|
1337
|
+
* Art des Haltbarkeitsdatums
|
|
1338
1338
|
*/
|
|
1339
|
-
|
|
1339
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1340
1340
|
|
|
1341
1341
|
/**
|
|
1342
1342
|
* Hersteller
|
|
@@ -1364,14 +1364,14 @@ export interface Article {
|
|
|
1364
1364
|
listed: boolean;
|
|
1365
1365
|
|
|
1366
1366
|
/**
|
|
1367
|
-
*
|
|
1367
|
+
* Nur manuelle Produktion
|
|
1368
1368
|
*/
|
|
1369
|
-
|
|
1369
|
+
onlyManualFabrication: boolean;
|
|
1370
1370
|
|
|
1371
1371
|
/**
|
|
1372
|
-
*
|
|
1372
|
+
* provisionsberechtiger Artikel?
|
|
1373
1373
|
*/
|
|
1374
|
-
|
|
1374
|
+
commissionable: boolean;
|
|
1375
1375
|
|
|
1376
1376
|
/**
|
|
1377
1377
|
* Preisbasis
|
|
@@ -1397,14 +1397,14 @@ export interface Article$Metric {
|
|
|
1397
1397
|
sizeX: number;
|
|
1398
1398
|
|
|
1399
1399
|
/**
|
|
1400
|
-
*
|
|
1400
|
+
* size unit
|
|
1401
1401
|
*/
|
|
1402
|
-
|
|
1402
|
+
sizeUnit: UnitTypeReference;
|
|
1403
1403
|
|
|
1404
1404
|
/**
|
|
1405
|
-
*
|
|
1405
|
+
* weight
|
|
1406
1406
|
*/
|
|
1407
|
-
|
|
1407
|
+
weight: number;
|
|
1408
1408
|
|
|
1409
1409
|
/**
|
|
1410
1410
|
* size
|
|
@@ -1412,14 +1412,14 @@ export interface Article$Metric {
|
|
|
1412
1412
|
sizeY: number;
|
|
1413
1413
|
|
|
1414
1414
|
/**
|
|
1415
|
-
*
|
|
1415
|
+
* size
|
|
1416
1416
|
*/
|
|
1417
|
-
|
|
1417
|
+
sizeZ: number;
|
|
1418
1418
|
|
|
1419
1419
|
/**
|
|
1420
|
-
*
|
|
1420
|
+
* weight unit
|
|
1421
1421
|
*/
|
|
1422
|
-
|
|
1422
|
+
weightUnit: UnitTypeReference;
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
1425
1425
|
export interface ArticleAvailabilityDetermination {
|
|
@@ -1562,14 +1562,14 @@ export interface ArticleListing {
|
|
|
1562
1562
|
alternativeName: WithDefaults<String>;
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
1565
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1565
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1566
1566
|
*/
|
|
1567
|
-
|
|
1567
|
+
proposedLowestPriceNet: number;
|
|
1568
1568
|
|
|
1569
1569
|
/**
|
|
1570
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1570
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1571
1571
|
*/
|
|
1572
|
-
|
|
1572
|
+
customLowestPriceNet: number;
|
|
1573
1573
|
|
|
1574
1574
|
/**
|
|
1575
1575
|
* der aktuelle listing stand
|
|
@@ -1729,14 +1729,14 @@ export const enum ArticleSerialType {
|
|
|
1729
1729
|
export interface ArticleStorage {
|
|
1730
1730
|
|
|
1731
1731
|
/**
|
|
1732
|
-
*
|
|
1732
|
+
* Bestand im Lager
|
|
1733
1733
|
*/
|
|
1734
|
-
|
|
1734
|
+
quantityInStock: number;
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
|
-
*
|
|
1737
|
+
* Nachschub ab
|
|
1738
1738
|
*/
|
|
1739
|
-
|
|
1739
|
+
replenishmentFrom: number;
|
|
1740
1740
|
|
|
1741
1741
|
/**
|
|
1742
1742
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1831,6 +1831,11 @@ export interface ArticleStorage {
|
|
|
1831
1831
|
|
|
1832
1832
|
export interface ArticleSupplier {
|
|
1833
1833
|
|
|
1834
|
+
/**
|
|
1835
|
+
* Anzeigename des Accounts
|
|
1836
|
+
*/
|
|
1837
|
+
accountDisplayName: string;
|
|
1838
|
+
|
|
1834
1839
|
/**
|
|
1835
1840
|
* Lieferanten-Meldebestand
|
|
1836
1841
|
*/
|
|
@@ -1842,20 +1847,15 @@ export interface ArticleSupplier {
|
|
|
1842
1847
|
useSupplierArticleDescription: boolean;
|
|
1843
1848
|
|
|
1844
1849
|
/**
|
|
1845
|
-
*
|
|
1850
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1846
1851
|
*/
|
|
1847
|
-
|
|
1852
|
+
useSupplierArticleIdentifier: boolean;
|
|
1848
1853
|
|
|
1849
1854
|
/**
|
|
1850
1855
|
* Lieferzeit in (Werk-)Tagen
|
|
1851
1856
|
*/
|
|
1852
1857
|
deliveryTime: number;
|
|
1853
1858
|
|
|
1854
|
-
/**
|
|
1855
|
-
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1856
|
-
*/
|
|
1857
|
-
useSupplierArticleIdentifier: boolean;
|
|
1858
|
-
|
|
1859
1859
|
/**
|
|
1860
1860
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1861
1861
|
*/
|
|
@@ -1902,14 +1902,14 @@ export interface ArticleSupplier {
|
|
|
1902
1902
|
info: MetaInfo;
|
|
1903
1903
|
|
|
1904
1904
|
/**
|
|
1905
|
-
*
|
|
1905
|
+
* Referenced Article name
|
|
1906
1906
|
*/
|
|
1907
|
-
|
|
1907
|
+
articleName: string;
|
|
1908
1908
|
|
|
1909
1909
|
/**
|
|
1910
|
-
*
|
|
1910
|
+
* Verpackungseinheit
|
|
1911
1911
|
*/
|
|
1912
|
-
|
|
1912
|
+
packagingUnit: number;
|
|
1913
1913
|
|
|
1914
1914
|
/**
|
|
1915
1915
|
* Lieferanten-Preise
|
|
@@ -2167,14 +2167,14 @@ export interface CountryReference {
|
|
|
2167
2167
|
export interface CreateNewDocumentRequest {
|
|
2168
2168
|
|
|
2169
2169
|
/**
|
|
2170
|
-
*
|
|
2170
|
+
* Belegart
|
|
2171
2171
|
*/
|
|
2172
|
-
|
|
2172
|
+
documentTypeLabel: string;
|
|
2173
2173
|
|
|
2174
2174
|
/**
|
|
2175
|
-
* Belegart
|
|
2175
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2176
2176
|
*/
|
|
2177
|
-
|
|
2177
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2178
2178
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* Details zum Beleg
|
|
@@ -2240,14 +2240,14 @@ export interface CrmActivity {
|
|
|
2240
2240
|
info: MetaInfo;
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
|
-
*
|
|
2243
|
+
* geplante Dauer
|
|
2244
2244
|
*/
|
|
2245
|
-
|
|
2245
|
+
plannedDurationInSeconds: number;
|
|
2246
2246
|
|
|
2247
2247
|
/**
|
|
2248
|
-
*
|
|
2248
|
+
* Aktivität intern abgerechnet?
|
|
2249
2249
|
*/
|
|
2250
|
-
|
|
2250
|
+
internalBilled: boolean;
|
|
2251
2251
|
|
|
2252
2252
|
/**
|
|
2253
2253
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2399,14 +2399,14 @@ export interface CrmActivityType {
|
|
|
2399
2399
|
export interface CrmChecklistItem {
|
|
2400
2400
|
|
|
2401
2401
|
/**
|
|
2402
|
-
*
|
|
2402
|
+
* Text des Checklisten-Elements
|
|
2403
2403
|
*/
|
|
2404
|
-
|
|
2404
|
+
memo: string;
|
|
2405
2405
|
|
|
2406
2406
|
/**
|
|
2407
|
-
*
|
|
2407
|
+
* Ist das Element "angehakt"?
|
|
2408
2408
|
*/
|
|
2409
|
-
|
|
2409
|
+
checked: boolean;
|
|
2410
2410
|
|
|
2411
2411
|
/**
|
|
2412
2412
|
* Unique identifier of the Object
|
|
@@ -3488,14 +3488,14 @@ export interface CurrencyReference {
|
|
|
3488
3488
|
export interface Customer {
|
|
3489
3489
|
|
|
3490
3490
|
/**
|
|
3491
|
-
*
|
|
3491
|
+
* Option für die Stapelverarbeitung
|
|
3492
3492
|
*/
|
|
3493
|
-
|
|
3493
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3494
3494
|
|
|
3495
3495
|
/**
|
|
3496
|
-
*
|
|
3496
|
+
* reference to customer group
|
|
3497
3497
|
*/
|
|
3498
|
-
|
|
3498
|
+
customerGroupRef: ApiObjectReference;
|
|
3499
3499
|
|
|
3500
3500
|
/**
|
|
3501
3501
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3513,14 +3513,14 @@ export interface Customer {
|
|
|
3513
3513
|
dueDate: ScriptingDate;
|
|
3514
3514
|
|
|
3515
3515
|
/**
|
|
3516
|
-
*
|
|
3516
|
+
* Maximal mögliche Lieferungen
|
|
3517
3517
|
*/
|
|
3518
|
-
|
|
3518
|
+
maxDeliveries: number;
|
|
3519
3519
|
|
|
3520
3520
|
/**
|
|
3521
|
-
*
|
|
3521
|
+
* collective billable
|
|
3522
3522
|
*/
|
|
3523
|
-
|
|
3523
|
+
collectiveBillable: boolean;
|
|
3524
3524
|
|
|
3525
3525
|
/**
|
|
3526
3526
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3639,14 +3639,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3639
3639
|
export interface DeliveryMethod {
|
|
3640
3640
|
|
|
3641
3641
|
/**
|
|
3642
|
-
*
|
|
3642
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3643
3643
|
*/
|
|
3644
|
-
|
|
3644
|
+
splitIntoNewDocument: boolean;
|
|
3645
3645
|
|
|
3646
3646
|
/**
|
|
3647
|
-
*
|
|
3647
|
+
* E-Mail an Versender übergeben
|
|
3648
3648
|
*/
|
|
3649
|
-
|
|
3649
|
+
forwardEmailToShipper: boolean;
|
|
3650
3650
|
|
|
3651
3651
|
/**
|
|
3652
3652
|
* Min. Gewicht pro Paket
|
|
@@ -3709,14 +3709,14 @@ export interface DeliveryMethod {
|
|
|
3709
3709
|
translations: Array<DocumentTypeTerm>;
|
|
3710
3710
|
|
|
3711
3711
|
/**
|
|
3712
|
-
*
|
|
3712
|
+
* Versand-Anbieter
|
|
3713
3713
|
*/
|
|
3714
|
-
|
|
3714
|
+
vdsCarrierId: number;
|
|
3715
3715
|
|
|
3716
3716
|
/**
|
|
3717
|
-
*
|
|
3717
|
+
* Gültige Ländercodes
|
|
3718
3718
|
*/
|
|
3719
|
-
|
|
3719
|
+
validCountryCodes: Array<string>;
|
|
3720
3720
|
|
|
3721
3721
|
/**
|
|
3722
3722
|
* Standardgewichtseinheit
|
|
@@ -3817,14 +3817,14 @@ export interface DeliveryTerm {
|
|
|
3817
3817
|
id: number;
|
|
3818
3818
|
|
|
3819
3819
|
/**
|
|
3820
|
-
*
|
|
3820
|
+
* Versandkostenartikel
|
|
3821
3821
|
*/
|
|
3822
|
-
|
|
3822
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3823
3823
|
|
|
3824
3824
|
/**
|
|
3825
|
-
*
|
|
3825
|
+
* free shipping net value
|
|
3826
3826
|
*/
|
|
3827
|
-
|
|
3827
|
+
freeShippingNetValue: number;
|
|
3828
3828
|
|
|
3829
3829
|
/**
|
|
3830
3830
|
* MetaInformations for this Object
|
|
@@ -4109,26 +4109,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4109
4109
|
*/
|
|
4110
4110
|
accountNumber: string;
|
|
4111
4111
|
|
|
4112
|
-
/**
|
|
4113
|
-
* Referenz auf Zahlungsbedingung
|
|
4114
|
-
*/
|
|
4115
|
-
paymentTermRef: PaymentTermRef;
|
|
4116
|
-
|
|
4117
4112
|
/**
|
|
4118
4113
|
* Wird vom Workflow verarbeitet?
|
|
4119
4114
|
*/
|
|
4120
4115
|
processedByWorkflow: boolean;
|
|
4121
4116
|
|
|
4122
4117
|
/**
|
|
4123
|
-
*
|
|
4118
|
+
* Referenz auf Zahlungsbedingung
|
|
4124
4119
|
*/
|
|
4125
|
-
|
|
4120
|
+
paymentTermRef: PaymentTermRef;
|
|
4126
4121
|
|
|
4127
4122
|
/**
|
|
4128
4123
|
* Preisanpassungen - Beleg Basiswährung
|
|
4129
4124
|
*/
|
|
4130
4125
|
baseTotalDocumentPriceModifier: number;
|
|
4131
4126
|
|
|
4127
|
+
/**
|
|
4128
|
+
* Telefon an Versender übergeben
|
|
4129
|
+
*/
|
|
4130
|
+
forwardPhoneToShipper: boolean;
|
|
4131
|
+
|
|
4132
4132
|
/**
|
|
4133
4133
|
* Liste der Belegtexte
|
|
4134
4134
|
*/
|
|
@@ -4265,14 +4265,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4265
4265
|
documentTypeCategory: DocumentCategory;
|
|
4266
4266
|
|
|
4267
4267
|
/**
|
|
4268
|
-
*
|
|
4268
|
+
* Importmodus des Belegs
|
|
4269
4269
|
*/
|
|
4270
|
-
|
|
4270
|
+
importType: DocumentImportType;
|
|
4271
4271
|
|
|
4272
4272
|
/**
|
|
4273
|
-
*
|
|
4273
|
+
* Gesamtgewicht wurde manuell gesetzt
|
|
4274
4274
|
*/
|
|
4275
|
-
|
|
4275
|
+
userDefinedWeight: boolean;
|
|
4276
4276
|
|
|
4277
4277
|
/**
|
|
4278
4278
|
* Referenz zum zugeordneten Vertriebskanal
|
|
@@ -4349,11 +4349,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4349
4349
|
*/
|
|
4350
4350
|
posReceiptChangeAmount: number;
|
|
4351
4351
|
|
|
4352
|
-
/**
|
|
4353
|
-
* Referenz auf Lieferbedingung
|
|
4354
|
-
*/
|
|
4355
|
-
deliveryTermRef: ApiObjectReference;
|
|
4356
|
-
|
|
4357
4352
|
/**
|
|
4358
4353
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4359
4354
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4361,6 +4356,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4361
4356
|
*/
|
|
4362
4357
|
posReceiptBalanced: boolean;
|
|
4363
4358
|
|
|
4359
|
+
/**
|
|
4360
|
+
* Referenz auf Lieferbedingung
|
|
4361
|
+
*/
|
|
4362
|
+
deliveryTermRef: ApiObjectReference;
|
|
4363
|
+
|
|
4364
4364
|
/**
|
|
4365
4365
|
* Gesamtbruttogewicht
|
|
4366
4366
|
*/
|
|
@@ -4392,14 +4392,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4392
4392
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4393
4393
|
|
|
4394
4394
|
/**
|
|
4395
|
-
*
|
|
4395
|
+
* Bestellt durch Ansprechpartner
|
|
4396
4396
|
*/
|
|
4397
|
-
|
|
4397
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4398
4398
|
|
|
4399
4399
|
/**
|
|
4400
|
-
*
|
|
4400
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4401
4401
|
*/
|
|
4402
|
-
|
|
4402
|
+
reportGroupRef: ApiObjectReference;
|
|
4403
4403
|
}
|
|
4404
4404
|
|
|
4405
4405
|
export interface DocumentAdditionalInfo {
|
|
@@ -4550,14 +4550,14 @@ export interface DocumentAddress {
|
|
|
4550
4550
|
postOfficeBox: string;
|
|
4551
4551
|
|
|
4552
4552
|
/**
|
|
4553
|
-
*
|
|
4553
|
+
* country code IsoAlpha3
|
|
4554
4554
|
*/
|
|
4555
|
-
|
|
4555
|
+
countryCode: string;
|
|
4556
4556
|
|
|
4557
4557
|
/**
|
|
4558
|
-
*
|
|
4558
|
+
* Street
|
|
4559
4559
|
*/
|
|
4560
|
-
|
|
4560
|
+
street: string;
|
|
4561
4561
|
|
|
4562
4562
|
/**
|
|
4563
4563
|
* Unique identifier of the Object
|
|
@@ -4575,14 +4575,14 @@ export interface DocumentAddress {
|
|
|
4575
4575
|
info: MetaInfo;
|
|
4576
4576
|
|
|
4577
4577
|
/**
|
|
4578
|
-
*
|
|
4578
|
+
* GLN
|
|
4579
4579
|
*/
|
|
4580
|
-
|
|
4580
|
+
globalLocationNumber: string;
|
|
4581
4581
|
|
|
4582
4582
|
/**
|
|
4583
|
-
*
|
|
4583
|
+
* Lieferart
|
|
4584
4584
|
*/
|
|
4585
|
-
|
|
4585
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4586
4586
|
|
|
4587
4587
|
/**
|
|
4588
4588
|
* Postcode
|
|
@@ -4762,14 +4762,14 @@ export interface DocumentContractDetail {
|
|
|
4762
4762
|
runtimeToDate: ScriptingDate;
|
|
4763
4763
|
|
|
4764
4764
|
/**
|
|
4765
|
-
*
|
|
4765
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4766
4766
|
*/
|
|
4767
|
-
|
|
4767
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4768
4768
|
|
|
4769
4769
|
/**
|
|
4770
|
-
*
|
|
4770
|
+
* Nächste Fälligkeit
|
|
4771
4771
|
*/
|
|
4772
|
-
|
|
4772
|
+
nextDueDate: ScriptingDate;
|
|
4773
4773
|
|
|
4774
4774
|
/**
|
|
4775
4775
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5004,14 +5004,14 @@ export interface DocumentLine {
|
|
|
5004
5004
|
number: string;
|
|
5005
5005
|
|
|
5006
5006
|
/**
|
|
5007
|
-
*
|
|
5007
|
+
* Gesamtbruttogewicht
|
|
5008
5008
|
*/
|
|
5009
|
-
|
|
5009
|
+
totalGrossWeight: number;
|
|
5010
5010
|
|
|
5011
5011
|
/**
|
|
5012
|
-
*
|
|
5012
|
+
* Referenz zur Kundenauftragszeile
|
|
5013
5013
|
*/
|
|
5014
|
-
|
|
5014
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5015
5015
|
|
|
5016
5016
|
/**
|
|
5017
5017
|
* skontierbare Position?
|
|
@@ -5028,11 +5028,6 @@ export interface DocumentLine {
|
|
|
5028
5028
|
*/
|
|
5029
5029
|
price: number;
|
|
5030
5030
|
|
|
5031
|
-
/**
|
|
5032
|
-
* Positionstyp
|
|
5033
|
-
*/
|
|
5034
|
-
lineType: DocumentLineType;
|
|
5035
|
-
|
|
5036
5031
|
/**
|
|
5037
5032
|
* Gesamtpreis Position in Basiswährung
|
|
5038
5033
|
*/
|
|
@@ -5043,6 +5038,11 @@ export interface DocumentLine {
|
|
|
5043
5038
|
*/
|
|
5044
5039
|
financeBooking: DocumentFinanceBooking;
|
|
5045
5040
|
|
|
5041
|
+
/**
|
|
5042
|
+
* Positionstyp
|
|
5043
|
+
*/
|
|
5044
|
+
lineType: DocumentLineType;
|
|
5045
|
+
|
|
5046
5046
|
/**
|
|
5047
5047
|
* vorgeorderte Menge in Pickvorgang
|
|
5048
5048
|
*/
|
|
@@ -5069,9 +5069,19 @@ export interface DocumentLine {
|
|
|
5069
5069
|
articleTaxLiabilityReversed: boolean;
|
|
5070
5070
|
|
|
5071
5071
|
/**
|
|
5072
|
-
* Unique identifier of the Object
|
|
5072
|
+
* Unique identifier of the Object
|
|
5073
|
+
*/
|
|
5074
|
+
id: number;
|
|
5075
|
+
|
|
5076
|
+
/**
|
|
5077
|
+
* Serientyp
|
|
5078
|
+
*/
|
|
5079
|
+
serialType: ArticleSerialType;
|
|
5080
|
+
|
|
5081
|
+
/**
|
|
5082
|
+
* Externe Referenz zum VDS-Paket
|
|
5073
5083
|
*/
|
|
5074
|
-
|
|
5084
|
+
externalReferenceVds: string;
|
|
5075
5085
|
|
|
5076
5086
|
/**
|
|
5077
5087
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5083,16 +5093,6 @@ export interface DocumentLine {
|
|
|
5083
5093
|
*/
|
|
5084
5094
|
positionOfArticleLine: number;
|
|
5085
5095
|
|
|
5086
|
-
/**
|
|
5087
|
-
* Externe Referenz zum VDS-Paket
|
|
5088
|
-
*/
|
|
5089
|
-
externalReferenceVds: string;
|
|
5090
|
-
|
|
5091
|
-
/**
|
|
5092
|
-
* Serientyp
|
|
5093
|
-
*/
|
|
5094
|
-
serialType: ArticleSerialType;
|
|
5095
|
-
|
|
5096
5096
|
/**
|
|
5097
5097
|
* MetaInformations for this Object
|
|
5098
5098
|
*/
|
|
@@ -5254,14 +5254,14 @@ export interface DocumentLine {
|
|
|
5254
5254
|
unitType: UnitTypeReference;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Zubehör Einfügeart
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
insertTerm: AccessoryInsertTerm;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Referenz zur Basiszeile
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
baseLineId: number;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
5267
|
* Einheit Bruttogewicht
|
|
@@ -5289,14 +5289,14 @@ export interface DocumentLine {
|
|
|
5289
5289
|
productType: ProductType;
|
|
5290
5290
|
|
|
5291
5291
|
/**
|
|
5292
|
-
*
|
|
5292
|
+
* Vertragsinformationen
|
|
5293
5293
|
*/
|
|
5294
|
-
|
|
5294
|
+
contractDetail: DocumentContractDetail;
|
|
5295
5295
|
|
|
5296
5296
|
/**
|
|
5297
|
-
*
|
|
5297
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5298
5298
|
*/
|
|
5299
|
-
|
|
5299
|
+
baseSalesValueNet: number;
|
|
5300
5300
|
|
|
5301
5301
|
/**
|
|
5302
5302
|
* Einheit Nettogewicht
|
|
@@ -5528,14 +5528,14 @@ export interface DocumentLineComponent {
|
|
|
5528
5528
|
custom: EavDocumentlinecomponent;
|
|
5529
5529
|
|
|
5530
5530
|
/**
|
|
5531
|
-
*
|
|
5531
|
+
* Gelieferte Menge
|
|
5532
5532
|
*/
|
|
5533
|
-
|
|
5533
|
+
quantityCommitted: number;
|
|
5534
5534
|
|
|
5535
5535
|
/**
|
|
5536
|
-
*
|
|
5536
|
+
* Referenz auf den Artikel der Komponente
|
|
5537
5537
|
*/
|
|
5538
|
-
|
|
5538
|
+
articleId: number;
|
|
5539
5539
|
|
|
5540
5540
|
/**
|
|
5541
5541
|
* Beschreibung des Artikels
|
|
@@ -5667,14 +5667,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5667
5667
|
quantityFinished: number;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
|
-
*
|
|
5670
|
+
* Produzierte Seriennummern
|
|
5671
5671
|
*/
|
|
5672
|
-
|
|
5672
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
|
-
*
|
|
5675
|
+
* Menge defekt
|
|
5676
5676
|
*/
|
|
5677
|
-
|
|
5677
|
+
quantityDefective: number;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
5680
|
* Freifeld
|
|
@@ -6148,14 +6148,14 @@ export interface DocumentRef {
|
|
|
6148
6148
|
export interface DocumentShippingCost {
|
|
6149
6149
|
|
|
6150
6150
|
/**
|
|
6151
|
-
*
|
|
6151
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6152
6152
|
*/
|
|
6153
|
-
|
|
6153
|
+
manualCosts: boolean;
|
|
6154
6154
|
|
|
6155
6155
|
/**
|
|
6156
|
-
*
|
|
6156
|
+
* Die Versandkosten
|
|
6157
6157
|
*/
|
|
6158
|
-
|
|
6158
|
+
costs: number;
|
|
6159
6159
|
|
|
6160
6160
|
/**
|
|
6161
6161
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6283,14 +6283,14 @@ export interface DocumentText {
|
|
|
6283
6283
|
transferableIntoSubsequentDocuments: boolean;
|
|
6284
6284
|
|
|
6285
6285
|
/**
|
|
6286
|
-
*
|
|
6286
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6287
6287
|
*/
|
|
6288
|
-
|
|
6288
|
+
textPosition: TextPosition;
|
|
6289
6289
|
|
|
6290
6290
|
/**
|
|
6291
|
-
*
|
|
6291
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6292
6292
|
*/
|
|
6293
|
-
|
|
6293
|
+
deleted: boolean;
|
|
6294
6294
|
|
|
6295
6295
|
/**
|
|
6296
6296
|
* textBaustein Vorlage
|
|
@@ -6400,14 +6400,14 @@ export interface DocumentType {
|
|
|
6400
6400
|
labels: Array<DocumentTypeLabel>;
|
|
6401
6401
|
|
|
6402
6402
|
/**
|
|
6403
|
-
*
|
|
6403
|
+
* nächste Belegnummer
|
|
6404
6404
|
*/
|
|
6405
|
-
|
|
6405
|
+
nextNumber: string;
|
|
6406
6406
|
|
|
6407
6407
|
/**
|
|
6408
|
-
*
|
|
6408
|
+
* Zählerkreis
|
|
6409
6409
|
*/
|
|
6410
|
-
|
|
6410
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6411
6411
|
|
|
6412
6412
|
/**
|
|
6413
6413
|
* Sortierung
|
|
@@ -6909,14 +6909,14 @@ export interface FabricationRevertRequest {
|
|
|
6909
6909
|
export interface FabricationSerialNumber {
|
|
6910
6910
|
|
|
6911
6911
|
/**
|
|
6912
|
-
*
|
|
6912
|
+
* MHD / Verfallsdatum
|
|
6913
6913
|
*/
|
|
6914
|
-
|
|
6914
|
+
expiryDate: ScriptingDate;
|
|
6915
6915
|
|
|
6916
6916
|
/**
|
|
6917
|
-
*
|
|
6917
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6918
6918
|
*/
|
|
6919
|
-
|
|
6919
|
+
serialNumberId: number;
|
|
6920
6920
|
|
|
6921
6921
|
/**
|
|
6922
6922
|
* Bemerkung
|
|
@@ -7156,14 +7156,14 @@ export interface PaymentTerm {
|
|
|
7156
7156
|
paymentDiscount2: number;
|
|
7157
7157
|
|
|
7158
7158
|
/**
|
|
7159
|
-
*
|
|
7159
|
+
* printDescription
|
|
7160
7160
|
*/
|
|
7161
|
-
|
|
7161
|
+
printDescription: string;
|
|
7162
7162
|
|
|
7163
7163
|
/**
|
|
7164
|
-
*
|
|
7164
|
+
* Percent for Discount 1
|
|
7165
7165
|
*/
|
|
7166
|
-
|
|
7166
|
+
paymentDiscount1: number;
|
|
7167
7167
|
|
|
7168
7168
|
/**
|
|
7169
7169
|
* for deposit: remaining term
|
|
@@ -7294,14 +7294,14 @@ export interface PickTrolley {
|
|
|
7294
7294
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7295
7295
|
|
|
7296
7296
|
/**
|
|
7297
|
-
*
|
|
7297
|
+
* Bearbeiter der Pickliste
|
|
7298
7298
|
*/
|
|
7299
|
-
|
|
7299
|
+
processedByUserRef: ApiObjectReference;
|
|
7300
7300
|
|
|
7301
7301
|
/**
|
|
7302
|
-
*
|
|
7302
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7303
7303
|
*/
|
|
7304
|
-
|
|
7304
|
+
storageBinRef: StorageBinRef;
|
|
7305
7305
|
|
|
7306
7306
|
/**
|
|
7307
7307
|
* Beschreibung des Wagens
|
|
@@ -7454,14 +7454,14 @@ export const enum PickingType {
|
|
|
7454
7454
|
export interface Picklist {
|
|
7455
7455
|
|
|
7456
7456
|
/**
|
|
7457
|
-
*
|
|
7457
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7458
7458
|
*/
|
|
7459
|
-
|
|
7459
|
+
usedTemplate: PicklistTemplate;
|
|
7460
7460
|
|
|
7461
7461
|
/**
|
|
7462
|
-
*
|
|
7462
|
+
* Ziellager für Nachschub
|
|
7463
7463
|
*/
|
|
7464
|
-
|
|
7464
|
+
targetStorageRef: ApiObjectReference;
|
|
7465
7465
|
|
|
7466
7466
|
/**
|
|
7467
7467
|
* Nummer der Pickliste
|
|
@@ -7877,19 +7877,19 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7877
7877
|
maxArticleCountPerOrder: number;
|
|
7878
7878
|
|
|
7879
7879
|
/**
|
|
7880
|
-
*
|
|
7880
|
+
* Maximaler Auftragswert
|
|
7881
7881
|
*/
|
|
7882
|
-
|
|
7882
|
+
maxOrderValue: number;
|
|
7883
7883
|
|
|
7884
7884
|
/**
|
|
7885
|
-
*
|
|
7885
|
+
* Alternative Selektion in VQL
|
|
7886
7886
|
*/
|
|
7887
|
-
|
|
7887
|
+
alternativeSelectionInVql: string;
|
|
7888
7888
|
|
|
7889
7889
|
/**
|
|
7890
|
-
*
|
|
7890
|
+
* Nur vollständig lieferbare Positionen
|
|
7891
7891
|
*/
|
|
7892
|
-
|
|
7892
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7893
7893
|
|
|
7894
7894
|
/**
|
|
7895
7895
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -7897,9 +7897,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7897
7897
|
maxOrderCount: number;
|
|
7898
7898
|
|
|
7899
7899
|
/**
|
|
7900
|
-
*
|
|
7900
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7901
7901
|
*/
|
|
7902
|
-
|
|
7902
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7903
7903
|
|
|
7904
7904
|
/**
|
|
7905
7905
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7970,14 +7970,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7970
7970
|
maxPicklistLineCount: number;
|
|
7971
7971
|
|
|
7972
7972
|
/**
|
|
7973
|
-
*
|
|
7973
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7974
7974
|
*/
|
|
7975
|
-
|
|
7975
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7976
7976
|
|
|
7977
7977
|
/**
|
|
7978
|
-
*
|
|
7978
|
+
* Der zu verwendende Pickwagen
|
|
7979
7979
|
*/
|
|
7980
|
-
|
|
7980
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7981
7981
|
|
|
7982
7982
|
/**
|
|
7983
7983
|
* Lagerplätze vorgeben
|
|
@@ -7985,14 +7985,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7985
7985
|
specifyStorageBins: boolean;
|
|
7986
7986
|
|
|
7987
7987
|
/**
|
|
7988
|
-
*
|
|
7988
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7989
7989
|
*/
|
|
7990
|
-
|
|
7990
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7991
7991
|
|
|
7992
7992
|
/**
|
|
7993
|
-
*
|
|
7993
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7994
7994
|
*/
|
|
7995
|
-
|
|
7995
|
+
sortByRoutePosition: boolean;
|
|
7996
7996
|
|
|
7997
7997
|
/**
|
|
7998
7998
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8053,9 +8053,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8053
8053
|
showShippingFormOnPickingFinish: boolean;
|
|
8054
8054
|
|
|
8055
8055
|
/**
|
|
8056
|
-
*
|
|
8056
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8057
8057
|
*/
|
|
8058
|
-
|
|
8058
|
+
useDigitalPicklist: boolean;
|
|
8059
8059
|
|
|
8060
8060
|
/**
|
|
8061
8061
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
@@ -8063,9 +8063,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8063
8063
|
allowPickingOfServiceArticles: boolean;
|
|
8064
8064
|
|
|
8065
8065
|
/**
|
|
8066
|
-
*
|
|
8066
|
+
* Sammelbestätigung erlauben
|
|
8067
8067
|
*/
|
|
8068
|
-
|
|
8068
|
+
allowFullConfirmation: boolean;
|
|
8069
8069
|
|
|
8070
8070
|
/**
|
|
8071
8071
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8288,14 +8288,14 @@ export interface Product {
|
|
|
8288
8288
|
bundle: boolean;
|
|
8289
8289
|
|
|
8290
8290
|
/**
|
|
8291
|
-
*
|
|
8291
|
+
* Serientyp
|
|
8292
8292
|
*/
|
|
8293
|
-
|
|
8293
|
+
serialType: ArticleSerialType;
|
|
8294
8294
|
|
|
8295
8295
|
/**
|
|
8296
|
-
*
|
|
8296
|
+
* Variantenwerte
|
|
8297
8297
|
*/
|
|
8298
|
-
|
|
8298
|
+
variantValues: Array<VariantValueReference>;
|
|
8299
8299
|
|
|
8300
8300
|
/**
|
|
8301
8301
|
* MetaInformations for this Object
|
|
@@ -8324,14 +8324,14 @@ export interface ProductArticleRef {
|
|
|
8324
8324
|
export interface ProductDiscount {
|
|
8325
8325
|
|
|
8326
8326
|
/**
|
|
8327
|
-
*
|
|
8327
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8328
8328
|
*/
|
|
8329
|
-
|
|
8329
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8330
8330
|
|
|
8331
8331
|
/**
|
|
8332
|
-
*
|
|
8332
|
+
* Kundengruppe
|
|
8333
8333
|
*/
|
|
8334
|
-
|
|
8334
|
+
customerGroupRef: ApiObjectReference;
|
|
8335
8335
|
|
|
8336
8336
|
/**
|
|
8337
8337
|
* Lieferantengruppe
|
|
@@ -8379,14 +8379,14 @@ export interface ProductDiscount {
|
|
|
8379
8379
|
currencyRef: CurrencyReference;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* Preisgruppe
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
priceGroupRef: ApiObjectReference;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
|
-
*
|
|
8387
|
+
* Wert des Rabatts
|
|
8388
8388
|
*/
|
|
8389
|
-
|
|
8389
|
+
modifierValue: number;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
8392
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8409,14 +8409,14 @@ export interface ProductDiscount {
|
|
|
8409
8409
|
modifierValueType: ValueType;
|
|
8410
8410
|
|
|
8411
8411
|
/**
|
|
8412
|
-
*
|
|
8412
|
+
* Name des Rabatts
|
|
8413
8413
|
*/
|
|
8414
|
-
|
|
8414
|
+
modifierName: string;
|
|
8415
8415
|
|
|
8416
8416
|
/**
|
|
8417
|
-
*
|
|
8417
|
+
* Account, für den der Rabatt gültig ist
|
|
8418
8418
|
*/
|
|
8419
|
-
|
|
8419
|
+
accountRef: ApiObjectReference;
|
|
8420
8420
|
|
|
8421
8421
|
/**
|
|
8422
8422
|
* Unique identifier of the Object
|
|
@@ -8447,14 +8447,14 @@ export interface ProductGroup {
|
|
|
8447
8447
|
targetTradingMargin: number;
|
|
8448
8448
|
|
|
8449
8449
|
/**
|
|
8450
|
-
*
|
|
8450
|
+
* main product group
|
|
8451
8451
|
*/
|
|
8452
|
-
|
|
8452
|
+
mainGroupRef: ApiObjectReference;
|
|
8453
8453
|
|
|
8454
8454
|
/**
|
|
8455
|
-
*
|
|
8455
|
+
* Freifeld
|
|
8456
8456
|
*/
|
|
8457
|
-
|
|
8457
|
+
custom: EavProductgroup;
|
|
8458
8458
|
|
|
8459
8459
|
/**
|
|
8460
8460
|
* warengruppe aktiv ja/nein
|
|
@@ -8533,14 +8533,14 @@ export interface ProductMainGroup {
|
|
|
8533
8533
|
export interface ProductPrice {
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
|
-
*
|
|
8541
|
+
* Kundengruppe
|
|
8542
8542
|
*/
|
|
8543
|
-
|
|
8543
|
+
customerGroupRef: ApiObjectReference;
|
|
8544
8544
|
|
|
8545
8545
|
/**
|
|
8546
8546
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8817,14 +8817,14 @@ export interface RequestDocument {
|
|
|
8817
8817
|
accountId: number;
|
|
8818
8818
|
|
|
8819
8819
|
/**
|
|
8820
|
-
*
|
|
8820
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8821
8821
|
*/
|
|
8822
|
-
|
|
8822
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8823
8823
|
|
|
8824
8824
|
/**
|
|
8825
|
-
*
|
|
8825
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8826
8826
|
*/
|
|
8827
|
-
|
|
8827
|
+
processedByPicklistProcessing: boolean;
|
|
8828
8828
|
|
|
8829
8829
|
/**
|
|
8830
8830
|
* Die Rabatte des Beleges
|
|
@@ -8885,14 +8885,14 @@ export interface RequestDocumentLine {
|
|
|
8885
8885
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8886
8886
|
|
|
8887
8887
|
/**
|
|
8888
|
-
*
|
|
8888
|
+
* FiBu-Angaben
|
|
8889
8889
|
*/
|
|
8890
|
-
|
|
8890
|
+
financeBooking: DocumentFinanceBooking;
|
|
8891
8891
|
|
|
8892
8892
|
/**
|
|
8893
|
-
*
|
|
8893
|
+
* Typ dieser Position
|
|
8894
8894
|
*/
|
|
8895
|
-
|
|
8895
|
+
lineType: DocumentLineType;
|
|
8896
8896
|
|
|
8897
8897
|
/**
|
|
8898
8898
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8905,14 +8905,14 @@ export interface RequestDocumentLine {
|
|
|
8905
8905
|
dropShippingPolicy: DropShippingPolicy;
|
|
8906
8906
|
|
|
8907
8907
|
/**
|
|
8908
|
-
*
|
|
8908
|
+
* Positionsnummer der Artikel
|
|
8909
8909
|
*/
|
|
8910
|
-
|
|
8910
|
+
positionOfArticleLine: number;
|
|
8911
8911
|
|
|
8912
8912
|
/**
|
|
8913
|
-
*
|
|
8913
|
+
* (optional) Lager-ID
|
|
8914
8914
|
*/
|
|
8915
|
-
|
|
8915
|
+
storageId: number;
|
|
8916
8916
|
|
|
8917
8917
|
/**
|
|
8918
8918
|
* Vertragsdetails zur Belegposition
|
|
@@ -8984,6 +8984,11 @@ export interface RequestDocumentLine {
|
|
|
8984
8984
|
*/
|
|
8985
8985
|
name: string;
|
|
8986
8986
|
|
|
8987
|
+
/**
|
|
8988
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8989
|
+
*/
|
|
8990
|
+
externalArticleNumber: string;
|
|
8991
|
+
|
|
8987
8992
|
/**
|
|
8988
8993
|
* ID der Quell-Belegposition
|
|
8989
8994
|
*/
|
|
@@ -8994,11 +8999,6 @@ export interface RequestDocumentLine {
|
|
|
8994
8999
|
*/
|
|
8995
9000
|
bookings: Array<RequestDocumentLineBooking>;
|
|
8996
9001
|
|
|
8997
|
-
/**
|
|
8998
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
8999
|
-
*/
|
|
9000
|
-
externalArticleNumber: string;
|
|
9001
|
-
|
|
9002
9002
|
/**
|
|
9003
9003
|
* (optional) Preis des Artikels dieser Position
|
|
9004
9004
|
*/
|
|
@@ -9392,14 +9392,14 @@ export interface ScenarioDimensionValue {
|
|
|
9392
9392
|
export interface ScenarioFactDef {
|
|
9393
9393
|
|
|
9394
9394
|
/**
|
|
9395
|
-
* Attribut
|
|
9395
|
+
* Attribut Name
|
|
9396
9396
|
*/
|
|
9397
|
-
|
|
9397
|
+
factAttribute: string;
|
|
9398
9398
|
|
|
9399
9399
|
/**
|
|
9400
|
-
* Attribut
|
|
9400
|
+
* Attribut Typ
|
|
9401
9401
|
*/
|
|
9402
|
-
|
|
9402
|
+
attributeType: ScenarioFactDef$FactType;
|
|
9403
9403
|
|
|
9404
9404
|
/**
|
|
9405
9405
|
* Unique identifier of the Object
|
|
@@ -9835,14 +9835,14 @@ export interface ShelfFile {
|
|
|
9835
9835
|
version: number;
|
|
9836
9836
|
|
|
9837
9837
|
/**
|
|
9838
|
-
*
|
|
9838
|
+
* current reference of this file in our storage
|
|
9839
9839
|
*/
|
|
9840
|
-
|
|
9840
|
+
storageHandle: string;
|
|
9841
9841
|
|
|
9842
9842
|
/**
|
|
9843
|
-
*
|
|
9843
|
+
* meta data
|
|
9844
9844
|
*/
|
|
9845
|
-
|
|
9845
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9846
9846
|
|
|
9847
9847
|
/**
|
|
9848
9848
|
* MetaInformations for this Object
|
|
@@ -10387,14 +10387,14 @@ export interface Supplier {
|
|
|
10387
10387
|
performanceCountryCode: string;
|
|
10388
10388
|
|
|
10389
10389
|
/**
|
|
10390
|
-
*
|
|
10390
|
+
* reference to the payment method
|
|
10391
10391
|
*/
|
|
10392
|
-
|
|
10392
|
+
paymentMethodRef: ApiObjectReference;
|
|
10393
10393
|
|
|
10394
10394
|
/**
|
|
10395
|
-
*
|
|
10395
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10396
10396
|
*/
|
|
10397
|
-
|
|
10397
|
+
defaultDeliveryTime: number;
|
|
10398
10398
|
|
|
10399
10399
|
/**
|
|
10400
10400
|
* currency code IsoAlpha3
|
|
@@ -10746,14 +10746,14 @@ export interface User {
|
|
|
10746
10746
|
version: number;
|
|
10747
10747
|
|
|
10748
10748
|
/**
|
|
10749
|
-
*
|
|
10749
|
+
* is the email verified
|
|
10750
10750
|
*/
|
|
10751
|
-
|
|
10751
|
+
emailVerified: boolean;
|
|
10752
10752
|
|
|
10753
10753
|
/**
|
|
10754
|
-
*
|
|
10754
|
+
* first-name
|
|
10755
10755
|
*/
|
|
10756
|
-
|
|
10756
|
+
firstName: string;
|
|
10757
10757
|
|
|
10758
10758
|
/**
|
|
10759
10759
|
* email-address
|