@vario-software/types 2026.20.4 → 2026.21.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 +2095 -1237
- package/scripting/services.d.ts +103 -62
- package/scripting/types.d.ts +448 -286
package/scripting/types.d.ts
CHANGED
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Post office box
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
postOfficeBox: string;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Title
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Street
|
|
@@ -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
|
|
@@ -652,6 +652,11 @@ export interface AccountManufacturer {
|
|
|
652
652
|
*/
|
|
653
653
|
id: number;
|
|
654
654
|
|
|
655
|
+
/**
|
|
656
|
+
* Ist der UVP verpflichtend?
|
|
657
|
+
*/
|
|
658
|
+
forcedRecommendedRetailPrice: boolean;
|
|
659
|
+
|
|
655
660
|
/**
|
|
656
661
|
* Version Identifier for this Object (for PUT)
|
|
657
662
|
*/
|
|
@@ -1013,6 +1018,11 @@ export interface Article {
|
|
|
1013
1018
|
*/
|
|
1014
1019
|
baseCapacityUnit: UnitTypeReference;
|
|
1015
1020
|
|
|
1021
|
+
/**
|
|
1022
|
+
* Seriennummern Auszeichnungsart
|
|
1023
|
+
*/
|
|
1024
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1025
|
+
|
|
1016
1026
|
/**
|
|
1017
1027
|
* Durchschnittl. EKP (Startwert)
|
|
1018
1028
|
*/
|
|
@@ -1023,11 +1033,6 @@ export interface Article {
|
|
|
1023
1033
|
*/
|
|
1024
1034
|
sellableWithoutStock: boolean;
|
|
1025
1035
|
|
|
1026
|
-
/**
|
|
1027
|
-
* Seriennummern Auszeichnungsart
|
|
1028
|
-
*/
|
|
1029
|
-
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1030
|
-
|
|
1031
1036
|
/**
|
|
1032
1037
|
* gross Volume in cubic meters
|
|
1033
1038
|
*/
|
|
@@ -1044,20 +1049,25 @@ export interface Article {
|
|
|
1044
1049
|
productUnit: UnitTypeReference;
|
|
1045
1050
|
|
|
1046
1051
|
/**
|
|
1047
|
-
*
|
|
1052
|
+
* Ist der UVP verpflichtend?
|
|
1048
1053
|
*/
|
|
1049
|
-
|
|
1054
|
+
forcedRecommendedRetailPrice: boolean;
|
|
1050
1055
|
|
|
1051
1056
|
/**
|
|
1052
|
-
*
|
|
1057
|
+
* Garantie in Monaten
|
|
1053
1058
|
*/
|
|
1054
|
-
|
|
1059
|
+
warrantyInMonths: number;
|
|
1055
1060
|
|
|
1056
1061
|
/**
|
|
1057
1062
|
* Optionen zur Berechnung der Verfügbarkeit
|
|
1058
1063
|
*/
|
|
1059
1064
|
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1060
1065
|
|
|
1066
|
+
/**
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
|
+
*/
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
|
+
|
|
1061
1071
|
/**
|
|
1062
1072
|
* unique product number
|
|
1063
1073
|
*/
|
|
@@ -1213,6 +1223,11 @@ export interface Article {
|
|
|
1213
1223
|
*/
|
|
1214
1224
|
taxLiabilityReversed: boolean;
|
|
1215
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
|
+
*/
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
|
+
|
|
1216
1231
|
/**
|
|
1217
1232
|
* Notiz
|
|
1218
1233
|
*/
|
|
@@ -1258,6 +1273,11 @@ export interface Article {
|
|
|
1258
1273
|
*/
|
|
1259
1274
|
grossSalesPrice: number;
|
|
1260
1275
|
|
|
1276
|
+
/**
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
|
+
*/
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
|
+
|
|
1261
1281
|
/**
|
|
1262
1282
|
* Letzter EKP (Startwert)
|
|
1263
1283
|
*/
|
|
@@ -1273,26 +1293,26 @@ export interface Article {
|
|
|
1273
1293
|
*/
|
|
1274
1294
|
isDangerousGood: boolean;
|
|
1275
1295
|
|
|
1276
|
-
/**
|
|
1277
|
-
* reference to Product
|
|
1278
|
-
*/
|
|
1279
|
-
productRef: ApiObjectReference;
|
|
1280
|
-
|
|
1281
1296
|
/**
|
|
1282
1297
|
* Versandlabeldruck
|
|
1283
1298
|
*/
|
|
1284
1299
|
shippingLabelPrinting: boolean;
|
|
1285
1300
|
|
|
1286
1301
|
/**
|
|
1287
|
-
*
|
|
1302
|
+
* reference to Product
|
|
1288
1303
|
*/
|
|
1289
|
-
|
|
1304
|
+
productRef: ApiObjectReference;
|
|
1290
1305
|
|
|
1291
1306
|
/**
|
|
1292
1307
|
* alternative name of this product
|
|
1293
1308
|
*/
|
|
1294
1309
|
alternativeName: string;
|
|
1295
1310
|
|
|
1311
|
+
/**
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
|
+
*/
|
|
1314
|
+
discountable: boolean;
|
|
1315
|
+
|
|
1296
1316
|
/**
|
|
1297
1317
|
* Kontingentartikel
|
|
1298
1318
|
*/
|
|
@@ -1329,14 +1349,14 @@ export interface Article {
|
|
|
1329
1349
|
custom: EavArticle;
|
|
1330
1350
|
|
|
1331
1351
|
/**
|
|
1332
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1333
1353
|
*/
|
|
1334
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1335
1355
|
|
|
1336
1356
|
/**
|
|
1337
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1338
1358
|
*/
|
|
1339
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1340
1360
|
|
|
1341
1361
|
/**
|
|
1342
1362
|
* Hersteller
|
|
@@ -1363,15 +1383,20 @@ export interface Article {
|
|
|
1363
1383
|
*/
|
|
1364
1384
|
listed: boolean;
|
|
1365
1385
|
|
|
1386
|
+
/**
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
|
+
*/
|
|
1389
|
+
commissionable: boolean;
|
|
1390
|
+
|
|
1366
1391
|
/**
|
|
1367
1392
|
* Nur manuelle Produktion
|
|
1368
1393
|
*/
|
|
1369
1394
|
onlyManualFabrication: boolean;
|
|
1370
1395
|
|
|
1371
1396
|
/**
|
|
1372
|
-
*
|
|
1397
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
1373
1398
|
*/
|
|
1374
|
-
|
|
1399
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
1375
1400
|
|
|
1376
1401
|
/**
|
|
1377
1402
|
* Preisbasis
|
|
@@ -1397,14 +1422,14 @@ export interface Article$Metric {
|
|
|
1397
1422
|
sizeX: number;
|
|
1398
1423
|
|
|
1399
1424
|
/**
|
|
1400
|
-
*
|
|
1425
|
+
* size unit
|
|
1401
1426
|
*/
|
|
1402
|
-
|
|
1427
|
+
sizeUnit: UnitTypeReference;
|
|
1403
1428
|
|
|
1404
1429
|
/**
|
|
1405
|
-
*
|
|
1430
|
+
* weight
|
|
1406
1431
|
*/
|
|
1407
|
-
|
|
1432
|
+
weight: number;
|
|
1408
1433
|
|
|
1409
1434
|
/**
|
|
1410
1435
|
* size
|
|
@@ -1458,6 +1483,11 @@ export const enum ArticleAvailabilityDetermination$Operation {
|
|
|
1458
1483
|
|
|
1459
1484
|
export interface ArticleIdentifier {
|
|
1460
1485
|
|
|
1486
|
+
/**
|
|
1487
|
+
* Standard Artikel Kennung?
|
|
1488
|
+
*/
|
|
1489
|
+
defaultArticleIdentifier: boolean;
|
|
1490
|
+
|
|
1461
1491
|
/**
|
|
1462
1492
|
* identifier type
|
|
1463
1493
|
*/
|
|
@@ -1562,14 +1592,14 @@ export interface ArticleListing {
|
|
|
1562
1592
|
alternativeName: WithDefaults<String>;
|
|
1563
1593
|
|
|
1564
1594
|
/**
|
|
1565
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1595
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1566
1596
|
*/
|
|
1567
|
-
|
|
1597
|
+
customLowestPriceNet: number;
|
|
1568
1598
|
|
|
1569
1599
|
/**
|
|
1570
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1600
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1571
1601
|
*/
|
|
1572
|
-
|
|
1602
|
+
proposedLowestPriceNet: number;
|
|
1573
1603
|
|
|
1574
1604
|
/**
|
|
1575
1605
|
* der aktuelle listing stand
|
|
@@ -1723,20 +1753,26 @@ export const enum ArticleSerialType {
|
|
|
1723
1753
|
NONE = 'NONE',
|
|
1724
1754
|
SERIAL_NUMBER = 'SERIAL_NUMBER',
|
|
1725
1755
|
LOT = 'LOT',
|
|
1756
|
+
BEST_BEFORE = 'BEST_BEFORE',
|
|
1726
1757
|
DOUBLE_SERIAL_NUMBER = 'DOUBLE_SERIAL_NUMBER'
|
|
1727
1758
|
}
|
|
1728
1759
|
|
|
1729
1760
|
export interface ArticleStorage {
|
|
1730
1761
|
|
|
1762
|
+
/**
|
|
1763
|
+
* Nachschub ab
|
|
1764
|
+
*/
|
|
1765
|
+
replenishmentFrom: number;
|
|
1766
|
+
|
|
1731
1767
|
/**
|
|
1732
1768
|
* Bestand im Lager
|
|
1733
1769
|
*/
|
|
1734
1770
|
quantityInStock: number;
|
|
1735
1771
|
|
|
1736
1772
|
/**
|
|
1737
|
-
*
|
|
1773
|
+
* Meldebestand
|
|
1738
1774
|
*/
|
|
1739
|
-
|
|
1775
|
+
reorderPoint: number;
|
|
1740
1776
|
|
|
1741
1777
|
/**
|
|
1742
1778
|
* Bestellte Menge
|
|
@@ -1748,11 +1784,6 @@ export interface ArticleStorage {
|
|
|
1748
1784
|
*/
|
|
1749
1785
|
quantityInPicking: number;
|
|
1750
1786
|
|
|
1751
|
-
/**
|
|
1752
|
-
* Meldebestand
|
|
1753
|
-
*/
|
|
1754
|
-
reorderPoint: number;
|
|
1755
|
-
|
|
1756
1787
|
/**
|
|
1757
1788
|
* Nachschub auf
|
|
1758
1789
|
*/
|
|
@@ -1804,14 +1835,14 @@ export interface ArticleStorage {
|
|
|
1804
1835
|
storageRef: ApiObjectReference;
|
|
1805
1836
|
|
|
1806
1837
|
/**
|
|
1807
|
-
*
|
|
1838
|
+
* Sollbestand
|
|
1808
1839
|
*/
|
|
1809
|
-
|
|
1840
|
+
targetStock: number;
|
|
1810
1841
|
|
|
1811
1842
|
/**
|
|
1812
|
-
*
|
|
1843
|
+
* Vorgabe-Lagerplätze
|
|
1813
1844
|
*/
|
|
1814
|
-
|
|
1845
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1815
1846
|
|
|
1816
1847
|
/**
|
|
1817
1848
|
* Aktuelle Menge in Produktion
|
|
@@ -1847,14 +1878,14 @@ export interface ArticleSupplier {
|
|
|
1847
1878
|
supplierReportingStock: number;
|
|
1848
1879
|
|
|
1849
1880
|
/**
|
|
1850
|
-
*
|
|
1881
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1851
1882
|
*/
|
|
1852
|
-
|
|
1883
|
+
deliveryTime: number;
|
|
1853
1884
|
|
|
1854
1885
|
/**
|
|
1855
|
-
*
|
|
1886
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1856
1887
|
*/
|
|
1857
|
-
|
|
1888
|
+
useSupplierArticleIdentifier: boolean;
|
|
1858
1889
|
|
|
1859
1890
|
/**
|
|
1860
1891
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -1912,14 +1943,14 @@ export interface ArticleSupplier {
|
|
|
1912
1943
|
packagingUnit: number;
|
|
1913
1944
|
|
|
1914
1945
|
/**
|
|
1915
|
-
*
|
|
1946
|
+
* Referenced Article
|
|
1916
1947
|
*/
|
|
1917
|
-
|
|
1948
|
+
articleId: number;
|
|
1918
1949
|
|
|
1919
1950
|
/**
|
|
1920
|
-
*
|
|
1951
|
+
* Lieferanten-Preise
|
|
1921
1952
|
*/
|
|
1922
|
-
|
|
1953
|
+
productPrices: Array<ProductPrice>;
|
|
1923
1954
|
|
|
1924
1955
|
/**
|
|
1925
1956
|
* Aktiv?
|
|
@@ -1957,14 +1988,14 @@ export interface ArticleSupplier {
|
|
|
1957
1988
|
defaultNetPrice: number;
|
|
1958
1989
|
|
|
1959
1990
|
/**
|
|
1960
|
-
*
|
|
1991
|
+
* Einkaufseinheit
|
|
1961
1992
|
*/
|
|
1962
|
-
|
|
1993
|
+
purchaseUnit: number;
|
|
1963
1994
|
|
|
1964
1995
|
/**
|
|
1965
|
-
*
|
|
1996
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1966
1997
|
*/
|
|
1967
|
-
|
|
1998
|
+
orderOnComponentBase: boolean;
|
|
1968
1999
|
|
|
1969
2000
|
/**
|
|
1970
2001
|
* Referenced Supplier-Account
|
|
@@ -2399,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2399
2430
|
export interface CrmChecklistItem {
|
|
2400
2431
|
|
|
2401
2432
|
/**
|
|
2402
|
-
*
|
|
2433
|
+
* Ist das Element "angehakt"?
|
|
2403
2434
|
*/
|
|
2404
|
-
|
|
2435
|
+
checked: boolean;
|
|
2405
2436
|
|
|
2406
2437
|
/**
|
|
2407
|
-
*
|
|
2438
|
+
* Text des Checklisten-Elements
|
|
2408
2439
|
*/
|
|
2409
|
-
|
|
2440
|
+
memo: string;
|
|
2410
2441
|
|
|
2411
2442
|
/**
|
|
2412
2443
|
* Unique identifier of the Object
|
|
@@ -2798,14 +2829,14 @@ export interface CrmProject {
|
|
|
2798
2829
|
priorityRef: ApiObjectReference;
|
|
2799
2830
|
|
|
2800
2831
|
/**
|
|
2801
|
-
*
|
|
2832
|
+
* Projektleiter vom Auftragnehmer
|
|
2802
2833
|
*/
|
|
2803
|
-
|
|
2834
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2804
2835
|
|
|
2805
2836
|
/**
|
|
2806
|
-
*
|
|
2837
|
+
* Phase
|
|
2807
2838
|
*/
|
|
2808
|
-
|
|
2839
|
+
phaseRef: ApiObjectReference;
|
|
2809
2840
|
|
|
2810
2841
|
/**
|
|
2811
2842
|
* Aufgaben-Nummer
|
|
@@ -2823,14 +2854,14 @@ export interface CrmProject {
|
|
|
2823
2854
|
billedTimes: number;
|
|
2824
2855
|
|
|
2825
2856
|
/**
|
|
2826
|
-
*
|
|
2857
|
+
* Einkaufsbelege
|
|
2827
2858
|
*/
|
|
2828
|
-
|
|
2859
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2829
2860
|
|
|
2830
2861
|
/**
|
|
2831
|
-
*
|
|
2862
|
+
* Geplanter Projektzeitraum (von)
|
|
2832
2863
|
*/
|
|
2833
|
-
|
|
2864
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2834
2865
|
|
|
2835
2866
|
/**
|
|
2836
2867
|
* Verkaufsbelege
|
|
@@ -2858,14 +2889,14 @@ export interface CrmProject {
|
|
|
2858
2889
|
info: MetaInfo;
|
|
2859
2890
|
|
|
2860
2891
|
/**
|
|
2861
|
-
*
|
|
2892
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2862
2893
|
*/
|
|
2863
|
-
|
|
2894
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2864
2895
|
|
|
2865
2896
|
/**
|
|
2866
|
-
*
|
|
2897
|
+
* Projektleiter vom Auftraggeber
|
|
2867
2898
|
*/
|
|
2868
|
-
|
|
2899
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2869
2900
|
|
|
2870
2901
|
/**
|
|
2871
2902
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3108,6 +3139,11 @@ export interface CrmSubType {
|
|
|
3108
3139
|
|
|
3109
3140
|
export interface CrmTask {
|
|
3110
3141
|
|
|
3142
|
+
/**
|
|
3143
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3144
|
+
*/
|
|
3145
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3146
|
+
|
|
3111
3147
|
/**
|
|
3112
3148
|
* Angebot
|
|
3113
3149
|
*/
|
|
@@ -3118,11 +3154,6 @@ export interface CrmTask {
|
|
|
3118
3154
|
*/
|
|
3119
3155
|
reminders: Array<CrmReminder>;
|
|
3120
3156
|
|
|
3121
|
-
/**
|
|
3122
|
-
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3123
|
-
*/
|
|
3124
|
-
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3125
|
-
|
|
3126
3157
|
/**
|
|
3127
3158
|
* Notizen
|
|
3128
3159
|
*/
|
|
@@ -3488,14 +3519,14 @@ export interface CurrencyReference {
|
|
|
3488
3519
|
export interface Customer {
|
|
3489
3520
|
|
|
3490
3521
|
/**
|
|
3491
|
-
*
|
|
3522
|
+
* Option für die Stapelverarbeitung
|
|
3492
3523
|
*/
|
|
3493
|
-
|
|
3524
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3494
3525
|
|
|
3495
3526
|
/**
|
|
3496
|
-
*
|
|
3527
|
+
* reference to customer group
|
|
3497
3528
|
*/
|
|
3498
|
-
|
|
3529
|
+
customerGroupRef: ApiObjectReference;
|
|
3499
3530
|
|
|
3500
3531
|
/**
|
|
3501
3532
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3548,14 +3579,14 @@ export interface Customer {
|
|
|
3548
3579
|
stackProcessingPriority: number;
|
|
3549
3580
|
|
|
3550
3581
|
/**
|
|
3551
|
-
*
|
|
3582
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3552
3583
|
*/
|
|
3553
|
-
|
|
3584
|
+
collectiveInvoiceManually: boolean;
|
|
3554
3585
|
|
|
3555
3586
|
/**
|
|
3556
|
-
*
|
|
3587
|
+
* reference to product price group
|
|
3557
3588
|
*/
|
|
3558
|
-
|
|
3589
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3559
3590
|
|
|
3560
3591
|
/**
|
|
3561
3592
|
* Unique identifier of the Object
|
|
@@ -3709,14 +3740,14 @@ export interface DeliveryMethod {
|
|
|
3709
3740
|
translations: Array<DocumentTypeTerm>;
|
|
3710
3741
|
|
|
3711
3742
|
/**
|
|
3712
|
-
*
|
|
3743
|
+
* Versand-Anbieter
|
|
3713
3744
|
*/
|
|
3714
|
-
|
|
3745
|
+
vdsCarrierId: number;
|
|
3715
3746
|
|
|
3716
3747
|
/**
|
|
3717
|
-
*
|
|
3748
|
+
* Gültige Ländercodes
|
|
3718
3749
|
*/
|
|
3719
|
-
|
|
3750
|
+
validCountryCodes: Array<string>;
|
|
3720
3751
|
|
|
3721
3752
|
/**
|
|
3722
3753
|
* Standardgewichtseinheit
|
|
@@ -3797,14 +3828,14 @@ export interface DeliveryTerm {
|
|
|
3797
3828
|
version: number;
|
|
3798
3829
|
|
|
3799
3830
|
/**
|
|
3800
|
-
*
|
|
3831
|
+
* translations
|
|
3801
3832
|
*/
|
|
3802
|
-
|
|
3833
|
+
translations: Array<DocumentTypeTerm>;
|
|
3803
3834
|
|
|
3804
3835
|
/**
|
|
3805
|
-
*
|
|
3836
|
+
* information, how the shipping charges should be calculated
|
|
3806
3837
|
*/
|
|
3807
|
-
|
|
3838
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3808
3839
|
|
|
3809
3840
|
/**
|
|
3810
3841
|
* Lieferarten
|
|
@@ -3817,14 +3848,14 @@ export interface DeliveryTerm {
|
|
|
3817
3848
|
id: number;
|
|
3818
3849
|
|
|
3819
3850
|
/**
|
|
3820
|
-
*
|
|
3851
|
+
* free shipping net value
|
|
3821
3852
|
*/
|
|
3822
|
-
|
|
3853
|
+
freeShippingNetValue: number;
|
|
3823
3854
|
|
|
3824
3855
|
/**
|
|
3825
|
-
*
|
|
3856
|
+
* Versandkostenartikel
|
|
3826
3857
|
*/
|
|
3827
|
-
|
|
3858
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3828
3859
|
|
|
3829
3860
|
/**
|
|
3830
3861
|
* MetaInformations for this Object
|
|
@@ -3983,14 +4014,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3983
4014
|
accountId: number;
|
|
3984
4015
|
|
|
3985
4016
|
/**
|
|
3986
|
-
* Länderkennzeichen
|
|
4017
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3987
4018
|
*/
|
|
3988
|
-
|
|
4019
|
+
sourceCountryCode: string;
|
|
3989
4020
|
|
|
3990
4021
|
/**
|
|
3991
|
-
* Länderkennzeichen
|
|
4022
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3992
4023
|
*/
|
|
3993
|
-
|
|
4024
|
+
performanceCountryCode: string;
|
|
3994
4025
|
|
|
3995
4026
|
/**
|
|
3996
4027
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4150,14 +4181,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4150
4181
|
defaultAddress: DocumentAddress;
|
|
4151
4182
|
|
|
4152
4183
|
/**
|
|
4153
|
-
*
|
|
4184
|
+
* Leistungsdatum
|
|
4154
4185
|
*/
|
|
4155
|
-
|
|
4186
|
+
performanceDate: ScriptingDate;
|
|
4156
4187
|
|
|
4157
4188
|
/**
|
|
4158
|
-
*
|
|
4189
|
+
* Verarbeitungsoption für Stapel
|
|
4159
4190
|
*/
|
|
4160
|
-
|
|
4191
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4161
4192
|
|
|
4162
4193
|
/**
|
|
4163
4194
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4330,12 +4361,7 @@ true wenn die Quittung bezahlt ist
|
|
|
4330
4361
|
customerNumber: string;
|
|
4331
4362
|
|
|
4332
4363
|
/**
|
|
4333
|
-
*
|
|
4334
|
-
*/
|
|
4335
|
-
shippingCosts: Array<DocumentShippingCost>;
|
|
4336
|
-
|
|
4337
|
-
/**
|
|
4338
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4364
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4339
4365
|
*/
|
|
4340
4366
|
taxIdentificationNumber: string;
|
|
4341
4367
|
|
|
@@ -4344,6 +4370,16 @@ true wenn die Quittung bezahlt ist
|
|
|
4344
4370
|
*/
|
|
4345
4371
|
documentState: DocumentTypeState;
|
|
4346
4372
|
|
|
4373
|
+
/**
|
|
4374
|
+
* Versandkostenpositionen
|
|
4375
|
+
*/
|
|
4376
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
|
+
|
|
4378
|
+
/**
|
|
4379
|
+
* Rückgeld
|
|
4380
|
+
*/
|
|
4381
|
+
posReceiptChangeAmount: number;
|
|
4382
|
+
|
|
4347
4383
|
/**
|
|
4348
4384
|
* Referenz auf Lieferbedingung
|
|
4349
4385
|
*/
|
|
@@ -4356,11 +4392,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4356
4392
|
*/
|
|
4357
4393
|
posReceiptBalanced: boolean;
|
|
4358
4394
|
|
|
4359
|
-
/**
|
|
4360
|
-
* Rückgeld
|
|
4361
|
-
*/
|
|
4362
|
-
posReceiptChangeAmount: number;
|
|
4363
|
-
|
|
4364
4395
|
/**
|
|
4365
4396
|
* Gesamtbruttogewicht
|
|
4366
4397
|
*/
|
|
@@ -4575,14 +4606,14 @@ export interface DocumentAddress {
|
|
|
4575
4606
|
info: MetaInfo;
|
|
4576
4607
|
|
|
4577
4608
|
/**
|
|
4578
|
-
*
|
|
4609
|
+
* Lieferart
|
|
4579
4610
|
*/
|
|
4580
|
-
|
|
4611
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4581
4612
|
|
|
4582
4613
|
/**
|
|
4583
|
-
*
|
|
4614
|
+
* GLN
|
|
4584
4615
|
*/
|
|
4585
|
-
|
|
4616
|
+
globalLocationNumber: string;
|
|
4586
4617
|
|
|
4587
4618
|
/**
|
|
4588
4619
|
* Postcode
|
|
@@ -4800,14 +4831,14 @@ export interface DocumentFabricationDetail {
|
|
|
4800
4831
|
targetStorageRef: ApiObjectReference;
|
|
4801
4832
|
|
|
4802
4833
|
/**
|
|
4803
|
-
*
|
|
4834
|
+
* Notiz
|
|
4804
4835
|
*/
|
|
4805
|
-
|
|
4836
|
+
note: string;
|
|
4806
4837
|
|
|
4807
4838
|
/**
|
|
4808
|
-
*
|
|
4839
|
+
* Material-Lager
|
|
4809
4840
|
*/
|
|
4810
|
-
|
|
4841
|
+
componentsStorageRef: ApiObjectReference;
|
|
4811
4842
|
|
|
4812
4843
|
/**
|
|
4813
4844
|
* QS-Lager
|
|
@@ -5004,14 +5035,14 @@ export interface DocumentLine {
|
|
|
5004
5035
|
number: string;
|
|
5005
5036
|
|
|
5006
5037
|
/**
|
|
5007
|
-
*
|
|
5038
|
+
* Referenz zur Kundenauftragszeile
|
|
5008
5039
|
*/
|
|
5009
|
-
|
|
5040
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5010
5041
|
|
|
5011
5042
|
/**
|
|
5012
|
-
*
|
|
5043
|
+
* Gesamtbruttogewicht
|
|
5013
5044
|
*/
|
|
5014
|
-
|
|
5045
|
+
totalGrossWeight: number;
|
|
5015
5046
|
|
|
5016
5047
|
/**
|
|
5017
5048
|
* skontierbare Position?
|
|
@@ -5029,14 +5060,14 @@ export interface DocumentLine {
|
|
|
5029
5060
|
price: number;
|
|
5030
5061
|
|
|
5031
5062
|
/**
|
|
5032
|
-
*
|
|
5063
|
+
* Gesamtpreis Position in Basiswährung
|
|
5033
5064
|
*/
|
|
5034
|
-
|
|
5065
|
+
baseTotalLinePrice: number;
|
|
5035
5066
|
|
|
5036
5067
|
/**
|
|
5037
|
-
*
|
|
5068
|
+
* FiBu-Buchung
|
|
5038
5069
|
*/
|
|
5039
|
-
|
|
5070
|
+
financeBooking: DocumentFinanceBooking;
|
|
5040
5071
|
|
|
5041
5072
|
/**
|
|
5042
5073
|
* Positionstyp
|
|
@@ -5099,14 +5130,14 @@ export interface DocumentLine {
|
|
|
5099
5130
|
info: MetaInfo;
|
|
5100
5131
|
|
|
5101
5132
|
/**
|
|
5102
|
-
*
|
|
5133
|
+
* Preiseinheit
|
|
5103
5134
|
*/
|
|
5104
|
-
|
|
5135
|
+
priceUnit: number;
|
|
5105
5136
|
|
|
5106
5137
|
/**
|
|
5107
|
-
*
|
|
5138
|
+
* Steuerschema
|
|
5108
5139
|
*/
|
|
5109
|
-
|
|
5140
|
+
taxSchemaRef: ApiObjectReference;
|
|
5110
5141
|
|
|
5111
5142
|
/**
|
|
5112
5143
|
* Lieferart
|
|
@@ -5244,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5244
5275
|
revenueCalculation: RevenueCalculation;
|
|
5245
5276
|
|
|
5246
5277
|
/**
|
|
5247
|
-
*
|
|
5278
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5248
5279
|
*/
|
|
5249
|
-
|
|
5280
|
+
totalLinePrice: number;
|
|
5250
5281
|
|
|
5251
5282
|
/**
|
|
5252
|
-
*
|
|
5283
|
+
* Einheitentyp
|
|
5253
5284
|
*/
|
|
5254
|
-
|
|
5285
|
+
unitType: UnitTypeReference;
|
|
5255
5286
|
|
|
5256
5287
|
/**
|
|
5257
5288
|
* Referenz zur Basiszeile
|
|
@@ -5666,11 +5697,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
5666
5697
|
*/
|
|
5667
5698
|
quantityFinished: number;
|
|
5668
5699
|
|
|
5669
|
-
/**
|
|
5670
|
-
* Menge defekt
|
|
5671
|
-
*/
|
|
5672
|
-
quantityDefective: number;
|
|
5673
|
-
|
|
5674
5700
|
/**
|
|
5675
5701
|
* Produzierte Seriennummern
|
|
5676
5702
|
*/
|
|
@@ -5681,6 +5707,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
5681
5707
|
*/
|
|
5682
5708
|
custom: EavFabricationline;
|
|
5683
5709
|
|
|
5710
|
+
/**
|
|
5711
|
+
* Menge defekt
|
|
5712
|
+
*/
|
|
5713
|
+
quantityDefective: number;
|
|
5714
|
+
|
|
5684
5715
|
/**
|
|
5685
5716
|
* Menge produziert
|
|
5686
5717
|
*/
|
|
@@ -5831,14 +5862,14 @@ export interface DocumentLineRef {
|
|
|
5831
5862
|
quantity: number;
|
|
5832
5863
|
|
|
5833
5864
|
/**
|
|
5834
|
-
*
|
|
5865
|
+
* Belegart
|
|
5835
5866
|
*/
|
|
5836
|
-
|
|
5867
|
+
documentType: string;
|
|
5837
5868
|
|
|
5838
5869
|
/**
|
|
5839
|
-
*
|
|
5870
|
+
* Artikelnummer
|
|
5840
5871
|
*/
|
|
5841
|
-
|
|
5872
|
+
articleNumber: string;
|
|
5842
5873
|
|
|
5843
5874
|
/**
|
|
5844
5875
|
* price per quantity [GROSS, NET]
|
|
@@ -6148,14 +6179,14 @@ export interface DocumentRef {
|
|
|
6148
6179
|
export interface DocumentShippingCost {
|
|
6149
6180
|
|
|
6150
6181
|
/**
|
|
6151
|
-
*
|
|
6182
|
+
* Die Versandkosten
|
|
6152
6183
|
*/
|
|
6153
|
-
|
|
6184
|
+
costs: number;
|
|
6154
6185
|
|
|
6155
6186
|
/**
|
|
6156
|
-
*
|
|
6187
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6157
6188
|
*/
|
|
6158
|
-
|
|
6189
|
+
manualCosts: boolean;
|
|
6159
6190
|
|
|
6160
6191
|
/**
|
|
6161
6192
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6585,6 +6616,69 @@ export const enum DropShippingPolicy {
|
|
|
6585
6616
|
STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING = 'STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING'
|
|
6586
6617
|
}
|
|
6587
6618
|
|
|
6619
|
+
export interface DummySerialNumberStockTransferApi {
|
|
6620
|
+
|
|
6621
|
+
/**
|
|
6622
|
+
* Ziel-Lager
|
|
6623
|
+
*/
|
|
6624
|
+
targetStorageId: number;
|
|
6625
|
+
|
|
6626
|
+
/**
|
|
6627
|
+
* Seriennummer
|
|
6628
|
+
*/
|
|
6629
|
+
serialNumberId: number;
|
|
6630
|
+
|
|
6631
|
+
/**
|
|
6632
|
+
* Bemerkung
|
|
6633
|
+
*/
|
|
6634
|
+
note: string;
|
|
6635
|
+
|
|
6636
|
+
/**
|
|
6637
|
+
* Buchungsdatum
|
|
6638
|
+
*/
|
|
6639
|
+
bookDate: ScriptingDate;
|
|
6640
|
+
|
|
6641
|
+
/**
|
|
6642
|
+
* Die gültige Seriennummer
|
|
6643
|
+
*/
|
|
6644
|
+
targetSerialNumber: string;
|
|
6645
|
+
|
|
6646
|
+
/**
|
|
6647
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6648
|
+
*/
|
|
6649
|
+
targetExpiryDate: ScriptingDate;
|
|
6650
|
+
|
|
6651
|
+
/**
|
|
6652
|
+
* Menge
|
|
6653
|
+
*/
|
|
6654
|
+
quantity: number;
|
|
6655
|
+
|
|
6656
|
+
/**
|
|
6657
|
+
* Quell-Lagerplatz
|
|
6658
|
+
*/
|
|
6659
|
+
sourceStorageBinId: number;
|
|
6660
|
+
|
|
6661
|
+
/**
|
|
6662
|
+
* Quell-Lager
|
|
6663
|
+
*/
|
|
6664
|
+
sourceStorageId: number;
|
|
6665
|
+
|
|
6666
|
+
/**
|
|
6667
|
+
* Ziel-Lagerplatz
|
|
6668
|
+
*/
|
|
6669
|
+
targetStorageBinId: number;
|
|
6670
|
+
|
|
6671
|
+
/**
|
|
6672
|
+
* Artikel
|
|
6673
|
+
*/
|
|
6674
|
+
articleId: number;
|
|
6675
|
+
|
|
6676
|
+
/**
|
|
6677
|
+
* Komponente einer Picklistenposition, falls dafür die Buchung stattfindet
|
|
6678
|
+
*/
|
|
6679
|
+
picklistLineComponentId: number;
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6588
6682
|
export const enum ECrmPriorityType {
|
|
6589
6683
|
CRITICAL = 'CRITICAL',
|
|
6590
6684
|
NORMAL = 'NORMAL',
|
|
@@ -6825,14 +6919,14 @@ export const enum FabricationOfComponents {
|
|
|
6825
6919
|
export interface FabricationProduceRequest {
|
|
6826
6920
|
|
|
6827
6921
|
/**
|
|
6828
|
-
*
|
|
6922
|
+
* Zu produzierende Menge
|
|
6829
6923
|
*/
|
|
6830
|
-
|
|
6924
|
+
quantity: number;
|
|
6831
6925
|
|
|
6832
6926
|
/**
|
|
6833
|
-
*
|
|
6927
|
+
* Material automatisch bestätigen
|
|
6834
6928
|
*/
|
|
6835
|
-
|
|
6929
|
+
autoCommitComponents: boolean;
|
|
6836
6930
|
|
|
6837
6931
|
/**
|
|
6838
6932
|
* Für die Produktion zu verwendendes Material
|
|
@@ -6886,14 +6980,14 @@ export interface FabricationRevertRequest {
|
|
|
6886
6980
|
quantity: number;
|
|
6887
6981
|
|
|
6888
6982
|
/**
|
|
6889
|
-
*
|
|
6983
|
+
* ID der zu stornierenden Position
|
|
6890
6984
|
*/
|
|
6891
|
-
|
|
6985
|
+
documentLineId: number;
|
|
6892
6986
|
|
|
6893
6987
|
/**
|
|
6894
|
-
*
|
|
6988
|
+
* Material automatisch stornieren
|
|
6895
6989
|
*/
|
|
6896
|
-
|
|
6990
|
+
autoRevertComponents: boolean;
|
|
6897
6991
|
|
|
6898
6992
|
/**
|
|
6899
6993
|
* Zu stornierende Seriennummern
|
|
@@ -7123,14 +7217,14 @@ export interface PaymentMethod {
|
|
|
7123
7217
|
daysToAddForFollowup: number;
|
|
7124
7218
|
|
|
7125
7219
|
/**
|
|
7126
|
-
*
|
|
7220
|
+
* Die Business Transaction
|
|
7127
7221
|
*/
|
|
7128
|
-
|
|
7222
|
+
businessTransaction: ApiObjectReference;
|
|
7129
7223
|
|
|
7130
7224
|
/**
|
|
7131
|
-
*
|
|
7225
|
+
* external Payment Id
|
|
7132
7226
|
*/
|
|
7133
|
-
|
|
7227
|
+
externalPaymentId: string;
|
|
7134
7228
|
|
|
7135
7229
|
/**
|
|
7136
7230
|
* Unique identifier of the Object
|
|
@@ -7454,20 +7548,35 @@ export const enum PickingType {
|
|
|
7454
7548
|
export interface Picklist {
|
|
7455
7549
|
|
|
7456
7550
|
/**
|
|
7457
|
-
*
|
|
7551
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7458
7552
|
*/
|
|
7459
|
-
|
|
7553
|
+
usedTemplate: PicklistTemplate;
|
|
7460
7554
|
|
|
7461
7555
|
/**
|
|
7462
|
-
*
|
|
7556
|
+
* Ziellager für Nachschub
|
|
7463
7557
|
*/
|
|
7464
|
-
|
|
7558
|
+
targetStorageRef: ApiObjectReference;
|
|
7465
7559
|
|
|
7466
7560
|
/**
|
|
7467
7561
|
* Nummer der Pickliste
|
|
7468
7562
|
*/
|
|
7469
7563
|
number: string;
|
|
7470
7564
|
|
|
7565
|
+
/**
|
|
7566
|
+
* Zeitpunkt, zu dem der Pickvorgang beendet wurde
|
|
7567
|
+
*/
|
|
7568
|
+
pickingFinishedAt: ScriptingDateTime;
|
|
7569
|
+
|
|
7570
|
+
/**
|
|
7571
|
+
* Benutzer, welcher den Pickvorgang durchführt
|
|
7572
|
+
*/
|
|
7573
|
+
pickingUserRef: ApiObjectReference;
|
|
7574
|
+
|
|
7575
|
+
/**
|
|
7576
|
+
* Zeitpunkt, zu dem der Pickvorgang gestartet wurde
|
|
7577
|
+
*/
|
|
7578
|
+
pickingStartedAt: ScriptingDateTime;
|
|
7579
|
+
|
|
7471
7580
|
/**
|
|
7472
7581
|
* Status der Pickliste
|
|
7473
7582
|
*/
|
|
@@ -7886,11 +7995,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7886
7995
|
*/
|
|
7887
7996
|
maxOrderValue: number;
|
|
7888
7997
|
|
|
7889
|
-
/**
|
|
7890
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7891
|
-
*/
|
|
7892
|
-
maxOrderCount: number;
|
|
7893
|
-
|
|
7894
7998
|
/**
|
|
7895
7999
|
* Selektion über den Bereich vom Lieferdatum
|
|
7896
8000
|
*/
|
|
@@ -7901,6 +8005,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7901
8005
|
*/
|
|
7902
8006
|
onlyFullDeliverableOrderLines: boolean;
|
|
7903
8007
|
|
|
8008
|
+
/**
|
|
8009
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8010
|
+
*/
|
|
8011
|
+
maxOrderCount: number;
|
|
8012
|
+
|
|
7904
8013
|
/**
|
|
7905
8014
|
* Selektion über den Bereich vom Belegdatum
|
|
7906
8015
|
*/
|
|
@@ -7970,14 +8079,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7970
8079
|
maxPicklistLineCount: number;
|
|
7971
8080
|
|
|
7972
8081
|
/**
|
|
7973
|
-
*
|
|
8082
|
+
* Der zu verwendende Pickwagen
|
|
7974
8083
|
*/
|
|
7975
|
-
|
|
8084
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7976
8085
|
|
|
7977
8086
|
/**
|
|
7978
|
-
*
|
|
8087
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7979
8088
|
*/
|
|
7980
|
-
|
|
8089
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7981
8090
|
|
|
7982
8091
|
/**
|
|
7983
8092
|
* Lagerplätze vorgeben
|
|
@@ -7985,14 +8094,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7985
8094
|
specifyStorageBins: boolean;
|
|
7986
8095
|
|
|
7987
8096
|
/**
|
|
7988
|
-
*
|
|
8097
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7989
8098
|
*/
|
|
7990
|
-
|
|
8099
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7991
8100
|
|
|
7992
8101
|
/**
|
|
7993
|
-
*
|
|
8102
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7994
8103
|
*/
|
|
7995
|
-
|
|
8104
|
+
sortByRoutePosition: boolean;
|
|
7996
8105
|
|
|
7997
8106
|
/**
|
|
7998
8107
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8052,6 +8161,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8052
8161
|
*/
|
|
8053
8162
|
showShippingFormOnPickingFinish: boolean;
|
|
8054
8163
|
|
|
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
|
+
|
|
8055
8169
|
/**
|
|
8056
8170
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
8057
8171
|
*/
|
|
@@ -8062,11 +8176,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8062
8176
|
*/
|
|
8063
8177
|
allowFullConfirmation: boolean;
|
|
8064
8178
|
|
|
8065
|
-
/**
|
|
8066
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8067
|
-
*/
|
|
8068
|
-
useDigitalPicklist: boolean;
|
|
8069
|
-
|
|
8070
8179
|
/**
|
|
8071
8180
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
8072
8181
|
*/
|
|
@@ -8083,14 +8192,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8083
8192
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8084
8193
|
|
|
8085
8194
|
/**
|
|
8086
|
-
*
|
|
8195
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8087
8196
|
*/
|
|
8088
|
-
|
|
8197
|
+
autoDeterminationOfLots: boolean;
|
|
8089
8198
|
|
|
8090
8199
|
/**
|
|
8091
|
-
*
|
|
8200
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8092
8201
|
*/
|
|
8093
|
-
|
|
8202
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8094
8203
|
|
|
8095
8204
|
/**
|
|
8096
8205
|
* Zielmengen in Masken verstecken?
|
|
@@ -8165,14 +8274,14 @@ export interface PriceSelectionCriteria {
|
|
|
8165
8274
|
quantity: number;
|
|
8166
8275
|
|
|
8167
8276
|
/**
|
|
8168
|
-
* Liste von
|
|
8277
|
+
* Liste von Artikel-IDs
|
|
8169
8278
|
*/
|
|
8170
|
-
|
|
8279
|
+
articleIds: Array<number>;
|
|
8171
8280
|
|
|
8172
8281
|
/**
|
|
8173
|
-
* Liste von
|
|
8282
|
+
* Liste von Account-IDs
|
|
8174
8283
|
*/
|
|
8175
|
-
|
|
8284
|
+
accountIds: Array<number>;
|
|
8176
8285
|
|
|
8177
8286
|
/**
|
|
8178
8287
|
* ein qualifier
|
|
@@ -8197,25 +8306,15 @@ export interface PriceSelectionCriteria {
|
|
|
8197
8306
|
|
|
8198
8307
|
export interface Product {
|
|
8199
8308
|
|
|
8200
|
-
/**
|
|
8201
|
-
* Variantenhauptartikel
|
|
8202
|
-
*/
|
|
8203
|
-
mainVariantProductRef: ApiObjectReference;
|
|
8204
|
-
|
|
8205
8309
|
/**
|
|
8206
8310
|
* Zolltarifnummer
|
|
8207
8311
|
*/
|
|
8208
8312
|
customsTariffNumber: string;
|
|
8209
8313
|
|
|
8210
8314
|
/**
|
|
8211
|
-
*
|
|
8212
|
-
*/
|
|
8213
|
-
variantSchemaRef: ApiObjectReference;
|
|
8214
|
-
|
|
8215
|
-
/**
|
|
8216
|
-
* Eigener Zählerkreis für Seriennummern
|
|
8315
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
8217
8316
|
*/
|
|
8218
|
-
|
|
8317
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
8219
8318
|
|
|
8220
8319
|
/**
|
|
8221
8320
|
* Gebindeschema dieses Produkts
|
|
@@ -8227,11 +8326,6 @@ export interface Product {
|
|
|
8227
8326
|
*/
|
|
8228
8327
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
8229
8328
|
|
|
8230
|
-
/**
|
|
8231
|
-
* Art des Haltbarkeitsdatums
|
|
8232
|
-
*/
|
|
8233
|
-
expiryDateType: ArticleSerialExpiryDateType;
|
|
8234
|
-
|
|
8235
8329
|
/**
|
|
8236
8330
|
* Ursprungsregion
|
|
8237
8331
|
*/
|
|
@@ -8243,14 +8337,14 @@ export interface Product {
|
|
|
8243
8337
|
type: ProductType;
|
|
8244
8338
|
|
|
8245
8339
|
/**
|
|
8246
|
-
*
|
|
8340
|
+
* Garantie in Monaten
|
|
8247
8341
|
*/
|
|
8248
|
-
|
|
8342
|
+
warrantyInMonths: number;
|
|
8249
8343
|
|
|
8250
8344
|
/**
|
|
8251
|
-
*
|
|
8345
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
8252
8346
|
*/
|
|
8253
|
-
|
|
8347
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
8254
8348
|
|
|
8255
8349
|
/**
|
|
8256
8350
|
* Optionen zur Berechnung der Verfügbarkeit
|
|
@@ -8272,11 +8366,6 @@ export interface Product {
|
|
|
8272
8366
|
*/
|
|
8273
8367
|
fabricationSerialNumberLabelingType: FabricationSerialNumberLabelingType;
|
|
8274
8368
|
|
|
8275
|
-
/**
|
|
8276
|
-
* Country code
|
|
8277
|
-
*/
|
|
8278
|
-
countryOfOrigin: CountryReference;
|
|
8279
|
-
|
|
8280
8369
|
/**
|
|
8281
8370
|
* Unique identifier of the Object
|
|
8282
8371
|
*/
|
|
@@ -8293,14 +8382,49 @@ export interface Product {
|
|
|
8293
8382
|
serialType: ArticleSerialType;
|
|
8294
8383
|
|
|
8295
8384
|
/**
|
|
8296
|
-
*
|
|
8385
|
+
* MetaInformations for this Object
|
|
8297
8386
|
*/
|
|
8298
|
-
|
|
8387
|
+
info: MetaInfo;
|
|
8299
8388
|
|
|
8300
8389
|
/**
|
|
8301
|
-
*
|
|
8390
|
+
* Variantenhauptartikel
|
|
8302
8391
|
*/
|
|
8303
|
-
|
|
8392
|
+
mainVariantProductRef: ApiObjectReference;
|
|
8393
|
+
|
|
8394
|
+
/**
|
|
8395
|
+
* Variantenschema
|
|
8396
|
+
*/
|
|
8397
|
+
variantSchemaRef: ApiObjectReference;
|
|
8398
|
+
|
|
8399
|
+
/**
|
|
8400
|
+
* Eigener Zählerkreis für Seriennummern
|
|
8401
|
+
*/
|
|
8402
|
+
serialSequencerConfiguration: SequencerConfiguration;
|
|
8403
|
+
|
|
8404
|
+
/**
|
|
8405
|
+
* Art des Haltbarkeitsdatums
|
|
8406
|
+
*/
|
|
8407
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
8408
|
+
|
|
8409
|
+
/**
|
|
8410
|
+
* Version Identifier for this Object (for PUT)
|
|
8411
|
+
*/
|
|
8412
|
+
version: number;
|
|
8413
|
+
|
|
8414
|
+
/**
|
|
8415
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
8416
|
+
*/
|
|
8417
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
8418
|
+
|
|
8419
|
+
/**
|
|
8420
|
+
* Country code
|
|
8421
|
+
*/
|
|
8422
|
+
countryOfOrigin: CountryReference;
|
|
8423
|
+
|
|
8424
|
+
/**
|
|
8425
|
+
* Variantenwerte
|
|
8426
|
+
*/
|
|
8427
|
+
variantValues: Array<VariantValueReference>;
|
|
8304
8428
|
}
|
|
8305
8429
|
|
|
8306
8430
|
export interface ProductArticleRef {
|
|
@@ -8354,14 +8478,14 @@ export interface ProductDiscount {
|
|
|
8354
8478
|
validFrom: ScriptingDate;
|
|
8355
8479
|
|
|
8356
8480
|
/**
|
|
8357
|
-
*
|
|
8481
|
+
* Bestimmt die Art des Rabatts
|
|
8358
8482
|
*/
|
|
8359
|
-
|
|
8483
|
+
modifierType: PriceModifierType;
|
|
8360
8484
|
|
|
8361
8485
|
/**
|
|
8362
|
-
*
|
|
8486
|
+
* Warengruppe
|
|
8363
8487
|
*/
|
|
8364
|
-
|
|
8488
|
+
productGroupRef: ApiObjectReference;
|
|
8365
8489
|
|
|
8366
8490
|
/**
|
|
8367
8491
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8409,14 +8533,14 @@ export interface ProductDiscount {
|
|
|
8409
8533
|
modifierValueType: ValueType;
|
|
8410
8534
|
|
|
8411
8535
|
/**
|
|
8412
|
-
*
|
|
8536
|
+
* Account, für den der Rabatt gültig ist
|
|
8413
8537
|
*/
|
|
8414
|
-
|
|
8538
|
+
accountRef: ApiObjectReference;
|
|
8415
8539
|
|
|
8416
8540
|
/**
|
|
8417
|
-
*
|
|
8541
|
+
* Name des Rabatts
|
|
8418
8542
|
*/
|
|
8419
|
-
|
|
8543
|
+
modifierName: string;
|
|
8420
8544
|
|
|
8421
8545
|
/**
|
|
8422
8546
|
* Unique identifier of the Object
|
|
@@ -8666,6 +8790,44 @@ export const enum PublishingPolicy {
|
|
|
8666
8790
|
MANUAL = 'MANUAL'
|
|
8667
8791
|
}
|
|
8668
8792
|
|
|
8793
|
+
export interface RecommendedRetailPrice {
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Land (Iso-A-2)
|
|
8797
|
+
*/
|
|
8798
|
+
countryCode: CountryReference;
|
|
8799
|
+
|
|
8800
|
+
/**
|
|
8801
|
+
* Verweis auf den Artikel
|
|
8802
|
+
*/
|
|
8803
|
+
articleRef: ApiObjectReference;
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Unique identifier of the Object
|
|
8807
|
+
*/
|
|
8808
|
+
id: number;
|
|
8809
|
+
|
|
8810
|
+
/**
|
|
8811
|
+
* Preis
|
|
8812
|
+
*/
|
|
8813
|
+
value: number;
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* Währung (Iso-A-3)
|
|
8817
|
+
*/
|
|
8818
|
+
currencyCode: CurrencyReference;
|
|
8819
|
+
|
|
8820
|
+
/**
|
|
8821
|
+
* Version Identifier for this Object (for PUT)
|
|
8822
|
+
*/
|
|
8823
|
+
version: number;
|
|
8824
|
+
|
|
8825
|
+
/**
|
|
8826
|
+
* MetaInformations for this Object
|
|
8827
|
+
*/
|
|
8828
|
+
info: MetaInfo;
|
|
8829
|
+
}
|
|
8830
|
+
|
|
8669
8831
|
export interface Referenceable {
|
|
8670
8832
|
}
|
|
8671
8833
|
|
|
@@ -8985,14 +9147,14 @@ export interface RequestDocumentLine {
|
|
|
8985
9147
|
name: string;
|
|
8986
9148
|
|
|
8987
9149
|
/**
|
|
8988
|
-
*
|
|
9150
|
+
* ID der Quell-Belegposition
|
|
8989
9151
|
*/
|
|
8990
|
-
|
|
9152
|
+
sourceLineId: number;
|
|
8991
9153
|
|
|
8992
9154
|
/**
|
|
8993
|
-
*
|
|
9155
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8994
9156
|
*/
|
|
8995
|
-
|
|
9157
|
+
externalArticleNumber: string;
|
|
8996
9158
|
|
|
8997
9159
|
/**
|
|
8998
9160
|
* Buchungen zu dieser Belegposition
|
|
@@ -9141,14 +9303,14 @@ export interface SalesAgent {
|
|
|
9141
9303
|
note: string;
|
|
9142
9304
|
|
|
9143
9305
|
/**
|
|
9144
|
-
*
|
|
9306
|
+
* reference to the delivery method
|
|
9145
9307
|
*/
|
|
9146
|
-
|
|
9308
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9147
9309
|
|
|
9148
9310
|
/**
|
|
9149
|
-
*
|
|
9311
|
+
* is sales agent taxable
|
|
9150
9312
|
*/
|
|
9151
|
-
|
|
9313
|
+
taxable: boolean;
|
|
9152
9314
|
|
|
9153
9315
|
/**
|
|
9154
9316
|
* Freifelder
|
|
@@ -9747,14 +9909,14 @@ export interface ShelfDocumentType {
|
|
|
9747
9909
|
active: boolean;
|
|
9748
9910
|
|
|
9749
9911
|
/**
|
|
9750
|
-
*
|
|
9912
|
+
* label of type
|
|
9751
9913
|
*/
|
|
9752
|
-
|
|
9914
|
+
label: string;
|
|
9753
9915
|
|
|
9754
9916
|
/**
|
|
9755
|
-
*
|
|
9917
|
+
* access level or reading
|
|
9756
9918
|
*/
|
|
9757
|
-
|
|
9919
|
+
accessLevelRead: number;
|
|
9758
9920
|
|
|
9759
9921
|
/**
|
|
9760
9922
|
* storage rule for revisions
|
|
@@ -9835,14 +9997,14 @@ export interface ShelfFile {
|
|
|
9835
9997
|
version: number;
|
|
9836
9998
|
|
|
9837
9999
|
/**
|
|
9838
|
-
*
|
|
10000
|
+
* current reference of this file in our storage
|
|
9839
10001
|
*/
|
|
9840
|
-
|
|
10002
|
+
storageHandle: string;
|
|
9841
10003
|
|
|
9842
10004
|
/**
|
|
9843
|
-
*
|
|
10005
|
+
* meta data
|
|
9844
10006
|
*/
|
|
9845
|
-
|
|
10007
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9846
10008
|
|
|
9847
10009
|
/**
|
|
9848
10010
|
* MetaInformations for this Object
|
|
@@ -10105,14 +10267,14 @@ export interface StockMovementManualApi {
|
|
|
10105
10267
|
export interface StockTransferApi {
|
|
10106
10268
|
|
|
10107
10269
|
/**
|
|
10108
|
-
*
|
|
10270
|
+
* Ziel-Lager
|
|
10109
10271
|
*/
|
|
10110
|
-
|
|
10272
|
+
targetStorageId: number;
|
|
10111
10273
|
|
|
10112
10274
|
/**
|
|
10113
|
-
*
|
|
10275
|
+
* Seriennummer
|
|
10114
10276
|
*/
|
|
10115
|
-
|
|
10277
|
+
serialNumberId: number;
|
|
10116
10278
|
|
|
10117
10279
|
/**
|
|
10118
10280
|
* Bemerkung
|
|
@@ -10125,14 +10287,14 @@ export interface StockTransferApi {
|
|
|
10125
10287
|
bookDate: ScriptingDate;
|
|
10126
10288
|
|
|
10127
10289
|
/**
|
|
10128
|
-
*
|
|
10290
|
+
* Menge
|
|
10129
10291
|
*/
|
|
10130
|
-
|
|
10292
|
+
quantity: number;
|
|
10131
10293
|
|
|
10132
10294
|
/**
|
|
10133
|
-
*
|
|
10295
|
+
* Quell-Lagerplatz
|
|
10134
10296
|
*/
|
|
10135
|
-
|
|
10297
|
+
sourceStorageBinId: number;
|
|
10136
10298
|
|
|
10137
10299
|
/**
|
|
10138
10300
|
* Quell-Lager
|
|
@@ -10387,14 +10549,14 @@ export interface Supplier {
|
|
|
10387
10549
|
performanceCountryCode: string;
|
|
10388
10550
|
|
|
10389
10551
|
/**
|
|
10390
|
-
*
|
|
10552
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10391
10553
|
*/
|
|
10392
|
-
|
|
10554
|
+
defaultDeliveryTime: number;
|
|
10393
10555
|
|
|
10394
10556
|
/**
|
|
10395
|
-
*
|
|
10557
|
+
* reference to the payment method
|
|
10396
10558
|
*/
|
|
10397
|
-
|
|
10559
|
+
paymentMethodRef: ApiObjectReference;
|
|
10398
10560
|
|
|
10399
10561
|
/**
|
|
10400
10562
|
* currency code IsoAlpha3
|
|
@@ -10415,14 +10577,14 @@ export interface TagDto {
|
|
|
10415
10577
|
editColor: string;
|
|
10416
10578
|
|
|
10417
10579
|
/**
|
|
10418
|
-
* Farbe
|
|
10580
|
+
* Farbe in Such-GUI
|
|
10419
10581
|
*/
|
|
10420
|
-
|
|
10582
|
+
searchColor: string;
|
|
10421
10583
|
|
|
10422
10584
|
/**
|
|
10423
|
-
* Farbe
|
|
10585
|
+
* Farbe für die Anzeige des Tags
|
|
10424
10586
|
*/
|
|
10425
|
-
|
|
10587
|
+
color: string;
|
|
10426
10588
|
|
|
10427
10589
|
/**
|
|
10428
10590
|
* Beschriftung des Tags
|
|
@@ -10466,14 +10628,14 @@ export const enum TagType {
|
|
|
10466
10628
|
export interface TaxIdForeignCountry {
|
|
10467
10629
|
|
|
10468
10630
|
/**
|
|
10469
|
-
*
|
|
10631
|
+
* Tax ID of the company in the associated country
|
|
10470
10632
|
*/
|
|
10471
|
-
|
|
10633
|
+
taxId: string;
|
|
10472
10634
|
|
|
10473
10635
|
/**
|
|
10474
|
-
*
|
|
10636
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10475
10637
|
*/
|
|
10476
|
-
|
|
10638
|
+
countryCode: string;
|
|
10477
10639
|
|
|
10478
10640
|
/**
|
|
10479
10641
|
* Unique identifier of the Object
|
|
@@ -10956,14 +11118,14 @@ export interface VariantValue {
|
|
|
10956
11118
|
version: number;
|
|
10957
11119
|
|
|
10958
11120
|
/**
|
|
10959
|
-
*
|
|
11121
|
+
* Mehrsprachige Bezeichnungen
|
|
10960
11122
|
*/
|
|
10961
|
-
|
|
11123
|
+
labels: Array<VariantDescription>;
|
|
10962
11124
|
|
|
10963
11125
|
/**
|
|
10964
|
-
*
|
|
11126
|
+
* Variantenattribut
|
|
10965
11127
|
*/
|
|
10966
|
-
|
|
11128
|
+
attributeRef: ApiObjectReference;
|
|
10967
11129
|
|
|
10968
11130
|
/**
|
|
10969
11131
|
* MetaInformations for this Object
|