@vario-software/types 2026.33.4 → 2026.34.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 +113 -8
- package/scripting/services.d.ts +73 -57
- package/scripting/types.d.ts +457 -411
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
accountZoneId: AccountZoneId;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* first contact type for this account
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -143,26 +143,26 @@ export interface Account {
|
|
|
143
143
|
*/
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
|
-
/**
|
|
147
|
-
* Summe Forderungen
|
|
148
|
-
*/
|
|
149
|
-
receivablesSum: number;
|
|
150
|
-
|
|
151
146
|
/**
|
|
152
147
|
* Kostenstelle
|
|
153
148
|
*/
|
|
154
149
|
costCenter: string;
|
|
155
150
|
|
|
156
151
|
/**
|
|
157
|
-
*
|
|
152
|
+
* Summe Forderungen
|
|
158
153
|
*/
|
|
159
|
-
|
|
154
|
+
receivablesSum: number;
|
|
160
155
|
|
|
161
156
|
/**
|
|
162
157
|
* Custom account data
|
|
163
158
|
*/
|
|
164
159
|
custom: EavAccount;
|
|
165
160
|
|
|
161
|
+
/**
|
|
162
|
+
* companyLegal for this account
|
|
163
|
+
*/
|
|
164
|
+
companyLegalRef: ApiCreatableReference;
|
|
165
|
+
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
168
168
|
*/
|
|
@@ -336,26 +336,26 @@ export interface AccountAddress {
|
|
|
336
336
|
*/
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
|
-
/**
|
|
340
|
-
* GLN/ILN as location identifier for this address
|
|
341
|
-
*/
|
|
342
|
-
globalLocationNumber: string;
|
|
343
|
-
|
|
344
339
|
/**
|
|
345
340
|
* Leitweg-ID
|
|
346
341
|
*/
|
|
347
342
|
buyerReference: string;
|
|
348
343
|
|
|
349
344
|
/**
|
|
350
|
-
*
|
|
345
|
+
* GLN/ILN as location identifier for this address
|
|
351
346
|
*/
|
|
352
|
-
|
|
347
|
+
globalLocationNumber: string;
|
|
353
348
|
|
|
354
349
|
/**
|
|
355
350
|
* Custom data
|
|
356
351
|
*/
|
|
357
352
|
custom: EavAccountaddress;
|
|
358
353
|
|
|
354
|
+
/**
|
|
355
|
+
* abweichende Zahlungsart
|
|
356
|
+
*/
|
|
357
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
358
|
+
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
361
361
|
*/
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
taxIdentificationNumber: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Additional address line2
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
additionalAddressLine2: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Parcel station
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
parcelStation: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* Contacts
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
contacts: Array<Contact>;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* abweichende Zahlungsbedingungen
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* name of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankName: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* post-code of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankPostCode: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* account from, if differs from account-address
|
|
@@ -494,26 +494,26 @@ export interface AccountBankdetail {
|
|
|
494
494
|
*/
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
|
-
/**
|
|
498
|
-
* city of the bank
|
|
499
|
-
*/
|
|
500
|
-
bankCity: string;
|
|
501
|
-
|
|
502
497
|
/**
|
|
503
498
|
* Hauptbankverbindung für
|
|
504
499
|
*/
|
|
505
500
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
501
|
|
|
507
502
|
/**
|
|
508
|
-
*
|
|
503
|
+
* city of the bank
|
|
509
504
|
*/
|
|
510
|
-
|
|
505
|
+
bankCity: string;
|
|
511
506
|
|
|
512
507
|
/**
|
|
513
508
|
* Is default bank?
|
|
514
509
|
*/
|
|
515
510
|
defaultBank: boolean;
|
|
516
511
|
|
|
512
|
+
/**
|
|
513
|
+
* origin type
|
|
514
|
+
*/
|
|
515
|
+
originType: AccountBankdetail$OriginType;
|
|
516
|
+
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
519
519
|
*/
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Kreditlimit
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
maximalLoan: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
payablesSum: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* First name
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
firstName: string;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* Default contacts
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1029,11 +1029,6 @@ export interface Article {
|
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
-
/**
|
|
1033
|
-
* is this product sellable without any quantity at the stock
|
|
1034
|
-
*/
|
|
1035
|
-
sellableWithoutStock: boolean;
|
|
1036
|
-
|
|
1037
1032
|
/**
|
|
1038
1033
|
* Seriennummern Auszeichnungsart
|
|
1039
1034
|
*/
|
|
@@ -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
|
*/
|
|
@@ -1075,14 +1075,14 @@ export interface Article {
|
|
|
1075
1075
|
number: string;
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
|
-
*
|
|
1078
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
|
-
*
|
|
1083
|
+
* weight and size w.o. packaging
|
|
1084
1084
|
*/
|
|
1085
|
-
|
|
1085
|
+
netMetric: Article$Metric;
|
|
1086
1086
|
|
|
1087
1087
|
/**
|
|
1088
1088
|
* is this product mergeable to another package-variant
|
|
@@ -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
|
|
@@ -1284,6 +1284,11 @@ export interface Article {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
|
+
/**
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
|
+
*/
|
|
1290
|
+
defaultFabricationCost: number;
|
|
1291
|
+
|
|
1287
1292
|
/**
|
|
1288
1293
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1294
|
*/
|
|
@@ -1294,11 +1299,6 @@ export interface Article {
|
|
|
1294
1299
|
*/
|
|
1295
1300
|
grossSalesPrice: number;
|
|
1296
1301
|
|
|
1297
|
-
/**
|
|
1298
|
-
* Vorgabe Herstellungskosten
|
|
1299
|
-
*/
|
|
1300
|
-
defaultFabricationCost: number;
|
|
1301
|
-
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -1319,6 +1319,11 @@ export interface Article {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
productRef: ApiObjectReference;
|
|
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 {
|
|
@@ -1588,15 +1588,20 @@ export interface ArticleCustomer {
|
|
|
1588
1588
|
*/
|
|
1589
1589
|
articleName: string;
|
|
1590
1590
|
|
|
1591
|
+
/**
|
|
1592
|
+
* Etikettdruck-Einstellungen
|
|
1593
|
+
*/
|
|
1594
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1595
|
+
|
|
1591
1596
|
/**
|
|
1592
1597
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1593
1598
|
*/
|
|
1594
1599
|
useDeviatingArticleIdentifier: boolean;
|
|
1595
1600
|
|
|
1596
1601
|
/**
|
|
1597
|
-
*
|
|
1602
|
+
* Kunden-Preise
|
|
1598
1603
|
*/
|
|
1599
|
-
|
|
1604
|
+
productPrices: Array<ProductPrice>;
|
|
1600
1605
|
|
|
1601
1606
|
/**
|
|
1602
1607
|
* Referenced Article
|
|
@@ -1608,11 +1613,6 @@ export interface ArticleCustomer {
|
|
|
1608
1613
|
*/
|
|
1609
1614
|
useDeviatingArticleDescription: boolean;
|
|
1610
1615
|
|
|
1611
|
-
/**
|
|
1612
|
-
* Kunden-Preise
|
|
1613
|
-
*/
|
|
1614
|
-
productPrices: Array<ProductPrice>;
|
|
1615
|
-
|
|
1616
1616
|
/**
|
|
1617
1617
|
* Aktiv?
|
|
1618
1618
|
*/
|
|
@@ -1741,14 +1741,14 @@ export interface ArticleListing {
|
|
|
1741
1741
|
identifiers: WithDefaults<List<ArticleIdentifier>>;
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
|
-
*
|
|
1744
|
+
* custom data
|
|
1745
1745
|
*/
|
|
1746
|
-
|
|
1746
|
+
custom: EavArticleListing;
|
|
1747
1747
|
|
|
1748
1748
|
/**
|
|
1749
|
-
*
|
|
1749
|
+
* is this product sellable without any quantity at the stock
|
|
1750
1750
|
*/
|
|
1751
|
-
|
|
1751
|
+
sellableWithoutStock: boolean;
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
1754
|
* description custom data
|
|
@@ -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
|
|
@@ -1983,15 +1983,20 @@ export const enum ArticleSerialType {
|
|
|
1983
1983
|
|
|
1984
1984
|
export interface ArticleStorage {
|
|
1985
1985
|
|
|
1986
|
+
/**
|
|
1987
|
+
* Bestand im Lager
|
|
1988
|
+
*/
|
|
1989
|
+
quantityInStock: number;
|
|
1990
|
+
|
|
1986
1991
|
/**
|
|
1987
1992
|
* Nachschub ab
|
|
1988
1993
|
*/
|
|
1989
1994
|
replenishmentFrom: number;
|
|
1990
1995
|
|
|
1991
1996
|
/**
|
|
1992
|
-
*
|
|
1997
|
+
* Bestellte Menge
|
|
1993
1998
|
*/
|
|
1994
|
-
|
|
1999
|
+
orderedQuantity: number;
|
|
1995
2000
|
|
|
1996
2001
|
/**
|
|
1997
2002
|
* Meldebestand
|
|
@@ -2003,11 +2008,6 @@ export interface ArticleStorage {
|
|
|
2003
2008
|
*/
|
|
2004
2009
|
quantityInPicking: number;
|
|
2005
2010
|
|
|
2006
|
-
/**
|
|
2007
|
-
* Bestellte Menge
|
|
2008
|
-
*/
|
|
2009
|
-
orderedQuantity: number;
|
|
2010
|
-
|
|
2011
2011
|
/**
|
|
2012
2012
|
* Nachschub auf
|
|
2013
2013
|
*/
|
|
@@ -2086,11 +2086,6 @@ export interface ArticleStorage {
|
|
|
2086
2086
|
|
|
2087
2087
|
export interface ArticleSupplier {
|
|
2088
2088
|
|
|
2089
|
-
/**
|
|
2090
|
-
* Anzeigename des Accounts
|
|
2091
|
-
*/
|
|
2092
|
-
accountDisplayName: string;
|
|
2093
|
-
|
|
2094
2089
|
/**
|
|
2095
2090
|
* Lieferanten-Meldebestand
|
|
2096
2091
|
*/
|
|
@@ -2102,15 +2097,20 @@ export interface ArticleSupplier {
|
|
|
2102
2097
|
useSupplierArticleDescription: boolean;
|
|
2103
2098
|
|
|
2104
2099
|
/**
|
|
2105
|
-
*
|
|
2100
|
+
* Anzeigename des Accounts
|
|
2106
2101
|
*/
|
|
2107
|
-
|
|
2102
|
+
accountDisplayName: string;
|
|
2108
2103
|
|
|
2109
2104
|
/**
|
|
2110
2105
|
* Lieferzeit in (Werk-)Tagen
|
|
2111
2106
|
*/
|
|
2112
2107
|
deliveryTime: number;
|
|
2113
2108
|
|
|
2109
|
+
/**
|
|
2110
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2111
|
+
*/
|
|
2112
|
+
useSupplierArticleIdentifier: boolean;
|
|
2113
|
+
|
|
2114
2114
|
/**
|
|
2115
2115
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2116
2116
|
*/
|
|
@@ -2167,14 +2167,14 @@ export interface ArticleSupplier {
|
|
|
2167
2167
|
packagingUnit: number;
|
|
2168
2168
|
|
|
2169
2169
|
/**
|
|
2170
|
-
*
|
|
2170
|
+
* Lieferanten-Preise
|
|
2171
2171
|
*/
|
|
2172
|
-
|
|
2172
|
+
productPrices: Array<ProductPrice>;
|
|
2173
2173
|
|
|
2174
2174
|
/**
|
|
2175
|
-
*
|
|
2175
|
+
* Referenced Article
|
|
2176
2176
|
*/
|
|
2177
|
-
|
|
2177
|
+
articleId: number;
|
|
2178
2178
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* Aktiv?
|
|
@@ -2211,11 +2211,6 @@ export interface ArticleSupplier {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
defaultNetPrice: number;
|
|
2213
2213
|
|
|
2214
|
-
/**
|
|
2215
|
-
* Referenced Supplier-Account
|
|
2216
|
-
*/
|
|
2217
|
-
accountId: number;
|
|
2218
|
-
|
|
2219
2214
|
/**
|
|
2220
2215
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2221
2216
|
*/
|
|
@@ -2226,6 +2221,11 @@ export interface ArticleSupplier {
|
|
|
2226
2221
|
*/
|
|
2227
2222
|
purchaseUnit: number;
|
|
2228
2223
|
|
|
2224
|
+
/**
|
|
2225
|
+
* Referenced Supplier-Account
|
|
2226
|
+
*/
|
|
2227
|
+
accountId: number;
|
|
2228
|
+
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2231
2231
|
*/
|
|
@@ -2328,14 +2328,14 @@ export interface Asset {
|
|
|
2328
2328
|
billingAddressRef: ApiObjectReference;
|
|
2329
2329
|
|
|
2330
2330
|
/**
|
|
2331
|
-
*
|
|
2331
|
+
* Vertrag
|
|
2332
2332
|
*/
|
|
2333
|
-
|
|
2333
|
+
contractRef: ApiObjectReference;
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
*
|
|
2336
|
+
* Zusatzadresse
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
accountAddressRef: ApiObjectReference;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
2341
|
* Asset-Nummer
|
|
@@ -2668,14 +2668,14 @@ export interface CountryReference {
|
|
|
2668
2668
|
export interface CreateNewDocumentRequest {
|
|
2669
2669
|
|
|
2670
2670
|
/**
|
|
2671
|
-
*
|
|
2671
|
+
* Belegart
|
|
2672
2672
|
*/
|
|
2673
|
-
|
|
2673
|
+
documentTypeLabel: string;
|
|
2674
2674
|
|
|
2675
2675
|
/**
|
|
2676
|
-
* Belegart
|
|
2676
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2677
2677
|
*/
|
|
2678
|
-
|
|
2678
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
2681
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -3339,14 +3339,14 @@ export interface CrmProject {
|
|
|
3339
3339
|
billedTimes: number;
|
|
3340
3340
|
|
|
3341
3341
|
/**
|
|
3342
|
-
*
|
|
3342
|
+
* Geplanter Projektzeitraum (von)
|
|
3343
3343
|
*/
|
|
3344
|
-
|
|
3344
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3345
3345
|
|
|
3346
3346
|
/**
|
|
3347
|
-
*
|
|
3347
|
+
* Einkaufsbelege
|
|
3348
3348
|
*/
|
|
3349
|
-
|
|
3349
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3350
3350
|
|
|
3351
3351
|
/**
|
|
3352
3352
|
* Verkaufsbelege
|
|
@@ -4015,14 +4015,14 @@ export interface CurrencyReference {
|
|
|
4015
4015
|
export interface Customer {
|
|
4016
4016
|
|
|
4017
4017
|
/**
|
|
4018
|
-
*
|
|
4018
|
+
* Option für die Stapelverarbeitung
|
|
4019
4019
|
*/
|
|
4020
|
-
|
|
4020
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
4021
4021
|
|
|
4022
4022
|
/**
|
|
4023
|
-
*
|
|
4023
|
+
* reference to customer group
|
|
4024
4024
|
*/
|
|
4025
|
-
|
|
4025
|
+
customerGroupRef: ApiObjectReference;
|
|
4026
4026
|
|
|
4027
4027
|
/**
|
|
4028
4028
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -4040,14 +4040,14 @@ export interface Customer {
|
|
|
4040
4040
|
dueDate: ScriptingDate;
|
|
4041
4041
|
|
|
4042
4042
|
/**
|
|
4043
|
-
*
|
|
4043
|
+
* Maximal mögliche Lieferungen
|
|
4044
4044
|
*/
|
|
4045
|
-
|
|
4045
|
+
maxDeliveries: number;
|
|
4046
4046
|
|
|
4047
4047
|
/**
|
|
4048
|
-
*
|
|
4048
|
+
* collective billable
|
|
4049
4049
|
*/
|
|
4050
|
-
|
|
4050
|
+
collectiveBillable: boolean;
|
|
4051
4051
|
|
|
4052
4052
|
/**
|
|
4053
4053
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4100,14 +4100,14 @@ export interface Customer {
|
|
|
4100
4100
|
info: MetaInfo;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* tax able or tax free
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
taxable: boolean;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* reference to the delivery method
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* active true/false
|
|
@@ -4168,14 +4168,14 @@ export interface DangerousGoodInformation {
|
|
|
4168
4168
|
tunnelRestrictionCode: TunnelRestrictionCode;
|
|
4169
4169
|
|
|
4170
4170
|
/**
|
|
4171
|
-
*
|
|
4171
|
+
* description
|
|
4172
4172
|
*/
|
|
4173
|
-
|
|
4173
|
+
description: string;
|
|
4174
4174
|
|
|
4175
4175
|
/**
|
|
4176
|
-
*
|
|
4176
|
+
* transportation category
|
|
4177
4177
|
*/
|
|
4178
|
-
|
|
4178
|
+
transportCategory: string;
|
|
4179
4179
|
|
|
4180
4180
|
/**
|
|
4181
4181
|
* technical name
|
|
@@ -4258,15 +4258,20 @@ export const enum DealNotificationEventConfig {
|
|
|
4258
4258
|
|
|
4259
4259
|
export interface DeliveryMethod {
|
|
4260
4260
|
|
|
4261
|
+
/**
|
|
4262
|
+
* E-Mail an Versender übergeben
|
|
4263
|
+
*/
|
|
4264
|
+
forwardEmailToShipper: boolean;
|
|
4265
|
+
|
|
4261
4266
|
/**
|
|
4262
4267
|
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4263
4268
|
*/
|
|
4264
4269
|
splitIntoNewDocument: boolean;
|
|
4265
4270
|
|
|
4266
4271
|
/**
|
|
4267
|
-
*
|
|
4272
|
+
* Barcode
|
|
4268
4273
|
*/
|
|
4269
|
-
|
|
4274
|
+
identifier: string;
|
|
4270
4275
|
|
|
4271
4276
|
/**
|
|
4272
4277
|
* Min. Gewicht pro Paket
|
|
@@ -4318,26 +4323,26 @@ export interface DeliveryMethod {
|
|
|
4318
4323
|
*/
|
|
4319
4324
|
defaultSizeUnit: UnitTypeReference;
|
|
4320
4325
|
|
|
4321
|
-
/**
|
|
4322
|
-
* Quelle für Paketgewicht
|
|
4323
|
-
*/
|
|
4324
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4325
|
-
|
|
4326
4326
|
/**
|
|
4327
4327
|
* translations
|
|
4328
4328
|
*/
|
|
4329
4329
|
translations: Array<DocumentTypeTerm>;
|
|
4330
4330
|
|
|
4331
4331
|
/**
|
|
4332
|
-
*
|
|
4332
|
+
* Quelle für Paketgewicht
|
|
4333
4333
|
*/
|
|
4334
|
-
|
|
4334
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4335
4335
|
|
|
4336
4336
|
/**
|
|
4337
4337
|
* Versand-Anbieter
|
|
4338
4338
|
*/
|
|
4339
4339
|
vdsCarrierId: number;
|
|
4340
4340
|
|
|
4341
|
+
/**
|
|
4342
|
+
* Gültige Ländercodes
|
|
4343
|
+
*/
|
|
4344
|
+
validCountryCodes: Array<string>;
|
|
4345
|
+
|
|
4341
4346
|
/**
|
|
4342
4347
|
* Standardgewichtseinheit
|
|
4343
4348
|
*/
|
|
@@ -4585,14 +4590,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4585
4590
|
baseDepositPaymentAmount: number;
|
|
4586
4591
|
|
|
4587
4592
|
/**
|
|
4588
|
-
*
|
|
4593
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4589
4594
|
*/
|
|
4590
|
-
|
|
4595
|
+
totalBeforeModifier: number;
|
|
4591
4596
|
|
|
4592
4597
|
/**
|
|
4593
|
-
*
|
|
4598
|
+
* Ist der Beleg festgeschrieben?
|
|
4594
4599
|
*/
|
|
4595
|
-
|
|
4600
|
+
frozen: boolean;
|
|
4596
4601
|
|
|
4597
4602
|
/**
|
|
4598
4603
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4680,14 +4685,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4680
4685
|
supplierNumber: string;
|
|
4681
4686
|
|
|
4682
4687
|
/**
|
|
4683
|
-
*
|
|
4688
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4684
4689
|
*/
|
|
4685
|
-
|
|
4690
|
+
deliveryApproved: boolean;
|
|
4686
4691
|
|
|
4687
4692
|
/**
|
|
4688
|
-
*
|
|
4693
|
+
* Gesamtpreis brutto
|
|
4689
4694
|
*/
|
|
4690
|
-
|
|
4695
|
+
totalGrossPrice: number;
|
|
4691
4696
|
|
|
4692
4697
|
/**
|
|
4693
4698
|
* Kassen-Zahlungspositionen
|
|
@@ -4732,14 +4737,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4732
4737
|
contractDetail: DocumentContractDetail;
|
|
4733
4738
|
|
|
4734
4739
|
/**
|
|
4735
|
-
*
|
|
4740
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4736
4741
|
*/
|
|
4737
|
-
|
|
4742
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4738
4743
|
|
|
4739
4744
|
/**
|
|
4740
|
-
*
|
|
4745
|
+
* Zahlungsplan vorhanden?
|
|
4741
4746
|
*/
|
|
4742
|
-
|
|
4747
|
+
paymentPlan: boolean;
|
|
4743
4748
|
|
|
4744
4749
|
/**
|
|
4745
4750
|
* Produktionsdetails
|
|
@@ -4757,14 +4762,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4757
4762
|
calculationMode: CalculationMode;
|
|
4758
4763
|
|
|
4759
4764
|
/**
|
|
4760
|
-
*
|
|
4765
|
+
* Wird vom Workflow verarbeitet?
|
|
4761
4766
|
*/
|
|
4762
|
-
|
|
4767
|
+
processedByWorkflow: boolean;
|
|
4763
4768
|
|
|
4764
4769
|
/**
|
|
4765
|
-
*
|
|
4770
|
+
* Referenz auf Zahlungsbedingung
|
|
4766
4771
|
*/
|
|
4767
|
-
|
|
4772
|
+
paymentTermRef: PaymentTermRef;
|
|
4768
4773
|
|
|
4769
4774
|
/**
|
|
4770
4775
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4837,14 +4842,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4837
4842
|
additionalInfo: DocumentAdditionalInfo;
|
|
4838
4843
|
|
|
4839
4844
|
/**
|
|
4840
|
-
*
|
|
4845
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4841
4846
|
*/
|
|
4842
|
-
|
|
4847
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4843
4848
|
|
|
4844
4849
|
/**
|
|
4845
|
-
*
|
|
4850
|
+
* Bestelldatum
|
|
4846
4851
|
*/
|
|
4847
|
-
|
|
4852
|
+
orderedOn: ScriptingDate;
|
|
4848
4853
|
|
|
4849
4854
|
/**
|
|
4850
4855
|
* MetaInformations for this Object
|
|
@@ -4867,14 +4872,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4867
4872
|
dropShipping: boolean;
|
|
4868
4873
|
|
|
4869
4874
|
/**
|
|
4870
|
-
*
|
|
4875
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4871
4876
|
*/
|
|
4872
|
-
|
|
4877
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4873
4878
|
|
|
4874
4879
|
/**
|
|
4875
|
-
*
|
|
4880
|
+
* Gesamtpreis netto
|
|
4876
4881
|
*/
|
|
4877
|
-
|
|
4882
|
+
totalNetPrice: number;
|
|
4878
4883
|
|
|
4879
4884
|
/**
|
|
4880
4885
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4996,6 +5001,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4996
5001
|
*/
|
|
4997
5002
|
taxIdentificationNumber: string;
|
|
4998
5003
|
|
|
5004
|
+
/**
|
|
5005
|
+
* Rückgeld
|
|
5006
|
+
*/
|
|
5007
|
+
posReceiptChangeAmount: number;
|
|
5008
|
+
|
|
4999
5009
|
/**
|
|
5000
5010
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5001
5011
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -5008,11 +5018,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5008
5018
|
*/
|
|
5009
5019
|
deliveryTermRef: ApiObjectReference;
|
|
5010
5020
|
|
|
5011
|
-
/**
|
|
5012
|
-
* Rückgeld
|
|
5013
|
-
*/
|
|
5014
|
-
posReceiptChangeAmount: number;
|
|
5015
|
-
|
|
5016
5021
|
/**
|
|
5017
5022
|
* Gesamtbruttogewicht
|
|
5018
5023
|
*/
|
|
@@ -5082,14 +5087,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5082
5087
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5083
5088
|
|
|
5084
5089
|
/**
|
|
5085
|
-
*
|
|
5090
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5086
5091
|
*/
|
|
5087
|
-
|
|
5092
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5088
5093
|
|
|
5089
5094
|
/**
|
|
5090
|
-
*
|
|
5095
|
+
* Herkunft des Berechnungsmodus
|
|
5091
5096
|
*/
|
|
5092
|
-
|
|
5097
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5093
5098
|
|
|
5094
5099
|
/**
|
|
5095
5100
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5254,14 +5259,14 @@ export interface DocumentAddress {
|
|
|
5254
5259
|
additionalAddressLine2: string;
|
|
5255
5260
|
|
|
5256
5261
|
/**
|
|
5257
|
-
*
|
|
5262
|
+
* Street address number
|
|
5258
5263
|
*/
|
|
5259
|
-
|
|
5264
|
+
streetAddressNumber: string;
|
|
5260
5265
|
|
|
5261
5266
|
/**
|
|
5262
|
-
*
|
|
5267
|
+
* Lieferbedingungen
|
|
5263
5268
|
*/
|
|
5264
|
-
|
|
5269
|
+
deliveryTermRef: ApiObjectReference;
|
|
5265
5270
|
|
|
5266
5271
|
/**
|
|
5267
5272
|
* address line 3
|
|
@@ -5279,14 +5284,14 @@ export interface DocumentAddress {
|
|
|
5279
5284
|
paymentMethodRef: ApiObjectReference;
|
|
5280
5285
|
|
|
5281
5286
|
/**
|
|
5282
|
-
*
|
|
5287
|
+
* salutation for this address
|
|
5283
5288
|
*/
|
|
5284
|
-
|
|
5289
|
+
salutation: string;
|
|
5285
5290
|
|
|
5286
5291
|
/**
|
|
5287
|
-
*
|
|
5292
|
+
* Referenz zum Account
|
|
5288
5293
|
*/
|
|
5289
|
-
|
|
5294
|
+
accountRef: ApiObjectReference;
|
|
5290
5295
|
|
|
5291
5296
|
/**
|
|
5292
5297
|
* address line 2
|
|
@@ -5404,14 +5409,14 @@ export interface DocumentContractDetail {
|
|
|
5404
5409
|
runtimeToDate: ScriptingDate;
|
|
5405
5410
|
|
|
5406
5411
|
/**
|
|
5407
|
-
*
|
|
5412
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5408
5413
|
*/
|
|
5409
|
-
|
|
5414
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5410
5415
|
|
|
5411
5416
|
/**
|
|
5412
|
-
*
|
|
5417
|
+
* Nächste Fälligkeit
|
|
5413
5418
|
*/
|
|
5414
|
-
|
|
5419
|
+
nextDueDate: ScriptingDate;
|
|
5415
5420
|
|
|
5416
5421
|
/**
|
|
5417
5422
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5612,14 +5617,14 @@ export interface DocumentLine {
|
|
|
5612
5617
|
number: string;
|
|
5613
5618
|
|
|
5614
5619
|
/**
|
|
5615
|
-
*
|
|
5620
|
+
* Referenz zur Kundenauftragszeile
|
|
5616
5621
|
*/
|
|
5617
|
-
|
|
5622
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5618
5623
|
|
|
5619
5624
|
/**
|
|
5620
|
-
*
|
|
5625
|
+
* Gesamtbruttogewicht
|
|
5621
5626
|
*/
|
|
5622
|
-
|
|
5627
|
+
totalGrossWeight: number;
|
|
5623
5628
|
|
|
5624
5629
|
/**
|
|
5625
5630
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5662,14 +5667,14 @@ export interface DocumentLine {
|
|
|
5662
5667
|
id: number;
|
|
5663
5668
|
|
|
5664
5669
|
/**
|
|
5665
|
-
*
|
|
5670
|
+
* Preis pro Einheit in Basiswährung
|
|
5666
5671
|
*/
|
|
5667
|
-
|
|
5672
|
+
basePrice: number;
|
|
5668
5673
|
|
|
5669
5674
|
/**
|
|
5670
|
-
*
|
|
5675
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5671
5676
|
*/
|
|
5672
|
-
|
|
5677
|
+
positionOfArticleLine: number;
|
|
5673
5678
|
|
|
5674
5679
|
/**
|
|
5675
5680
|
* Serientyp
|
|
@@ -5706,6 +5711,11 @@ export interface DocumentLine {
|
|
|
5706
5711
|
*/
|
|
5707
5712
|
version: number;
|
|
5708
5713
|
|
|
5714
|
+
/**
|
|
5715
|
+
* Externer Artikelname
|
|
5716
|
+
*/
|
|
5717
|
+
externalArticleName: string;
|
|
5718
|
+
|
|
5709
5719
|
/**
|
|
5710
5720
|
* Gesamtnettogewicht
|
|
5711
5721
|
*/
|
|
@@ -5952,14 +5962,14 @@ export interface DocumentLine {
|
|
|
5952
5962
|
position: number;
|
|
5953
5963
|
|
|
5954
5964
|
/**
|
|
5955
|
-
*
|
|
5965
|
+
* Buchungen
|
|
5956
5966
|
*/
|
|
5957
|
-
|
|
5967
|
+
bookings: Array<DocumentLineBooking>;
|
|
5958
5968
|
|
|
5959
5969
|
/**
|
|
5960
|
-
*
|
|
5970
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5961
5971
|
*/
|
|
5962
|
-
|
|
5972
|
+
recalcLinePriceViaComponents: boolean;
|
|
5963
5973
|
|
|
5964
5974
|
/**
|
|
5965
5975
|
* unit gross Volume in cubic meters
|
|
@@ -6052,14 +6062,14 @@ export interface DocumentLine {
|
|
|
6052
6062
|
custom: EavDocumentline;
|
|
6053
6063
|
|
|
6054
6064
|
/**
|
|
6055
|
-
*
|
|
6065
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
6056
6066
|
*/
|
|
6057
|
-
|
|
6067
|
+
settledOpenItemComment: string;
|
|
6058
6068
|
|
|
6059
6069
|
/**
|
|
6060
|
-
*
|
|
6070
|
+
* Artikel
|
|
6061
6071
|
*/
|
|
6062
|
-
|
|
6072
|
+
articleId: number;
|
|
6063
6073
|
|
|
6064
6074
|
/**
|
|
6065
6075
|
* Interne Preisänderungsinformationen
|
|
@@ -6081,6 +6091,11 @@ export interface DocumentLine {
|
|
|
6081
6091
|
*/
|
|
6082
6092
|
grossWeight: number;
|
|
6083
6093
|
|
|
6094
|
+
/**
|
|
6095
|
+
* Externe Artikelbeschreibung
|
|
6096
|
+
*/
|
|
6097
|
+
externalArticleDescription: string;
|
|
6098
|
+
|
|
6084
6099
|
/**
|
|
6085
6100
|
* angewendete Preisänderungen
|
|
6086
6101
|
*/
|
|
@@ -6091,6 +6106,11 @@ export interface DocumentLine {
|
|
|
6091
6106
|
*/
|
|
6092
6107
|
previousDecisions: JsonNode;
|
|
6093
6108
|
|
|
6109
|
+
/**
|
|
6110
|
+
* Externe Artikelnummer
|
|
6111
|
+
*/
|
|
6112
|
+
externalArticleNumber: string;
|
|
6113
|
+
|
|
6094
6114
|
/**
|
|
6095
6115
|
* Komponenten
|
|
6096
6116
|
*/
|
|
@@ -6241,14 +6261,14 @@ export interface DocumentLineComponent {
|
|
|
6241
6261
|
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6242
6262
|
|
|
6243
6263
|
/**
|
|
6244
|
-
*
|
|
6264
|
+
* Gelieferte Menge
|
|
6245
6265
|
*/
|
|
6246
|
-
|
|
6266
|
+
quantityCommitted: number;
|
|
6247
6267
|
|
|
6248
6268
|
/**
|
|
6249
|
-
*
|
|
6269
|
+
* Referenz auf den Artikel der Komponente
|
|
6250
6270
|
*/
|
|
6251
|
-
|
|
6271
|
+
articleId: number;
|
|
6252
6272
|
|
|
6253
6273
|
/**
|
|
6254
6274
|
* Beschreibung des Artikels
|
|
@@ -6458,14 +6478,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6458
6478
|
quantityDefective: number;
|
|
6459
6479
|
|
|
6460
6480
|
/**
|
|
6461
|
-
*
|
|
6481
|
+
* Freifeld
|
|
6462
6482
|
*/
|
|
6463
|
-
|
|
6483
|
+
custom: EavFabricationline;
|
|
6464
6484
|
|
|
6465
6485
|
/**
|
|
6466
|
-
*
|
|
6486
|
+
* Produzierte Seriennummern
|
|
6467
6487
|
*/
|
|
6468
|
-
|
|
6488
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6469
6489
|
|
|
6470
6490
|
/**
|
|
6471
6491
|
* Menge produziert
|
|
@@ -6558,6 +6578,11 @@ export interface DocumentLinePosDetail {
|
|
|
6558
6578
|
*/
|
|
6559
6579
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6560
6580
|
|
|
6581
|
+
/**
|
|
6582
|
+
* Kann diese Zahlungsposition aus dem Beleg entfernt werden? false, solange die Zahlung noch läuft oder bereits erfolgreich ausgeführt wurde
|
|
6583
|
+
*/
|
|
6584
|
+
deletable: boolean;
|
|
6585
|
+
|
|
6561
6586
|
/**
|
|
6562
6587
|
* Typ der Einlage/Ausgabe
|
|
6563
6588
|
*/
|
|
@@ -6725,14 +6750,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6725
6750
|
customerShareOnReduction: number;
|
|
6726
6751
|
|
|
6727
6752
|
/**
|
|
6728
|
-
*
|
|
6753
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6729
6754
|
*/
|
|
6730
|
-
|
|
6755
|
+
waitForReturnBeforeExchange: boolean;
|
|
6731
6756
|
|
|
6732
6757
|
/**
|
|
6733
|
-
*
|
|
6758
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6734
6759
|
*/
|
|
6735
|
-
|
|
6760
|
+
deliveryTermRef: ApiObjectReference;
|
|
6736
6761
|
|
|
6737
6762
|
/**
|
|
6738
6763
|
* Referenz auf Retourengrund
|
|
@@ -6889,6 +6914,11 @@ export interface DocumentPosPayment {
|
|
|
6889
6914
|
*/
|
|
6890
6915
|
depositExpenseTypeRef: ApiObjectReference;
|
|
6891
6916
|
|
|
6917
|
+
/**
|
|
6918
|
+
* Kann diese Zahlungsposition aus dem Beleg entfernt werden? false, solange die Zahlung noch läuft oder bereits erfolgreich ausgeführt wurde
|
|
6919
|
+
*/
|
|
6920
|
+
deletable: boolean;
|
|
6921
|
+
|
|
6892
6922
|
/**
|
|
6893
6923
|
* Status der externen Zahlung
|
|
6894
6924
|
*/
|
|
@@ -6910,14 +6940,14 @@ export interface DocumentPosPayment {
|
|
|
6910
6940
|
version: number;
|
|
6911
6941
|
|
|
6912
6942
|
/**
|
|
6913
|
-
*
|
|
6943
|
+
* Zahlungsart
|
|
6914
6944
|
*/
|
|
6915
|
-
|
|
6945
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6916
6946
|
|
|
6917
6947
|
/**
|
|
6918
|
-
*
|
|
6948
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6919
6949
|
*/
|
|
6920
|
-
|
|
6950
|
+
withdrawalAmount: number;
|
|
6921
6951
|
|
|
6922
6952
|
/**
|
|
6923
6953
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -7211,14 +7241,14 @@ export interface DocumentText {
|
|
|
7211
7241
|
transferableIntoSubsequentDocuments: boolean;
|
|
7212
7242
|
|
|
7213
7243
|
/**
|
|
7214
|
-
*
|
|
7244
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7215
7245
|
*/
|
|
7216
|
-
|
|
7246
|
+
textPosition: TextPosition;
|
|
7217
7247
|
|
|
7218
7248
|
/**
|
|
7219
|
-
*
|
|
7249
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7220
7250
|
*/
|
|
7221
|
-
|
|
7251
|
+
deleted: boolean;
|
|
7222
7252
|
|
|
7223
7253
|
/**
|
|
7224
7254
|
* textBaustein Vorlage
|
|
@@ -7328,14 +7358,14 @@ export interface DocumentType {
|
|
|
7328
7358
|
labels: Array<DocumentTypeLabel>;
|
|
7329
7359
|
|
|
7330
7360
|
/**
|
|
7331
|
-
*
|
|
7361
|
+
* Zählerkreis
|
|
7332
7362
|
*/
|
|
7333
|
-
|
|
7363
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7334
7364
|
|
|
7335
7365
|
/**
|
|
7336
|
-
*
|
|
7366
|
+
* nächste Belegnummer
|
|
7337
7367
|
*/
|
|
7338
|
-
|
|
7368
|
+
nextNumber: string;
|
|
7339
7369
|
|
|
7340
7370
|
/**
|
|
7341
7371
|
* Sortierung
|
|
@@ -7516,14 +7546,14 @@ export const enum DropShippingPolicy {
|
|
|
7516
7546
|
export interface DummySerialNumberStockTransferApi {
|
|
7517
7547
|
|
|
7518
7548
|
/**
|
|
7519
|
-
*
|
|
7549
|
+
* Seriennummer
|
|
7520
7550
|
*/
|
|
7521
|
-
|
|
7551
|
+
serialNumberId: number;
|
|
7522
7552
|
|
|
7523
7553
|
/**
|
|
7524
|
-
*
|
|
7554
|
+
* Ziel-Lager
|
|
7525
7555
|
*/
|
|
7526
|
-
|
|
7556
|
+
targetStorageId: number;
|
|
7527
7557
|
|
|
7528
7558
|
/**
|
|
7529
7559
|
* Bemerkung
|
|
@@ -7546,14 +7576,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7546
7576
|
targetExpiryDate: ScriptingDate;
|
|
7547
7577
|
|
|
7548
7578
|
/**
|
|
7549
|
-
*
|
|
7579
|
+
* Menge
|
|
7550
7580
|
*/
|
|
7551
|
-
|
|
7581
|
+
quantity: number;
|
|
7552
7582
|
|
|
7553
7583
|
/**
|
|
7554
|
-
*
|
|
7584
|
+
* Quell-Lagerplatz
|
|
7555
7585
|
*/
|
|
7556
|
-
|
|
7586
|
+
sourceStorageBinId: number;
|
|
7557
7587
|
|
|
7558
7588
|
/**
|
|
7559
7589
|
* Quell-Lager
|
|
@@ -8319,14 +8349,14 @@ export interface OpenItem {
|
|
|
8319
8349
|
version: number;
|
|
8320
8350
|
|
|
8321
8351
|
/**
|
|
8322
|
-
*
|
|
8352
|
+
* List of tags
|
|
8323
8353
|
*/
|
|
8324
|
-
|
|
8354
|
+
tags: Array<TagDto>;
|
|
8325
8355
|
|
|
8326
8356
|
/**
|
|
8327
|
-
*
|
|
8357
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8328
8358
|
*/
|
|
8329
|
-
|
|
8359
|
+
baseSumDiscountableAmount: number;
|
|
8330
8360
|
|
|
8331
8361
|
/**
|
|
8332
8362
|
* Fälligkeitsdatum
|
|
@@ -8389,14 +8419,14 @@ export interface OpenItem {
|
|
|
8389
8419
|
depositPaymentAmount: number;
|
|
8390
8420
|
|
|
8391
8421
|
/**
|
|
8392
|
-
*
|
|
8422
|
+
* Verwendungszweck
|
|
8393
8423
|
*/
|
|
8394
|
-
|
|
8424
|
+
purpose: string;
|
|
8395
8425
|
|
|
8396
8426
|
/**
|
|
8397
|
-
*
|
|
8427
|
+
* free payments
|
|
8398
8428
|
*/
|
|
8399
|
-
|
|
8429
|
+
records: Array<OpenItemRecord>;
|
|
8400
8430
|
|
|
8401
8431
|
/**
|
|
8402
8432
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8469,14 +8499,14 @@ export interface OpenItem {
|
|
|
8469
8499
|
originalPaymentDueDate: ScriptingDate;
|
|
8470
8500
|
|
|
8471
8501
|
/**
|
|
8472
|
-
*
|
|
8502
|
+
* Valutadatum
|
|
8473
8503
|
*/
|
|
8474
|
-
|
|
8504
|
+
valueDate: ScriptingDate;
|
|
8475
8505
|
|
|
8476
8506
|
/**
|
|
8477
|
-
*
|
|
8507
|
+
* whether this open item is balanced, partially paid or open
|
|
8478
8508
|
*/
|
|
8479
|
-
|
|
8509
|
+
balanceState: OpenItemBalanceState;
|
|
8480
8510
|
|
|
8481
8511
|
/**
|
|
8482
8512
|
* Skontobetrag 1
|
|
@@ -8732,14 +8762,14 @@ export interface OpenItemRecord {
|
|
|
8732
8762
|
exchangeRate: number;
|
|
8733
8763
|
|
|
8734
8764
|
/**
|
|
8735
|
-
*
|
|
8765
|
+
* record discountable amount
|
|
8736
8766
|
*/
|
|
8737
|
-
|
|
8767
|
+
discountableAmount: number;
|
|
8738
8768
|
|
|
8739
8769
|
/**
|
|
8740
|
-
*
|
|
8770
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8741
8771
|
*/
|
|
8742
|
-
|
|
8772
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8743
8773
|
|
|
8744
8774
|
/**
|
|
8745
8775
|
* record date
|
|
@@ -9102,11 +9132,6 @@ export interface PaymentTerm {
|
|
|
9102
9132
|
*/
|
|
9103
9133
|
paymentDays1: number;
|
|
9104
9134
|
|
|
9105
|
-
/**
|
|
9106
|
-
* Days for Discount 2
|
|
9107
|
-
*/
|
|
9108
|
-
paymentDays2: number;
|
|
9109
|
-
|
|
9110
9135
|
/**
|
|
9111
9136
|
* Aktiv?
|
|
9112
9137
|
*/
|
|
@@ -9117,6 +9142,11 @@ export interface PaymentTerm {
|
|
|
9117
9142
|
*/
|
|
9118
9143
|
description: string;
|
|
9119
9144
|
|
|
9145
|
+
/**
|
|
9146
|
+
* Days for Discount 2
|
|
9147
|
+
*/
|
|
9148
|
+
paymentDays2: number;
|
|
9149
|
+
|
|
9120
9150
|
/**
|
|
9121
9151
|
* label for this payment term
|
|
9122
9152
|
*/
|
|
@@ -9221,14 +9251,14 @@ export interface PickTrolley {
|
|
|
9221
9251
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9222
9252
|
|
|
9223
9253
|
/**
|
|
9224
|
-
*
|
|
9254
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9225
9255
|
*/
|
|
9226
|
-
|
|
9256
|
+
storageBinRef: StorageBinRef;
|
|
9227
9257
|
|
|
9228
9258
|
/**
|
|
9229
|
-
*
|
|
9259
|
+
* Bearbeiter der Pickliste
|
|
9230
9260
|
*/
|
|
9231
|
-
|
|
9261
|
+
processedByUserRef: ApiObjectReference;
|
|
9232
9262
|
|
|
9233
9263
|
/**
|
|
9234
9264
|
* Beschreibung des Wagens
|
|
@@ -9361,6 +9391,12 @@ export const enum PickTrolleyType {
|
|
|
9361
9391
|
FOR_CONSOLIDATION = 'FOR_CONSOLIDATION'
|
|
9362
9392
|
}
|
|
9363
9393
|
|
|
9394
|
+
export const enum PickingArticleProcessing {
|
|
9395
|
+
FREE = 'FREE',
|
|
9396
|
+
SCAN_ONCE = 'SCAN_ONCE',
|
|
9397
|
+
SCAN_ALWAYS = 'SCAN_ALWAYS'
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9364
9400
|
export const enum PickingDeviatingQuantity {
|
|
9365
9401
|
ALLOW_ONLY_ORDERED_QUANTITY = 'ALLOW_ONLY_ORDERED_QUANTITY',
|
|
9366
9402
|
ALLOW_MINOR_QUANTITY = 'ALLOW_MINOR_QUANTITY',
|
|
@@ -9777,6 +9813,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9777
9813
|
*/
|
|
9778
9814
|
confirmedDeliveryDateRange: PicklistTemplate$DateRange;
|
|
9779
9815
|
|
|
9816
|
+
/**
|
|
9817
|
+
* dürfen nur gültige Lieferarten genutz werden?
|
|
9818
|
+
*/
|
|
9819
|
+
allowOnlyDefinedDeliveryMethods: boolean;
|
|
9820
|
+
|
|
9780
9821
|
/**
|
|
9781
9822
|
* Minimale Anzahl Artikel pro Auftrag
|
|
9782
9823
|
*/
|
|
@@ -9802,11 +9843,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9802
9843
|
*/
|
|
9803
9844
|
maxOrderValue: number;
|
|
9804
9845
|
|
|
9805
|
-
/**
|
|
9806
|
-
* Nur vollständig lieferbare Positionen
|
|
9807
|
-
*/
|
|
9808
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
9809
|
-
|
|
9810
9846
|
/**
|
|
9811
9847
|
* Selektion über den Bereich vom Lieferdatum
|
|
9812
9848
|
*/
|
|
@@ -9818,20 +9854,25 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9818
9854
|
maxOrderCount: number;
|
|
9819
9855
|
|
|
9820
9856
|
/**
|
|
9821
|
-
*
|
|
9857
|
+
* Nur vollständig lieferbare Positionen
|
|
9822
9858
|
*/
|
|
9823
|
-
|
|
9859
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9824
9860
|
|
|
9825
9861
|
/**
|
|
9826
|
-
*
|
|
9862
|
+
* Selektion über den Bereich vom Belegdatum
|
|
9827
9863
|
*/
|
|
9828
|
-
|
|
9864
|
+
documentDateRange: PicklistTemplate$DateRange;
|
|
9829
9865
|
|
|
9830
9866
|
/**
|
|
9831
9867
|
* Id des salesChannels der bei der Selektion berücksichtigt wird
|
|
9832
9868
|
*/
|
|
9833
9869
|
salesChannelId: number;
|
|
9834
9870
|
|
|
9871
|
+
/**
|
|
9872
|
+
* Liste von gültigen Lagerbereichen
|
|
9873
|
+
*/
|
|
9874
|
+
storageAreaRefs: Array<ApiObjectReference>;
|
|
9875
|
+
|
|
9835
9876
|
/**
|
|
9836
9877
|
* Nur vollständig lieferbare Aufträge
|
|
9837
9878
|
*/
|
|
@@ -9895,11 +9936,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9895
9936
|
*/
|
|
9896
9937
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9897
9938
|
|
|
9898
|
-
/**
|
|
9899
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9900
|
-
*/
|
|
9901
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9902
|
-
|
|
9903
9939
|
/**
|
|
9904
9940
|
* Lagerplätze vorgeben
|
|
9905
9941
|
*/
|
|
@@ -9911,15 +9947,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9911
9947
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9912
9948
|
|
|
9913
9949
|
/**
|
|
9914
|
-
*
|
|
9950
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9915
9951
|
*/
|
|
9916
|
-
|
|
9952
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9917
9953
|
|
|
9918
9954
|
/**
|
|
9919
9955
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9920
9956
|
*/
|
|
9921
9957
|
sortByRoutePosition: boolean;
|
|
9922
9958
|
|
|
9959
|
+
/**
|
|
9960
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9961
|
+
*/
|
|
9962
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9963
|
+
|
|
9923
9964
|
/**
|
|
9924
9965
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9925
9966
|
*/
|
|
@@ -9938,6 +9979,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9938
9979
|
*/
|
|
9939
9980
|
autoPrintShippingLabel: boolean;
|
|
9940
9981
|
|
|
9982
|
+
/**
|
|
9983
|
+
* Dürfen Artikel nur per Scan (oder z.B. auch Eingabe der Artikelnummer) erfasst werden
|
|
9984
|
+
*/
|
|
9985
|
+
articleScanRequirement: PickingArticleProcessing;
|
|
9986
|
+
|
|
9941
9987
|
/**
|
|
9942
9988
|
* Ist das Überspringen von Positionen erlaubt?
|
|
9943
9989
|
*/
|
|
@@ -9948,11 +9994,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9948
9994
|
*/
|
|
9949
9995
|
autoPickingFinishAfterLastArticleInOrder: boolean;
|
|
9950
9996
|
|
|
9951
|
-
/**
|
|
9952
|
-
* Dürfen Artikel nur per Scan (oder z.B. auch Eingabe der Artikelnummer) erfasst werden
|
|
9953
|
-
*/
|
|
9954
|
-
allowOnlyScanOfArticles: boolean;
|
|
9955
|
-
|
|
9956
9997
|
/**
|
|
9957
9998
|
* Pick'n'Pack verwenden
|
|
9958
9999
|
*/
|
|
@@ -9969,14 +10010,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9969
10010
|
alwaysShowDeliveryMethod: boolean;
|
|
9970
10011
|
|
|
9971
10012
|
/**
|
|
9972
|
-
*
|
|
10013
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9973
10014
|
*/
|
|
9974
|
-
|
|
10015
|
+
autoPrintDeliveryDocument: boolean;
|
|
9975
10016
|
|
|
9976
10017
|
/**
|
|
9977
|
-
*
|
|
10018
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9978
10019
|
*/
|
|
9979
|
-
|
|
10020
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9980
10021
|
|
|
9981
10022
|
/**
|
|
9982
10023
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -9984,24 +10025,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9984
10025
|
showShippingFormOnPickingFinish: boolean;
|
|
9985
10026
|
|
|
9986
10027
|
/**
|
|
9987
|
-
*
|
|
10028
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9988
10029
|
*/
|
|
9989
|
-
|
|
10030
|
+
printLabelOnScan: boolean;
|
|
9990
10031
|
|
|
9991
10032
|
/**
|
|
9992
|
-
*
|
|
10033
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9993
10034
|
*/
|
|
9994
|
-
|
|
10035
|
+
allowPickingOfServiceArticles: boolean;
|
|
9995
10036
|
|
|
9996
10037
|
/**
|
|
9997
|
-
*
|
|
10038
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9998
10039
|
*/
|
|
9999
|
-
|
|
10040
|
+
useDigitalPicklist: boolean;
|
|
10000
10041
|
|
|
10001
10042
|
/**
|
|
10002
|
-
*
|
|
10043
|
+
* Sammelbestätigung erlauben
|
|
10003
10044
|
*/
|
|
10004
|
-
|
|
10045
|
+
allowFullConfirmation: boolean;
|
|
10005
10046
|
|
|
10006
10047
|
/**
|
|
10007
10048
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10019,14 +10060,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10019
10060
|
printLabelOnCompleteOrder: boolean;
|
|
10020
10061
|
|
|
10021
10062
|
/**
|
|
10022
|
-
*
|
|
10063
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10023
10064
|
*/
|
|
10024
|
-
|
|
10065
|
+
printLabelAfterPicking: boolean;
|
|
10025
10066
|
|
|
10026
10067
|
/**
|
|
10027
|
-
*
|
|
10068
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10028
10069
|
*/
|
|
10029
|
-
|
|
10070
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10030
10071
|
|
|
10031
10072
|
/**
|
|
10032
10073
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10042,6 +10083,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10042
10083
|
* Zielmengen in Masken verstecken?
|
|
10043
10084
|
*/
|
|
10044
10085
|
hideTargetQuantityInViews: boolean;
|
|
10086
|
+
|
|
10087
|
+
/**
|
|
10088
|
+
* Lagerplätze müssen erfasst werden, trotz Vorgabe
|
|
10089
|
+
*/
|
|
10090
|
+
alwaysRequireScanOfStorageBin: boolean;
|
|
10045
10091
|
}
|
|
10046
10092
|
|
|
10047
10093
|
export interface PicklistTemplate$PicklistScript {
|
|
@@ -10307,14 +10353,14 @@ export interface ProductArticleRef {
|
|
|
10307
10353
|
export interface ProductDiscount {
|
|
10308
10354
|
|
|
10309
10355
|
/**
|
|
10310
|
-
*
|
|
10356
|
+
* Kundengruppe
|
|
10311
10357
|
*/
|
|
10312
|
-
|
|
10358
|
+
customerGroupRef: ApiObjectReference;
|
|
10313
10359
|
|
|
10314
10360
|
/**
|
|
10315
|
-
*
|
|
10361
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10316
10362
|
*/
|
|
10317
|
-
|
|
10363
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10318
10364
|
|
|
10319
10365
|
/**
|
|
10320
10366
|
* Lieferantengruppe
|
|
@@ -10342,14 +10388,14 @@ export interface ProductDiscount {
|
|
|
10342
10388
|
validFrom: ScriptingDate;
|
|
10343
10389
|
|
|
10344
10390
|
/**
|
|
10345
|
-
*
|
|
10391
|
+
* Bestimmt die Art des Rabatts
|
|
10346
10392
|
*/
|
|
10347
|
-
|
|
10393
|
+
modifierType: PriceModifierType;
|
|
10348
10394
|
|
|
10349
10395
|
/**
|
|
10350
|
-
*
|
|
10396
|
+
* Warengruppe
|
|
10351
10397
|
*/
|
|
10352
|
-
|
|
10398
|
+
productGroupRef: ApiObjectReference;
|
|
10353
10399
|
|
|
10354
10400
|
/**
|
|
10355
10401
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10367,14 +10413,14 @@ export interface ProductDiscount {
|
|
|
10367
10413
|
currencyRef: CurrencyReference;
|
|
10368
10414
|
|
|
10369
10415
|
/**
|
|
10370
|
-
*
|
|
10416
|
+
* Wert des Rabatts
|
|
10371
10417
|
*/
|
|
10372
|
-
|
|
10418
|
+
modifierValue: number;
|
|
10373
10419
|
|
|
10374
10420
|
/**
|
|
10375
|
-
*
|
|
10421
|
+
* Preisgruppe
|
|
10376
10422
|
*/
|
|
10377
|
-
|
|
10423
|
+
priceGroupRef: ApiObjectReference;
|
|
10378
10424
|
|
|
10379
10425
|
/**
|
|
10380
10426
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10382,14 +10428,14 @@ export interface ProductDiscount {
|
|
|
10382
10428
|
qualifier: ProductPriceQualifier;
|
|
10383
10429
|
|
|
10384
10430
|
/**
|
|
10385
|
-
*
|
|
10431
|
+
* Gültig bis
|
|
10386
10432
|
*/
|
|
10387
|
-
|
|
10433
|
+
validUntil: ScriptingDate;
|
|
10388
10434
|
|
|
10389
10435
|
/**
|
|
10390
|
-
*
|
|
10436
|
+
* Aktionpreis
|
|
10391
10437
|
*/
|
|
10392
|
-
|
|
10438
|
+
specialOfferPrice: boolean;
|
|
10393
10439
|
|
|
10394
10440
|
/**
|
|
10395
10441
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10397,14 +10443,14 @@ export interface ProductDiscount {
|
|
|
10397
10443
|
modifierValueType: ValueType;
|
|
10398
10444
|
|
|
10399
10445
|
/**
|
|
10400
|
-
*
|
|
10446
|
+
* Name des Rabatts
|
|
10401
10447
|
*/
|
|
10402
|
-
|
|
10448
|
+
modifierName: string;
|
|
10403
10449
|
|
|
10404
10450
|
/**
|
|
10405
|
-
*
|
|
10451
|
+
* Account, für den der Rabatt gültig ist
|
|
10406
10452
|
*/
|
|
10407
|
-
|
|
10453
|
+
accountRef: ApiObjectReference;
|
|
10408
10454
|
|
|
10409
10455
|
/**
|
|
10410
10456
|
* Unique identifier of the Object
|
|
@@ -10435,14 +10481,14 @@ export interface ProductGroup {
|
|
|
10435
10481
|
targetTradingMargin: number;
|
|
10436
10482
|
|
|
10437
10483
|
/**
|
|
10438
|
-
*
|
|
10484
|
+
* Freifeld
|
|
10439
10485
|
*/
|
|
10440
|
-
|
|
10486
|
+
custom: EavProductgroup;
|
|
10441
10487
|
|
|
10442
10488
|
/**
|
|
10443
|
-
*
|
|
10489
|
+
* main product group
|
|
10444
10490
|
*/
|
|
10445
|
-
|
|
10491
|
+
mainGroupRef: ApiObjectReference;
|
|
10446
10492
|
|
|
10447
10493
|
/**
|
|
10448
10494
|
* warengruppe aktiv ja/nein
|
|
@@ -10521,14 +10567,14 @@ export interface ProductMainGroup {
|
|
|
10521
10567
|
export interface ProductPrice {
|
|
10522
10568
|
|
|
10523
10569
|
/**
|
|
10524
|
-
*
|
|
10570
|
+
* Kundengruppe
|
|
10525
10571
|
*/
|
|
10526
|
-
|
|
10572
|
+
customerGroupRef: ApiObjectReference;
|
|
10527
10573
|
|
|
10528
10574
|
/**
|
|
10529
|
-
*
|
|
10575
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10530
10576
|
*/
|
|
10531
|
-
|
|
10577
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10532
10578
|
|
|
10533
10579
|
/**
|
|
10534
10580
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10620,11 +10666,6 @@ export interface ProductPrice {
|
|
|
10620
10666
|
*/
|
|
10621
10667
|
qualifier: ProductPriceQualifier;
|
|
10622
10668
|
|
|
10623
|
-
/**
|
|
10624
|
-
* Aktionpreis
|
|
10625
|
-
*/
|
|
10626
|
-
specialOfferPrice: boolean;
|
|
10627
|
-
|
|
10628
10669
|
/**
|
|
10629
10670
|
* Preisbasis
|
|
10630
10671
|
*/
|
|
@@ -10635,6 +10676,11 @@ export interface ProductPrice {
|
|
|
10635
10676
|
*/
|
|
10636
10677
|
validUntil: ScriptingDate;
|
|
10637
10678
|
|
|
10679
|
+
/**
|
|
10680
|
+
* Aktionpreis
|
|
10681
|
+
*/
|
|
10682
|
+
specialOfferPrice: boolean;
|
|
10683
|
+
|
|
10638
10684
|
/**
|
|
10639
10685
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10640
10686
|
*/
|
|
@@ -10811,14 +10857,14 @@ export interface RequestDocument {
|
|
|
10811
10857
|
deliveryTermId: number;
|
|
10812
10858
|
|
|
10813
10859
|
/**
|
|
10814
|
-
*
|
|
10860
|
+
* Dokumentzeilen
|
|
10815
10861
|
*/
|
|
10816
|
-
|
|
10862
|
+
lines: Array<RequestDocumentLine>;
|
|
10817
10863
|
|
|
10818
10864
|
/**
|
|
10819
|
-
*
|
|
10865
|
+
* Für interne Zwecke: Währung für das Document
|
|
10820
10866
|
*/
|
|
10821
|
-
|
|
10867
|
+
currencyId: number;
|
|
10822
10868
|
|
|
10823
10869
|
/**
|
|
10824
10870
|
* Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
|
|
@@ -10934,14 +10980,14 @@ export interface RequestDocumentLine {
|
|
|
10934
10980
|
description: string;
|
|
10935
10981
|
|
|
10936
10982
|
/**
|
|
10937
|
-
*
|
|
10983
|
+
* Herkunft des Preises
|
|
10938
10984
|
*/
|
|
10939
|
-
|
|
10985
|
+
priceOrigin: ProductPriceOrigin;
|
|
10940
10986
|
|
|
10941
10987
|
/**
|
|
10942
|
-
*
|
|
10988
|
+
* Quittungsdetails zur Belegposition
|
|
10943
10989
|
*/
|
|
10944
|
-
|
|
10990
|
+
posDetail: DocumentLinePosDetail;
|
|
10945
10991
|
|
|
10946
10992
|
/**
|
|
10947
10993
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -11024,14 +11070,14 @@ export interface RequestDocumentLine {
|
|
|
11024
11070
|
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
11025
11071
|
|
|
11026
11072
|
/**
|
|
11027
|
-
*
|
|
11073
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
11028
11074
|
*/
|
|
11029
|
-
|
|
11075
|
+
settledOpenItemComment: string;
|
|
11030
11076
|
|
|
11031
11077
|
/**
|
|
11032
|
-
*
|
|
11078
|
+
* (optional) ID des Artikels dieser Position
|
|
11033
11079
|
*/
|
|
11034
|
-
|
|
11080
|
+
articleId: number;
|
|
11035
11081
|
|
|
11036
11082
|
/**
|
|
11037
11083
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -11311,14 +11357,14 @@ export interface SalesAgent {
|
|
|
11311
11357
|
taxRateRef: ApiObjectReference;
|
|
11312
11358
|
|
|
11313
11359
|
/**
|
|
11314
|
-
*
|
|
11360
|
+
* reference to the assigned user
|
|
11315
11361
|
*/
|
|
11316
|
-
|
|
11362
|
+
userRef: ApiObjectReference;
|
|
11317
11363
|
|
|
11318
11364
|
/**
|
|
11319
|
-
*
|
|
11365
|
+
* country code performance country IsoAlpha3
|
|
11320
11366
|
*/
|
|
11321
|
-
|
|
11367
|
+
performanceCountryCode: string;
|
|
11322
11368
|
|
|
11323
11369
|
/**
|
|
11324
11370
|
* billing type
|
|
@@ -11517,14 +11563,14 @@ export interface ScenarioDimensionValue {
|
|
|
11517
11563
|
export interface ScenarioFactDef {
|
|
11518
11564
|
|
|
11519
11565
|
/**
|
|
11520
|
-
* Attribut
|
|
11566
|
+
* Attribut Typ
|
|
11521
11567
|
*/
|
|
11522
|
-
|
|
11568
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11523
11569
|
|
|
11524
11570
|
/**
|
|
11525
|
-
* Attribut
|
|
11571
|
+
* Attribut Name
|
|
11526
11572
|
*/
|
|
11527
|
-
|
|
11573
|
+
factAttribute: string;
|
|
11528
11574
|
|
|
11529
11575
|
/**
|
|
11530
11576
|
* Unique identifier of the Object
|
|
@@ -11828,14 +11874,14 @@ export interface ShelfDocumentAttribution {
|
|
|
11828
11874
|
shelfResourceId: number;
|
|
11829
11875
|
|
|
11830
11876
|
/**
|
|
11831
|
-
*
|
|
11877
|
+
* Verfügbare Transformationen zum Bild
|
|
11832
11878
|
*/
|
|
11833
|
-
|
|
11879
|
+
transformationKeys: Array<string>;
|
|
11834
11880
|
|
|
11835
11881
|
/**
|
|
11836
|
-
*
|
|
11882
|
+
* id of the referenced object
|
|
11837
11883
|
*/
|
|
11838
|
-
|
|
11884
|
+
refId: number;
|
|
11839
11885
|
|
|
11840
11886
|
/**
|
|
11841
11887
|
* Unique identifier of the Object
|
|
@@ -11937,14 +11983,14 @@ export interface ShelfFile {
|
|
|
11937
11983
|
subFiles: Array<SubFileInfo>;
|
|
11938
11984
|
|
|
11939
11985
|
/**
|
|
11940
|
-
*
|
|
11986
|
+
* fileSize
|
|
11941
11987
|
*/
|
|
11942
|
-
|
|
11988
|
+
fileSize: number;
|
|
11943
11989
|
|
|
11944
11990
|
/**
|
|
11945
|
-
*
|
|
11991
|
+
* revision number of this file
|
|
11946
11992
|
*/
|
|
11947
|
-
|
|
11993
|
+
revisionNumber: number;
|
|
11948
11994
|
|
|
11949
11995
|
/**
|
|
11950
11996
|
* file-extension of this entry
|
|
@@ -11972,14 +12018,14 @@ export interface ShelfFile {
|
|
|
11972
12018
|
version: number;
|
|
11973
12019
|
|
|
11974
12020
|
/**
|
|
11975
|
-
*
|
|
12021
|
+
* meta data
|
|
11976
12022
|
*/
|
|
11977
|
-
|
|
12023
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11978
12024
|
|
|
11979
12025
|
/**
|
|
11980
|
-
*
|
|
12026
|
+
* current reference of this file in our storage
|
|
11981
12027
|
*/
|
|
11982
|
-
|
|
12028
|
+
storageHandle: string;
|
|
11983
12029
|
|
|
11984
12030
|
/**
|
|
11985
12031
|
* MetaInformations for this Object
|
|
@@ -12227,14 +12273,14 @@ export interface StockMovementManualApi {
|
|
|
12227
12273
|
expiryDate: ScriptingDate;
|
|
12228
12274
|
|
|
12229
12275
|
/**
|
|
12230
|
-
*
|
|
12276
|
+
* Zugang oder Abgang
|
|
12231
12277
|
*/
|
|
12232
|
-
|
|
12278
|
+
factor: StockJournalFactor;
|
|
12233
12279
|
|
|
12234
12280
|
/**
|
|
12235
|
-
*
|
|
12281
|
+
* Notiz zur Seriennummer
|
|
12236
12282
|
*/
|
|
12237
|
-
|
|
12283
|
+
serialNumberNote: string;
|
|
12238
12284
|
|
|
12239
12285
|
/**
|
|
12240
12286
|
* Lager
|
|
@@ -12245,14 +12291,14 @@ export interface StockMovementManualApi {
|
|
|
12245
12291
|
export interface StockTransferApi {
|
|
12246
12292
|
|
|
12247
12293
|
/**
|
|
12248
|
-
*
|
|
12294
|
+
* Seriennummer
|
|
12249
12295
|
*/
|
|
12250
|
-
|
|
12296
|
+
serialNumberId: number;
|
|
12251
12297
|
|
|
12252
12298
|
/**
|
|
12253
|
-
*
|
|
12299
|
+
* Ziel-Lager
|
|
12254
12300
|
*/
|
|
12255
|
-
|
|
12301
|
+
targetStorageId: number;
|
|
12256
12302
|
|
|
12257
12303
|
/**
|
|
12258
12304
|
* Bemerkung
|
|
@@ -12265,14 +12311,14 @@ export interface StockTransferApi {
|
|
|
12265
12311
|
bookDate: ScriptingDate;
|
|
12266
12312
|
|
|
12267
12313
|
/**
|
|
12268
|
-
*
|
|
12314
|
+
* Menge
|
|
12269
12315
|
*/
|
|
12270
|
-
|
|
12316
|
+
quantity: number;
|
|
12271
12317
|
|
|
12272
12318
|
/**
|
|
12273
|
-
*
|
|
12319
|
+
* Quell-Lagerplatz
|
|
12274
12320
|
*/
|
|
12275
|
-
|
|
12321
|
+
sourceStorageBinId: number;
|
|
12276
12322
|
|
|
12277
12323
|
/**
|
|
12278
12324
|
* Quell-Lager
|
|
@@ -12472,6 +12518,11 @@ export interface Supplier {
|
|
|
12472
12518
|
*/
|
|
12473
12519
|
info: MetaInfo;
|
|
12474
12520
|
|
|
12521
|
+
/**
|
|
12522
|
+
* tax able or tax free
|
|
12523
|
+
*/
|
|
12524
|
+
taxable: boolean;
|
|
12525
|
+
|
|
12475
12526
|
/**
|
|
12476
12527
|
* reference to the delivery method
|
|
12477
12528
|
*/
|
|
@@ -12482,11 +12533,6 @@ export interface Supplier {
|
|
|
12482
12533
|
*/
|
|
12483
12534
|
supplierGroupRef: ApiObjectReference;
|
|
12484
12535
|
|
|
12485
|
-
/**
|
|
12486
|
-
* tax able or tax free
|
|
12487
|
-
*/
|
|
12488
|
-
taxable: boolean;
|
|
12489
|
-
|
|
12490
12536
|
/**
|
|
12491
12537
|
* Mahnen?
|
|
12492
12538
|
*/
|
|
@@ -12809,26 +12855,26 @@ export interface TextTemplate {
|
|
|
12809
12855
|
*/
|
|
12810
12856
|
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12811
12857
|
|
|
12812
|
-
/**
|
|
12813
|
-
* Texte in den angebotenen Sprachen
|
|
12814
|
-
*/
|
|
12815
|
-
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12816
|
-
|
|
12817
12858
|
/**
|
|
12818
12859
|
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12819
12860
|
*/
|
|
12820
12861
|
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12821
12862
|
|
|
12822
12863
|
/**
|
|
12823
|
-
*
|
|
12864
|
+
* Texte in den angebotenen Sprachen
|
|
12824
12865
|
*/
|
|
12825
|
-
|
|
12866
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12826
12867
|
|
|
12827
12868
|
/**
|
|
12828
12869
|
* article für den diese Templates gelten
|
|
12829
12870
|
*/
|
|
12830
12871
|
articleId: number;
|
|
12831
12872
|
|
|
12873
|
+
/**
|
|
12874
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12875
|
+
*/
|
|
12876
|
+
separateLine: boolean;
|
|
12877
|
+
|
|
12832
12878
|
/**
|
|
12833
12879
|
* Wann wird ein UI-Hint angezeigt
|
|
12834
12880
|
*/
|
|
@@ -12984,14 +13030,14 @@ export interface User {
|
|
|
12984
13030
|
roles: Array<ApiObjectReference>;
|
|
12985
13031
|
|
|
12986
13032
|
/**
|
|
12987
|
-
*
|
|
13033
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12988
13034
|
*/
|
|
12989
|
-
|
|
13035
|
+
referencedCustomerUserId: number;
|
|
12990
13036
|
|
|
12991
13037
|
/**
|
|
12992
|
-
*
|
|
13038
|
+
* Gruppen
|
|
12993
13039
|
*/
|
|
12994
|
-
|
|
13040
|
+
groups: Array<ApiObjectReference>;
|
|
12995
13041
|
|
|
12996
13042
|
/**
|
|
12997
13043
|
* Is the user active?
|