@vario-software/types 2026.35.0 → 2026.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +1 -1
- package/scripting/services.d.ts +50 -50
- package/scripting/types.d.ts +305 -305
package/scripting/types.d.ts
CHANGED
|
@@ -19,14 +19,14 @@ export const enum AccessoryInsertTerm {
|
|
|
19
19
|
export interface Account {
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
taxLiabilityReversed: boolean;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Notiz
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
note: string;
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* Alle Adressen außer der Standard-Adresse
|
|
@@ -154,14 +154,14 @@ export interface Account {
|
|
|
154
154
|
receivablesSum: number;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* companyLegal for this account
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
companyLegalRef: ApiCreatableReference;
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* Custom account data
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
custom: EavAccount;
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
@@ -178,11 +178,6 @@ export interface Account {
|
|
|
178
178
|
*/
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
|
-
/**
|
|
182
|
-
* Sprache des Accounts
|
|
183
|
-
*/
|
|
184
|
-
languageCode: string;
|
|
185
|
-
|
|
186
181
|
/**
|
|
187
182
|
* Erstkontakt am
|
|
188
183
|
*/
|
|
@@ -193,6 +188,11 @@ export interface Account {
|
|
|
193
188
|
*/
|
|
194
189
|
calculationMode: CalculationMode;
|
|
195
190
|
|
|
191
|
+
/**
|
|
192
|
+
* Sprache des Accounts
|
|
193
|
+
*/
|
|
194
|
+
languageCode: string;
|
|
195
|
+
|
|
196
196
|
/**
|
|
197
197
|
* Has this Account a possible duplicate
|
|
198
198
|
*/
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Standard-Ansprechpartner
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
defaultPerson: AccountPerson;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -292,14 +292,14 @@ export interface AccountAddress {
|
|
|
292
292
|
regionRef: ApiObjectReference;
|
|
293
293
|
|
|
294
294
|
/**
|
|
295
|
-
*
|
|
295
|
+
* Post office box
|
|
296
296
|
*/
|
|
297
|
-
|
|
297
|
+
postOfficeBox: string;
|
|
298
298
|
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Title
|
|
301
301
|
*/
|
|
302
|
-
|
|
302
|
+
titleRef: ApiCreatableReference;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
305
|
* Street
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
globalLocationNumber: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* abweichende Zahlungsart
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* Custom data
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
custom: EavAccountaddress;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -372,14 +372,14 @@ export interface AccountAddress {
|
|
|
372
372
|
defaultForType: boolean;
|
|
373
373
|
|
|
374
374
|
/**
|
|
375
|
-
*
|
|
375
|
+
* calculation mode of this address
|
|
376
376
|
*/
|
|
377
|
-
|
|
377
|
+
calculationMode: CalculationMode;
|
|
378
378
|
|
|
379
379
|
/**
|
|
380
|
-
*
|
|
380
|
+
* Sprache der Adresse
|
|
381
381
|
*/
|
|
382
|
-
|
|
382
|
+
languageCode: string;
|
|
383
383
|
|
|
384
384
|
/**
|
|
385
385
|
* Version Identifier for this Object (for PUT)
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* post-code of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankPostCode: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* name of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankName: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* account from, if differs from account-address
|
|
@@ -1014,25 +1014,20 @@ export interface Article {
|
|
|
1014
1014
|
*/
|
|
1015
1015
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1016
1016
|
|
|
1017
|
-
/**
|
|
1018
|
-
* is this product purchasable
|
|
1019
|
-
*/
|
|
1020
|
-
purchasable: boolean;
|
|
1021
|
-
|
|
1022
1017
|
/**
|
|
1023
1018
|
* Product custom data
|
|
1024
1019
|
*/
|
|
1025
1020
|
listingCustom: EavArticleListing;
|
|
1026
1021
|
|
|
1027
1022
|
/**
|
|
1028
|
-
*
|
|
1023
|
+
* is this product purchasable
|
|
1029
1024
|
*/
|
|
1030
|
-
|
|
1025
|
+
purchasable: boolean;
|
|
1031
1026
|
|
|
1032
1027
|
/**
|
|
1033
|
-
*
|
|
1028
|
+
* base capacity unit
|
|
1034
1029
|
*/
|
|
1035
|
-
|
|
1030
|
+
baseCapacityUnit: UnitTypeReference;
|
|
1036
1031
|
|
|
1037
1032
|
/**
|
|
1038
1033
|
* Seriennummern Auszeichnungsart
|
|
@@ -1044,6 +1039,11 @@ export interface Article {
|
|
|
1044
1039
|
*/
|
|
1045
1040
|
initialAvgPurchasePrice: number;
|
|
1046
1041
|
|
|
1042
|
+
/**
|
|
1043
|
+
* is this product sellable without any quantity at the stock
|
|
1044
|
+
*/
|
|
1045
|
+
sellableWithoutStock: boolean;
|
|
1046
|
+
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* Verkaufseinheit
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
salesUnit: number;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* weight and size inc. packaging
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
grossMetric: Article$Metric;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Arbeitseinheit in Minuten
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
workUnitInMinutes: number;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Country code
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1285,9 +1285,9 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
defaultFabricationCost: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* gross sales prices
|
|
@@ -1295,9 +1295,9 @@ export interface Article {
|
|
|
1295
1295
|
grossSalesPrice: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
|
-
*
|
|
1298
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1299
1299
|
*/
|
|
1300
|
-
|
|
1300
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1301
1301
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
@@ -1319,6 +1319,11 @@ export interface Article {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
|
+
/**
|
|
1323
|
+
* rabattierbarer Artikel?
|
|
1324
|
+
*/
|
|
1325
|
+
discountable: boolean;
|
|
1326
|
+
|
|
1322
1327
|
/**
|
|
1323
1328
|
* alternative name of this product
|
|
1324
1329
|
*/
|
|
@@ -1329,11 +1334,6 @@ export interface Article {
|
|
|
1329
1334
|
*/
|
|
1330
1335
|
contingentArticleRef: ApiObjectReference;
|
|
1331
1336
|
|
|
1332
|
-
/**
|
|
1333
|
-
* rabattierbarer Artikel?
|
|
1334
|
-
*/
|
|
1335
|
-
discountable: boolean;
|
|
1336
|
-
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
1339
1339
|
*/
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* provisionsberechtiger Artikel?
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
commissionable: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* Nur manuelle Produktion
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
onlyManualFabrication: boolean;
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1442,30 +1442,30 @@ export interface Article$Metric {
|
|
|
1442
1442
|
*/
|
|
1443
1443
|
sizeX: number;
|
|
1444
1444
|
|
|
1445
|
-
/**
|
|
1446
|
-
* size unit
|
|
1447
|
-
*/
|
|
1448
|
-
sizeUnit: UnitTypeReference;
|
|
1449
|
-
|
|
1450
1445
|
/**
|
|
1451
1446
|
* weight
|
|
1452
1447
|
*/
|
|
1453
1448
|
weight: number;
|
|
1454
1449
|
|
|
1455
1450
|
/**
|
|
1456
|
-
* size
|
|
1451
|
+
* size unit
|
|
1457
1452
|
*/
|
|
1458
|
-
|
|
1453
|
+
sizeUnit: UnitTypeReference;
|
|
1459
1454
|
|
|
1460
1455
|
/**
|
|
1461
1456
|
* size
|
|
1462
1457
|
*/
|
|
1463
|
-
|
|
1458
|
+
sizeY: number;
|
|
1464
1459
|
|
|
1465
1460
|
/**
|
|
1466
1461
|
* weight unit
|
|
1467
1462
|
*/
|
|
1468
1463
|
weightUnit: UnitTypeReference;
|
|
1464
|
+
|
|
1465
|
+
/**
|
|
1466
|
+
* size
|
|
1467
|
+
*/
|
|
1468
|
+
sizeZ: number;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1589,14 +1589,14 @@ export interface ArticleCustomer {
|
|
|
1589
1589
|
articleName: string;
|
|
1590
1590
|
|
|
1591
1591
|
/**
|
|
1592
|
-
*
|
|
1592
|
+
* Etikettdruck-Einstellungen
|
|
1593
1593
|
*/
|
|
1594
|
-
|
|
1594
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1595
1595
|
|
|
1596
1596
|
/**
|
|
1597
|
-
*
|
|
1597
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1598
1598
|
*/
|
|
1599
|
-
|
|
1599
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1600
1600
|
|
|
1601
1601
|
/**
|
|
1602
1602
|
* Kunden-Preise
|
|
@@ -1604,14 +1604,14 @@ export interface ArticleCustomer {
|
|
|
1604
1604
|
productPrices: Array<ProductPrice>;
|
|
1605
1605
|
|
|
1606
1606
|
/**
|
|
1607
|
-
*
|
|
1607
|
+
* Referenced Article
|
|
1608
1608
|
*/
|
|
1609
|
-
|
|
1609
|
+
articleId: number;
|
|
1610
1610
|
|
|
1611
1611
|
/**
|
|
1612
|
-
*
|
|
1612
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1613
1613
|
*/
|
|
1614
|
-
|
|
1614
|
+
useDeviatingArticleDescription: boolean;
|
|
1615
1615
|
|
|
1616
1616
|
/**
|
|
1617
1617
|
* Aktiv?
|
|
@@ -1654,14 +1654,14 @@ export interface ArticleCustomer {
|
|
|
1654
1654
|
articleNumber: string;
|
|
1655
1655
|
|
|
1656
1656
|
/**
|
|
1657
|
-
*
|
|
1657
|
+
* Abweichende Produktnummer
|
|
1658
1658
|
*/
|
|
1659
|
-
|
|
1659
|
+
deviatingArticleNumber: string;
|
|
1660
1660
|
|
|
1661
1661
|
/**
|
|
1662
|
-
*
|
|
1662
|
+
* Art der Preisermittlung
|
|
1663
1663
|
*/
|
|
1664
|
-
|
|
1664
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1665
1665
|
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -1771,14 +1771,14 @@ export interface ArticleListing {
|
|
|
1771
1771
|
proposedLowestPriceGross: number;
|
|
1772
1772
|
|
|
1773
1773
|
/**
|
|
1774
|
-
*
|
|
1774
|
+
* der Sales Channel
|
|
1775
1775
|
*/
|
|
1776
|
-
|
|
1776
|
+
salesChannelRef: ApiObjectReference;
|
|
1777
1777
|
|
|
1778
1778
|
/**
|
|
1779
|
-
* der
|
|
1779
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1780
1780
|
*/
|
|
1781
|
-
|
|
1781
|
+
customLowestPriceGross: number;
|
|
1782
1782
|
|
|
1783
1783
|
/**
|
|
1784
1784
|
* soll der Artikel gelistet werden
|
|
@@ -1999,14 +1999,14 @@ export interface ArticleStorage {
|
|
|
1999
1999
|
reorderPoint: number;
|
|
2000
2000
|
|
|
2001
2001
|
/**
|
|
2002
|
-
*
|
|
2002
|
+
* Bestellte Menge
|
|
2003
2003
|
*/
|
|
2004
|
-
|
|
2004
|
+
orderedQuantity: number;
|
|
2005
2005
|
|
|
2006
2006
|
/**
|
|
2007
|
-
*
|
|
2007
|
+
* Aktuelle Menge in Kommissionierung
|
|
2008
2008
|
*/
|
|
2009
|
-
|
|
2009
|
+
quantityInPicking: number;
|
|
2010
2010
|
|
|
2011
2011
|
/**
|
|
2012
2012
|
* Nachschub auf
|
|
@@ -2086,6 +2086,11 @@ export interface ArticleStorage {
|
|
|
2086
2086
|
|
|
2087
2087
|
export interface ArticleSupplier {
|
|
2088
2088
|
|
|
2089
|
+
/**
|
|
2090
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2091
|
+
*/
|
|
2092
|
+
useSupplierArticleDescription: boolean;
|
|
2093
|
+
|
|
2089
2094
|
/**
|
|
2090
2095
|
* Anzeigename des Accounts
|
|
2091
2096
|
*/
|
|
@@ -2097,20 +2102,15 @@ export interface ArticleSupplier {
|
|
|
2097
2102
|
supplierReportingStock: number;
|
|
2098
2103
|
|
|
2099
2104
|
/**
|
|
2100
|
-
*
|
|
2105
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2101
2106
|
*/
|
|
2102
|
-
|
|
2107
|
+
deliveryTime: number;
|
|
2103
2108
|
|
|
2104
2109
|
/**
|
|
2105
2110
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2106
2111
|
*/
|
|
2107
2112
|
useSupplierArticleIdentifier: boolean;
|
|
2108
2113
|
|
|
2109
|
-
/**
|
|
2110
|
-
* Lieferzeit in (Werk-)Tagen
|
|
2111
|
-
*/
|
|
2112
|
-
deliveryTime: number;
|
|
2113
|
-
|
|
2114
2114
|
/**
|
|
2115
2115
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2116
2116
|
*/
|
|
@@ -2292,26 +2292,26 @@ export interface Asset {
|
|
|
2292
2292
|
*/
|
|
2293
2293
|
custom: EavAsset;
|
|
2294
2294
|
|
|
2295
|
-
/**
|
|
2296
|
-
* active
|
|
2297
|
-
*/
|
|
2298
|
-
active: boolean;
|
|
2299
|
-
|
|
2300
2295
|
/**
|
|
2301
2296
|
* Artikel
|
|
2302
2297
|
*/
|
|
2303
2298
|
articleRef: ApiObjectReference;
|
|
2304
2299
|
|
|
2305
2300
|
/**
|
|
2306
|
-
*
|
|
2301
|
+
* active
|
|
2307
2302
|
*/
|
|
2308
|
-
|
|
2303
|
+
active: boolean;
|
|
2309
2304
|
|
|
2310
2305
|
/**
|
|
2311
2306
|
* Ende Garantie
|
|
2312
2307
|
*/
|
|
2313
2308
|
warrantyEndDate: ScriptingDate;
|
|
2314
2309
|
|
|
2310
|
+
/**
|
|
2311
|
+
* Zugehörige Assets
|
|
2312
|
+
*/
|
|
2313
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2314
|
+
|
|
2315
2315
|
/**
|
|
2316
2316
|
* Asset-Bezeichnung
|
|
2317
2317
|
*/
|
|
@@ -2327,11 +2327,6 @@ export interface Asset {
|
|
|
2327
2327
|
*/
|
|
2328
2328
|
billingAddressRef: ApiObjectReference;
|
|
2329
2329
|
|
|
2330
|
-
/**
|
|
2331
|
-
* Tags zum Asset
|
|
2332
|
-
*/
|
|
2333
|
-
tags: Array<TagDto>;
|
|
2334
|
-
|
|
2335
2330
|
/**
|
|
2336
2331
|
* Vertrag
|
|
2337
2332
|
*/
|
|
@@ -2342,6 +2337,11 @@ export interface Asset {
|
|
|
2342
2337
|
*/
|
|
2343
2338
|
accountAddressRef: ApiObjectReference;
|
|
2344
2339
|
|
|
2340
|
+
/**
|
|
2341
|
+
* Tags zum Asset
|
|
2342
|
+
*/
|
|
2343
|
+
tags: Array<TagDto>;
|
|
2344
|
+
|
|
2345
2345
|
/**
|
|
2346
2346
|
* Asset-Nummer
|
|
2347
2347
|
*/
|
|
@@ -2501,14 +2501,14 @@ export interface BundleSchema {
|
|
|
2501
2501
|
export interface BundleUnitTypeRatio {
|
|
2502
2502
|
|
|
2503
2503
|
/**
|
|
2504
|
-
*
|
|
2504
|
+
* Mengeneinheit
|
|
2505
2505
|
*/
|
|
2506
|
-
|
|
2506
|
+
baseUnitTypeRef: UnitTypeReference;
|
|
2507
2507
|
|
|
2508
2508
|
/**
|
|
2509
|
-
* Mengeneinheit
|
|
2509
|
+
* Verhältnis-Mengeneinheit
|
|
2510
2510
|
*/
|
|
2511
|
-
|
|
2511
|
+
relationUnitTypeRef: UnitTypeReference;
|
|
2512
2512
|
|
|
2513
2513
|
/**
|
|
2514
2514
|
* Unique identifier of the Object
|
|
@@ -2673,14 +2673,14 @@ export interface CountryReference {
|
|
|
2673
2673
|
export interface CreateNewDocumentRequest {
|
|
2674
2674
|
|
|
2675
2675
|
/**
|
|
2676
|
-
* Belegart
|
|
2676
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2677
2677
|
*/
|
|
2678
|
-
|
|
2678
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
|
-
*
|
|
2681
|
+
* Belegart
|
|
2682
2682
|
*/
|
|
2683
|
-
|
|
2683
|
+
documentTypeLabel: string;
|
|
2684
2684
|
|
|
2685
2685
|
/**
|
|
2686
2686
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -2910,14 +2910,14 @@ export interface CrmActivityType {
|
|
|
2910
2910
|
export interface CrmChecklistItem {
|
|
2911
2911
|
|
|
2912
2912
|
/**
|
|
2913
|
-
*
|
|
2913
|
+
* Text des Checklisten-Elements
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2915
|
+
memo: string;
|
|
2916
2916
|
|
|
2917
2917
|
/**
|
|
2918
|
-
*
|
|
2918
|
+
* Ist das Element "angehakt"?
|
|
2919
2919
|
*/
|
|
2920
|
-
|
|
2920
|
+
checked: boolean;
|
|
2921
2921
|
|
|
2922
2922
|
/**
|
|
2923
2923
|
* Unique identifier of the Object
|
|
@@ -3841,14 +3841,14 @@ export interface CrmTask {
|
|
|
3841
3841
|
parentRefs: Array<CrmObjectRef>;
|
|
3842
3842
|
|
|
3843
3843
|
/**
|
|
3844
|
-
*
|
|
3844
|
+
* Beauftragte Zeit in Sekunden
|
|
3845
3845
|
*/
|
|
3846
|
-
|
|
3846
|
+
effortCommissioned: number;
|
|
3847
3847
|
|
|
3848
3848
|
/**
|
|
3849
|
-
*
|
|
3849
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3850
3850
|
*/
|
|
3851
|
-
|
|
3851
|
+
externalRecordedTimes: number;
|
|
3852
3852
|
|
|
3853
3853
|
/**
|
|
3854
3854
|
* Aufwandsschätzung in Sekunden
|
|
@@ -4407,14 +4407,14 @@ export interface DeliveryTerm {
|
|
|
4407
4407
|
label: string;
|
|
4408
4408
|
|
|
4409
4409
|
/**
|
|
4410
|
-
*
|
|
4410
|
+
* information, when the shipping charges should be calculated
|
|
4411
4411
|
*/
|
|
4412
|
-
|
|
4412
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4413
4413
|
|
|
4414
4414
|
/**
|
|
4415
|
-
*
|
|
4415
|
+
* Sprache des Accounts
|
|
4416
4416
|
*/
|
|
4417
|
-
|
|
4417
|
+
languageCode: string;
|
|
4418
4418
|
|
|
4419
4419
|
/**
|
|
4420
4420
|
* calculate shipping charges per parcel
|
|
@@ -4670,14 +4670,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4670
4670
|
documentDate: ScriptingDate;
|
|
4671
4671
|
|
|
4672
4672
|
/**
|
|
4673
|
-
*
|
|
4673
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4674
4674
|
*/
|
|
4675
|
-
|
|
4675
|
+
taxLiabilityReversed: boolean;
|
|
4676
4676
|
|
|
4677
4677
|
/**
|
|
4678
|
-
*
|
|
4678
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4679
4679
|
*/
|
|
4680
|
-
|
|
4680
|
+
roundingAmount: number;
|
|
4681
4681
|
|
|
4682
4682
|
/**
|
|
4683
4683
|
* Versanddatum
|
|
@@ -5044,14 +5044,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5044
5044
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
5045
5045
|
|
|
5046
5046
|
/**
|
|
5047
|
-
*
|
|
5047
|
+
* Rechnungsadresse
|
|
5048
5048
|
*/
|
|
5049
|
-
|
|
5049
|
+
billingAddress: DocumentAddress;
|
|
5050
5050
|
|
|
5051
5051
|
/**
|
|
5052
|
-
*
|
|
5052
|
+
* Status der USt-ID-Prüfung
|
|
5053
5053
|
*/
|
|
5054
|
-
|
|
5054
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
5055
5055
|
|
|
5056
5056
|
/**
|
|
5057
5057
|
* Bestellt durch Ansprechpartner
|
|
@@ -5687,14 +5687,14 @@ export interface DocumentLine {
|
|
|
5687
5687
|
serialType: ArticleSerialType;
|
|
5688
5688
|
|
|
5689
5689
|
/**
|
|
5690
|
-
*
|
|
5690
|
+
* Preiseinheit
|
|
5691
5691
|
*/
|
|
5692
|
-
|
|
5692
|
+
priceUnit: number;
|
|
5693
5693
|
|
|
5694
5694
|
/**
|
|
5695
|
-
*
|
|
5695
|
+
* Steuerschema
|
|
5696
5696
|
*/
|
|
5697
|
-
|
|
5697
|
+
taxSchemaRef: ApiObjectReference;
|
|
5698
5698
|
|
|
5699
5699
|
/**
|
|
5700
5700
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -6067,14 +6067,14 @@ export interface DocumentLine {
|
|
|
6067
6067
|
custom: EavDocumentline;
|
|
6068
6068
|
|
|
6069
6069
|
/**
|
|
6070
|
-
*
|
|
6070
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
6071
6071
|
*/
|
|
6072
|
-
|
|
6072
|
+
settledOpenItemComment: string;
|
|
6073
6073
|
|
|
6074
6074
|
/**
|
|
6075
|
-
*
|
|
6075
|
+
* Artikel
|
|
6076
6076
|
*/
|
|
6077
|
-
|
|
6077
|
+
articleId: number;
|
|
6078
6078
|
|
|
6079
6079
|
/**
|
|
6080
6080
|
* Interne Preisänderungsinformationen
|
|
@@ -6256,14 +6256,14 @@ export interface DocumentLineComponent {
|
|
|
6256
6256
|
pickingQuantity: number;
|
|
6257
6257
|
|
|
6258
6258
|
/**
|
|
6259
|
-
*
|
|
6259
|
+
* Produktionsdetails
|
|
6260
6260
|
*/
|
|
6261
|
-
|
|
6261
|
+
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6262
6262
|
|
|
6263
6263
|
/**
|
|
6264
|
-
*
|
|
6264
|
+
* Freifelder
|
|
6265
6265
|
*/
|
|
6266
|
-
|
|
6266
|
+
custom: EavDocumentlinecomponent;
|
|
6267
6267
|
|
|
6268
6268
|
/**
|
|
6269
6269
|
* Referenz auf den Artikel der Komponente
|
|
@@ -6415,14 +6415,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6415
6415
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6416
6416
|
|
|
6417
6417
|
/**
|
|
6418
|
-
*
|
|
6418
|
+
* Menge
|
|
6419
6419
|
*/
|
|
6420
|
-
|
|
6420
|
+
quantity: number;
|
|
6421
6421
|
|
|
6422
6422
|
/**
|
|
6423
|
-
*
|
|
6423
|
+
* Abweichende Herstellungskosten
|
|
6424
6424
|
*/
|
|
6425
|
-
|
|
6425
|
+
deviatingUnitPrice: number;
|
|
6426
6426
|
|
|
6427
6427
|
/**
|
|
6428
6428
|
* Beschreibung
|
|
@@ -6634,14 +6634,14 @@ export interface DocumentLinePosDetail {
|
|
|
6634
6634
|
balanceBeforeWithdrawal: number;
|
|
6635
6635
|
|
|
6636
6636
|
/**
|
|
6637
|
-
*
|
|
6637
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6638
6638
|
*/
|
|
6639
|
-
|
|
6639
|
+
externalPaymentId: string;
|
|
6640
6640
|
|
|
6641
6641
|
/**
|
|
6642
|
-
*
|
|
6642
|
+
* Typ der Position
|
|
6643
6643
|
*/
|
|
6644
|
-
|
|
6644
|
+
posLineType: PosLineType;
|
|
6645
6645
|
|
|
6646
6646
|
/**
|
|
6647
6647
|
* Unique identifier of the Object
|
|
@@ -6965,14 +6965,14 @@ export interface DocumentPosPayment {
|
|
|
6965
6965
|
balanceBeforeWithdrawal: number;
|
|
6966
6966
|
|
|
6967
6967
|
/**
|
|
6968
|
-
*
|
|
6968
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6969
6969
|
*/
|
|
6970
|
-
|
|
6970
|
+
externalPaymentId: string;
|
|
6971
6971
|
|
|
6972
6972
|
/**
|
|
6973
|
-
*
|
|
6973
|
+
* Typ der Position
|
|
6974
6974
|
*/
|
|
6975
|
-
|
|
6975
|
+
posLineType: PosLineType;
|
|
6976
6976
|
|
|
6977
6977
|
/**
|
|
6978
6978
|
* Unique identifier of the Object
|
|
@@ -7131,14 +7131,14 @@ export interface DocumentShippingCost {
|
|
|
7131
7131
|
manualCosts: boolean;
|
|
7132
7132
|
|
|
7133
7133
|
/**
|
|
7134
|
-
*
|
|
7134
|
+
* Texte
|
|
7135
7135
|
*/
|
|
7136
|
-
|
|
7136
|
+
texts: Array<DocumentText>;
|
|
7137
7137
|
|
|
7138
7138
|
/**
|
|
7139
|
-
*
|
|
7139
|
+
* Keine Versandkosten (freier Versand)
|
|
7140
7140
|
*/
|
|
7141
|
-
|
|
7141
|
+
freeShipping: boolean;
|
|
7142
7142
|
|
|
7143
7143
|
/**
|
|
7144
7144
|
* skontierbar
|
|
@@ -7363,14 +7363,14 @@ export interface DocumentType {
|
|
|
7363
7363
|
labels: Array<DocumentTypeLabel>;
|
|
7364
7364
|
|
|
7365
7365
|
/**
|
|
7366
|
-
*
|
|
7366
|
+
* nächste Belegnummer
|
|
7367
7367
|
*/
|
|
7368
|
-
|
|
7368
|
+
nextNumber: string;
|
|
7369
7369
|
|
|
7370
7370
|
/**
|
|
7371
|
-
*
|
|
7371
|
+
* Zählerkreis
|
|
7372
7372
|
*/
|
|
7373
|
-
|
|
7373
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7374
7374
|
|
|
7375
7375
|
/**
|
|
7376
7376
|
* Sortierung
|
|
@@ -7578,18 +7578,18 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7578
7578
|
/**
|
|
7579
7579
|
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7580
7580
|
*/
|
|
7581
|
-
targetExpiryDate: ScriptingDate;
|
|
7582
|
-
|
|
7583
|
-
/**
|
|
7584
|
-
* Quell-Lagerplatz
|
|
7585
|
-
*/
|
|
7586
|
-
sourceStorageBinId: number;
|
|
7581
|
+
targetExpiryDate: ScriptingDate;
|
|
7587
7582
|
|
|
7588
7583
|
/**
|
|
7589
7584
|
* Menge
|
|
7590
7585
|
*/
|
|
7591
7586
|
quantity: number;
|
|
7592
7587
|
|
|
7588
|
+
/**
|
|
7589
|
+
* Quell-Lagerplatz
|
|
7590
|
+
*/
|
|
7591
|
+
sourceStorageBinId: number;
|
|
7592
|
+
|
|
7593
7593
|
/**
|
|
7594
7594
|
* Quell-Lager
|
|
7595
7595
|
*/
|
|
@@ -7956,14 +7956,14 @@ export const enum FabricationOfComponents {
|
|
|
7956
7956
|
export interface FabricationProduceRequest {
|
|
7957
7957
|
|
|
7958
7958
|
/**
|
|
7959
|
-
*
|
|
7959
|
+
* Zu produzierende Menge
|
|
7960
7960
|
*/
|
|
7961
|
-
|
|
7961
|
+
quantity: number;
|
|
7962
7962
|
|
|
7963
7963
|
/**
|
|
7964
|
-
*
|
|
7964
|
+
* Material automatisch bestätigen
|
|
7965
7965
|
*/
|
|
7966
|
-
|
|
7966
|
+
autoCommitComponents: boolean;
|
|
7967
7967
|
|
|
7968
7968
|
/**
|
|
7969
7969
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8017,14 +8017,14 @@ export interface FabricationRevertRequest {
|
|
|
8017
8017
|
quantity: number;
|
|
8018
8018
|
|
|
8019
8019
|
/**
|
|
8020
|
-
*
|
|
8020
|
+
* ID der zu stornierenden Position
|
|
8021
8021
|
*/
|
|
8022
|
-
|
|
8022
|
+
documentLineId: number;
|
|
8023
8023
|
|
|
8024
8024
|
/**
|
|
8025
|
-
*
|
|
8025
|
+
* Material automatisch stornieren
|
|
8026
8026
|
*/
|
|
8027
|
-
|
|
8027
|
+
autoRevertComponents: boolean;
|
|
8028
8028
|
|
|
8029
8029
|
/**
|
|
8030
8030
|
* Zu stornierende Seriennummern
|
|
@@ -8379,14 +8379,14 @@ export interface OpenItem {
|
|
|
8379
8379
|
performanceCountryCode: string;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* agreed Deposit payment date
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
depositPaymentDate: ScriptingDate;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
|
-
*
|
|
8387
|
+
* Valutadatum schreibgeschützt
|
|
8388
8388
|
*/
|
|
8389
|
-
|
|
8389
|
+
valueDateReadOnly: boolean;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
8392
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8454,14 +8454,14 @@ export interface OpenItem {
|
|
|
8454
8454
|
paymentAmount: number;
|
|
8455
8455
|
|
|
8456
8456
|
/**
|
|
8457
|
-
*
|
|
8457
|
+
* Rechnungskorrektur
|
|
8458
8458
|
*/
|
|
8459
|
-
|
|
8459
|
+
creditNote: ApiObjectReference;
|
|
8460
8460
|
|
|
8461
8461
|
/**
|
|
8462
|
-
*
|
|
8462
|
+
* how should a refund be done?
|
|
8463
8463
|
*/
|
|
8464
|
-
|
|
8464
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8465
8465
|
|
|
8466
8466
|
/**
|
|
8467
8467
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8484,14 +8484,14 @@ export interface OpenItem {
|
|
|
8484
8484
|
sumFee: number;
|
|
8485
8485
|
|
|
8486
8486
|
/**
|
|
8487
|
-
*
|
|
8487
|
+
* Zahlungsplan
|
|
8488
8488
|
*/
|
|
8489
|
-
|
|
8489
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8490
8490
|
|
|
8491
8491
|
/**
|
|
8492
|
-
*
|
|
8492
|
+
* The full amount of the payment
|
|
8493
8493
|
*/
|
|
8494
|
-
|
|
8494
|
+
fullPaymentAmount: number;
|
|
8495
8495
|
|
|
8496
8496
|
/**
|
|
8497
8497
|
* Zahlungssperre
|
|
@@ -8504,14 +8504,14 @@ export interface OpenItem {
|
|
|
8504
8504
|
originalPaymentDueDate: ScriptingDate;
|
|
8505
8505
|
|
|
8506
8506
|
/**
|
|
8507
|
-
*
|
|
8507
|
+
* whether this open item is balanced, partially paid or open
|
|
8508
8508
|
*/
|
|
8509
|
-
|
|
8509
|
+
balanceState: OpenItemBalanceState;
|
|
8510
8510
|
|
|
8511
8511
|
/**
|
|
8512
|
-
*
|
|
8512
|
+
* Valutadatum
|
|
8513
8513
|
*/
|
|
8514
|
-
|
|
8514
|
+
valueDate: ScriptingDate;
|
|
8515
8515
|
|
|
8516
8516
|
/**
|
|
8517
8517
|
* Skontobetrag 1
|
|
@@ -8524,14 +8524,14 @@ export interface OpenItem {
|
|
|
8524
8524
|
baseSumDiscount: number;
|
|
8525
8525
|
|
|
8526
8526
|
/**
|
|
8527
|
-
*
|
|
8527
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8528
8528
|
*/
|
|
8529
|
-
|
|
8529
|
+
baseSumDunnings: number;
|
|
8530
8530
|
|
|
8531
8531
|
/**
|
|
8532
|
-
*
|
|
8532
|
+
* Zahlungsvorlage
|
|
8533
8533
|
*/
|
|
8534
|
-
|
|
8534
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8535
8535
|
|
|
8536
8536
|
/**
|
|
8537
8537
|
* Rechnungsbetrag
|
|
@@ -8642,14 +8642,14 @@ export interface OpenItemPaymentPlan {
|
|
|
8642
8642
|
dueDate: ScriptingDate;
|
|
8643
8643
|
|
|
8644
8644
|
/**
|
|
8645
|
-
*
|
|
8645
|
+
* Aktiv
|
|
8646
8646
|
*/
|
|
8647
|
-
|
|
8647
|
+
active: boolean;
|
|
8648
8648
|
|
|
8649
8649
|
/**
|
|
8650
|
-
*
|
|
8650
|
+
* Zahlungsplantyp
|
|
8651
8651
|
*/
|
|
8652
|
-
|
|
8652
|
+
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
8653
8653
|
|
|
8654
8654
|
/**
|
|
8655
8655
|
* Beschreibung
|
|
@@ -8832,14 +8832,14 @@ export interface OpenItemRecord {
|
|
|
8832
8832
|
version: number;
|
|
8833
8833
|
|
|
8834
8834
|
/**
|
|
8835
|
-
*
|
|
8835
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8836
8836
|
*/
|
|
8837
|
-
|
|
8837
|
+
transactionId: number;
|
|
8838
8838
|
|
|
8839
8839
|
/**
|
|
8840
|
-
*
|
|
8840
|
+
* Buchungsbetrag in Basiswährung
|
|
8841
8841
|
*/
|
|
8842
|
-
|
|
8842
|
+
baseAmount: number;
|
|
8843
8843
|
|
|
8844
8844
|
/**
|
|
8845
8845
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8857,14 +8857,14 @@ export interface OpenItemRecord {
|
|
|
8857
8857
|
totalAmount: number;
|
|
8858
8858
|
|
|
8859
8859
|
/**
|
|
8860
|
-
*
|
|
8860
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8861
8861
|
*/
|
|
8862
|
-
|
|
8862
|
+
baseCurrencyCode: string;
|
|
8863
8863
|
|
|
8864
8864
|
/**
|
|
8865
|
-
*
|
|
8865
|
+
* id des records, der diesen storniert hat
|
|
8866
8866
|
*/
|
|
8867
|
-
|
|
8867
|
+
revertedByRecordId: number;
|
|
8868
8868
|
|
|
8869
8869
|
/**
|
|
8870
8870
|
* qualifier of open item
|
|
@@ -9012,14 +9012,14 @@ export interface PaymentMethod {
|
|
|
9012
9012
|
dunnable: boolean;
|
|
9013
9013
|
|
|
9014
9014
|
/**
|
|
9015
|
-
*
|
|
9015
|
+
* translations
|
|
9016
9016
|
*/
|
|
9017
|
-
|
|
9017
|
+
translations: Array<DocumentTypeTerm>;
|
|
9018
9018
|
|
|
9019
9019
|
/**
|
|
9020
|
-
*
|
|
9020
|
+
* Debitoren-OP abschließen?
|
|
9021
9021
|
*/
|
|
9022
|
-
|
|
9022
|
+
closeCustomerAccountType: boolean;
|
|
9023
9023
|
|
|
9024
9024
|
/**
|
|
9025
9025
|
* +Tage für Folgelastschrift
|
|
@@ -9027,14 +9027,14 @@ export interface PaymentMethod {
|
|
|
9027
9027
|
daysToAddForFollowup: number;
|
|
9028
9028
|
|
|
9029
9029
|
/**
|
|
9030
|
-
*
|
|
9030
|
+
* external Payment Id
|
|
9031
9031
|
*/
|
|
9032
|
-
|
|
9032
|
+
externalPaymentId: string;
|
|
9033
9033
|
|
|
9034
9034
|
/**
|
|
9035
|
-
*
|
|
9035
|
+
* Die Business Transaction
|
|
9036
9036
|
*/
|
|
9037
|
-
|
|
9037
|
+
businessTransaction: ApiObjectReference;
|
|
9038
9038
|
|
|
9039
9039
|
/**
|
|
9040
9040
|
* Unique identifier of the Object
|
|
@@ -9117,26 +9117,26 @@ export interface PaymentTerm {
|
|
|
9117
9117
|
*/
|
|
9118
9118
|
paymentDiscount2: number;
|
|
9119
9119
|
|
|
9120
|
-
/**
|
|
9121
|
-
* Percent for Discount 1
|
|
9122
|
-
*/
|
|
9123
|
-
paymentDiscount1: number;
|
|
9124
|
-
|
|
9125
9120
|
/**
|
|
9126
9121
|
* printDescription
|
|
9127
9122
|
*/
|
|
9128
9123
|
printDescription: string;
|
|
9129
9124
|
|
|
9130
9125
|
/**
|
|
9131
|
-
* for
|
|
9126
|
+
* Percent for Discount 1
|
|
9132
9127
|
*/
|
|
9133
|
-
|
|
9128
|
+
paymentDiscount1: number;
|
|
9134
9129
|
|
|
9135
9130
|
/**
|
|
9136
9131
|
* Days for Discount 1
|
|
9137
9132
|
*/
|
|
9138
9133
|
paymentDays1: number;
|
|
9139
9134
|
|
|
9135
|
+
/**
|
|
9136
|
+
* for deposit: remaining term
|
|
9137
|
+
*/
|
|
9138
|
+
remainingTermRef: ApiObjectReference;
|
|
9139
|
+
|
|
9140
9140
|
/**
|
|
9141
9141
|
* Days for Discount 2
|
|
9142
9142
|
*/
|
|
@@ -9848,11 +9848,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9848
9848
|
*/
|
|
9849
9849
|
maxOrderValue: number;
|
|
9850
9850
|
|
|
9851
|
-
/**
|
|
9852
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9853
|
-
*/
|
|
9854
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9855
|
-
|
|
9856
9851
|
/**
|
|
9857
9852
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9858
9853
|
*/
|
|
@@ -9863,6 +9858,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9863
9858
|
*/
|
|
9864
9859
|
onlyFullDeliverableOrderLines: boolean;
|
|
9865
9860
|
|
|
9861
|
+
/**
|
|
9862
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9863
|
+
*/
|
|
9864
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9865
|
+
|
|
9866
9866
|
/**
|
|
9867
9867
|
* Selektion über den Bereich vom Belegdatum
|
|
9868
9868
|
*/
|
|
@@ -10029,6 +10029,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10029
10029
|
*/
|
|
10030
10030
|
showShippingFormOnPickingFinish: boolean;
|
|
10031
10031
|
|
|
10032
|
+
/**
|
|
10033
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10034
|
+
*/
|
|
10035
|
+
printLabelOnScan: boolean;
|
|
10036
|
+
|
|
10032
10037
|
/**
|
|
10033
10038
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
10034
10039
|
*/
|
|
@@ -10039,11 +10044,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10039
10044
|
*/
|
|
10040
10045
|
allowFullConfirmation: boolean;
|
|
10041
10046
|
|
|
10042
|
-
/**
|
|
10043
|
-
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10044
|
-
*/
|
|
10045
|
-
printLabelOnScan: boolean;
|
|
10046
|
-
|
|
10047
10047
|
/**
|
|
10048
10048
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
10049
10049
|
*/
|
|
@@ -10169,14 +10169,14 @@ export interface PriceSelectionCriteria {
|
|
|
10169
10169
|
priceGroupId: number;
|
|
10170
10170
|
|
|
10171
10171
|
/**
|
|
10172
|
-
* Liste von
|
|
10172
|
+
* Liste von Artikel-IDs
|
|
10173
10173
|
*/
|
|
10174
|
-
|
|
10174
|
+
articleIds: Array<number>;
|
|
10175
10175
|
|
|
10176
10176
|
/**
|
|
10177
|
-
* Liste von
|
|
10177
|
+
* Liste von Account-IDs
|
|
10178
10178
|
*/
|
|
10179
|
-
|
|
10179
|
+
accountIds: Array<number>;
|
|
10180
10180
|
|
|
10181
10181
|
/**
|
|
10182
10182
|
* ein qualifier
|
|
@@ -10202,14 +10202,14 @@ export interface PriceSelectionCriteria {
|
|
|
10202
10202
|
export interface Product {
|
|
10203
10203
|
|
|
10204
10204
|
/**
|
|
10205
|
-
*
|
|
10205
|
+
* Zolltarifnummer
|
|
10206
10206
|
*/
|
|
10207
|
-
|
|
10207
|
+
customsTariffNumber: string;
|
|
10208
10208
|
|
|
10209
10209
|
/**
|
|
10210
|
-
*
|
|
10210
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10211
10211
|
*/
|
|
10212
|
-
|
|
10212
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10213
10213
|
|
|
10214
10214
|
/**
|
|
10215
10215
|
* Gebindeschema dieses Produkts
|
|
@@ -10358,14 +10358,14 @@ export interface ProductArticleRef {
|
|
|
10358
10358
|
export interface ProductDiscount {
|
|
10359
10359
|
|
|
10360
10360
|
/**
|
|
10361
|
-
*
|
|
10361
|
+
* Kundengruppe
|
|
10362
10362
|
*/
|
|
10363
|
-
|
|
10363
|
+
customerGroupRef: ApiObjectReference;
|
|
10364
10364
|
|
|
10365
10365
|
/**
|
|
10366
|
-
*
|
|
10366
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10367
10367
|
*/
|
|
10368
|
-
|
|
10368
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10369
10369
|
|
|
10370
10370
|
/**
|
|
10371
10371
|
* Lieferantengruppe
|
|
@@ -10418,14 +10418,14 @@ export interface ProductDiscount {
|
|
|
10418
10418
|
currencyRef: CurrencyReference;
|
|
10419
10419
|
|
|
10420
10420
|
/**
|
|
10421
|
-
*
|
|
10421
|
+
* Wert des Rabatts
|
|
10422
10422
|
*/
|
|
10423
|
-
|
|
10423
|
+
modifierValue: number;
|
|
10424
10424
|
|
|
10425
10425
|
/**
|
|
10426
|
-
*
|
|
10426
|
+
* Preisgruppe
|
|
10427
10427
|
*/
|
|
10428
|
-
|
|
10428
|
+
priceGroupRef: ApiObjectReference;
|
|
10429
10429
|
|
|
10430
10430
|
/**
|
|
10431
10431
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10433,14 +10433,14 @@ export interface ProductDiscount {
|
|
|
10433
10433
|
qualifier: ProductPriceQualifier;
|
|
10434
10434
|
|
|
10435
10435
|
/**
|
|
10436
|
-
*
|
|
10436
|
+
* Gültig bis
|
|
10437
10437
|
*/
|
|
10438
|
-
|
|
10438
|
+
validUntil: ScriptingDate;
|
|
10439
10439
|
|
|
10440
10440
|
/**
|
|
10441
|
-
*
|
|
10441
|
+
* Aktionpreis
|
|
10442
10442
|
*/
|
|
10443
|
-
|
|
10443
|
+
specialOfferPrice: boolean;
|
|
10444
10444
|
|
|
10445
10445
|
/**
|
|
10446
10446
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10572,14 +10572,14 @@ export interface ProductMainGroup {
|
|
|
10572
10572
|
export interface ProductPrice {
|
|
10573
10573
|
|
|
10574
10574
|
/**
|
|
10575
|
-
*
|
|
10575
|
+
* Kundengruppe
|
|
10576
10576
|
*/
|
|
10577
|
-
|
|
10577
|
+
customerGroupRef: ApiObjectReference;
|
|
10578
10578
|
|
|
10579
10579
|
/**
|
|
10580
|
-
*
|
|
10580
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10581
10581
|
*/
|
|
10582
|
-
|
|
10582
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10583
10583
|
|
|
10584
10584
|
/**
|
|
10585
10585
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10671,11 +10671,6 @@ export interface ProductPrice {
|
|
|
10671
10671
|
*/
|
|
10672
10672
|
qualifier: ProductPriceQualifier;
|
|
10673
10673
|
|
|
10674
|
-
/**
|
|
10675
|
-
* Aktionpreis
|
|
10676
|
-
*/
|
|
10677
|
-
specialOfferPrice: boolean;
|
|
10678
|
-
|
|
10679
10674
|
/**
|
|
10680
10675
|
* Preisbasis
|
|
10681
10676
|
*/
|
|
@@ -10686,6 +10681,11 @@ export interface ProductPrice {
|
|
|
10686
10681
|
*/
|
|
10687
10682
|
validUntil: ScriptingDate;
|
|
10688
10683
|
|
|
10684
|
+
/**
|
|
10685
|
+
* Aktionpreis
|
|
10686
|
+
*/
|
|
10687
|
+
specialOfferPrice: boolean;
|
|
10688
|
+
|
|
10689
10689
|
/**
|
|
10690
10690
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10691
10691
|
*/
|
|
@@ -10877,14 +10877,14 @@ export interface RequestDocument {
|
|
|
10877
10877
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10878
10878
|
|
|
10879
10879
|
/**
|
|
10880
|
-
*
|
|
10880
|
+
* ID der Kasse (bei POS)
|
|
10881
10881
|
*/
|
|
10882
|
-
|
|
10882
|
+
posRegisterId: number;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Die Vertragsdetails
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
contractDetail: DocumentContractDetail;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
10890
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10897,14 +10897,14 @@ export interface RequestDocument {
|
|
|
10897
10897
|
paymentTermId: number;
|
|
10898
10898
|
|
|
10899
10899
|
/**
|
|
10900
|
-
*
|
|
10900
|
+
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10901
10901
|
*/
|
|
10902
|
-
|
|
10902
|
+
dropShipping: boolean;
|
|
10903
10903
|
|
|
10904
10904
|
/**
|
|
10905
|
-
*
|
|
10905
|
+
* Schema Freifelder
|
|
10906
10906
|
*/
|
|
10907
|
-
|
|
10907
|
+
custom: EavDocument;
|
|
10908
10908
|
|
|
10909
10909
|
/**
|
|
10910
10910
|
* target document type for document copy
|
|
@@ -11049,25 +11049,20 @@ export interface RequestDocumentLine {
|
|
|
11049
11049
|
*/
|
|
11050
11050
|
supplierAccountId: number;
|
|
11051
11051
|
|
|
11052
|
-
/**
|
|
11053
|
-
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
11054
|
-
*/
|
|
11055
|
-
mainArticleLinePosition: number;
|
|
11056
|
-
|
|
11057
11052
|
/**
|
|
11058
11053
|
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
11059
11054
|
*/
|
|
11060
11055
|
quantity: number;
|
|
11061
11056
|
|
|
11062
11057
|
/**
|
|
11063
|
-
*
|
|
11058
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
11064
11059
|
*/
|
|
11065
|
-
|
|
11060
|
+
mainArticleLinePosition: number;
|
|
11066
11061
|
|
|
11067
11062
|
/**
|
|
11068
|
-
*
|
|
11063
|
+
* Versandkosten mit Bedingungen
|
|
11069
11064
|
*/
|
|
11070
|
-
|
|
11065
|
+
shippingCostDetail: RequestDocumentLineShippingCostDetail;
|
|
11071
11066
|
|
|
11072
11067
|
/**
|
|
11073
11068
|
* Details Produktionsbelegen
|
|
@@ -11075,15 +11070,20 @@ export interface RequestDocumentLine {
|
|
|
11075
11070
|
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
11076
11071
|
|
|
11077
11072
|
/**
|
|
11078
|
-
*
|
|
11073
|
+
* Für interne Zwecke: Freifelder
|
|
11079
11074
|
*/
|
|
11080
|
-
|
|
11075
|
+
custom: EavDocumentline;
|
|
11081
11076
|
|
|
11082
11077
|
/**
|
|
11083
11078
|
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
11084
11079
|
*/
|
|
11085
11080
|
settledOpenItemComment: string;
|
|
11086
11081
|
|
|
11082
|
+
/**
|
|
11083
|
+
* (optional) ID des Artikels dieser Position
|
|
11084
|
+
*/
|
|
11085
|
+
articleId: number;
|
|
11086
|
+
|
|
11087
11087
|
/**
|
|
11088
11088
|
* ID der Belegposition im aktuellen Beleg
|
|
11089
11089
|
*/
|
|
@@ -12077,14 +12077,14 @@ export interface ShelfShare {
|
|
|
12077
12077
|
publishState: ShelfSharePublishState;
|
|
12078
12078
|
|
|
12079
12079
|
/**
|
|
12080
|
-
*
|
|
12080
|
+
* Freifelder
|
|
12081
12081
|
*/
|
|
12082
|
-
|
|
12082
|
+
custom: EavShelfshare;
|
|
12083
12083
|
|
|
12084
12084
|
/**
|
|
12085
|
-
*
|
|
12085
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
12086
12086
|
*/
|
|
12087
|
-
|
|
12087
|
+
publicUrlDurationInMinutes: number;
|
|
12088
12088
|
|
|
12089
12089
|
/**
|
|
12090
12090
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12316,14 +12316,14 @@ export interface StockTransferApi {
|
|
|
12316
12316
|
bookDate: ScriptingDate;
|
|
12317
12317
|
|
|
12318
12318
|
/**
|
|
12319
|
-
*
|
|
12319
|
+
* Menge
|
|
12320
12320
|
*/
|
|
12321
|
-
|
|
12321
|
+
quantity: number;
|
|
12322
12322
|
|
|
12323
12323
|
/**
|
|
12324
|
-
*
|
|
12324
|
+
* Quell-Lagerplatz
|
|
12325
12325
|
*/
|
|
12326
|
-
|
|
12326
|
+
sourceStorageBinId: number;
|
|
12327
12327
|
|
|
12328
12328
|
/**
|
|
12329
12329
|
* Quell-Lager
|
|
@@ -13036,14 +13036,14 @@ export interface User {
|
|
|
13036
13036
|
roles: Array<ApiObjectReference>;
|
|
13037
13037
|
|
|
13038
13038
|
/**
|
|
13039
|
-
*
|
|
13039
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
13040
13040
|
*/
|
|
13041
|
-
|
|
13041
|
+
referencedCustomerUserId: number;
|
|
13042
13042
|
|
|
13043
13043
|
/**
|
|
13044
|
-
*
|
|
13044
|
+
* Gruppen
|
|
13045
13045
|
*/
|
|
13046
|
-
|
|
13046
|
+
groups: Array<ApiObjectReference>;
|
|
13047
13047
|
|
|
13048
13048
|
/**
|
|
13049
13049
|
* Is the user active?
|