@vario-software/types 2026.21.3 → 2026.22.0
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 +23028 -19385
- package/scripting/services.d.ts +150 -46
- package/scripting/types.d.ts +618 -293
package/scripting/types.d.ts
CHANGED
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Country code
|
|
310
305
|
*/
|
|
311
306
|
countryCode: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -381,14 +381,14 @@ export interface AccountAddress {
|
|
|
381
381
|
version: number;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* Additional address line1
|
|
385
385
|
*/
|
|
386
|
-
|
|
386
|
+
additionalAddressLine1: string;
|
|
387
387
|
|
|
388
388
|
/**
|
|
389
|
-
*
|
|
389
|
+
* tax identification number/ UST-ID-Nr.
|
|
390
390
|
*/
|
|
391
|
-
|
|
391
|
+
taxIdentificationNumber: string;
|
|
392
392
|
|
|
393
393
|
/**
|
|
394
394
|
* Parcel station
|
|
@@ -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
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
payablesSum: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Kreditlimit
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
maximalLoan: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -999,20 +999,25 @@ export interface Article {
|
|
|
999
999
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
|
-
*
|
|
1002
|
+
* Gefahrgut Informationen
|
|
1003
1003
|
*/
|
|
1004
|
-
|
|
1004
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* Zolltarifnummer
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
1014
|
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
|
+
/**
|
|
1017
|
+
* is this product purchasable
|
|
1018
|
+
*/
|
|
1019
|
+
purchasable: boolean;
|
|
1020
|
+
|
|
1016
1021
|
/**
|
|
1017
1022
|
* base capacity unit
|
|
1018
1023
|
*/
|
|
@@ -1059,14 +1064,14 @@ export interface Article {
|
|
|
1059
1064
|
warrantyInMonths: number;
|
|
1060
1065
|
|
|
1061
1066
|
/**
|
|
1062
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1063
1068
|
*/
|
|
1064
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1065
1070
|
|
|
1066
1071
|
/**
|
|
1067
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1068
1073
|
*/
|
|
1069
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1070
1075
|
|
|
1071
1076
|
/**
|
|
1072
1077
|
* unique product number
|
|
@@ -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
|
*/
|
|
@@ -1298,25 +1298,20 @@ export interface Article {
|
|
|
1298
1298
|
*/
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
|
-
/**
|
|
1302
|
-
* Artikel ist Gefahrgut
|
|
1303
|
-
*/
|
|
1304
|
-
isDangerousGood: boolean;
|
|
1305
|
-
|
|
1306
1301
|
/**
|
|
1307
1302
|
* alternative name of this product
|
|
1308
1303
|
*/
|
|
1309
1304
|
alternativeName: string;
|
|
1310
1305
|
|
|
1311
1306
|
/**
|
|
1312
|
-
*
|
|
1307
|
+
* Kontingentartikel
|
|
1313
1308
|
*/
|
|
1314
|
-
|
|
1309
|
+
contingentArticleRef: ApiObjectReference;
|
|
1315
1310
|
|
|
1316
1311
|
/**
|
|
1317
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1318
1313
|
*/
|
|
1319
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1320
1315
|
|
|
1321
1316
|
/**
|
|
1322
1317
|
* base capacity
|
|
@@ -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
|
|
@@ -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
|
+
* Kunden-Preise
|
|
1513
|
+
*/
|
|
1514
|
+
productPrices: Array<ProductPrice>;
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1518
|
+
*/
|
|
1519
|
+
useDeviatingArticleDescription: boolean;
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* Referenced Article
|
|
1523
|
+
*/
|
|
1524
|
+
articleId: number;
|
|
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
|
/**
|
|
@@ -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
|
useSupplierArticleDescription: boolean;
|
|
1869
1987
|
|
|
1870
|
-
/**
|
|
1871
|
-
* Lieferanten-Meldebestand
|
|
1872
|
-
*/
|
|
1873
|
-
supplierReportingStock: number;
|
|
1874
|
-
|
|
1875
1988
|
/**
|
|
1876
1989
|
* Anzeigename des Accounts
|
|
1877
1990
|
*/
|
|
1878
1991
|
accountDisplayName: string;
|
|
1879
1992
|
|
|
1880
1993
|
/**
|
|
1881
|
-
*
|
|
1994
|
+
* Lieferanten-Meldebestand
|
|
1882
1995
|
*/
|
|
1883
|
-
|
|
1996
|
+
supplierReportingStock: number;
|
|
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
|
*/
|
|
@@ -1988,14 +2106,14 @@ export interface ArticleSupplier {
|
|
|
1988
2106
|
defaultNetPrice: number;
|
|
1989
2107
|
|
|
1990
2108
|
/**
|
|
1991
|
-
*
|
|
2109
|
+
* Einkaufseinheit
|
|
1992
2110
|
*/
|
|
1993
|
-
|
|
2111
|
+
purchaseUnit: number;
|
|
1994
2112
|
|
|
1995
2113
|
/**
|
|
1996
|
-
*
|
|
2114
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1997
2115
|
*/
|
|
1998
|
-
|
|
2116
|
+
orderOnComponentBase: boolean;
|
|
1999
2117
|
|
|
2000
2118
|
/**
|
|
2001
2119
|
* Referenced Supplier-Account
|
|
@@ -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
|
*/
|
|
@@ -2271,14 +2401,14 @@ export interface CrmActivity {
|
|
|
2271
2401
|
info: MetaInfo;
|
|
2272
2402
|
|
|
2273
2403
|
/**
|
|
2274
|
-
*
|
|
2404
|
+
* geplante Dauer
|
|
2275
2405
|
*/
|
|
2276
|
-
|
|
2406
|
+
plannedDurationInSeconds: number;
|
|
2277
2407
|
|
|
2278
2408
|
/**
|
|
2279
|
-
*
|
|
2409
|
+
* Aktivität intern abgerechnet?
|
|
2280
2410
|
*/
|
|
2281
|
-
|
|
2411
|
+
internalBilled: boolean;
|
|
2282
2412
|
|
|
2283
2413
|
/**
|
|
2284
2414
|
* Freie Felder der CRM-Aktivität
|
|
@@ -3140,14 +3270,14 @@ export interface CrmSubType {
|
|
|
3140
3270
|
export interface CrmTask {
|
|
3141
3271
|
|
|
3142
3272
|
/**
|
|
3143
|
-
*
|
|
3273
|
+
* Angebot
|
|
3144
3274
|
*/
|
|
3145
|
-
|
|
3275
|
+
customerOfferRef: DocumentRef;
|
|
3146
3276
|
|
|
3147
3277
|
/**
|
|
3148
|
-
*
|
|
3278
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3149
3279
|
*/
|
|
3150
|
-
|
|
3280
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3151
3281
|
|
|
3152
3282
|
/**
|
|
3153
3283
|
* Liste von Erinnerungen
|
|
@@ -3579,14 +3709,14 @@ export interface Customer {
|
|
|
3579
3709
|
stackProcessingPriority: number;
|
|
3580
3710
|
|
|
3581
3711
|
/**
|
|
3582
|
-
*
|
|
3712
|
+
* reference to product price group
|
|
3583
3713
|
*/
|
|
3584
|
-
|
|
3714
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3585
3715
|
|
|
3586
3716
|
/**
|
|
3587
|
-
*
|
|
3717
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3588
3718
|
*/
|
|
3589
|
-
|
|
3719
|
+
collectiveInvoiceManually: boolean;
|
|
3590
3720
|
|
|
3591
3721
|
/**
|
|
3592
3722
|
* Unique identifier of the Object
|
|
@@ -3659,13 +3789,106 @@ export interface Customer {
|
|
|
3659
3789
|
currencyCode: string;
|
|
3660
3790
|
}
|
|
3661
3791
|
|
|
3662
|
-
export
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3792
|
+
export interface DangerousGoodInformation {
|
|
3793
|
+
|
|
3794
|
+
/**
|
|
3795
|
+
* shipping name
|
|
3796
|
+
*/
|
|
3797
|
+
shippingName: string;
|
|
3798
|
+
|
|
3799
|
+
/**
|
|
3800
|
+
* tunnel restriction classes
|
|
3801
|
+
*/
|
|
3802
|
+
tunnelRestrictionCode: TunnelRestrictionCode;
|
|
3803
|
+
|
|
3804
|
+
/**
|
|
3805
|
+
* transportation category
|
|
3806
|
+
*/
|
|
3807
|
+
transportCategory: string;
|
|
3808
|
+
|
|
3809
|
+
/**
|
|
3810
|
+
* description
|
|
3811
|
+
*/
|
|
3812
|
+
description: string;
|
|
3813
|
+
|
|
3814
|
+
/**
|
|
3815
|
+
* technical name
|
|
3816
|
+
*/
|
|
3817
|
+
technicalName: string;
|
|
3818
|
+
|
|
3819
|
+
/**
|
|
3820
|
+
* Version Identifier for this Object (for PUT)
|
|
3821
|
+
*/
|
|
3822
|
+
version: number;
|
|
3823
|
+
|
|
3824
|
+
/**
|
|
3825
|
+
* secundary risk of the dangerous good
|
|
3826
|
+
*/
|
|
3827
|
+
subsidiaryRisk: boolean;
|
|
3828
|
+
|
|
3829
|
+
/**
|
|
3830
|
+
* classification code
|
|
3831
|
+
*/
|
|
3832
|
+
classificationCode: string;
|
|
3833
|
+
|
|
3834
|
+
/**
|
|
3835
|
+
* packing code
|
|
3836
|
+
*/
|
|
3837
|
+
packingCode: string;
|
|
3838
|
+
|
|
3839
|
+
/**
|
|
3840
|
+
* united nations number (un number)
|
|
3841
|
+
*/
|
|
3842
|
+
unNumber: string;
|
|
3843
|
+
|
|
3844
|
+
/**
|
|
3845
|
+
* identification class
|
|
3846
|
+
*/
|
|
3847
|
+
identificationClass: string;
|
|
3848
|
+
|
|
3849
|
+
/**
|
|
3850
|
+
* regulation code
|
|
3851
|
+
*/
|
|
3852
|
+
regulationCode: RegulationCode;
|
|
3853
|
+
|
|
3854
|
+
/**
|
|
3855
|
+
* regulation Set, e.g. ADR
|
|
3856
|
+
*/
|
|
3857
|
+
regulationSet: RegulationSet;
|
|
3858
|
+
|
|
3859
|
+
/**
|
|
3860
|
+
* Unique identifier of the Object
|
|
3861
|
+
*/
|
|
3862
|
+
id: number;
|
|
3863
|
+
|
|
3864
|
+
/**
|
|
3865
|
+
* packing group (I, II, III or blank)
|
|
3866
|
+
*/
|
|
3867
|
+
packingGroup: string;
|
|
3868
|
+
|
|
3869
|
+
/**
|
|
3870
|
+
* weight of the hazardous part
|
|
3871
|
+
*/
|
|
3872
|
+
hazardousWeight: number;
|
|
3873
|
+
|
|
3874
|
+
/**
|
|
3875
|
+
* adr identification number
|
|
3876
|
+
*/
|
|
3877
|
+
adrNumber: string;
|
|
3878
|
+
|
|
3879
|
+
/**
|
|
3880
|
+
* MetaInformations for this Object
|
|
3881
|
+
*/
|
|
3882
|
+
info: MetaInfo;
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
export const enum DealNotificationEventConfig {
|
|
3886
|
+
DEAL_CHANGED = 'DEAL_CHANGED',
|
|
3887
|
+
DEAL_COMMENT_MENTIONED = 'DEAL_COMMENT_MENTIONED',
|
|
3888
|
+
DEAL_CLOSED_LOOSE = 'DEAL_CLOSED_LOOSE',
|
|
3889
|
+
DEAL_CLOSED_WON = 'DEAL_CLOSED_WON',
|
|
3890
|
+
DEAL_REMINDER = 'DEAL_REMINDER'
|
|
3891
|
+
}
|
|
3669
3892
|
|
|
3670
3893
|
export interface DeliveryMethod {
|
|
3671
3894
|
|
|
@@ -3730,14 +3953,14 @@ export interface DeliveryMethod {
|
|
|
3730
3953
|
defaultSizeUnit: UnitTypeReference;
|
|
3731
3954
|
|
|
3732
3955
|
/**
|
|
3733
|
-
*
|
|
3956
|
+
* Quelle für Paketgewicht
|
|
3734
3957
|
*/
|
|
3735
|
-
|
|
3958
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3736
3959
|
|
|
3737
3960
|
/**
|
|
3738
|
-
*
|
|
3961
|
+
* translations
|
|
3739
3962
|
*/
|
|
3740
|
-
|
|
3963
|
+
translations: Array<DocumentTypeTerm>;
|
|
3741
3964
|
|
|
3742
3965
|
/**
|
|
3743
3966
|
* Versand-Anbieter
|
|
@@ -3828,14 +4051,14 @@ export interface DeliveryTerm {
|
|
|
3828
4051
|
version: number;
|
|
3829
4052
|
|
|
3830
4053
|
/**
|
|
3831
|
-
*
|
|
4054
|
+
* information, how the shipping charges should be calculated
|
|
3832
4055
|
*/
|
|
3833
|
-
|
|
4056
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3834
4057
|
|
|
3835
4058
|
/**
|
|
3836
|
-
*
|
|
4059
|
+
* translations
|
|
3837
4060
|
*/
|
|
3838
|
-
|
|
4061
|
+
translations: Array<DocumentTypeTerm>;
|
|
3839
4062
|
|
|
3840
4063
|
/**
|
|
3841
4064
|
* Lieferarten
|
|
@@ -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
|
* Leitweg-ID
|
|
3963
4181
|
*/
|
|
@@ -3968,6 +4186,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3968
4186
|
*/
|
|
3969
4187
|
referencedOrderNumber: 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
|
|
@@ -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
|
|
@@ -4360,6 +4583,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4360
4583
|
*/
|
|
4361
4584
|
customerNumber: string;
|
|
4362
4585
|
|
|
4586
|
+
/**
|
|
4587
|
+
* Versandkostenpositionen
|
|
4588
|
+
*/
|
|
4589
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4590
|
+
|
|
4363
4591
|
/**
|
|
4364
4592
|
* Umsatzsteuer-Identifikationsnummer
|
|
4365
4593
|
*/
|
|
@@ -4370,11 +4598,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4370
4598
|
*/
|
|
4371
4599
|
documentState: DocumentTypeState;
|
|
4372
4600
|
|
|
4373
|
-
/**
|
|
4374
|
-
* Versandkostenpositionen
|
|
4375
|
-
*/
|
|
4376
|
-
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
|
-
|
|
4378
4601
|
/**
|
|
4379
4602
|
* Rückgeld
|
|
4380
4603
|
*/
|
|
@@ -4581,14 +4804,14 @@ export interface DocumentAddress {
|
|
|
4581
4804
|
postOfficeBox: string;
|
|
4582
4805
|
|
|
4583
4806
|
/**
|
|
4584
|
-
*
|
|
4807
|
+
* country code IsoAlpha3
|
|
4585
4808
|
*/
|
|
4586
|
-
|
|
4809
|
+
countryCode: string;
|
|
4587
4810
|
|
|
4588
4811
|
/**
|
|
4589
|
-
*
|
|
4812
|
+
* Street
|
|
4590
4813
|
*/
|
|
4591
|
-
|
|
4814
|
+
street: string;
|
|
4592
4815
|
|
|
4593
4816
|
/**
|
|
4594
4817
|
* Unique identifier of the Object
|
|
@@ -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
|
}
|
|
@@ -4831,14 +5055,14 @@ export interface DocumentFabricationDetail {
|
|
|
4831
5055
|
targetStorageRef: ApiObjectReference;
|
|
4832
5056
|
|
|
4833
5057
|
/**
|
|
4834
|
-
*
|
|
5058
|
+
* Notiz
|
|
4835
5059
|
*/
|
|
4836
|
-
|
|
5060
|
+
note: string;
|
|
4837
5061
|
|
|
4838
5062
|
/**
|
|
4839
|
-
*
|
|
5063
|
+
* Material-Lager
|
|
4840
5064
|
*/
|
|
4841
|
-
|
|
5065
|
+
componentsStorageRef: ApiObjectReference;
|
|
4842
5066
|
|
|
4843
5067
|
/**
|
|
4844
5068
|
* QS-Lager
|
|
@@ -5065,14 +5289,14 @@ export interface DocumentLine {
|
|
|
5065
5289
|
financeBooking: DocumentFinanceBooking;
|
|
5066
5290
|
|
|
5067
5291
|
/**
|
|
5068
|
-
*
|
|
5292
|
+
* Gesamtpreis Position in Basiswährung
|
|
5069
5293
|
*/
|
|
5070
|
-
|
|
5294
|
+
baseTotalLinePrice: number;
|
|
5071
5295
|
|
|
5072
5296
|
/**
|
|
5073
|
-
*
|
|
5297
|
+
* Positionstyp
|
|
5074
5298
|
*/
|
|
5075
|
-
|
|
5299
|
+
lineType: DocumentLineType;
|
|
5076
5300
|
|
|
5077
5301
|
/**
|
|
5078
5302
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -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
|
|
@@ -5220,14 +5444,14 @@ export interface DocumentLine {
|
|
|
5220
5444
|
components: Array<DocumentLineComponent>;
|
|
5221
5445
|
|
|
5222
5446
|
/**
|
|
5223
|
-
*
|
|
5447
|
+
* Versanddatum
|
|
5224
5448
|
*/
|
|
5225
|
-
|
|
5449
|
+
shippingDate: ScriptingDate;
|
|
5226
5450
|
|
|
5227
5451
|
/**
|
|
5228
|
-
*
|
|
5452
|
+
* Summe Dokumentpreisänderungen [Brutto, Netto]
|
|
5229
5453
|
*/
|
|
5230
|
-
|
|
5454
|
+
totalDocumentPriceModifier: number;
|
|
5231
5455
|
|
|
5232
5456
|
/**
|
|
5233
5457
|
* Menge in Pick-Vorgang
|
|
@@ -5285,14 +5509,14 @@ export interface DocumentLine {
|
|
|
5285
5509
|
unitType: UnitTypeReference;
|
|
5286
5510
|
|
|
5287
5511
|
/**
|
|
5288
|
-
*
|
|
5512
|
+
* Zubehör Einfügeart
|
|
5289
5513
|
*/
|
|
5290
|
-
|
|
5514
|
+
insertTerm: AccessoryInsertTerm;
|
|
5291
5515
|
|
|
5292
5516
|
/**
|
|
5293
|
-
*
|
|
5517
|
+
* Referenz zur Basiszeile
|
|
5294
5518
|
*/
|
|
5295
|
-
|
|
5519
|
+
baseLineId: number;
|
|
5296
5520
|
|
|
5297
5521
|
/**
|
|
5298
5522
|
* Einheit Bruttogewicht
|
|
@@ -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
|
*/
|
|
@@ -5697,11 +5926,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
5697
5926
|
*/
|
|
5698
5927
|
quantityFinished: number;
|
|
5699
5928
|
|
|
5700
|
-
/**
|
|
5701
|
-
* Menge defekt
|
|
5702
|
-
*/
|
|
5703
|
-
quantityDefective: number;
|
|
5704
|
-
|
|
5705
5929
|
/**
|
|
5706
5930
|
* Produzierte Seriennummern
|
|
5707
5931
|
*/
|
|
@@ -5712,6 +5936,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
5712
5936
|
*/
|
|
5713
5937
|
custom: EavFabricationline;
|
|
5714
5938
|
|
|
5939
|
+
/**
|
|
5940
|
+
* Menge defekt
|
|
5941
|
+
*/
|
|
5942
|
+
quantityDefective: number;
|
|
5943
|
+
|
|
5715
5944
|
/**
|
|
5716
5945
|
* Menge produziert
|
|
5717
5946
|
*/
|
|
@@ -5746,14 +5975,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
5746
5975
|
quantityFinished: number;
|
|
5747
5976
|
|
|
5748
5977
|
/**
|
|
5749
|
-
* Produzierte
|
|
5978
|
+
* Produzierte/geplante Menge
|
|
5750
5979
|
*/
|
|
5751
|
-
|
|
5980
|
+
quantity: number;
|
|
5752
5981
|
|
|
5753
5982
|
/**
|
|
5754
|
-
* Produzierte
|
|
5983
|
+
* Produzierte Seriennummer
|
|
5755
5984
|
*/
|
|
5756
|
-
|
|
5985
|
+
serialNumber: ArticleSerialNumber;
|
|
5757
5986
|
|
|
5758
5987
|
/**
|
|
5759
5988
|
* Gebuchte Komponenten
|
|
@@ -5799,14 +6028,9 @@ 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
|
-
|
|
5805
|
-
|
|
5806
|
-
/**
|
|
5807
|
-
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
5808
|
-
*/
|
|
5809
|
-
externalPaymentErrorMessage: string;
|
|
6033
|
+
withdrawalMode: CashJournalWithdrawalMode;
|
|
5810
6034
|
|
|
5811
6035
|
/**
|
|
5812
6036
|
* Typ der Einlage/Ausgabe
|
|
@@ -5819,29 +6043,54 @@ export interface DocumentLinePosDetail {
|
|
|
5819
6043
|
externalPaymentStatus: PosPaymentStatus;
|
|
5820
6044
|
|
|
5821
6045
|
/**
|
|
5822
|
-
*
|
|
6046
|
+
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
5823
6047
|
*/
|
|
5824
|
-
|
|
6048
|
+
withdrawToBalance: number;
|
|
5825
6049
|
|
|
5826
6050
|
/**
|
|
5827
|
-
*
|
|
6051
|
+
* Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
|
|
5828
6052
|
*/
|
|
5829
|
-
|
|
6053
|
+
cancelledExternalPaymentId: string;
|
|
5830
6054
|
|
|
5831
6055
|
/**
|
|
5832
|
-
*
|
|
6056
|
+
* Version Identifier for this Object (for PUT)
|
|
5833
6057
|
*/
|
|
5834
|
-
|
|
6058
|
+
version: number;
|
|
5835
6059
|
|
|
5836
6060
|
/**
|
|
5837
|
-
*
|
|
6061
|
+
* Abschöpfungsbetrag (Modus MANUAL)
|
|
5838
6062
|
*/
|
|
5839
|
-
|
|
6063
|
+
withdrawalAmount: number;
|
|
5840
6064
|
|
|
5841
6065
|
/**
|
|
5842
|
-
*
|
|
6066
|
+
* Zahlungsart
|
|
5843
6067
|
*/
|
|
5844
|
-
|
|
6068
|
+
paymentMethodId: number;
|
|
6069
|
+
|
|
6070
|
+
/**
|
|
6071
|
+
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
6072
|
+
*/
|
|
6073
|
+
externalPaymentErrorMessage: string;
|
|
6074
|
+
|
|
6075
|
+
/**
|
|
6076
|
+
* Saldo der Zahlungsart vor Abschöpfung
|
|
6077
|
+
*/
|
|
6078
|
+
balanceBeforeWithdrawal: number;
|
|
6079
|
+
|
|
6080
|
+
/**
|
|
6081
|
+
* Typ der Position
|
|
6082
|
+
*/
|
|
6083
|
+
posLineType: PosLineType;
|
|
6084
|
+
|
|
6085
|
+
/**
|
|
6086
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6087
|
+
*/
|
|
6088
|
+
externalPaymentId: string;
|
|
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,21 +6302,31 @@ 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
|
|
|
6051
6315
|
/**
|
|
6052
|
-
*
|
|
6316
|
+
* Saldo der Zahlungsart vor Abschöpfung (vom Backend gesetzt)
|
|
6053
6317
|
*/
|
|
6054
|
-
|
|
6318
|
+
balanceBeforeWithdrawal: number;
|
|
6055
6319
|
|
|
6056
6320
|
/**
|
|
6057
6321
|
* Typ der Position
|
|
6058
6322
|
*/
|
|
6059
6323
|
posLineType: PosLineType;
|
|
6060
6324
|
|
|
6325
|
+
/**
|
|
6326
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6327
|
+
*/
|
|
6328
|
+
externalPaymentId: string;
|
|
6329
|
+
|
|
6061
6330
|
/**
|
|
6062
6331
|
* Unique identifier of the Object
|
|
6063
6332
|
*/
|
|
@@ -6179,14 +6448,14 @@ export interface DocumentRef {
|
|
|
6179
6448
|
export interface DocumentShippingCost {
|
|
6180
6449
|
|
|
6181
6450
|
/**
|
|
6182
|
-
*
|
|
6451
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6183
6452
|
*/
|
|
6184
|
-
|
|
6453
|
+
manualCosts: boolean;
|
|
6185
6454
|
|
|
6186
6455
|
/**
|
|
6187
|
-
*
|
|
6456
|
+
* Die Versandkosten
|
|
6188
6457
|
*/
|
|
6189
|
-
|
|
6458
|
+
costs: number;
|
|
6190
6459
|
|
|
6191
6460
|
/**
|
|
6192
6461
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6431,14 +6700,14 @@ export interface DocumentType {
|
|
|
6431
6700
|
labels: Array<DocumentTypeLabel>;
|
|
6432
6701
|
|
|
6433
6702
|
/**
|
|
6434
|
-
*
|
|
6703
|
+
* nächste Belegnummer
|
|
6435
6704
|
*/
|
|
6436
|
-
|
|
6705
|
+
nextNumber: string;
|
|
6437
6706
|
|
|
6438
6707
|
/**
|
|
6439
|
-
*
|
|
6708
|
+
* Zählerkreis
|
|
6440
6709
|
*/
|
|
6441
|
-
|
|
6710
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6442
6711
|
|
|
6443
6712
|
/**
|
|
6444
6713
|
* Sortierung
|
|
@@ -6619,14 +6888,14 @@ export const enum DropShippingPolicy {
|
|
|
6619
6888
|
export interface DummySerialNumberStockTransferApi {
|
|
6620
6889
|
|
|
6621
6890
|
/**
|
|
6622
|
-
*
|
|
6891
|
+
* Ziel-Lager
|
|
6623
6892
|
*/
|
|
6624
|
-
|
|
6893
|
+
targetStorageId: number;
|
|
6625
6894
|
|
|
6626
6895
|
/**
|
|
6627
|
-
*
|
|
6896
|
+
* Seriennummer
|
|
6628
6897
|
*/
|
|
6629
|
-
|
|
6898
|
+
serialNumberId: number;
|
|
6630
6899
|
|
|
6631
6900
|
/**
|
|
6632
6901
|
* Bemerkung
|
|
@@ -6638,26 +6907,26 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6638
6907
|
*/
|
|
6639
6908
|
bookDate: ScriptingDate;
|
|
6640
6909
|
|
|
6641
|
-
/**
|
|
6642
|
-
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6643
|
-
*/
|
|
6644
|
-
targetExpiryDate: ScriptingDate;
|
|
6645
|
-
|
|
6646
6910
|
/**
|
|
6647
6911
|
* Die gültige Seriennummer
|
|
6648
6912
|
*/
|
|
6649
6913
|
targetSerialNumber: string;
|
|
6650
6914
|
|
|
6651
6915
|
/**
|
|
6652
|
-
*
|
|
6916
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6653
6917
|
*/
|
|
6654
|
-
|
|
6918
|
+
targetExpiryDate: ScriptingDate;
|
|
6655
6919
|
|
|
6656
6920
|
/**
|
|
6657
6921
|
* Menge
|
|
6658
6922
|
*/
|
|
6659
6923
|
quantity: number;
|
|
6660
6924
|
|
|
6925
|
+
/**
|
|
6926
|
+
* Quell-Lagerplatz
|
|
6927
|
+
*/
|
|
6928
|
+
sourceStorageBinId: number;
|
|
6929
|
+
|
|
6661
6930
|
/**
|
|
6662
6931
|
* Quell-Lager
|
|
6663
6932
|
*/
|
|
@@ -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
|
}
|
|
@@ -6916,18 +7186,18 @@ export const enum FabricationOfComponents {
|
|
|
6916
7186
|
ALWAYS = 'ALWAYS'
|
|
6917
7187
|
}
|
|
6918
7188
|
|
|
6919
|
-
export interface FabricationProduceRequest {
|
|
6920
|
-
|
|
6921
|
-
/**
|
|
6922
|
-
* Material automatisch bestätigen
|
|
6923
|
-
*/
|
|
6924
|
-
autoCommitComponents: boolean;
|
|
6925
|
-
|
|
7189
|
+
export interface FabricationProduceRequest {
|
|
7190
|
+
|
|
6926
7191
|
/**
|
|
6927
7192
|
* Zu produzierende Menge
|
|
6928
7193
|
*/
|
|
6929
7194
|
quantity: number;
|
|
6930
7195
|
|
|
7196
|
+
/**
|
|
7197
|
+
* Material automatisch bestätigen
|
|
7198
|
+
*/
|
|
7199
|
+
autoCommitComponents: boolean;
|
|
7200
|
+
|
|
6931
7201
|
/**
|
|
6932
7202
|
* Für die Produktion zu verwendendes Material
|
|
6933
7203
|
*/
|
|
@@ -6980,14 +7250,14 @@ export interface FabricationRevertRequest {
|
|
|
6980
7250
|
quantity: number;
|
|
6981
7251
|
|
|
6982
7252
|
/**
|
|
6983
|
-
*
|
|
7253
|
+
* ID der zu stornierenden Position
|
|
6984
7254
|
*/
|
|
6985
|
-
|
|
7255
|
+
documentLineId: number;
|
|
6986
7256
|
|
|
6987
7257
|
/**
|
|
6988
|
-
*
|
|
7258
|
+
* Material automatisch stornieren
|
|
6989
7259
|
*/
|
|
6990
|
-
|
|
7260
|
+
autoRevertComponents: boolean;
|
|
6991
7261
|
|
|
6992
7262
|
/**
|
|
6993
7263
|
* Zu stornierende Seriennummern
|
|
@@ -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
|
*/
|
|
@@ -7250,14 +7530,14 @@ export interface PaymentTerm {
|
|
|
7250
7530
|
paymentDiscount2: number;
|
|
7251
7531
|
|
|
7252
7532
|
/**
|
|
7253
|
-
*
|
|
7533
|
+
* printDescription
|
|
7254
7534
|
*/
|
|
7255
|
-
|
|
7535
|
+
printDescription: string;
|
|
7256
7536
|
|
|
7257
7537
|
/**
|
|
7258
|
-
*
|
|
7538
|
+
* Percent for Discount 1
|
|
7259
7539
|
*/
|
|
7260
|
-
|
|
7540
|
+
paymentDiscount1: number;
|
|
7261
7541
|
|
|
7262
7542
|
/**
|
|
7263
7543
|
* for deposit: remaining term
|
|
@@ -7542,20 +7822,21 @@ 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
|
|
|
7548
7829
|
export interface Picklist {
|
|
7549
7830
|
|
|
7550
7831
|
/**
|
|
7551
|
-
*
|
|
7832
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7552
7833
|
*/
|
|
7553
|
-
|
|
7834
|
+
usedTemplate: PicklistTemplate;
|
|
7554
7835
|
|
|
7555
7836
|
/**
|
|
7556
|
-
*
|
|
7837
|
+
* Ziellager für Nachschub
|
|
7557
7838
|
*/
|
|
7558
|
-
|
|
7839
|
+
targetStorageRef: ApiObjectReference;
|
|
7559
7840
|
|
|
7560
7841
|
/**
|
|
7561
7842
|
* Nummer der Pickliste
|
|
@@ -7651,14 +7932,14 @@ export interface PicklistLine {
|
|
|
7651
7932
|
version: number;
|
|
7652
7933
|
|
|
7653
7934
|
/**
|
|
7654
|
-
*
|
|
7935
|
+
* ID der Quell-Dokumentposition
|
|
7655
7936
|
*/
|
|
7656
|
-
|
|
7937
|
+
sourceDocumentLineId: number;
|
|
7657
7938
|
|
|
7658
7939
|
/**
|
|
7659
|
-
*
|
|
7940
|
+
* Lageranzeigename
|
|
7660
7941
|
*/
|
|
7661
|
-
|
|
7942
|
+
storageDisplayName: string;
|
|
7662
7943
|
|
|
7663
7944
|
/**
|
|
7664
7945
|
* Artikelnummer
|
|
@@ -7724,14 +8005,14 @@ export interface PicklistLine {
|
|
|
7724
8005
|
export interface PicklistLineBooking {
|
|
7725
8006
|
|
|
7726
8007
|
/**
|
|
7727
|
-
*
|
|
8008
|
+
* Zu buchende Menge (gesammelt)
|
|
7728
8009
|
*/
|
|
7729
|
-
|
|
8010
|
+
quantity: number;
|
|
7730
8011
|
|
|
7731
8012
|
/**
|
|
7732
|
-
*
|
|
8013
|
+
* Seriennummer
|
|
7733
8014
|
*/
|
|
7734
|
-
|
|
8015
|
+
serialNumber: ArticleSerialNumber;
|
|
7735
8016
|
|
|
7736
8017
|
/**
|
|
7737
8018
|
* Anzeigename vom Lagerplatz
|
|
@@ -8094,14 +8375,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8094
8375
|
specifyStorageBins: boolean;
|
|
8095
8376
|
|
|
8096
8377
|
/**
|
|
8097
|
-
*
|
|
8378
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8098
8379
|
*/
|
|
8099
|
-
|
|
8380
|
+
sortByRoutePosition: boolean;
|
|
8100
8381
|
|
|
8101
8382
|
/**
|
|
8102
|
-
*
|
|
8383
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8103
8384
|
*/
|
|
8104
|
-
|
|
8385
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8105
8386
|
|
|
8106
8387
|
/**
|
|
8107
8388
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8162,9 +8443,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8162
8443
|
showShippingFormOnPickingFinish: boolean;
|
|
8163
8444
|
|
|
8164
8445
|
/**
|
|
8165
|
-
*
|
|
8446
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8166
8447
|
*/
|
|
8167
|
-
|
|
8448
|
+
useDigitalPicklist: boolean;
|
|
8168
8449
|
|
|
8169
8450
|
/**
|
|
8170
8451
|
* Sammelbestätigung erlauben
|
|
@@ -8172,9 +8453,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8172
8453
|
allowFullConfirmation: boolean;
|
|
8173
8454
|
|
|
8174
8455
|
/**
|
|
8175
|
-
*
|
|
8456
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8176
8457
|
*/
|
|
8177
|
-
|
|
8458
|
+
allowPickingOfServiceArticles: boolean;
|
|
8178
8459
|
|
|
8179
8460
|
/**
|
|
8180
8461
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -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
|
|
@@ -8448,14 +8730,14 @@ export interface ProductArticleRef {
|
|
|
8448
8730
|
export interface ProductDiscount {
|
|
8449
8731
|
|
|
8450
8732
|
/**
|
|
8451
|
-
*
|
|
8733
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8452
8734
|
*/
|
|
8453
|
-
|
|
8735
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8454
8736
|
|
|
8455
8737
|
/**
|
|
8456
|
-
*
|
|
8738
|
+
* Kundengruppe
|
|
8457
8739
|
*/
|
|
8458
|
-
|
|
8740
|
+
customerGroupRef: ApiObjectReference;
|
|
8459
8741
|
|
|
8460
8742
|
/**
|
|
8461
8743
|
* Lieferantengruppe
|
|
@@ -8657,14 +8939,14 @@ export interface ProductMainGroup {
|
|
|
8657
8939
|
export interface ProductPrice {
|
|
8658
8940
|
|
|
8659
8941
|
/**
|
|
8660
|
-
*
|
|
8942
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8661
8943
|
*/
|
|
8662
|
-
|
|
8944
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8663
8945
|
|
|
8664
8946
|
/**
|
|
8665
|
-
*
|
|
8947
|
+
* Kundengruppe
|
|
8666
8948
|
*/
|
|
8667
|
-
|
|
8949
|
+
customerGroupRef: ApiObjectReference;
|
|
8668
8950
|
|
|
8669
8951
|
/**
|
|
8670
8952
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8831,6 +9113,18 @@ export interface RecommendedRetailPrice {
|
|
|
8831
9113
|
export interface Referenceable {
|
|
8832
9114
|
}
|
|
8833
9115
|
|
|
9116
|
+
export const enum RegulationCode {
|
|
9117
|
+
FR = 'FR',
|
|
9118
|
+
LQ = 'LQ',
|
|
9119
|
+
EQ = 'EQ',
|
|
9120
|
+
LR = 'LR'
|
|
9121
|
+
}
|
|
9122
|
+
|
|
9123
|
+
export const enum RegulationSet {
|
|
9124
|
+
ADR = 'ADR',
|
|
9125
|
+
IATA = 'IATA'
|
|
9126
|
+
}
|
|
9127
|
+
|
|
8834
9128
|
export interface RequestDocument {
|
|
8835
9129
|
|
|
8836
9130
|
/**
|
|
@@ -8979,14 +9273,14 @@ export interface RequestDocument {
|
|
|
8979
9273
|
accountId: number;
|
|
8980
9274
|
|
|
8981
9275
|
/**
|
|
8982
|
-
*
|
|
9276
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8983
9277
|
*/
|
|
8984
|
-
|
|
9278
|
+
processedByPicklistProcessing: boolean;
|
|
8985
9279
|
|
|
8986
9280
|
/**
|
|
8987
|
-
*
|
|
9281
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8988
9282
|
*/
|
|
8989
|
-
|
|
9283
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8990
9284
|
|
|
8991
9285
|
/**
|
|
8992
9286
|
* Die Rabatte des Beleges
|
|
@@ -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
|
*/
|
|
@@ -9147,14 +9446,14 @@ export interface RequestDocumentLine {
|
|
|
9147
9446
|
name: string;
|
|
9148
9447
|
|
|
9149
9448
|
/**
|
|
9150
|
-
*
|
|
9449
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9151
9450
|
*/
|
|
9152
|
-
|
|
9451
|
+
externalArticleNumber: string;
|
|
9153
9452
|
|
|
9154
9453
|
/**
|
|
9155
|
-
*
|
|
9454
|
+
* ID der Quell-Belegposition
|
|
9156
9455
|
*/
|
|
9157
|
-
|
|
9456
|
+
sourceLineId: number;
|
|
9158
9457
|
|
|
9159
9458
|
/**
|
|
9160
9459
|
* Buchungen zu dieser Belegposition
|
|
@@ -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
|
/**
|
|
@@ -9275,14 +9592,14 @@ export interface RequestDocumentText {
|
|
|
9275
9592
|
export interface RevenueCalculation {
|
|
9276
9593
|
|
|
9277
9594
|
/**
|
|
9278
|
-
*
|
|
9595
|
+
* Netto Umsatz
|
|
9279
9596
|
*/
|
|
9280
|
-
|
|
9597
|
+
salesValue: number;
|
|
9281
9598
|
|
|
9282
9599
|
/**
|
|
9283
|
-
*
|
|
9600
|
+
* Deckungsbeitrag (absolut)
|
|
9284
9601
|
*/
|
|
9285
|
-
|
|
9602
|
+
revenue: number;
|
|
9286
9603
|
|
|
9287
9604
|
/**
|
|
9288
9605
|
* Einkaufspreis
|
|
@@ -9303,14 +9620,14 @@ export interface SalesAgent {
|
|
|
9303
9620
|
note: string;
|
|
9304
9621
|
|
|
9305
9622
|
/**
|
|
9306
|
-
*
|
|
9623
|
+
* reference to the delivery method
|
|
9307
9624
|
*/
|
|
9308
|
-
|
|
9625
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9309
9626
|
|
|
9310
9627
|
/**
|
|
9311
|
-
*
|
|
9628
|
+
* is sales agent taxable
|
|
9312
9629
|
*/
|
|
9313
|
-
|
|
9630
|
+
taxable: boolean;
|
|
9314
9631
|
|
|
9315
9632
|
/**
|
|
9316
9633
|
* Freifelder
|
|
@@ -9712,14 +10029,14 @@ export interface SequencerConfigurationDetail {
|
|
|
9712
10029
|
export interface SerialNumberWithQuantityApi {
|
|
9713
10030
|
|
|
9714
10031
|
/**
|
|
9715
|
-
*
|
|
10032
|
+
* Menge
|
|
9716
10033
|
*/
|
|
9717
|
-
|
|
10034
|
+
quantity: number;
|
|
9718
10035
|
|
|
9719
10036
|
/**
|
|
9720
|
-
*
|
|
10037
|
+
* Seriennummer
|
|
9721
10038
|
*/
|
|
9722
|
-
|
|
10039
|
+
serialNumber: ArticleSerialNumber;
|
|
9723
10040
|
}
|
|
9724
10041
|
|
|
9725
10042
|
export interface ShelfDocument {
|
|
@@ -9770,14 +10087,14 @@ export interface ShelfDocument {
|
|
|
9770
10087
|
tags: Array<TagDto>;
|
|
9771
10088
|
|
|
9772
10089
|
/**
|
|
9773
|
-
*
|
|
10090
|
+
* Mehrsprachige Bezeichnungen
|
|
9774
10091
|
*/
|
|
9775
|
-
|
|
10092
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9776
10093
|
|
|
9777
10094
|
/**
|
|
9778
|
-
*
|
|
10095
|
+
* share informations
|
|
9779
10096
|
*/
|
|
9780
|
-
|
|
10097
|
+
shares: Array<ShelfShare>;
|
|
9781
10098
|
|
|
9782
10099
|
/**
|
|
9783
10100
|
* Automatische Löschung ab
|
|
@@ -9909,14 +10226,14 @@ export interface ShelfDocumentType {
|
|
|
9909
10226
|
active: boolean;
|
|
9910
10227
|
|
|
9911
10228
|
/**
|
|
9912
|
-
*
|
|
10229
|
+
* access level or reading
|
|
9913
10230
|
*/
|
|
9914
|
-
|
|
10231
|
+
accessLevelRead: number;
|
|
9915
10232
|
|
|
9916
10233
|
/**
|
|
9917
|
-
*
|
|
10234
|
+
* label of type
|
|
9918
10235
|
*/
|
|
9919
|
-
|
|
10236
|
+
label: string;
|
|
9920
10237
|
|
|
9921
10238
|
/**
|
|
9922
10239
|
* storage rule for revisions
|
|
@@ -9962,14 +10279,14 @@ export interface ShelfFile {
|
|
|
9962
10279
|
subFiles: Array<SubFileInfo>;
|
|
9963
10280
|
|
|
9964
10281
|
/**
|
|
9965
|
-
*
|
|
10282
|
+
* revision number of this file
|
|
9966
10283
|
*/
|
|
9967
|
-
|
|
10284
|
+
revisionNumber: number;
|
|
9968
10285
|
|
|
9969
10286
|
/**
|
|
9970
|
-
*
|
|
10287
|
+
* fileSize
|
|
9971
10288
|
*/
|
|
9972
|
-
|
|
10289
|
+
fileSize: number;
|
|
9973
10290
|
|
|
9974
10291
|
/**
|
|
9975
10292
|
* file-extension of this entry
|
|
@@ -9997,14 +10314,14 @@ export interface ShelfFile {
|
|
|
9997
10314
|
version: number;
|
|
9998
10315
|
|
|
9999
10316
|
/**
|
|
10000
|
-
*
|
|
10317
|
+
* meta data
|
|
10001
10318
|
*/
|
|
10002
|
-
|
|
10319
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10003
10320
|
|
|
10004
10321
|
/**
|
|
10005
|
-
*
|
|
10322
|
+
* current reference of this file in our storage
|
|
10006
10323
|
*/
|
|
10007
|
-
|
|
10324
|
+
storageHandle: string;
|
|
10008
10325
|
|
|
10009
10326
|
/**
|
|
10010
10327
|
* MetaInformations for this Object
|
|
@@ -10048,14 +10365,14 @@ export interface ShelfShare {
|
|
|
10048
10365
|
publishState: ShelfSharePublishState;
|
|
10049
10366
|
|
|
10050
10367
|
/**
|
|
10051
|
-
*
|
|
10368
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
10052
10369
|
*/
|
|
10053
|
-
|
|
10370
|
+
publicUrlDurationInMinutes: number;
|
|
10054
10371
|
|
|
10055
10372
|
/**
|
|
10056
|
-
*
|
|
10373
|
+
* Freifelder
|
|
10057
10374
|
*/
|
|
10058
|
-
|
|
10375
|
+
custom: EavShelfshare;
|
|
10059
10376
|
|
|
10060
10377
|
/**
|
|
10061
10378
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10249,14 +10566,14 @@ export interface StockMovementManualApi {
|
|
|
10249
10566
|
purchasePrice: number;
|
|
10250
10567
|
|
|
10251
10568
|
/**
|
|
10252
|
-
*
|
|
10569
|
+
* Zugang oder Abgang
|
|
10253
10570
|
*/
|
|
10254
|
-
|
|
10571
|
+
factor: StockJournalFactor;
|
|
10255
10572
|
|
|
10256
10573
|
/**
|
|
10257
|
-
*
|
|
10574
|
+
* Notiz zur Seriennummer
|
|
10258
10575
|
*/
|
|
10259
|
-
|
|
10576
|
+
serialNumberNote: string;
|
|
10260
10577
|
|
|
10261
10578
|
/**
|
|
10262
10579
|
* Lager
|
|
@@ -10267,14 +10584,14 @@ export interface StockMovementManualApi {
|
|
|
10267
10584
|
export interface StockTransferApi {
|
|
10268
10585
|
|
|
10269
10586
|
/**
|
|
10270
|
-
*
|
|
10587
|
+
* Ziel-Lager
|
|
10271
10588
|
*/
|
|
10272
|
-
|
|
10589
|
+
targetStorageId: number;
|
|
10273
10590
|
|
|
10274
10591
|
/**
|
|
10275
|
-
*
|
|
10592
|
+
* Seriennummer
|
|
10276
10593
|
*/
|
|
10277
|
-
|
|
10594
|
+
serialNumberId: number;
|
|
10278
10595
|
|
|
10279
10596
|
/**
|
|
10280
10597
|
* Bemerkung
|
|
@@ -10287,14 +10604,14 @@ export interface StockTransferApi {
|
|
|
10287
10604
|
bookDate: ScriptingDate;
|
|
10288
10605
|
|
|
10289
10606
|
/**
|
|
10290
|
-
*
|
|
10607
|
+
* Menge
|
|
10291
10608
|
*/
|
|
10292
|
-
|
|
10609
|
+
quantity: number;
|
|
10293
10610
|
|
|
10294
10611
|
/**
|
|
10295
|
-
*
|
|
10612
|
+
* Quell-Lagerplatz
|
|
10296
10613
|
*/
|
|
10297
|
-
|
|
10614
|
+
sourceStorageBinId: number;
|
|
10298
10615
|
|
|
10299
10616
|
/**
|
|
10300
10617
|
* Quell-Lager
|
|
@@ -10484,14 +10801,14 @@ export interface Supplier {
|
|
|
10484
10801
|
info: MetaInfo;
|
|
10485
10802
|
|
|
10486
10803
|
/**
|
|
10487
|
-
*
|
|
10804
|
+
* reference to the delivery method
|
|
10488
10805
|
*/
|
|
10489
|
-
|
|
10806
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10490
10807
|
|
|
10491
10808
|
/**
|
|
10492
|
-
*
|
|
10809
|
+
* Lieferantengruppe
|
|
10493
10810
|
*/
|
|
10494
|
-
|
|
10811
|
+
supplierGroupRef: ApiObjectReference;
|
|
10495
10812
|
|
|
10496
10813
|
/**
|
|
10497
10814
|
* tax able or tax free
|
|
@@ -10549,14 +10866,14 @@ export interface Supplier {
|
|
|
10549
10866
|
performanceCountryCode: string;
|
|
10550
10867
|
|
|
10551
10868
|
/**
|
|
10552
|
-
*
|
|
10869
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10553
10870
|
*/
|
|
10554
|
-
|
|
10871
|
+
defaultDeliveryTime: number;
|
|
10555
10872
|
|
|
10556
10873
|
/**
|
|
10557
|
-
*
|
|
10874
|
+
* reference to the payment method
|
|
10558
10875
|
*/
|
|
10559
|
-
|
|
10876
|
+
paymentMethodRef: ApiObjectReference;
|
|
10560
10877
|
|
|
10561
10878
|
/**
|
|
10562
10879
|
* currency code IsoAlpha3
|
|
@@ -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
|
|
|
@@ -10877,6 +11202,11 @@ export interface User {
|
|
|
10877
11202
|
*/
|
|
10878
11203
|
roles: Array<ApiObjectReference>;
|
|
10879
11204
|
|
|
11205
|
+
/**
|
|
11206
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11207
|
+
*/
|
|
11208
|
+
referencedCustomerUserId: number;
|
|
11209
|
+
|
|
10880
11210
|
/**
|
|
10881
11211
|
* Gruppen
|
|
10882
11212
|
*/
|
|
@@ -10887,11 +11217,6 @@ export interface User {
|
|
|
10887
11217
|
*/
|
|
10888
11218
|
active: boolean;
|
|
10889
11219
|
|
|
10890
|
-
/**
|
|
10891
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10892
|
-
*/
|
|
10893
|
-
referencedCustomerUserId: number;
|
|
10894
|
-
|
|
10895
11220
|
/**
|
|
10896
11221
|
* App-Identifier
|
|
10897
11222
|
*/
|
|
@@ -10928,14 +11253,14 @@ export interface User {
|
|
|
10928
11253
|
id: number;
|
|
10929
11254
|
|
|
10930
11255
|
/**
|
|
10931
|
-
*
|
|
11256
|
+
* Valid to
|
|
10932
11257
|
*/
|
|
10933
|
-
|
|
11258
|
+
validTo: ScriptingDateTime;
|
|
10934
11259
|
|
|
10935
11260
|
/**
|
|
10936
|
-
*
|
|
11261
|
+
* username
|
|
10937
11262
|
*/
|
|
10938
|
-
|
|
11263
|
+
username: string;
|
|
10939
11264
|
|
|
10940
11265
|
/**
|
|
10941
11266
|
* MetaInformations for this Object
|