@vario-software/types 2026.21.4 → 2026.22.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 +23023 -19385
- package/scripting/services.d.ts +162 -58
- package/scripting/types.d.ts +681 -356
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Kreditlimit
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
maximalLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -998,6 +998,11 @@ export interface Article {
|
|
|
998
998
|
*/
|
|
999
999
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1000
1000
|
|
|
1001
|
+
/**
|
|
1002
|
+
* Gefahrgut Informationen
|
|
1003
|
+
*/
|
|
1004
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1005
|
+
|
|
1001
1006
|
/**
|
|
1002
1007
|
* Zolltarifnummer
|
|
1003
1008
|
*/
|
|
@@ -1018,6 +1023,11 @@ export interface Article {
|
|
|
1018
1023
|
*/
|
|
1019
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1020
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* is this product sellable without any quantity at the stock
|
|
1028
|
+
*/
|
|
1029
|
+
sellableWithoutStock: boolean;
|
|
1030
|
+
|
|
1021
1031
|
/**
|
|
1022
1032
|
* Seriennummern Auszeichnungsart
|
|
1023
1033
|
*/
|
|
@@ -1028,11 +1038,6 @@ export interface Article {
|
|
|
1028
1038
|
*/
|
|
1029
1039
|
initialAvgPurchasePrice: number;
|
|
1030
1040
|
|
|
1031
|
-
/**
|
|
1032
|
-
* is this product sellable without any quantity at the stock
|
|
1033
|
-
*/
|
|
1034
|
-
sellableWithoutStock: boolean;
|
|
1035
|
-
|
|
1036
1041
|
/**
|
|
1037
1042
|
* gross Volume in cubic meters
|
|
1038
1043
|
*/
|
|
@@ -1078,11 +1083,6 @@ export interface Article {
|
|
|
1078
1083
|
*/
|
|
1079
1084
|
mergeable: boolean;
|
|
1080
1085
|
|
|
1081
|
-
/**
|
|
1082
|
-
* Gefahrgut Informationen
|
|
1083
|
-
*/
|
|
1084
|
-
dangerousGoodInformationRef: ApiObjectReference;
|
|
1085
|
-
|
|
1086
1086
|
/**
|
|
1087
1087
|
* skontierbarer Artikel?
|
|
1088
1088
|
*/
|
|
@@ -1134,14 +1134,14 @@ export interface Article {
|
|
|
1134
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Produktion
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
fabrication: boolean;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
|
-
*
|
|
1142
|
+
* Soll-Handelsspanne
|
|
1143
1143
|
*/
|
|
1144
|
-
|
|
1144
|
+
targetTradingMargin: number;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* active
|
|
@@ -1179,14 +1179,14 @@ export interface Article {
|
|
|
1179
1179
|
solvable: boolean;
|
|
1180
1180
|
|
|
1181
1181
|
/**
|
|
1182
|
-
*
|
|
1182
|
+
* weight and size inc. packaging
|
|
1183
1183
|
*/
|
|
1184
|
-
|
|
1184
|
+
grossMetric: Article$Metric;
|
|
1185
1185
|
|
|
1186
1186
|
/**
|
|
1187
|
-
*
|
|
1187
|
+
* Verkaufseinheit
|
|
1188
1188
|
*/
|
|
1189
|
-
|
|
1189
|
+
salesUnit: number;
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
1192
|
* name of this product
|
|
@@ -1199,14 +1199,14 @@ export interface Article {
|
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
1201
|
/**
|
|
1202
|
-
*
|
|
1202
|
+
* Country code
|
|
1203
1203
|
*/
|
|
1204
|
-
|
|
1204
|
+
countryOfOriginRef: CountryReference;
|
|
1205
1205
|
|
|
1206
1206
|
/**
|
|
1207
|
-
*
|
|
1207
|
+
* Arbeitseinheit in Minuten
|
|
1208
1208
|
*/
|
|
1209
|
-
|
|
1209
|
+
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* Frei kommissionierbar
|
|
@@ -1288,25 +1288,15 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
-
/**
|
|
1292
|
-
* reference to Product
|
|
1293
|
-
*/
|
|
1294
|
-
productRef: ApiObjectReference;
|
|
1295
|
-
|
|
1296
|
-
/**
|
|
1297
|
-
* Artikel ist Gefahrgut
|
|
1298
|
-
*/
|
|
1299
|
-
isDangerousGood: boolean;
|
|
1300
|
-
|
|
1301
1291
|
/**
|
|
1302
1292
|
* Versandlabeldruck
|
|
1303
1293
|
*/
|
|
1304
1294
|
shippingLabelPrinting: boolean;
|
|
1305
1295
|
|
|
1306
1296
|
/**
|
|
1307
|
-
*
|
|
1297
|
+
* reference to Product
|
|
1308
1298
|
*/
|
|
1309
|
-
|
|
1299
|
+
productRef: ApiObjectReference;
|
|
1310
1300
|
|
|
1311
1301
|
/**
|
|
1312
1302
|
* alternative name of this product
|
|
@@ -1318,6 +1308,11 @@ export interface Article {
|
|
|
1318
1308
|
*/
|
|
1319
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1320
1310
|
|
|
1311
|
+
/**
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
|
+
*/
|
|
1314
|
+
discountable: boolean;
|
|
1315
|
+
|
|
1321
1316
|
/**
|
|
1322
1317
|
* base capacity
|
|
1323
1318
|
*/
|
|
@@ -1338,6 +1333,11 @@ export interface Article {
|
|
|
1338
1333
|
*/
|
|
1339
1334
|
baseArticle: boolean;
|
|
1340
1335
|
|
|
1336
|
+
/**
|
|
1337
|
+
* Artikel ist Gefahrgut
|
|
1338
|
+
*/
|
|
1339
|
+
dangerousGoods: boolean;
|
|
1340
|
+
|
|
1341
1341
|
/**
|
|
1342
1342
|
* all (external) product numbers (SKU, EAN, ...)
|
|
1343
1343
|
*/
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* Nur manuelle Produktion
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
onlyManualFabrication: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* provisionsberechtiger Artikel?
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
commissionable: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1422,14 +1422,14 @@ export interface Article$Metric {
|
|
|
1422
1422
|
sizeX: number;
|
|
1423
1423
|
|
|
1424
1424
|
/**
|
|
1425
|
-
*
|
|
1425
|
+
* size unit
|
|
1426
1426
|
*/
|
|
1427
|
-
|
|
1427
|
+
sizeUnit: UnitTypeReference;
|
|
1428
1428
|
|
|
1429
1429
|
/**
|
|
1430
|
-
*
|
|
1430
|
+
* weight
|
|
1431
1431
|
*/
|
|
1432
|
-
|
|
1432
|
+
weight: number;
|
|
1433
1433
|
|
|
1434
1434
|
/**
|
|
1435
1435
|
* size
|
|
@@ -1437,14 +1437,14 @@ export interface Article$Metric {
|
|
|
1437
1437
|
sizeY: number;
|
|
1438
1438
|
|
|
1439
1439
|
/**
|
|
1440
|
-
*
|
|
1440
|
+
* size
|
|
1441
1441
|
*/
|
|
1442
|
-
|
|
1442
|
+
sizeZ: number;
|
|
1443
1443
|
|
|
1444
1444
|
/**
|
|
1445
|
-
*
|
|
1445
|
+
* weight unit
|
|
1446
1446
|
*/
|
|
1447
|
-
|
|
1447
|
+
weightUnit: UnitTypeReference;
|
|
1448
1448
|
}
|
|
1449
1449
|
|
|
1450
1450
|
export interface ArticleAvailabilityDetermination {
|
|
@@ -1481,6 +1481,124 @@ export const enum ArticleAvailabilityDetermination$Operation {
|
|
|
1481
1481
|
SUBTRACT = 'SUBTRACT'
|
|
1482
1482
|
}
|
|
1483
1483
|
|
|
1484
|
+
export interface ArticleCustomer {
|
|
1485
|
+
|
|
1486
|
+
/**
|
|
1487
|
+
* Anzeigename des Accounts
|
|
1488
|
+
*/
|
|
1489
|
+
accountDisplayName: string;
|
|
1490
|
+
|
|
1491
|
+
/**
|
|
1492
|
+
* Nur Sonderpreis/-rabatt verwenden?
|
|
1493
|
+
*/
|
|
1494
|
+
useOnlyRelatedPriceOrDiscount: boolean;
|
|
1495
|
+
|
|
1496
|
+
/**
|
|
1497
|
+
* Referenced Article name
|
|
1498
|
+
*/
|
|
1499
|
+
articleName: string;
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
|
+
*/
|
|
1504
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1505
|
+
|
|
1506
|
+
/**
|
|
1507
|
+
* Etikettdruck-Einstellungen
|
|
1508
|
+
*/
|
|
1509
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1510
|
+
|
|
1511
|
+
/**
|
|
1512
|
+
* Referenced Article
|
|
1513
|
+
*/
|
|
1514
|
+
articleId: number;
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1518
|
+
*/
|
|
1519
|
+
useDeviatingArticleDescription: boolean;
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* Kunden-Preise
|
|
1523
|
+
*/
|
|
1524
|
+
productPrices: Array<ProductPrice>;
|
|
1525
|
+
|
|
1526
|
+
/**
|
|
1527
|
+
* Aktiv?
|
|
1528
|
+
*/
|
|
1529
|
+
active: boolean;
|
|
1530
|
+
|
|
1531
|
+
/**
|
|
1532
|
+
* Version Identifier for this Object (for PUT)
|
|
1533
|
+
*/
|
|
1534
|
+
version: number;
|
|
1535
|
+
|
|
1536
|
+
/**
|
|
1537
|
+
* Abweichende Produktbeschreibung
|
|
1538
|
+
*/
|
|
1539
|
+
deviatingArticleDescription: string;
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* Standardpreis Netto
|
|
1543
|
+
*/
|
|
1544
|
+
defaultNetPrice: number;
|
|
1545
|
+
|
|
1546
|
+
/**
|
|
1547
|
+
* Referenced Customer-Account
|
|
1548
|
+
*/
|
|
1549
|
+
accountId: number;
|
|
1550
|
+
|
|
1551
|
+
/**
|
|
1552
|
+
* Abweichende Produktbezeichnung
|
|
1553
|
+
*/
|
|
1554
|
+
deviatingArticleName: string;
|
|
1555
|
+
|
|
1556
|
+
/**
|
|
1557
|
+
* Standardpreis Brutto
|
|
1558
|
+
*/
|
|
1559
|
+
defaultGrossPrice: number;
|
|
1560
|
+
|
|
1561
|
+
/**
|
|
1562
|
+
* Abweichende Produktnummer
|
|
1563
|
+
*/
|
|
1564
|
+
deviatingArticleNumber: string;
|
|
1565
|
+
|
|
1566
|
+
/**
|
|
1567
|
+
* Artikelnummer
|
|
1568
|
+
*/
|
|
1569
|
+
articleNumber: string;
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1573
|
+
*/
|
|
1574
|
+
deviatingArticleIdentifier: string;
|
|
1575
|
+
|
|
1576
|
+
/**
|
|
1577
|
+
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1578
|
+
*/
|
|
1579
|
+
useDeviatingArticleNumber: boolean;
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* Unique identifier of the Object
|
|
1583
|
+
*/
|
|
1584
|
+
id: number;
|
|
1585
|
+
|
|
1586
|
+
/**
|
|
1587
|
+
* Soll die abweichende Produktbezeichnung verwendet werden (z.B. in Belegen)
|
|
1588
|
+
*/
|
|
1589
|
+
useDeviatingArticleName: boolean;
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* Ist das Produkt für den Kunden gesperrt?
|
|
1593
|
+
*/
|
|
1594
|
+
lockedForCustomer: boolean;
|
|
1595
|
+
|
|
1596
|
+
/**
|
|
1597
|
+
* MetaInformations for this Object
|
|
1598
|
+
*/
|
|
1599
|
+
info: MetaInfo;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1484
1602
|
export interface ArticleIdentifier {
|
|
1485
1603
|
|
|
1486
1604
|
/**
|
|
@@ -1552,14 +1670,14 @@ export interface ArticleListing {
|
|
|
1552
1670
|
proposedLowestPriceGross: number;
|
|
1553
1671
|
|
|
1554
1672
|
/**
|
|
1555
|
-
*
|
|
1673
|
+
* der Sales Channel
|
|
1556
1674
|
*/
|
|
1557
|
-
|
|
1675
|
+
salesChannelRef: ApiObjectReference;
|
|
1558
1676
|
|
|
1559
1677
|
/**
|
|
1560
|
-
* der
|
|
1678
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1561
1679
|
*/
|
|
1562
|
-
|
|
1680
|
+
customLowestPriceGross: number;
|
|
1563
1681
|
|
|
1564
1682
|
/**
|
|
1565
1683
|
* soll der Artikel gelistet werden
|
|
@@ -1592,14 +1710,14 @@ export interface ArticleListing {
|
|
|
1592
1710
|
alternativeName: WithDefaults<String>;
|
|
1593
1711
|
|
|
1594
1712
|
/**
|
|
1595
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1713
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1596
1714
|
*/
|
|
1597
|
-
|
|
1715
|
+
customLowestPriceNet: number;
|
|
1598
1716
|
|
|
1599
1717
|
/**
|
|
1600
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1718
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1601
1719
|
*/
|
|
1602
|
-
|
|
1720
|
+
proposedLowestPriceNet: number;
|
|
1603
1721
|
|
|
1604
1722
|
/**
|
|
1605
1723
|
* der aktuelle listing stand
|
|
@@ -1760,14 +1878,14 @@ export const enum ArticleSerialType {
|
|
|
1760
1878
|
export interface ArticleStorage {
|
|
1761
1879
|
|
|
1762
1880
|
/**
|
|
1763
|
-
*
|
|
1881
|
+
* Nachschub ab
|
|
1764
1882
|
*/
|
|
1765
|
-
|
|
1883
|
+
replenishmentFrom: number;
|
|
1766
1884
|
|
|
1767
1885
|
/**
|
|
1768
|
-
*
|
|
1886
|
+
* Bestand im Lager
|
|
1769
1887
|
*/
|
|
1770
|
-
|
|
1888
|
+
quantityInStock: number;
|
|
1771
1889
|
|
|
1772
1890
|
/**
|
|
1773
1891
|
* Bestellte Menge
|
|
@@ -1785,14 +1903,14 @@ export interface ArticleStorage {
|
|
|
1785
1903
|
reorderPoint: number;
|
|
1786
1904
|
|
|
1787
1905
|
/**
|
|
1788
|
-
*
|
|
1906
|
+
* Nachschub auf
|
|
1789
1907
|
*/
|
|
1790
|
-
|
|
1908
|
+
replenishmentOn: number;
|
|
1791
1909
|
|
|
1792
1910
|
/**
|
|
1793
|
-
*
|
|
1911
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1794
1912
|
*/
|
|
1795
|
-
|
|
1913
|
+
virtualStockAmount: number;
|
|
1796
1914
|
|
|
1797
1915
|
/**
|
|
1798
1916
|
* Reservierte Menge
|
|
@@ -1835,14 +1953,14 @@ export interface ArticleStorage {
|
|
|
1835
1953
|
storageRef: ApiObjectReference;
|
|
1836
1954
|
|
|
1837
1955
|
/**
|
|
1838
|
-
*
|
|
1956
|
+
* Sollbestand
|
|
1839
1957
|
*/
|
|
1840
|
-
|
|
1958
|
+
targetStock: number;
|
|
1841
1959
|
|
|
1842
1960
|
/**
|
|
1843
|
-
*
|
|
1961
|
+
* Vorgabe-Lagerplätze
|
|
1844
1962
|
*/
|
|
1845
|
-
|
|
1963
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1846
1964
|
|
|
1847
1965
|
/**
|
|
1848
1966
|
* Aktuelle Menge in Produktion
|
|
@@ -1867,26 +1985,26 @@ export interface ArticleSupplier {
|
|
|
1867
1985
|
*/
|
|
1868
1986
|
supplierReportingStock: number;
|
|
1869
1987
|
|
|
1870
|
-
/**
|
|
1871
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1872
|
-
*/
|
|
1873
|
-
useSupplierArticleDescription: boolean;
|
|
1874
|
-
|
|
1875
1988
|
/**
|
|
1876
1989
|
* Anzeigename des Accounts
|
|
1877
1990
|
*/
|
|
1878
1991
|
accountDisplayName: string;
|
|
1879
1992
|
|
|
1880
1993
|
/**
|
|
1881
|
-
* Soll
|
|
1994
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1882
1995
|
*/
|
|
1883
|
-
|
|
1996
|
+
useSupplierArticleDescription: boolean;
|
|
1884
1997
|
|
|
1885
1998
|
/**
|
|
1886
1999
|
* Lieferzeit in (Werk-)Tagen
|
|
1887
2000
|
*/
|
|
1888
2001
|
deliveryTime: number;
|
|
1889
2002
|
|
|
2003
|
+
/**
|
|
2004
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2005
|
+
*/
|
|
2006
|
+
useSupplierArticleIdentifier: boolean;
|
|
2007
|
+
|
|
1890
2008
|
/**
|
|
1891
2009
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1892
2010
|
*/
|
|
@@ -1932,26 +2050,26 @@ export interface ArticleSupplier {
|
|
|
1932
2050
|
*/
|
|
1933
2051
|
info: MetaInfo;
|
|
1934
2052
|
|
|
1935
|
-
/**
|
|
1936
|
-
* Verpackungseinheit
|
|
1937
|
-
*/
|
|
1938
|
-
packagingUnit: number;
|
|
1939
|
-
|
|
1940
2053
|
/**
|
|
1941
2054
|
* Referenced Article name
|
|
1942
2055
|
*/
|
|
1943
2056
|
articleName: string;
|
|
1944
2057
|
|
|
1945
2058
|
/**
|
|
1946
|
-
*
|
|
2059
|
+
* Verpackungseinheit
|
|
1947
2060
|
*/
|
|
1948
|
-
|
|
2061
|
+
packagingUnit: number;
|
|
1949
2062
|
|
|
1950
2063
|
/**
|
|
1951
2064
|
* Referenced Article
|
|
1952
2065
|
*/
|
|
1953
2066
|
articleId: number;
|
|
1954
2067
|
|
|
2068
|
+
/**
|
|
2069
|
+
* Lieferanten-Preise
|
|
2070
|
+
*/
|
|
2071
|
+
productPrices: Array<ProductPrice>;
|
|
2072
|
+
|
|
1955
2073
|
/**
|
|
1956
2074
|
* Aktiv?
|
|
1957
2075
|
*/
|
|
@@ -2104,6 +2222,13 @@ export const enum CalculationModeOrigin {
|
|
|
2104
2222
|
USER_DEFINED = 'USER_DEFINED'
|
|
2105
2223
|
}
|
|
2106
2224
|
|
|
2225
|
+
export const enum CashJournalWithdrawalMode {
|
|
2226
|
+
FULL = 'FULL',
|
|
2227
|
+
BALANCE = 'BALANCE',
|
|
2228
|
+
MANUAL = 'MANUAL',
|
|
2229
|
+
NONE = 'NONE'
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2107
2232
|
export const enum CommonUserType {
|
|
2108
2233
|
REGULAR = 'REGULAR',
|
|
2109
2234
|
SUPPORT = 'SUPPORT',
|
|
@@ -2181,6 +2306,11 @@ export interface CountryReference {
|
|
|
2181
2306
|
*/
|
|
2182
2307
|
isoAlpha2: string;
|
|
2183
2308
|
|
|
2309
|
+
/**
|
|
2310
|
+
* IsoAlpha3-Code des Landes
|
|
2311
|
+
*/
|
|
2312
|
+
isoAlpha3: string;
|
|
2313
|
+
|
|
2184
2314
|
/**
|
|
2185
2315
|
* Bezeichnung des Landes
|
|
2186
2316
|
*/
|
|
@@ -2430,14 +2560,14 @@ export interface CrmActivityType {
|
|
|
2430
2560
|
export interface CrmChecklistItem {
|
|
2431
2561
|
|
|
2432
2562
|
/**
|
|
2433
|
-
*
|
|
2563
|
+
* Text des Checklisten-Elements
|
|
2434
2564
|
*/
|
|
2435
|
-
|
|
2565
|
+
memo: string;
|
|
2436
2566
|
|
|
2437
2567
|
/**
|
|
2438
|
-
*
|
|
2568
|
+
* Ist das Element "angehakt"?
|
|
2439
2569
|
*/
|
|
2440
|
-
|
|
2570
|
+
checked: boolean;
|
|
2441
2571
|
|
|
2442
2572
|
/**
|
|
2443
2573
|
* Unique identifier of the Object
|
|
@@ -2548,14 +2678,14 @@ export interface CrmDeal {
|
|
|
2548
2678
|
info: MetaInfo;
|
|
2549
2679
|
|
|
2550
2680
|
/**
|
|
2551
|
-
*
|
|
2681
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2552
2682
|
*/
|
|
2553
|
-
|
|
2683
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2554
2684
|
|
|
2555
2685
|
/**
|
|
2556
|
-
*
|
|
2686
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2557
2687
|
*/
|
|
2558
|
-
|
|
2688
|
+
assignedUserRef: ApiObjectReference;
|
|
2559
2689
|
|
|
2560
2690
|
/**
|
|
2561
2691
|
* Chance (in Prozent)
|
|
@@ -3564,99 +3694,192 @@ export interface Customer {
|
|
|
3564
3694
|
number: string;
|
|
3565
3695
|
|
|
3566
3696
|
/**
|
|
3567
|
-
* presetting of billing type
|
|
3697
|
+
* presetting of billing type
|
|
3698
|
+
*/
|
|
3699
|
+
billingType: AccountBillingType;
|
|
3700
|
+
|
|
3701
|
+
/**
|
|
3702
|
+
* Nächste Fälligkeit nach der aktuellen
|
|
3703
|
+
*/
|
|
3704
|
+
nextDueDate: ScriptingDate;
|
|
3705
|
+
|
|
3706
|
+
/**
|
|
3707
|
+
* Priorität für die Stapelverarbeitung
|
|
3708
|
+
*/
|
|
3709
|
+
stackProcessingPriority: number;
|
|
3710
|
+
|
|
3711
|
+
/**
|
|
3712
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3713
|
+
*/
|
|
3714
|
+
collectiveInvoiceManually: boolean;
|
|
3715
|
+
|
|
3716
|
+
/**
|
|
3717
|
+
* reference to product price group
|
|
3718
|
+
*/
|
|
3719
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3720
|
+
|
|
3721
|
+
/**
|
|
3722
|
+
* Unique identifier of the Object
|
|
3723
|
+
*/
|
|
3724
|
+
id: number;
|
|
3725
|
+
|
|
3726
|
+
/**
|
|
3727
|
+
* finance account-number of customer
|
|
3728
|
+
*/
|
|
3729
|
+
accountingNumber: string;
|
|
3730
|
+
|
|
3731
|
+
/**
|
|
3732
|
+
* MetaInformations for this Object
|
|
3733
|
+
*/
|
|
3734
|
+
info: MetaInfo;
|
|
3735
|
+
|
|
3736
|
+
/**
|
|
3737
|
+
* reference to the delivery method
|
|
3738
|
+
*/
|
|
3739
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3740
|
+
|
|
3741
|
+
/**
|
|
3742
|
+
* tax able or tax free
|
|
3743
|
+
*/
|
|
3744
|
+
taxable: boolean;
|
|
3745
|
+
|
|
3746
|
+
/**
|
|
3747
|
+
* active true/false
|
|
3748
|
+
*/
|
|
3749
|
+
active: boolean;
|
|
3750
|
+
|
|
3751
|
+
/**
|
|
3752
|
+
* reference to responsible user
|
|
3753
|
+
*/
|
|
3754
|
+
responsibleUserRef: ApiObjectReference;
|
|
3755
|
+
|
|
3756
|
+
/**
|
|
3757
|
+
* customers number for us
|
|
3758
|
+
*/
|
|
3759
|
+
ourNumber: string;
|
|
3760
|
+
|
|
3761
|
+
/**
|
|
3762
|
+
* reference to the payment term
|
|
3763
|
+
*/
|
|
3764
|
+
paymentTermRef: ApiObjectReference;
|
|
3765
|
+
|
|
3766
|
+
/**
|
|
3767
|
+
* Version Identifier for this Object (for PUT)
|
|
3768
|
+
*/
|
|
3769
|
+
version: number;
|
|
3770
|
+
|
|
3771
|
+
/**
|
|
3772
|
+
* reference to the delivery term
|
|
3773
|
+
*/
|
|
3774
|
+
deliveryTermRef: ApiObjectReference;
|
|
3775
|
+
|
|
3776
|
+
/**
|
|
3777
|
+
* country code performance country IsoAlpha3
|
|
3778
|
+
*/
|
|
3779
|
+
performanceCountryCode: string;
|
|
3780
|
+
|
|
3781
|
+
/**
|
|
3782
|
+
* reference to the payment method
|
|
3783
|
+
*/
|
|
3784
|
+
paymentMethodRef: ApiObjectReference;
|
|
3785
|
+
|
|
3786
|
+
/**
|
|
3787
|
+
* currency code IsoAlpha3
|
|
3568
3788
|
*/
|
|
3569
|
-
|
|
3789
|
+
currencyCode: string;
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3792
|
+
export interface DangerousGoodInformation {
|
|
3570
3793
|
|
|
3571
3794
|
/**
|
|
3572
|
-
*
|
|
3795
|
+
* shipping name
|
|
3573
3796
|
*/
|
|
3574
|
-
|
|
3797
|
+
shippingName: string;
|
|
3575
3798
|
|
|
3576
3799
|
/**
|
|
3577
|
-
*
|
|
3800
|
+
* tunnel restriction classes
|
|
3578
3801
|
*/
|
|
3579
|
-
|
|
3802
|
+
tunnelRestrictionCode: TunnelRestrictionCode;
|
|
3580
3803
|
|
|
3581
3804
|
/**
|
|
3582
|
-
*
|
|
3805
|
+
* transportation category
|
|
3583
3806
|
*/
|
|
3584
|
-
|
|
3807
|
+
transportCategory: string;
|
|
3585
3808
|
|
|
3586
3809
|
/**
|
|
3587
|
-
*
|
|
3810
|
+
* description
|
|
3588
3811
|
*/
|
|
3589
|
-
|
|
3812
|
+
description: string;
|
|
3590
3813
|
|
|
3591
3814
|
/**
|
|
3592
|
-
*
|
|
3815
|
+
* technical name
|
|
3593
3816
|
*/
|
|
3594
|
-
|
|
3817
|
+
technicalName: string;
|
|
3595
3818
|
|
|
3596
3819
|
/**
|
|
3597
|
-
*
|
|
3820
|
+
* Version Identifier for this Object (for PUT)
|
|
3598
3821
|
*/
|
|
3599
|
-
|
|
3822
|
+
version: number;
|
|
3600
3823
|
|
|
3601
3824
|
/**
|
|
3602
|
-
*
|
|
3825
|
+
* secundary risk of the dangerous good
|
|
3603
3826
|
*/
|
|
3604
|
-
|
|
3827
|
+
subsidiaryRisk: boolean;
|
|
3605
3828
|
|
|
3606
3829
|
/**
|
|
3607
|
-
*
|
|
3830
|
+
* classification code
|
|
3608
3831
|
*/
|
|
3609
|
-
|
|
3832
|
+
classificationCode: string;
|
|
3610
3833
|
|
|
3611
3834
|
/**
|
|
3612
|
-
*
|
|
3835
|
+
* packing code
|
|
3613
3836
|
*/
|
|
3614
|
-
|
|
3837
|
+
packingCode: string;
|
|
3615
3838
|
|
|
3616
3839
|
/**
|
|
3617
|
-
*
|
|
3840
|
+
* united nations number (un number)
|
|
3618
3841
|
*/
|
|
3619
|
-
|
|
3842
|
+
unNumber: string;
|
|
3620
3843
|
|
|
3621
3844
|
/**
|
|
3622
|
-
*
|
|
3845
|
+
* identification class
|
|
3623
3846
|
*/
|
|
3624
|
-
|
|
3847
|
+
identificationClass: string;
|
|
3625
3848
|
|
|
3626
3849
|
/**
|
|
3627
|
-
*
|
|
3850
|
+
* regulation code
|
|
3628
3851
|
*/
|
|
3629
|
-
|
|
3852
|
+
regulationCode: RegulationCode;
|
|
3630
3853
|
|
|
3631
3854
|
/**
|
|
3632
|
-
*
|
|
3855
|
+
* regulation Set, e.g. ADR
|
|
3633
3856
|
*/
|
|
3634
|
-
|
|
3857
|
+
regulationSet: RegulationSet;
|
|
3635
3858
|
|
|
3636
3859
|
/**
|
|
3637
|
-
*
|
|
3860
|
+
* Unique identifier of the Object
|
|
3638
3861
|
*/
|
|
3639
|
-
|
|
3862
|
+
id: number;
|
|
3640
3863
|
|
|
3641
3864
|
/**
|
|
3642
|
-
*
|
|
3865
|
+
* packing group (I, II, III or blank)
|
|
3643
3866
|
*/
|
|
3644
|
-
|
|
3867
|
+
packingGroup: string;
|
|
3645
3868
|
|
|
3646
3869
|
/**
|
|
3647
|
-
*
|
|
3870
|
+
* weight of the hazardous part
|
|
3648
3871
|
*/
|
|
3649
|
-
|
|
3872
|
+
hazardousWeight: number;
|
|
3650
3873
|
|
|
3651
3874
|
/**
|
|
3652
|
-
*
|
|
3875
|
+
* adr identification number
|
|
3653
3876
|
*/
|
|
3654
|
-
|
|
3877
|
+
adrNumber: string;
|
|
3655
3878
|
|
|
3656
3879
|
/**
|
|
3657
|
-
*
|
|
3880
|
+
* MetaInformations for this Object
|
|
3658
3881
|
*/
|
|
3659
|
-
|
|
3882
|
+
info: MetaInfo;
|
|
3660
3883
|
}
|
|
3661
3884
|
|
|
3662
3885
|
export const enum DealNotificationEventConfig {
|
|
@@ -3953,11 +4176,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3953
4176
|
*/
|
|
3954
4177
|
deliveryQuantityPackages: number;
|
|
3955
4178
|
|
|
3956
|
-
/**
|
|
3957
|
-
* Steuerpflichtig oder steuerfrei
|
|
3958
|
-
*/
|
|
3959
|
-
taxable: boolean;
|
|
3960
|
-
|
|
3961
4179
|
/**
|
|
3962
4180
|
* Bestellnummer aus Vorbeleg
|
|
3963
4181
|
*/
|
|
@@ -3968,6 +4186,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3968
4186
|
*/
|
|
3969
4187
|
buyerReference: string;
|
|
3970
4188
|
|
|
4189
|
+
/**
|
|
4190
|
+
* Steuerpflichtig oder steuerfrei
|
|
4191
|
+
*/
|
|
4192
|
+
taxable: boolean;
|
|
4193
|
+
|
|
3971
4194
|
/**
|
|
3972
4195
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
3973
4196
|
*/
|
|
@@ -4014,14 +4237,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4014
4237
|
accountId: number;
|
|
4015
4238
|
|
|
4016
4239
|
/**
|
|
4017
|
-
* Länderkennzeichen
|
|
4240
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4018
4241
|
*/
|
|
4019
|
-
|
|
4242
|
+
performanceCountryCode: string;
|
|
4020
4243
|
|
|
4021
4244
|
/**
|
|
4022
|
-
* Länderkennzeichen
|
|
4245
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4023
4246
|
*/
|
|
4024
|
-
|
|
4247
|
+
sourceCountryCode: string;
|
|
4025
4248
|
|
|
4026
4249
|
/**
|
|
4027
4250
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4116,14 +4339,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4116
4339
|
contractDetail: DocumentContractDetail;
|
|
4117
4340
|
|
|
4118
4341
|
/**
|
|
4119
|
-
*
|
|
4342
|
+
* Zahlungsplan vorhanden?
|
|
4120
4343
|
*/
|
|
4121
|
-
|
|
4344
|
+
paymentPlan: boolean;
|
|
4122
4345
|
|
|
4123
4346
|
/**
|
|
4124
|
-
*
|
|
4347
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4125
4348
|
*/
|
|
4126
|
-
|
|
4349
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4127
4350
|
|
|
4128
4351
|
/**
|
|
4129
4352
|
* Produktionsdetails
|
|
@@ -4151,14 +4374,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4151
4374
|
processedByWorkflow: boolean;
|
|
4152
4375
|
|
|
4153
4376
|
/**
|
|
4154
|
-
*
|
|
4377
|
+
* Telefon an Versender übergeben
|
|
4155
4378
|
*/
|
|
4156
|
-
|
|
4379
|
+
forwardPhoneToShipper: boolean;
|
|
4157
4380
|
|
|
4158
4381
|
/**
|
|
4159
|
-
*
|
|
4382
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4160
4383
|
*/
|
|
4161
|
-
|
|
4384
|
+
baseTotalDocumentPriceModifier: number;
|
|
4162
4385
|
|
|
4163
4386
|
/**
|
|
4164
4387
|
* Liste der Belegtexte
|
|
@@ -4180,26 +4403,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4180
4403
|
*/
|
|
4181
4404
|
defaultAddress: DocumentAddress;
|
|
4182
4405
|
|
|
4183
|
-
/**
|
|
4184
|
-
* Leistungsdatum
|
|
4185
|
-
*/
|
|
4186
|
-
performanceDate: ScriptingDate;
|
|
4187
|
-
|
|
4188
4406
|
/**
|
|
4189
4407
|
* Verarbeitungsoption für Stapel
|
|
4190
4408
|
*/
|
|
4191
4409
|
stackProcessingType: OrderStackProcessingType;
|
|
4192
4410
|
|
|
4193
4411
|
/**
|
|
4194
|
-
*
|
|
4412
|
+
* Leistungsdatum
|
|
4195
4413
|
*/
|
|
4196
|
-
|
|
4414
|
+
performanceDate: ScriptingDate;
|
|
4197
4415
|
|
|
4198
4416
|
/**
|
|
4199
4417
|
* EN16931-Profil für elektronische Rechnungen
|
|
4200
4418
|
*/
|
|
4201
4419
|
en16931Profile: EN16931Profile;
|
|
4202
4420
|
|
|
4421
|
+
/**
|
|
4422
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4423
|
+
*/
|
|
4424
|
+
dropShippingInvoiceApproved: boolean;
|
|
4425
|
+
|
|
4203
4426
|
/**
|
|
4204
4427
|
* Ort der steuerlichen Leistungserbringung
|
|
4205
4428
|
*/
|
|
@@ -4216,14 +4439,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4216
4439
|
additionalInfo: DocumentAdditionalInfo;
|
|
4217
4440
|
|
|
4218
4441
|
/**
|
|
4219
|
-
*
|
|
4442
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4220
4443
|
*/
|
|
4221
|
-
|
|
4444
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4222
4445
|
|
|
4223
4446
|
/**
|
|
4224
|
-
*
|
|
4447
|
+
* Bestelldatum
|
|
4225
4448
|
*/
|
|
4226
|
-
|
|
4449
|
+
orderedOn: ScriptingDate;
|
|
4227
4450
|
|
|
4228
4451
|
/**
|
|
4229
4452
|
* MetaInformations for this Object
|
|
@@ -4361,14 +4584,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4361
4584
|
customerNumber: string;
|
|
4362
4585
|
|
|
4363
4586
|
/**
|
|
4364
|
-
*
|
|
4587
|
+
* Statusinstanz des Belegs
|
|
4365
4588
|
*/
|
|
4366
|
-
|
|
4589
|
+
documentState: DocumentTypeState;
|
|
4367
4590
|
|
|
4368
4591
|
/**
|
|
4369
|
-
*
|
|
4592
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4370
4593
|
*/
|
|
4371
|
-
|
|
4594
|
+
taxIdentificationNumber: string;
|
|
4372
4595
|
|
|
4373
4596
|
/**
|
|
4374
4597
|
* Versandkostenpositionen
|
|
@@ -4423,14 +4646,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4423
4646
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4424
4647
|
|
|
4425
4648
|
/**
|
|
4426
|
-
*
|
|
4649
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4427
4650
|
*/
|
|
4428
|
-
|
|
4651
|
+
reportGroupRef: ApiObjectReference;
|
|
4429
4652
|
|
|
4430
4653
|
/**
|
|
4431
|
-
*
|
|
4654
|
+
* Bestellt durch Ansprechpartner
|
|
4432
4655
|
*/
|
|
4433
|
-
|
|
4656
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4434
4657
|
}
|
|
4435
4658
|
|
|
4436
4659
|
export interface DocumentAdditionalInfo {
|
|
@@ -4581,14 +4804,14 @@ export interface DocumentAddress {
|
|
|
4581
4804
|
postOfficeBox: string;
|
|
4582
4805
|
|
|
4583
4806
|
/**
|
|
4584
|
-
*
|
|
4807
|
+
* Street
|
|
4585
4808
|
*/
|
|
4586
|
-
|
|
4809
|
+
street: string;
|
|
4587
4810
|
|
|
4588
4811
|
/**
|
|
4589
|
-
*
|
|
4812
|
+
* country code IsoAlpha3
|
|
4590
4813
|
*/
|
|
4591
|
-
|
|
4814
|
+
countryCode: string;
|
|
4592
4815
|
|
|
4593
4816
|
/**
|
|
4594
4817
|
* Unique identifier of the Object
|
|
@@ -4606,14 +4829,14 @@ export interface DocumentAddress {
|
|
|
4606
4829
|
info: MetaInfo;
|
|
4607
4830
|
|
|
4608
4831
|
/**
|
|
4609
|
-
*
|
|
4832
|
+
* Lieferart
|
|
4610
4833
|
*/
|
|
4611
|
-
|
|
4834
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4612
4835
|
|
|
4613
4836
|
/**
|
|
4614
|
-
*
|
|
4837
|
+
* GLN
|
|
4615
4838
|
*/
|
|
4616
|
-
|
|
4839
|
+
globalLocationNumber: string;
|
|
4617
4840
|
|
|
4618
4841
|
/**
|
|
4619
4842
|
* Postcode
|
|
@@ -4733,6 +4956,7 @@ export const enum DocumentCategory {
|
|
|
4733
4956
|
POS_RETURN_CASH_RECEIPT = 'POS_RETURN_CASH_RECEIPT',
|
|
4734
4957
|
POS_CASH_JOURNAL_DEPOSIT = 'POS_CASH_JOURNAL_DEPOSIT',
|
|
4735
4958
|
POS_CASH_JOURNAL_EXPENSE = 'POS_CASH_JOURNAL_EXPENSE',
|
|
4959
|
+
POS_CASH_JOURNAL_WITHDRAWAL = 'POS_CASH_JOURNAL_WITHDRAWAL',
|
|
4736
4960
|
POS_CASH_JOURNAL_CLOSING = 'POS_CASH_JOURNAL_CLOSING',
|
|
4737
4961
|
FABRICATION_ORDER = 'FABRICATION_ORDER'
|
|
4738
4962
|
}
|
|
@@ -4793,14 +5017,14 @@ export interface DocumentContractDetail {
|
|
|
4793
5017
|
runtimeToDate: ScriptingDate;
|
|
4794
5018
|
|
|
4795
5019
|
/**
|
|
4796
|
-
*
|
|
5020
|
+
* Nächste Fälligkeit
|
|
4797
5021
|
*/
|
|
4798
|
-
|
|
5022
|
+
nextDueDate: ScriptingDate;
|
|
4799
5023
|
|
|
4800
5024
|
/**
|
|
4801
|
-
*
|
|
5025
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4802
5026
|
*/
|
|
4803
|
-
|
|
5027
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4804
5028
|
|
|
4805
5029
|
/**
|
|
4806
5030
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4965,14 +5189,14 @@ export const enum DocumentImportType {
|
|
|
4965
5189
|
export interface DocumentLine {
|
|
4966
5190
|
|
|
4967
5191
|
/**
|
|
4968
|
-
*
|
|
5192
|
+
* Leistungsdatum
|
|
4969
5193
|
*/
|
|
4970
|
-
|
|
5194
|
+
performanceDate: ScriptingDate;
|
|
4971
5195
|
|
|
4972
5196
|
/**
|
|
4973
|
-
*
|
|
5197
|
+
* Zolltarifnummer
|
|
4974
5198
|
*/
|
|
4975
|
-
|
|
5199
|
+
customsTariffNumber: string;
|
|
4976
5200
|
|
|
4977
5201
|
/**
|
|
4978
5202
|
* Land der Herkunft
|
|
@@ -5035,14 +5259,14 @@ export interface DocumentLine {
|
|
|
5035
5259
|
number: string;
|
|
5036
5260
|
|
|
5037
5261
|
/**
|
|
5038
|
-
*
|
|
5262
|
+
* Gesamtbruttogewicht
|
|
5039
5263
|
*/
|
|
5040
|
-
|
|
5264
|
+
totalGrossWeight: number;
|
|
5041
5265
|
|
|
5042
5266
|
/**
|
|
5043
|
-
*
|
|
5267
|
+
* Referenz zur Kundenauftragszeile
|
|
5044
5268
|
*/
|
|
5045
|
-
|
|
5269
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5046
5270
|
|
|
5047
5271
|
/**
|
|
5048
5272
|
* skontierbare Position?
|
|
@@ -5065,14 +5289,14 @@ export interface DocumentLine {
|
|
|
5065
5289
|
baseTotalLinePrice: number;
|
|
5066
5290
|
|
|
5067
5291
|
/**
|
|
5068
|
-
*
|
|
5292
|
+
* FiBu-Buchung
|
|
5069
5293
|
*/
|
|
5070
|
-
|
|
5294
|
+
financeBooking: DocumentFinanceBooking;
|
|
5071
5295
|
|
|
5072
5296
|
/**
|
|
5073
|
-
*
|
|
5297
|
+
* Positionstyp
|
|
5074
5298
|
*/
|
|
5075
|
-
|
|
5299
|
+
lineType: DocumentLineType;
|
|
5076
5300
|
|
|
5077
5301
|
/**
|
|
5078
5302
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5105,14 +5329,14 @@ export interface DocumentLine {
|
|
|
5105
5329
|
id: number;
|
|
5106
5330
|
|
|
5107
5331
|
/**
|
|
5108
|
-
*
|
|
5332
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5109
5333
|
*/
|
|
5110
|
-
|
|
5334
|
+
positionOfArticleLine: number;
|
|
5111
5335
|
|
|
5112
5336
|
/**
|
|
5113
|
-
*
|
|
5337
|
+
* Externe Referenz zum VDS-Paket
|
|
5114
5338
|
*/
|
|
5115
|
-
|
|
5339
|
+
externalReferenceVds: string;
|
|
5116
5340
|
|
|
5117
5341
|
/**
|
|
5118
5342
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5130,14 +5354,14 @@ export interface DocumentLine {
|
|
|
5130
5354
|
info: MetaInfo;
|
|
5131
5355
|
|
|
5132
5356
|
/**
|
|
5133
|
-
*
|
|
5357
|
+
* Preiseinheit
|
|
5134
5358
|
*/
|
|
5135
|
-
|
|
5359
|
+
priceUnit: number;
|
|
5136
5360
|
|
|
5137
5361
|
/**
|
|
5138
|
-
*
|
|
5362
|
+
* Steuerschema
|
|
5139
5363
|
*/
|
|
5140
|
-
|
|
5364
|
+
taxSchemaRef: ApiObjectReference;
|
|
5141
5365
|
|
|
5142
5366
|
/**
|
|
5143
5367
|
* Lieferart
|
|
@@ -5274,26 +5498,26 @@ export interface DocumentLine {
|
|
|
5274
5498
|
*/
|
|
5275
5499
|
revenueCalculation: RevenueCalculation;
|
|
5276
5500
|
|
|
5277
|
-
/**
|
|
5278
|
-
* Einheitentyp
|
|
5279
|
-
*/
|
|
5280
|
-
unitType: UnitTypeReference;
|
|
5281
|
-
|
|
5282
5501
|
/**
|
|
5283
5502
|
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5284
5503
|
*/
|
|
5285
5504
|
totalLinePrice: number;
|
|
5286
5505
|
|
|
5287
5506
|
/**
|
|
5288
|
-
*
|
|
5507
|
+
* Einheitentyp
|
|
5289
5508
|
*/
|
|
5290
|
-
|
|
5509
|
+
unitType: UnitTypeReference;
|
|
5291
5510
|
|
|
5292
5511
|
/**
|
|
5293
5512
|
* Zubehör Einfügeart
|
|
5294
5513
|
*/
|
|
5295
5514
|
insertTerm: AccessoryInsertTerm;
|
|
5296
5515
|
|
|
5516
|
+
/**
|
|
5517
|
+
* Referenz zur Basiszeile
|
|
5518
|
+
*/
|
|
5519
|
+
baseLineId: number;
|
|
5520
|
+
|
|
5297
5521
|
/**
|
|
5298
5522
|
* Einheit Bruttogewicht
|
|
5299
5523
|
*/
|
|
@@ -5626,6 +5850,11 @@ export interface DocumentLineComponent {
|
|
|
5626
5850
|
|
|
5627
5851
|
export interface DocumentLineComponentFabricationDetail {
|
|
5628
5852
|
|
|
5853
|
+
/**
|
|
5854
|
+
* Quell-Gebindeartikel für die Umlagerung von Material
|
|
5855
|
+
*/
|
|
5856
|
+
sourceBundleArticleRef: ProductArticleRef;
|
|
5857
|
+
|
|
5629
5858
|
/**
|
|
5630
5859
|
* Abweichende Herstellungskosten
|
|
5631
5860
|
*/
|
|
@@ -5799,14 +6028,14 @@ export interface DocumentLinePosDetail {
|
|
|
5799
6028
|
paymentOperation: PosPaymentOperation;
|
|
5800
6029
|
|
|
5801
6030
|
/**
|
|
5802
|
-
*
|
|
6031
|
+
* Modus für die Entnahme/Abschöpfung beim Kassenabschluss
|
|
5803
6032
|
*/
|
|
5804
|
-
|
|
6033
|
+
withdrawalMode: CashJournalWithdrawalMode;
|
|
5805
6034
|
|
|
5806
6035
|
/**
|
|
5807
|
-
*
|
|
6036
|
+
* Status der externen Zahlung
|
|
5808
6037
|
*/
|
|
5809
|
-
|
|
6038
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5810
6039
|
|
|
5811
6040
|
/**
|
|
5812
6041
|
* Typ der Einlage/Ausgabe
|
|
@@ -5814,34 +6043,54 @@ export interface DocumentLinePosDetail {
|
|
|
5814
6043
|
depositExpenseTypeId: number;
|
|
5815
6044
|
|
|
5816
6045
|
/**
|
|
5817
|
-
*
|
|
6046
|
+
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
5818
6047
|
*/
|
|
5819
|
-
|
|
6048
|
+
withdrawToBalance: number;
|
|
5820
6049
|
|
|
5821
6050
|
/**
|
|
5822
|
-
* Externe Payment-ID
|
|
6051
|
+
* Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
|
|
5823
6052
|
*/
|
|
5824
|
-
|
|
6053
|
+
cancelledExternalPaymentId: string;
|
|
5825
6054
|
|
|
5826
6055
|
/**
|
|
5827
|
-
*
|
|
6056
|
+
* Version Identifier for this Object (for PUT)
|
|
5828
6057
|
*/
|
|
5829
|
-
|
|
6058
|
+
version: number;
|
|
5830
6059
|
|
|
5831
6060
|
/**
|
|
5832
|
-
*
|
|
6061
|
+
* Abschöpfungsbetrag (Modus MANUAL)
|
|
5833
6062
|
*/
|
|
5834
|
-
|
|
6063
|
+
withdrawalAmount: number;
|
|
5835
6064
|
|
|
5836
6065
|
/**
|
|
5837
|
-
*
|
|
6066
|
+
* Zahlungsart
|
|
5838
6067
|
*/
|
|
5839
|
-
|
|
6068
|
+
paymentMethodId: number;
|
|
5840
6069
|
|
|
5841
6070
|
/**
|
|
5842
|
-
*
|
|
6071
|
+
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
5843
6072
|
*/
|
|
5844
|
-
|
|
6073
|
+
externalPaymentErrorMessage: string;
|
|
6074
|
+
|
|
6075
|
+
/**
|
|
6076
|
+
* Saldo der Zahlungsart vor Abschöpfung
|
|
6077
|
+
*/
|
|
6078
|
+
balanceBeforeWithdrawal: number;
|
|
6079
|
+
|
|
6080
|
+
/**
|
|
6081
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6082
|
+
*/
|
|
6083
|
+
externalPaymentId: string;
|
|
6084
|
+
|
|
6085
|
+
/**
|
|
6086
|
+
* Typ der Position
|
|
6087
|
+
*/
|
|
6088
|
+
posLineType: PosLineType;
|
|
6089
|
+
|
|
6090
|
+
/**
|
|
6091
|
+
* Unique identifier of the Object
|
|
6092
|
+
*/
|
|
6093
|
+
id: number;
|
|
5845
6094
|
|
|
5846
6095
|
/**
|
|
5847
6096
|
* MetaInformations for this Object
|
|
@@ -6018,6 +6267,11 @@ export interface DocumentPosPayment {
|
|
|
6018
6267
|
*/
|
|
6019
6268
|
amount: number;
|
|
6020
6269
|
|
|
6270
|
+
/**
|
|
6271
|
+
* Modus für die Entnahme/Abschöpfung beim Kassenabschluss (nur bei CASH_FINAL_BALANCE-Position relevant)
|
|
6272
|
+
*/
|
|
6273
|
+
withdrawalMode: CashJournalWithdrawalMode;
|
|
6274
|
+
|
|
6021
6275
|
/**
|
|
6022
6276
|
* Typ der Einlage/Ausgabe
|
|
6023
6277
|
*/
|
|
@@ -6028,6 +6282,11 @@ export interface DocumentPosPayment {
|
|
|
6028
6282
|
*/
|
|
6029
6283
|
externalPaymentStatus: PosPaymentStatus;
|
|
6030
6284
|
|
|
6285
|
+
/**
|
|
6286
|
+
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
6287
|
+
*/
|
|
6288
|
+
withdrawToBalance: number;
|
|
6289
|
+
|
|
6031
6290
|
/**
|
|
6032
6291
|
* Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
|
|
6033
6292
|
*/
|
|
@@ -6043,11 +6302,21 @@ export interface DocumentPosPayment {
|
|
|
6043
6302
|
*/
|
|
6044
6303
|
posPaymentMethodRef: ApiObjectReference;
|
|
6045
6304
|
|
|
6305
|
+
/**
|
|
6306
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6307
|
+
*/
|
|
6308
|
+
withdrawalAmount: number;
|
|
6309
|
+
|
|
6046
6310
|
/**
|
|
6047
6311
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
6048
6312
|
*/
|
|
6049
6313
|
externalPaymentErrorMessage: string;
|
|
6050
6314
|
|
|
6315
|
+
/**
|
|
6316
|
+
* Saldo der Zahlungsart vor Abschöpfung (vom Backend gesetzt)
|
|
6317
|
+
*/
|
|
6318
|
+
balanceBeforeWithdrawal: number;
|
|
6319
|
+
|
|
6051
6320
|
/**
|
|
6052
6321
|
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6053
6322
|
*/
|
|
@@ -6314,14 +6583,14 @@ export interface DocumentText {
|
|
|
6314
6583
|
transferableIntoSubsequentDocuments: boolean;
|
|
6315
6584
|
|
|
6316
6585
|
/**
|
|
6317
|
-
*
|
|
6586
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6318
6587
|
*/
|
|
6319
|
-
|
|
6588
|
+
textPosition: TextPosition;
|
|
6320
6589
|
|
|
6321
6590
|
/**
|
|
6322
|
-
*
|
|
6591
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6323
6592
|
*/
|
|
6324
|
-
|
|
6593
|
+
deleted: boolean;
|
|
6325
6594
|
|
|
6326
6595
|
/**
|
|
6327
6596
|
* textBaustein Vorlage
|
|
@@ -6619,14 +6888,14 @@ export const enum DropShippingPolicy {
|
|
|
6619
6888
|
export interface DummySerialNumberStockTransferApi {
|
|
6620
6889
|
|
|
6621
6890
|
/**
|
|
6622
|
-
*
|
|
6891
|
+
* Seriennummer
|
|
6623
6892
|
*/
|
|
6624
|
-
|
|
6893
|
+
serialNumberId: number;
|
|
6625
6894
|
|
|
6626
6895
|
/**
|
|
6627
|
-
*
|
|
6896
|
+
* Ziel-Lager
|
|
6628
6897
|
*/
|
|
6629
|
-
|
|
6898
|
+
targetStorageId: number;
|
|
6630
6899
|
|
|
6631
6900
|
/**
|
|
6632
6901
|
* Bemerkung
|
|
@@ -6639,14 +6908,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6639
6908
|
bookDate: ScriptingDate;
|
|
6640
6909
|
|
|
6641
6910
|
/**
|
|
6642
|
-
*
|
|
6911
|
+
* Die gültige Seriennummer
|
|
6643
6912
|
*/
|
|
6644
|
-
|
|
6913
|
+
targetSerialNumber: string;
|
|
6645
6914
|
|
|
6646
6915
|
/**
|
|
6647
|
-
*
|
|
6916
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6648
6917
|
*/
|
|
6649
|
-
|
|
6918
|
+
targetExpiryDate: ScriptingDate;
|
|
6650
6919
|
|
|
6651
6920
|
/**
|
|
6652
6921
|
* Quell-Lagerplatz
|
|
@@ -6747,6 +7016,7 @@ export const enum EDocumentCategory {
|
|
|
6747
7016
|
POS_RETURN_CASH_RECEIPT = 'POS_RETURN_CASH_RECEIPT',
|
|
6748
7017
|
POS_CASH_JOURNAL_DEPOSIT = 'POS_CASH_JOURNAL_DEPOSIT',
|
|
6749
7018
|
POS_CASH_JOURNAL_EXPENSE = 'POS_CASH_JOURNAL_EXPENSE',
|
|
7019
|
+
POS_CASH_JOURNAL_WITHDRAWAL = 'POS_CASH_JOURNAL_WITHDRAWAL',
|
|
6750
7020
|
POS_CASH_JOURNAL_CLOSING = 'POS_CASH_JOURNAL_CLOSING',
|
|
6751
7021
|
FABRICATION_ORDER = 'FABRICATION_ORDER'
|
|
6752
7022
|
}
|
|
@@ -7003,14 +7273,14 @@ export interface FabricationRevertRequest {
|
|
|
7003
7273
|
export interface FabricationSerialNumber {
|
|
7004
7274
|
|
|
7005
7275
|
/**
|
|
7006
|
-
*
|
|
7276
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7007
7277
|
*/
|
|
7008
|
-
|
|
7278
|
+
serialNumberId: number;
|
|
7009
7279
|
|
|
7010
7280
|
/**
|
|
7011
|
-
*
|
|
7281
|
+
* MHD / Verfallsdatum
|
|
7012
7282
|
*/
|
|
7013
|
-
|
|
7283
|
+
expiryDate: ScriptingDate;
|
|
7014
7284
|
|
|
7015
7285
|
/**
|
|
7016
7286
|
* Bemerkung
|
|
@@ -7211,6 +7481,11 @@ export interface PaymentMethod {
|
|
|
7211
7481
|
*/
|
|
7212
7482
|
translations: Array<DocumentTypeTerm>;
|
|
7213
7483
|
|
|
7484
|
+
/**
|
|
7485
|
+
* Debitoren-OP abschließen?
|
|
7486
|
+
*/
|
|
7487
|
+
closeCustomerAccountType: boolean;
|
|
7488
|
+
|
|
7214
7489
|
/**
|
|
7215
7490
|
* +Tage für Folgelastschrift
|
|
7216
7491
|
*/
|
|
@@ -7231,6 +7506,11 @@ export interface PaymentMethod {
|
|
|
7231
7506
|
*/
|
|
7232
7507
|
id: number;
|
|
7233
7508
|
|
|
7509
|
+
/**
|
|
7510
|
+
* Kreditoren-OP abschließen?
|
|
7511
|
+
*/
|
|
7512
|
+
closeSupplierAccountType: boolean;
|
|
7513
|
+
|
|
7234
7514
|
/**
|
|
7235
7515
|
* Forderungs-OP abschließen?
|
|
7236
7516
|
*/
|
|
@@ -7249,26 +7529,26 @@ export interface PaymentTerm {
|
|
|
7249
7529
|
*/
|
|
7250
7530
|
paymentDiscount2: number;
|
|
7251
7531
|
|
|
7252
|
-
/**
|
|
7253
|
-
* Percent for Discount 1
|
|
7254
|
-
*/
|
|
7255
|
-
paymentDiscount1: number;
|
|
7256
|
-
|
|
7257
7532
|
/**
|
|
7258
7533
|
* printDescription
|
|
7259
7534
|
*/
|
|
7260
7535
|
printDescription: string;
|
|
7261
7536
|
|
|
7262
7537
|
/**
|
|
7263
|
-
*
|
|
7538
|
+
* Percent for Discount 1
|
|
7264
7539
|
*/
|
|
7265
|
-
|
|
7540
|
+
paymentDiscount1: number;
|
|
7266
7541
|
|
|
7267
7542
|
/**
|
|
7268
7543
|
* for deposit: remaining term
|
|
7269
7544
|
*/
|
|
7270
7545
|
remainingTermRef: ApiObjectReference;
|
|
7271
7546
|
|
|
7547
|
+
/**
|
|
7548
|
+
* Days for Discount 1
|
|
7549
|
+
*/
|
|
7550
|
+
paymentDays1: number;
|
|
7551
|
+
|
|
7272
7552
|
/**
|
|
7273
7553
|
* Days for Discount 2
|
|
7274
7554
|
*/
|
|
@@ -7542,6 +7822,7 @@ export const enum PickingType {
|
|
|
7542
7822
|
ROLLING_ORDER_PICKING = 'ROLLING_ORDER_PICKING',
|
|
7543
7823
|
CONSOLIDATION = 'CONSOLIDATION',
|
|
7544
7824
|
REPLENISHMENT = 'REPLENISHMENT',
|
|
7825
|
+
FABRICATION = 'FABRICATION',
|
|
7545
7826
|
MISSING_GOODS_PICKING = 'MISSING_GOODS_PICKING'
|
|
7546
7827
|
}
|
|
7547
7828
|
|
|
@@ -7666,14 +7947,14 @@ export interface PicklistLine {
|
|
|
7666
7947
|
articleNumber: string;
|
|
7667
7948
|
|
|
7668
7949
|
/**
|
|
7669
|
-
*
|
|
7950
|
+
* Lagernummer
|
|
7670
7951
|
*/
|
|
7671
|
-
|
|
7952
|
+
storageNumber: string;
|
|
7672
7953
|
|
|
7673
7954
|
/**
|
|
7674
|
-
*
|
|
7955
|
+
* Art der Position
|
|
7675
7956
|
*/
|
|
7676
|
-
|
|
7957
|
+
lineType: PicklistLineType;
|
|
7677
7958
|
|
|
7678
7959
|
/**
|
|
7679
7960
|
* ID der Ziel-Dokumentposition
|
|
@@ -7986,14 +8267,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7986
8267
|
maxArticleCountPerOrder: number;
|
|
7987
8268
|
|
|
7988
8269
|
/**
|
|
7989
|
-
*
|
|
8270
|
+
* Maximaler Auftragswert
|
|
7990
8271
|
*/
|
|
7991
|
-
|
|
8272
|
+
maxOrderValue: number;
|
|
7992
8273
|
|
|
7993
8274
|
/**
|
|
7994
|
-
*
|
|
8275
|
+
* Alternative Selektion in VQL
|
|
7995
8276
|
*/
|
|
7996
|
-
|
|
8277
|
+
alternativeSelectionInVql: string;
|
|
7997
8278
|
|
|
7998
8279
|
/**
|
|
7999
8280
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -8001,14 +8282,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8001
8282
|
maxOrderCount: number;
|
|
8002
8283
|
|
|
8003
8284
|
/**
|
|
8004
|
-
*
|
|
8285
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8005
8286
|
*/
|
|
8006
|
-
|
|
8287
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8007
8288
|
|
|
8008
8289
|
/**
|
|
8009
|
-
*
|
|
8290
|
+
* Nur vollständig lieferbare Positionen
|
|
8010
8291
|
*/
|
|
8011
|
-
|
|
8292
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
8012
8293
|
|
|
8013
8294
|
/**
|
|
8014
8295
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -8069,19 +8350,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8069
8350
|
printPicklist: boolean;
|
|
8070
8351
|
|
|
8071
8352
|
/**
|
|
8072
|
-
*
|
|
8353
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8073
8354
|
*/
|
|
8074
|
-
|
|
8355
|
+
maxPicklistLineCount: number;
|
|
8075
8356
|
|
|
8076
8357
|
/**
|
|
8077
|
-
*
|
|
8358
|
+
* Die zu verwendende Pickwagengruppe
|
|
8078
8359
|
*/
|
|
8079
|
-
|
|
8360
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8080
8361
|
|
|
8081
8362
|
/**
|
|
8082
|
-
*
|
|
8363
|
+
* Lagerplätze vorgeben
|
|
8083
8364
|
*/
|
|
8084
|
-
|
|
8365
|
+
specifyStorageBins: boolean;
|
|
8085
8366
|
|
|
8086
8367
|
/**
|
|
8087
8368
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -8089,9 +8370,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8089
8370
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8090
8371
|
|
|
8091
8372
|
/**
|
|
8092
|
-
*
|
|
8373
|
+
* Der zu verwendende Pickwagen
|
|
8093
8374
|
*/
|
|
8094
|
-
|
|
8375
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8095
8376
|
|
|
8096
8377
|
/**
|
|
8097
8378
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8161,11 +8442,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8161
8442
|
*/
|
|
8162
8443
|
showShippingFormOnPickingFinish: boolean;
|
|
8163
8444
|
|
|
8164
|
-
/**
|
|
8165
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8166
|
-
*/
|
|
8167
|
-
useDigitalPicklist: boolean;
|
|
8168
|
-
|
|
8169
8445
|
/**
|
|
8170
8446
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
8171
8447
|
*/
|
|
@@ -8176,6 +8452,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8176
8452
|
*/
|
|
8177
8453
|
allowFullConfirmation: boolean;
|
|
8178
8454
|
|
|
8455
|
+
/**
|
|
8456
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8457
|
+
*/
|
|
8458
|
+
useDigitalPicklist: boolean;
|
|
8459
|
+
|
|
8179
8460
|
/**
|
|
8180
8461
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
8181
8462
|
*/
|
|
@@ -8192,14 +8473,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8192
8473
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8193
8474
|
|
|
8194
8475
|
/**
|
|
8195
|
-
*
|
|
8476
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8196
8477
|
*/
|
|
8197
|
-
|
|
8478
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8198
8479
|
|
|
8199
8480
|
/**
|
|
8200
|
-
*
|
|
8481
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8201
8482
|
*/
|
|
8202
|
-
|
|
8483
|
+
autoDeterminationOfLots: boolean;
|
|
8203
8484
|
|
|
8204
8485
|
/**
|
|
8205
8486
|
* Zielmengen in Masken verstecken?
|
|
@@ -8227,7 +8508,8 @@ export const enum PosLineType {
|
|
|
8227
8508
|
CASH_START_BALANCE = 'CASH_START_BALANCE',
|
|
8228
8509
|
CASH_FINAL_BALANCE = 'CASH_FINAL_BALANCE',
|
|
8229
8510
|
CASH_DEPOSIT = 'CASH_DEPOSIT',
|
|
8230
|
-
CASH_EXPENSE = 'CASH_EXPENSE'
|
|
8511
|
+
CASH_EXPENSE = 'CASH_EXPENSE',
|
|
8512
|
+
CASH_WITHDRAWAL = 'CASH_WITHDRAWAL'
|
|
8231
8513
|
}
|
|
8232
8514
|
|
|
8233
8515
|
export const enum PosPaymentOperation {
|
|
@@ -8274,14 +8556,14 @@ export interface PriceSelectionCriteria {
|
|
|
8274
8556
|
quantity: number;
|
|
8275
8557
|
|
|
8276
8558
|
/**
|
|
8277
|
-
* Liste von
|
|
8559
|
+
* Liste von Artikel-IDs
|
|
8278
8560
|
*/
|
|
8279
|
-
|
|
8561
|
+
articleIds: Array<number>;
|
|
8280
8562
|
|
|
8281
8563
|
/**
|
|
8282
|
-
* Liste von
|
|
8564
|
+
* Liste von Account-IDs
|
|
8283
8565
|
*/
|
|
8284
|
-
|
|
8566
|
+
accountIds: Array<number>;
|
|
8285
8567
|
|
|
8286
8568
|
/**
|
|
8287
8569
|
* ein qualifier
|
|
@@ -8307,14 +8589,14 @@ export interface PriceSelectionCriteria {
|
|
|
8307
8589
|
export interface Product {
|
|
8308
8590
|
|
|
8309
8591
|
/**
|
|
8310
|
-
*
|
|
8592
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
8311
8593
|
*/
|
|
8312
|
-
|
|
8594
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
8313
8595
|
|
|
8314
8596
|
/**
|
|
8315
|
-
*
|
|
8597
|
+
* Zolltarifnummer
|
|
8316
8598
|
*/
|
|
8317
|
-
|
|
8599
|
+
customsTariffNumber: string;
|
|
8318
8600
|
|
|
8319
8601
|
/**
|
|
8320
8602
|
* Gebindeschema dieses Produkts
|
|
@@ -8503,14 +8785,14 @@ export interface ProductDiscount {
|
|
|
8503
8785
|
currencyRef: CurrencyReference;
|
|
8504
8786
|
|
|
8505
8787
|
/**
|
|
8506
|
-
*
|
|
8788
|
+
* Preisgruppe
|
|
8507
8789
|
*/
|
|
8508
|
-
|
|
8790
|
+
priceGroupRef: ApiObjectReference;
|
|
8509
8791
|
|
|
8510
8792
|
/**
|
|
8511
|
-
*
|
|
8793
|
+
* Wert des Rabatts
|
|
8512
8794
|
*/
|
|
8513
|
-
|
|
8795
|
+
modifierValue: number;
|
|
8514
8796
|
|
|
8515
8797
|
/**
|
|
8516
8798
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8533,14 +8815,14 @@ export interface ProductDiscount {
|
|
|
8533
8815
|
modifierValueType: ValueType;
|
|
8534
8816
|
|
|
8535
8817
|
/**
|
|
8536
|
-
*
|
|
8818
|
+
* Account, für den der Rabatt gültig ist
|
|
8537
8819
|
*/
|
|
8538
|
-
|
|
8820
|
+
accountRef: ApiObjectReference;
|
|
8539
8821
|
|
|
8540
8822
|
/**
|
|
8541
|
-
*
|
|
8823
|
+
* Name des Rabatts
|
|
8542
8824
|
*/
|
|
8543
|
-
|
|
8825
|
+
modifierName: string;
|
|
8544
8826
|
|
|
8545
8827
|
/**
|
|
8546
8828
|
* Unique identifier of the Object
|
|
@@ -8571,14 +8853,14 @@ export interface ProductGroup {
|
|
|
8571
8853
|
targetTradingMargin: number;
|
|
8572
8854
|
|
|
8573
8855
|
/**
|
|
8574
|
-
*
|
|
8856
|
+
* main product group
|
|
8575
8857
|
*/
|
|
8576
|
-
|
|
8858
|
+
mainGroupRef: ApiObjectReference;
|
|
8577
8859
|
|
|
8578
8860
|
/**
|
|
8579
|
-
*
|
|
8861
|
+
* Freifeld
|
|
8580
8862
|
*/
|
|
8581
|
-
|
|
8863
|
+
custom: EavProductgroup;
|
|
8582
8864
|
|
|
8583
8865
|
/**
|
|
8584
8866
|
* warengruppe aktiv ja/nein
|
|
@@ -8831,12 +9113,19 @@ export interface RecommendedRetailPrice {
|
|
|
8831
9113
|
export interface Referenceable {
|
|
8832
9114
|
}
|
|
8833
9115
|
|
|
8834
|
-
export
|
|
9116
|
+
export const enum RegulationCode {
|
|
9117
|
+
FR = 'FR',
|
|
9118
|
+
LQ = 'LQ',
|
|
9119
|
+
EQ = 'EQ',
|
|
9120
|
+
LR = 'LR'
|
|
9121
|
+
}
|
|
8835
9122
|
|
|
8836
|
-
|
|
8837
|
-
|
|
8838
|
-
|
|
8839
|
-
|
|
9123
|
+
export const enum RegulationSet {
|
|
9124
|
+
ADR = 'ADR',
|
|
9125
|
+
IATA = 'IATA'
|
|
9126
|
+
}
|
|
9127
|
+
|
|
9128
|
+
export interface RequestDocument {
|
|
8840
9129
|
|
|
8841
9130
|
/**
|
|
8842
9131
|
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
@@ -8844,15 +9133,20 @@ export interface RequestDocument {
|
|
|
8844
9133
|
incomingGoodsStorageBinId: number;
|
|
8845
9134
|
|
|
8846
9135
|
/**
|
|
8847
|
-
*
|
|
9136
|
+
* Belegdatum
|
|
8848
9137
|
*/
|
|
8849
|
-
|
|
9138
|
+
documentDate: ScriptingDate;
|
|
8850
9139
|
|
|
8851
9140
|
/**
|
|
8852
9141
|
* ID der Kassenschublade (bei POS)
|
|
8853
9142
|
*/
|
|
8854
9143
|
cashDrawerId: number;
|
|
8855
9144
|
|
|
9145
|
+
/**
|
|
9146
|
+
* Der Anzahlungsbetrag
|
|
9147
|
+
*/
|
|
9148
|
+
depositPaymentAmount: number;
|
|
9149
|
+
|
|
8856
9150
|
/**
|
|
8857
9151
|
* Leistungsdatum
|
|
8858
9152
|
*/
|
|
@@ -8979,14 +9273,14 @@ export interface RequestDocument {
|
|
|
8979
9273
|
accountId: number;
|
|
8980
9274
|
|
|
8981
9275
|
/**
|
|
8982
|
-
*
|
|
9276
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8983
9277
|
*/
|
|
8984
|
-
|
|
9278
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8985
9279
|
|
|
8986
9280
|
/**
|
|
8987
|
-
*
|
|
9281
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8988
9282
|
*/
|
|
8989
|
-
|
|
9283
|
+
processedByPicklistProcessing: boolean;
|
|
8990
9284
|
|
|
8991
9285
|
/**
|
|
8992
9286
|
* Die Rabatte des Beleges
|
|
@@ -9047,14 +9341,14 @@ export interface RequestDocumentLine {
|
|
|
9047
9341
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9048
9342
|
|
|
9049
9343
|
/**
|
|
9050
|
-
*
|
|
9344
|
+
* FiBu-Angaben
|
|
9051
9345
|
*/
|
|
9052
|
-
|
|
9346
|
+
financeBooking: DocumentFinanceBooking;
|
|
9053
9347
|
|
|
9054
9348
|
/**
|
|
9055
|
-
*
|
|
9349
|
+
* Typ dieser Position
|
|
9056
9350
|
*/
|
|
9057
|
-
|
|
9351
|
+
lineType: DocumentLineType;
|
|
9058
9352
|
|
|
9059
9353
|
/**
|
|
9060
9354
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9067,14 +9361,14 @@ export interface RequestDocumentLine {
|
|
|
9067
9361
|
dropShippingPolicy: DropShippingPolicy;
|
|
9068
9362
|
|
|
9069
9363
|
/**
|
|
9070
|
-
*
|
|
9364
|
+
* (optional) Lager-ID
|
|
9071
9365
|
*/
|
|
9072
|
-
|
|
9366
|
+
storageId: number;
|
|
9073
9367
|
|
|
9074
9368
|
/**
|
|
9075
|
-
*
|
|
9369
|
+
* Positionsnummer der Artikel
|
|
9076
9370
|
*/
|
|
9077
|
-
|
|
9371
|
+
positionOfArticleLine: number;
|
|
9078
9372
|
|
|
9079
9373
|
/**
|
|
9080
9374
|
* Vertragsdetails zur Belegposition
|
|
@@ -9096,6 +9390,11 @@ export interface RequestDocumentLine {
|
|
|
9096
9390
|
*/
|
|
9097
9391
|
quantity: number;
|
|
9098
9392
|
|
|
9393
|
+
/**
|
|
9394
|
+
* Versandkosten mit Bedingungen
|
|
9395
|
+
*/
|
|
9396
|
+
shippingCostDetail: RequestDocumentLineShippingCostDetail;
|
|
9397
|
+
|
|
9099
9398
|
/**
|
|
9100
9399
|
* Details Produktionsbelegen
|
|
9101
9400
|
*/
|
|
@@ -9152,14 +9451,14 @@ export interface RequestDocumentLine {
|
|
|
9152
9451
|
externalArticleNumber: string;
|
|
9153
9452
|
|
|
9154
9453
|
/**
|
|
9155
|
-
*
|
|
9454
|
+
* Buchungen zu dieser Belegposition
|
|
9156
9455
|
*/
|
|
9157
|
-
|
|
9456
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9158
9457
|
|
|
9159
9458
|
/**
|
|
9160
|
-
*
|
|
9459
|
+
* ID der Quell-Belegposition
|
|
9161
9460
|
*/
|
|
9162
|
-
|
|
9461
|
+
sourceLineId: number;
|
|
9163
9462
|
|
|
9164
9463
|
/**
|
|
9165
9464
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9231,6 +9530,24 @@ export interface RequestDocumentLineFabricationDetail {
|
|
|
9231
9530
|
fabricationSerialNumbers: Array<FabricationSerialNumber>;
|
|
9232
9531
|
}
|
|
9233
9532
|
|
|
9533
|
+
export interface RequestDocumentLineShippingCostDetail {
|
|
9534
|
+
|
|
9535
|
+
/**
|
|
9536
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
9537
|
+
*/
|
|
9538
|
+
manualCosts: boolean;
|
|
9539
|
+
|
|
9540
|
+
/**
|
|
9541
|
+
* Keine Versandkosten (freier Versand)
|
|
9542
|
+
*/
|
|
9543
|
+
freeShipping: boolean;
|
|
9544
|
+
|
|
9545
|
+
/**
|
|
9546
|
+
* Einkaufspreis in Basiswährung
|
|
9547
|
+
*/
|
|
9548
|
+
purchasePrice: number;
|
|
9549
|
+
}
|
|
9550
|
+
|
|
9234
9551
|
export interface RequestDocumentPriceModifier {
|
|
9235
9552
|
|
|
9236
9553
|
/**
|
|
@@ -9997,14 +10314,14 @@ export interface ShelfFile {
|
|
|
9997
10314
|
version: number;
|
|
9998
10315
|
|
|
9999
10316
|
/**
|
|
10000
|
-
*
|
|
10317
|
+
* current reference of this file in our storage
|
|
10001
10318
|
*/
|
|
10002
|
-
|
|
10319
|
+
storageHandle: string;
|
|
10003
10320
|
|
|
10004
10321
|
/**
|
|
10005
|
-
*
|
|
10322
|
+
* meta data
|
|
10006
10323
|
*/
|
|
10007
|
-
|
|
10324
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10008
10325
|
|
|
10009
10326
|
/**
|
|
10010
10327
|
* MetaInformations for this Object
|
|
@@ -10267,14 +10584,14 @@ export interface StockMovementManualApi {
|
|
|
10267
10584
|
export interface StockTransferApi {
|
|
10268
10585
|
|
|
10269
10586
|
/**
|
|
10270
|
-
*
|
|
10587
|
+
* Seriennummer
|
|
10271
10588
|
*/
|
|
10272
|
-
|
|
10589
|
+
serialNumberId: number;
|
|
10273
10590
|
|
|
10274
10591
|
/**
|
|
10275
|
-
*
|
|
10592
|
+
* Ziel-Lager
|
|
10276
10593
|
*/
|
|
10277
|
-
|
|
10594
|
+
targetStorageId: number;
|
|
10278
10595
|
|
|
10279
10596
|
/**
|
|
10280
10597
|
* Bemerkung
|
|
@@ -10628,14 +10945,14 @@ export const enum TagType {
|
|
|
10628
10945
|
export interface TaxIdForeignCountry {
|
|
10629
10946
|
|
|
10630
10947
|
/**
|
|
10631
|
-
*
|
|
10948
|
+
* Tax ID of the company in the associated country
|
|
10632
10949
|
*/
|
|
10633
|
-
|
|
10950
|
+
taxId: string;
|
|
10634
10951
|
|
|
10635
10952
|
/**
|
|
10636
|
-
*
|
|
10953
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10637
10954
|
*/
|
|
10638
|
-
|
|
10955
|
+
countryCode: string;
|
|
10639
10956
|
|
|
10640
10957
|
/**
|
|
10641
10958
|
* Unique identifier of the Object
|
|
@@ -10823,6 +11140,14 @@ export const enum TssSignature$TssSignatureStatus {
|
|
|
10823
11140
|
ERROR = 'ERROR'
|
|
10824
11141
|
}
|
|
10825
11142
|
|
|
11143
|
+
export const enum TunnelRestrictionCode {
|
|
11144
|
+
A = 'A',
|
|
11145
|
+
B = 'B',
|
|
11146
|
+
C = 'C',
|
|
11147
|
+
D = 'D',
|
|
11148
|
+
E = 'E'
|
|
11149
|
+
}
|
|
11150
|
+
|
|
10826
11151
|
export interface UUID {
|
|
10827
11152
|
}
|
|
10828
11153
|
|
|
@@ -11118,14 +11443,14 @@ export interface VariantValue {
|
|
|
11118
11443
|
version: number;
|
|
11119
11444
|
|
|
11120
11445
|
/**
|
|
11121
|
-
*
|
|
11446
|
+
* Mehrsprachige Bezeichnungen
|
|
11122
11447
|
*/
|
|
11123
|
-
|
|
11448
|
+
labels: Array<VariantDescription>;
|
|
11124
11449
|
|
|
11125
11450
|
/**
|
|
11126
|
-
*
|
|
11451
|
+
* Variantenattribut
|
|
11127
11452
|
*/
|
|
11128
|
-
|
|
11453
|
+
attributeRef: ApiObjectReference;
|
|
11129
11454
|
|
|
11130
11455
|
/**
|
|
11131
11456
|
* MetaInformations for this Object
|