@vario-software/types 2026.29.4 → 2026.30.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 +1846 -66
- package/scripting/services.d.ts +157 -53
- package/scripting/types.d.ts +572 -348
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Street
|
|
@@ -411,14 +411,14 @@ export interface AccountAddress {
|
|
|
411
411
|
streetAddressNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Parcel station customer number
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
parcelStationCustomerNumber: string;
|
|
422
422
|
|
|
423
423
|
/**
|
|
424
424
|
* Name3
|
|
@@ -494,14 +494,14 @@ export interface AccountBankdetail {
|
|
|
494
494
|
version: number;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* Hauptbankverbindung für
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
507
|
* origin type
|
|
@@ -1034,14 +1034,14 @@ export interface Article {
|
|
|
1034
1034
|
sellableWithoutStock: boolean;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
|
-
*
|
|
1037
|
+
* Durchschnittl. EKP (Startwert)
|
|
1038
1038
|
*/
|
|
1039
|
-
|
|
1039
|
+
initialAvgPurchasePrice: number;
|
|
1040
1040
|
|
|
1041
1041
|
/**
|
|
1042
|
-
*
|
|
1042
|
+
* Seriennummern Auszeichnungsart
|
|
1043
1043
|
*/
|
|
1044
|
-
|
|
1044
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1045
1045
|
|
|
1046
1046
|
/**
|
|
1047
1047
|
* gross Volume in cubic meters
|
|
@@ -1219,14 +1219,14 @@ export interface Article {
|
|
|
1219
1219
|
workUnitInMinutes: number;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
*
|
|
1222
|
+
* Frei kommissionierbar
|
|
1223
1223
|
*/
|
|
1224
|
-
|
|
1224
|
+
freelyPickable: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* description custom data
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1234,14 +1234,14 @@ export interface Article {
|
|
|
1234
1234
|
taxLiabilityReversed: boolean;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
|
-
*
|
|
1237
|
+
* Notiz
|
|
1238
1238
|
*/
|
|
1239
|
-
|
|
1239
|
+
note: string;
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
|
-
*
|
|
1242
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1243
1243
|
*/
|
|
1244
|
-
|
|
1244
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1245
1245
|
|
|
1246
1246
|
/**
|
|
1247
1247
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1288,6 +1288,11 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1290
1290
|
|
|
1291
|
+
/**
|
|
1292
|
+
* Vorgabe Herstellungskosten
|
|
1293
|
+
*/
|
|
1294
|
+
defaultFabricationCost: number;
|
|
1295
|
+
|
|
1291
1296
|
/**
|
|
1292
1297
|
* Letzter EKP (Startwert)
|
|
1293
1298
|
*/
|
|
@@ -1308,11 +1313,6 @@ export interface Article {
|
|
|
1308
1313
|
*/
|
|
1309
1314
|
shippingLabelPrinting: boolean;
|
|
1310
1315
|
|
|
1311
|
-
/**
|
|
1312
|
-
* rabattierbarer Artikel?
|
|
1313
|
-
*/
|
|
1314
|
-
discountable: boolean;
|
|
1315
|
-
|
|
1316
1316
|
/**
|
|
1317
1317
|
* alternative name of this product
|
|
1318
1318
|
*/
|
|
@@ -1323,6 +1323,11 @@ export interface Article {
|
|
|
1323
1323
|
*/
|
|
1324
1324
|
contingentArticleRef: ApiObjectReference;
|
|
1325
1325
|
|
|
1326
|
+
/**
|
|
1327
|
+
* rabattierbarer Artikel?
|
|
1328
|
+
*/
|
|
1329
|
+
discountable: boolean;
|
|
1330
|
+
|
|
1326
1331
|
/**
|
|
1327
1332
|
* base capacity
|
|
1328
1333
|
*/
|
|
@@ -1359,14 +1364,14 @@ export interface Article {
|
|
|
1359
1364
|
custom: EavArticle;
|
|
1360
1365
|
|
|
1361
1366
|
/**
|
|
1362
|
-
*
|
|
1367
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1363
1368
|
*/
|
|
1364
|
-
|
|
1369
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1365
1370
|
|
|
1366
1371
|
/**
|
|
1367
|
-
*
|
|
1372
|
+
* Art des Haltbarkeitsdatums
|
|
1368
1373
|
*/
|
|
1369
|
-
|
|
1374
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1370
1375
|
|
|
1371
1376
|
/**
|
|
1372
1377
|
* Hersteller
|
|
@@ -1394,14 +1399,14 @@ export interface Article {
|
|
|
1394
1399
|
listed: boolean;
|
|
1395
1400
|
|
|
1396
1401
|
/**
|
|
1397
|
-
*
|
|
1402
|
+
* Nur manuelle Produktion
|
|
1398
1403
|
*/
|
|
1399
|
-
|
|
1404
|
+
onlyManualFabrication: boolean;
|
|
1400
1405
|
|
|
1401
1406
|
/**
|
|
1402
|
-
*
|
|
1407
|
+
* provisionsberechtiger Artikel?
|
|
1403
1408
|
*/
|
|
1404
|
-
|
|
1409
|
+
commissionable: boolean;
|
|
1405
1410
|
|
|
1406
1411
|
/**
|
|
1407
1412
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1557,14 +1562,14 @@ export interface ArticleCustomer {
|
|
|
1557
1562
|
productPrices: Array<ProductPrice>;
|
|
1558
1563
|
|
|
1559
1564
|
/**
|
|
1560
|
-
*
|
|
1565
|
+
* Referenced Article
|
|
1561
1566
|
*/
|
|
1562
|
-
|
|
1567
|
+
articleId: number;
|
|
1563
1568
|
|
|
1564
1569
|
/**
|
|
1565
|
-
*
|
|
1570
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1566
1571
|
*/
|
|
1567
|
-
|
|
1572
|
+
useDeviatingArticleDescription: boolean;
|
|
1568
1573
|
|
|
1569
1574
|
/**
|
|
1570
1575
|
* Aktiv?
|
|
@@ -1602,14 +1607,14 @@ export interface ArticleCustomer {
|
|
|
1602
1607
|
defaultGrossPrice: number;
|
|
1603
1608
|
|
|
1604
1609
|
/**
|
|
1605
|
-
*
|
|
1610
|
+
* Art der Preisermittlung
|
|
1606
1611
|
*/
|
|
1607
|
-
|
|
1612
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1608
1613
|
|
|
1609
1614
|
/**
|
|
1610
|
-
*
|
|
1615
|
+
* Abweichende Produktnummer
|
|
1611
1616
|
*/
|
|
1612
|
-
|
|
1617
|
+
deviatingArticleNumber: string;
|
|
1613
1618
|
|
|
1614
1619
|
/**
|
|
1615
1620
|
* Artikelnummer
|
|
@@ -1724,14 +1729,14 @@ export interface ArticleListing {
|
|
|
1724
1729
|
proposedLowestPriceGross: number;
|
|
1725
1730
|
|
|
1726
1731
|
/**
|
|
1727
|
-
* der
|
|
1732
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1728
1733
|
*/
|
|
1729
|
-
|
|
1734
|
+
customLowestPriceGross: number;
|
|
1730
1735
|
|
|
1731
1736
|
/**
|
|
1732
|
-
*
|
|
1737
|
+
* der Sales Channel
|
|
1733
1738
|
*/
|
|
1734
|
-
|
|
1739
|
+
salesChannelRef: ApiObjectReference;
|
|
1735
1740
|
|
|
1736
1741
|
/**
|
|
1737
1742
|
* soll der Artikel gelistet werden
|
|
@@ -1931,15 +1936,20 @@ export const enum ArticleSerialType {
|
|
|
1931
1936
|
|
|
1932
1937
|
export interface ArticleStorage {
|
|
1933
1938
|
|
|
1939
|
+
/**
|
|
1940
|
+
* Nachschub ab
|
|
1941
|
+
*/
|
|
1942
|
+
replenishmentFrom: number;
|
|
1943
|
+
|
|
1934
1944
|
/**
|
|
1935
1945
|
* Bestand im Lager
|
|
1936
1946
|
*/
|
|
1937
1947
|
quantityInStock: number;
|
|
1938
1948
|
|
|
1939
1949
|
/**
|
|
1940
|
-
*
|
|
1950
|
+
* Aktuelle Menge in Kommissionierung
|
|
1941
1951
|
*/
|
|
1942
|
-
|
|
1952
|
+
quantityInPicking: number;
|
|
1943
1953
|
|
|
1944
1954
|
/**
|
|
1945
1955
|
* Meldebestand
|
|
@@ -1952,20 +1962,15 @@ export interface ArticleStorage {
|
|
|
1952
1962
|
orderedQuantity: number;
|
|
1953
1963
|
|
|
1954
1964
|
/**
|
|
1955
|
-
*
|
|
1965
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1956
1966
|
*/
|
|
1957
|
-
|
|
1967
|
+
virtualStockAmount: number;
|
|
1958
1968
|
|
|
1959
1969
|
/**
|
|
1960
1970
|
* Nachschub auf
|
|
1961
1971
|
*/
|
|
1962
1972
|
replenishmentOn: number;
|
|
1963
1973
|
|
|
1964
|
-
/**
|
|
1965
|
-
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1966
|
-
*/
|
|
1967
|
-
virtualStockAmount: number;
|
|
1968
|
-
|
|
1969
1974
|
/**
|
|
1970
1975
|
* Reservierte Menge
|
|
1971
1976
|
*/
|
|
@@ -2034,6 +2039,11 @@ export interface ArticleStorage {
|
|
|
2034
2039
|
|
|
2035
2040
|
export interface ArticleSupplier {
|
|
2036
2041
|
|
|
2042
|
+
/**
|
|
2043
|
+
* Lieferanten-Meldebestand
|
|
2044
|
+
*/
|
|
2045
|
+
supplierReportingStock: number;
|
|
2046
|
+
|
|
2037
2047
|
/**
|
|
2038
2048
|
* Anzeigename des Accounts
|
|
2039
2049
|
*/
|
|
@@ -2044,11 +2054,6 @@ export interface ArticleSupplier {
|
|
|
2044
2054
|
*/
|
|
2045
2055
|
useSupplierArticleDescription: boolean;
|
|
2046
2056
|
|
|
2047
|
-
/**
|
|
2048
|
-
* Lieferanten-Meldebestand
|
|
2049
|
-
*/
|
|
2050
|
-
supplierReportingStock: number;
|
|
2051
|
-
|
|
2052
2057
|
/**
|
|
2053
2058
|
* Lieferzeit in (Werk-)Tagen
|
|
2054
2059
|
*/
|
|
@@ -2145,14 +2150,14 @@ export interface ArticleSupplier {
|
|
|
2145
2150
|
dropShippingAllowed: boolean;
|
|
2146
2151
|
|
|
2147
2152
|
/**
|
|
2148
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbezeichnung
|
|
2149
2154
|
*/
|
|
2150
|
-
|
|
2155
|
+
supplierArticleName: string;
|
|
2151
2156
|
|
|
2152
2157
|
/**
|
|
2153
|
-
* Abweichende
|
|
2158
|
+
* Abweichende Produktbeschreibung
|
|
2154
2159
|
*/
|
|
2155
|
-
|
|
2160
|
+
supplierArticleDescription: string;
|
|
2156
2161
|
|
|
2157
2162
|
/**
|
|
2158
2163
|
* Standardpreis Netto
|
|
@@ -2218,14 +2223,14 @@ export interface Asset {
|
|
|
2218
2223
|
active: boolean;
|
|
2219
2224
|
|
|
2220
2225
|
/**
|
|
2221
|
-
*
|
|
2226
|
+
* Ende Garantie
|
|
2222
2227
|
*/
|
|
2223
|
-
|
|
2228
|
+
warrantyEndDate: ScriptingDate;
|
|
2224
2229
|
|
|
2225
2230
|
/**
|
|
2226
|
-
*
|
|
2231
|
+
* Zugehörige Assets
|
|
2227
2232
|
*/
|
|
2228
|
-
|
|
2233
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2229
2234
|
|
|
2230
2235
|
/**
|
|
2231
2236
|
* Asset-Bezeichnung
|
|
@@ -2521,6 +2526,11 @@ export interface CreateNewDocumentRequest {
|
|
|
2521
2526
|
*/
|
|
2522
2527
|
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
2528
|
|
|
2529
|
+
/**
|
|
2530
|
+
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
2531
|
+
*/
|
|
2532
|
+
externallyCreated: boolean;
|
|
2533
|
+
|
|
2524
2534
|
/**
|
|
2525
2535
|
* Details zum Beleg
|
|
2526
2536
|
*/
|
|
@@ -2585,14 +2595,14 @@ export interface CrmActivity {
|
|
|
2585
2595
|
info: MetaInfo;
|
|
2586
2596
|
|
|
2587
2597
|
/**
|
|
2588
|
-
*
|
|
2598
|
+
* Aktivität intern abgerechnet?
|
|
2589
2599
|
*/
|
|
2590
|
-
|
|
2600
|
+
internalBilled: boolean;
|
|
2591
2601
|
|
|
2592
2602
|
/**
|
|
2593
|
-
*
|
|
2603
|
+
* geplante Dauer
|
|
2594
2604
|
*/
|
|
2595
|
-
|
|
2605
|
+
plannedDurationInSeconds: number;
|
|
2596
2606
|
|
|
2597
2607
|
/**
|
|
2598
2608
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2630,14 +2640,14 @@ export interface CrmActivity {
|
|
|
2630
2640
|
userRef: ApiObjectReference;
|
|
2631
2641
|
|
|
2632
2642
|
/**
|
|
2633
|
-
*
|
|
2643
|
+
* tatsächliche Startzeit
|
|
2634
2644
|
*/
|
|
2635
|
-
|
|
2645
|
+
startDateTime: ScriptingDateTime;
|
|
2636
2646
|
|
|
2637
2647
|
/**
|
|
2638
|
-
*
|
|
2648
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2639
2649
|
*/
|
|
2640
|
-
|
|
2650
|
+
system: boolean;
|
|
2641
2651
|
|
|
2642
2652
|
/**
|
|
2643
2653
|
* Inhalt dieser Aktivität
|
|
@@ -2744,14 +2754,14 @@ export interface CrmActivityType {
|
|
|
2744
2754
|
export interface CrmChecklistItem {
|
|
2745
2755
|
|
|
2746
2756
|
/**
|
|
2747
|
-
*
|
|
2757
|
+
* Ist das Element "angehakt"?
|
|
2748
2758
|
*/
|
|
2749
|
-
|
|
2759
|
+
checked: boolean;
|
|
2750
2760
|
|
|
2751
2761
|
/**
|
|
2752
|
-
*
|
|
2762
|
+
* Text des Checklisten-Elements
|
|
2753
2763
|
*/
|
|
2754
|
-
|
|
2764
|
+
memo: string;
|
|
2755
2765
|
|
|
2756
2766
|
/**
|
|
2757
2767
|
* Unique identifier of the Object
|
|
@@ -2867,14 +2877,14 @@ export interface CrmDeal {
|
|
|
2867
2877
|
info: MetaInfo;
|
|
2868
2878
|
|
|
2869
2879
|
/**
|
|
2870
|
-
*
|
|
2880
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2871
2881
|
*/
|
|
2872
|
-
|
|
2882
|
+
assignedUserRef: ApiObjectReference;
|
|
2873
2883
|
|
|
2874
2884
|
/**
|
|
2875
|
-
*
|
|
2885
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2876
2886
|
*/
|
|
2877
|
-
|
|
2887
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2878
2888
|
|
|
2879
2889
|
/**
|
|
2880
2890
|
* Chance (in Prozent)
|
|
@@ -3178,14 +3188,14 @@ export interface CrmProject {
|
|
|
3178
3188
|
billedTimes: number;
|
|
3179
3189
|
|
|
3180
3190
|
/**
|
|
3181
|
-
*
|
|
3191
|
+
* Einkaufsbelege
|
|
3182
3192
|
*/
|
|
3183
|
-
|
|
3193
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3184
3194
|
|
|
3185
3195
|
/**
|
|
3186
|
-
*
|
|
3196
|
+
* Geplanter Projektzeitraum (von)
|
|
3187
3197
|
*/
|
|
3188
|
-
|
|
3198
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3189
3199
|
|
|
3190
3200
|
/**
|
|
3191
3201
|
* Verkaufsbelege
|
|
@@ -3879,14 +3889,14 @@ export interface Customer {
|
|
|
3879
3889
|
dueDate: ScriptingDate;
|
|
3880
3890
|
|
|
3881
3891
|
/**
|
|
3882
|
-
*
|
|
3892
|
+
* Maximal mögliche Lieferungen
|
|
3883
3893
|
*/
|
|
3884
|
-
|
|
3894
|
+
maxDeliveries: number;
|
|
3885
3895
|
|
|
3886
3896
|
/**
|
|
3887
|
-
*
|
|
3897
|
+
* collective billable
|
|
3888
3898
|
*/
|
|
3889
|
-
|
|
3899
|
+
collectiveBillable: boolean;
|
|
3890
3900
|
|
|
3891
3901
|
/**
|
|
3892
3902
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3914,14 +3924,14 @@ export interface Customer {
|
|
|
3914
3924
|
stackProcessingPriority: number;
|
|
3915
3925
|
|
|
3916
3926
|
/**
|
|
3917
|
-
*
|
|
3927
|
+
* reference to product price group
|
|
3918
3928
|
*/
|
|
3919
|
-
|
|
3929
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3920
3930
|
|
|
3921
3931
|
/**
|
|
3922
|
-
*
|
|
3932
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3923
3933
|
*/
|
|
3924
|
-
|
|
3934
|
+
collectiveInvoiceManually: boolean;
|
|
3925
3935
|
|
|
3926
3936
|
/**
|
|
3927
3937
|
* Unique identifier of the Object
|
|
@@ -4157,26 +4167,26 @@ export interface DeliveryMethod {
|
|
|
4157
4167
|
*/
|
|
4158
4168
|
defaultSizeUnit: UnitTypeReference;
|
|
4159
4169
|
|
|
4160
|
-
/**
|
|
4161
|
-
* translations
|
|
4162
|
-
*/
|
|
4163
|
-
translations: Array<DocumentTypeTerm>;
|
|
4164
|
-
|
|
4165
4170
|
/**
|
|
4166
4171
|
* Quelle für Paketgewicht
|
|
4167
4172
|
*/
|
|
4168
4173
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4169
4174
|
|
|
4170
4175
|
/**
|
|
4171
|
-
*
|
|
4176
|
+
* translations
|
|
4172
4177
|
*/
|
|
4173
|
-
|
|
4178
|
+
translations: Array<DocumentTypeTerm>;
|
|
4174
4179
|
|
|
4175
4180
|
/**
|
|
4176
4181
|
* Versand-Anbieter
|
|
4177
4182
|
*/
|
|
4178
4183
|
vdsCarrierId: number;
|
|
4179
4184
|
|
|
4185
|
+
/**
|
|
4186
|
+
* Gültige Ländercodes
|
|
4187
|
+
*/
|
|
4188
|
+
validCountryCodes: Array<string>;
|
|
4189
|
+
|
|
4180
4190
|
/**
|
|
4181
4191
|
* Standardgewichtseinheit
|
|
4182
4192
|
*/
|
|
@@ -4256,14 +4266,14 @@ export interface DeliveryTerm {
|
|
|
4256
4266
|
version: number;
|
|
4257
4267
|
|
|
4258
4268
|
/**
|
|
4259
|
-
*
|
|
4269
|
+
* information, how the shipping charges should be calculated
|
|
4260
4270
|
*/
|
|
4261
|
-
|
|
4271
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4262
4272
|
|
|
4263
4273
|
/**
|
|
4264
|
-
*
|
|
4274
|
+
* translations
|
|
4265
4275
|
*/
|
|
4266
|
-
|
|
4276
|
+
translations: Array<DocumentTypeTerm>;
|
|
4267
4277
|
|
|
4268
4278
|
/**
|
|
4269
4279
|
* Lieferarten
|
|
@@ -4393,11 +4403,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4393
4403
|
*/
|
|
4394
4404
|
deliveryQuantityPackages: number;
|
|
4395
4405
|
|
|
4396
|
-
/**
|
|
4397
|
-
* Steuerpflichtig oder steuerfrei
|
|
4398
|
-
*/
|
|
4399
|
-
taxable: boolean;
|
|
4400
|
-
|
|
4401
4406
|
/**
|
|
4402
4407
|
* Leitweg-ID
|
|
4403
4408
|
*/
|
|
@@ -4408,6 +4413,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4408
4413
|
*/
|
|
4409
4414
|
referencedOrderNumber: string;
|
|
4410
4415
|
|
|
4416
|
+
/**
|
|
4417
|
+
* Steuerpflichtig oder steuerfrei
|
|
4418
|
+
*/
|
|
4419
|
+
taxable: boolean;
|
|
4420
|
+
|
|
4411
4421
|
/**
|
|
4412
4422
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4413
4423
|
*/
|
|
@@ -4459,14 +4469,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4459
4469
|
accountId: number;
|
|
4460
4470
|
|
|
4461
4471
|
/**
|
|
4462
|
-
* Länderkennzeichen
|
|
4472
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4463
4473
|
*/
|
|
4464
|
-
|
|
4474
|
+
performanceCountryCode: string;
|
|
4465
4475
|
|
|
4466
4476
|
/**
|
|
4467
|
-
* Länderkennzeichen
|
|
4477
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4468
4478
|
*/
|
|
4469
|
-
|
|
4479
|
+
sourceCountryCode: string;
|
|
4470
4480
|
|
|
4471
4481
|
/**
|
|
4472
4482
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4666,14 +4676,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4666
4676
|
additionalInfo: DocumentAdditionalInfo;
|
|
4667
4677
|
|
|
4668
4678
|
/**
|
|
4669
|
-
*
|
|
4679
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4670
4680
|
*/
|
|
4671
|
-
|
|
4681
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4672
4682
|
|
|
4673
4683
|
/**
|
|
4674
|
-
*
|
|
4684
|
+
* Bestelldatum
|
|
4675
4685
|
*/
|
|
4676
|
-
|
|
4686
|
+
orderedOn: ScriptingDate;
|
|
4677
4687
|
|
|
4678
4688
|
/**
|
|
4679
4689
|
* MetaInformations for this Object
|
|
@@ -4863,14 +4873,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4863
4873
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4864
4874
|
|
|
4865
4875
|
/**
|
|
4866
|
-
*
|
|
4876
|
+
* Rechnungsadresse
|
|
4867
4877
|
*/
|
|
4868
|
-
|
|
4878
|
+
billingAddress: DocumentAddress;
|
|
4869
4879
|
|
|
4870
4880
|
/**
|
|
4871
|
-
*
|
|
4881
|
+
* Status der USt-ID-Prüfung
|
|
4872
4882
|
*/
|
|
4873
|
-
|
|
4883
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4874
4884
|
|
|
4875
4885
|
/**
|
|
4876
4886
|
* Bestellt durch Ansprechpartner
|
|
@@ -4939,11 +4949,6 @@ export interface DocumentAdditionalInfo {
|
|
|
4939
4949
|
* Ziele für den Wareneingang je Belegposition
|
|
4940
4950
|
*/
|
|
4941
4951
|
incomingGoodsTargetsPerLine: Array<DocumentAdditionalInfo$IncomingGoodsTargetOfLine>;
|
|
4942
|
-
|
|
4943
|
-
/**
|
|
4944
|
-
* Ergebnisse zu Übernahme "Auftrag in Kommissionierung"
|
|
4945
|
-
*/
|
|
4946
|
-
orderIntoPickingConvertResults: Array<DocumentAdditionalInfo$OrderIntoPickingConvertResult>;
|
|
4947
4952
|
}
|
|
4948
4953
|
|
|
4949
4954
|
export interface DocumentAdditionalInfo$IncomingGoodsTarget {
|
|
@@ -4982,24 +4987,6 @@ export interface DocumentAdditionalInfo$IncomingGoodsTargetOfLine {
|
|
|
4982
4987
|
sourceLineId: number;
|
|
4983
4988
|
}
|
|
4984
4989
|
|
|
4985
|
-
export interface DocumentAdditionalInfo$OrderIntoPickingConvertResult {
|
|
4986
|
-
|
|
4987
|
-
/**
|
|
4988
|
-
* War die Übernahme erfolgreich?
|
|
4989
|
-
*/
|
|
4990
|
-
success: boolean;
|
|
4991
|
-
|
|
4992
|
-
/**
|
|
4993
|
-
* War es eine Testübernahme?
|
|
4994
|
-
*/
|
|
4995
|
-
testRun: boolean;
|
|
4996
|
-
|
|
4997
|
-
/**
|
|
4998
|
-
* Protokoll der Übernahme
|
|
4999
|
-
*/
|
|
5000
|
-
logText: string;
|
|
5001
|
-
}
|
|
5002
|
-
|
|
5003
4990
|
export interface DocumentAdditionalInfo$PrintedTranslatedField {
|
|
5004
4991
|
|
|
5005
4992
|
/**
|
|
@@ -5506,6 +5493,11 @@ export interface DocumentLine {
|
|
|
5506
5493
|
*/
|
|
5507
5494
|
id: number;
|
|
5508
5495
|
|
|
5496
|
+
/**
|
|
5497
|
+
* Serientyp
|
|
5498
|
+
*/
|
|
5499
|
+
serialType: ArticleSerialType;
|
|
5500
|
+
|
|
5509
5501
|
/**
|
|
5510
5502
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5511
5503
|
*/
|
|
@@ -5516,11 +5508,6 @@ export interface DocumentLine {
|
|
|
5516
5508
|
*/
|
|
5517
5509
|
basePrice: number;
|
|
5518
5510
|
|
|
5519
|
-
/**
|
|
5520
|
-
* Serientyp
|
|
5521
|
-
*/
|
|
5522
|
-
serialType: ArticleSerialType;
|
|
5523
|
-
|
|
5524
5511
|
/**
|
|
5525
5512
|
* Steuerschema
|
|
5526
5513
|
*/
|
|
@@ -5622,20 +5609,25 @@ export interface DocumentLine {
|
|
|
5622
5609
|
settledOpenItemDiscountAmount: number;
|
|
5623
5610
|
|
|
5624
5611
|
/**
|
|
5625
|
-
*
|
|
5612
|
+
* Vertragsinformationen
|
|
5626
5613
|
*/
|
|
5627
|
-
|
|
5614
|
+
contractDetail: DocumentContractDetail;
|
|
5628
5615
|
|
|
5629
5616
|
/**
|
|
5630
|
-
*
|
|
5617
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5631
5618
|
*/
|
|
5632
|
-
|
|
5619
|
+
baseSalesValueNet: number;
|
|
5633
5620
|
|
|
5634
5621
|
/**
|
|
5635
5622
|
* Einheit Nettogewicht
|
|
5636
5623
|
*/
|
|
5637
5624
|
netWeightUnit: UnitTypeReference;
|
|
5638
5625
|
|
|
5626
|
+
/**
|
|
5627
|
+
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5628
|
+
*/
|
|
5629
|
+
shippingCostDetail: RequestDocumentLineShippingCostDetail;
|
|
5630
|
+
|
|
5639
5631
|
/**
|
|
5640
5632
|
* Produktionsdetails
|
|
5641
5633
|
*/
|
|
@@ -5717,14 +5709,14 @@ export interface DocumentLine {
|
|
|
5717
5709
|
commissions: Array<DocumentLineCommission>;
|
|
5718
5710
|
|
|
5719
5711
|
/**
|
|
5720
|
-
*
|
|
5712
|
+
* Positionstyp
|
|
5721
5713
|
*/
|
|
5722
|
-
|
|
5714
|
+
lineType: DocumentLineType;
|
|
5723
5715
|
|
|
5724
5716
|
/**
|
|
5725
|
-
*
|
|
5717
|
+
* Gesamtpreis Position in Basiswährung
|
|
5726
5718
|
*/
|
|
5727
|
-
|
|
5719
|
+
baseTotalLinePrice: number;
|
|
5728
5720
|
|
|
5729
5721
|
/**
|
|
5730
5722
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5787,14 +5779,14 @@ export interface DocumentLine {
|
|
|
5787
5779
|
position: number;
|
|
5788
5780
|
|
|
5789
5781
|
/**
|
|
5790
|
-
*
|
|
5782
|
+
* Buchungen
|
|
5791
5783
|
*/
|
|
5792
|
-
|
|
5784
|
+
bookings: Array<DocumentLineBooking>;
|
|
5793
5785
|
|
|
5794
5786
|
/**
|
|
5795
|
-
*
|
|
5787
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5796
5788
|
*/
|
|
5797
|
-
|
|
5789
|
+
recalcLinePriceViaComponents: boolean;
|
|
5798
5790
|
|
|
5799
5791
|
/**
|
|
5800
5792
|
* unit gross Volume in cubic meters
|
|
@@ -5887,14 +5879,14 @@ export interface DocumentLine {
|
|
|
5887
5879
|
custom: EavDocumentline;
|
|
5888
5880
|
|
|
5889
5881
|
/**
|
|
5890
|
-
*
|
|
5882
|
+
* Artikel
|
|
5891
5883
|
*/
|
|
5892
|
-
|
|
5884
|
+
articleId: number;
|
|
5893
5885
|
|
|
5894
5886
|
/**
|
|
5895
|
-
*
|
|
5887
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5896
5888
|
*/
|
|
5897
|
-
|
|
5889
|
+
settledOpenItemComment: string;
|
|
5898
5890
|
|
|
5899
5891
|
/**
|
|
5900
5892
|
* Interne Preisänderungsinformationen
|
|
@@ -6076,14 +6068,14 @@ export interface DocumentLineComponent {
|
|
|
6076
6068
|
custom: EavDocumentlinecomponent;
|
|
6077
6069
|
|
|
6078
6070
|
/**
|
|
6079
|
-
*
|
|
6071
|
+
* Gelieferte Menge
|
|
6080
6072
|
*/
|
|
6081
|
-
|
|
6073
|
+
quantityCommitted: number;
|
|
6082
6074
|
|
|
6083
6075
|
/**
|
|
6084
|
-
*
|
|
6076
|
+
* Referenz auf den Artikel der Komponente
|
|
6085
6077
|
*/
|
|
6086
|
-
|
|
6078
|
+
articleId: number;
|
|
6087
6079
|
|
|
6088
6080
|
/**
|
|
6089
6081
|
* Beschreibung des Artikels
|
|
@@ -6394,14 +6386,14 @@ export interface DocumentLinePosDetail {
|
|
|
6394
6386
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6395
6387
|
|
|
6396
6388
|
/**
|
|
6397
|
-
*
|
|
6389
|
+
* Status der externen Zahlung
|
|
6398
6390
|
*/
|
|
6399
|
-
|
|
6391
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6400
6392
|
|
|
6401
6393
|
/**
|
|
6402
|
-
*
|
|
6394
|
+
* Typ der Einlage/Ausgabe
|
|
6403
6395
|
*/
|
|
6404
|
-
|
|
6396
|
+
depositExpenseTypeId: number;
|
|
6405
6397
|
|
|
6406
6398
|
/**
|
|
6407
6399
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6439,14 +6431,14 @@ export interface DocumentLinePosDetail {
|
|
|
6439
6431
|
balanceBeforeWithdrawal: number;
|
|
6440
6432
|
|
|
6441
6433
|
/**
|
|
6442
|
-
*
|
|
6434
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6443
6435
|
*/
|
|
6444
|
-
|
|
6436
|
+
externalPaymentId: string;
|
|
6445
6437
|
|
|
6446
6438
|
/**
|
|
6447
|
-
*
|
|
6439
|
+
* Typ der Position
|
|
6448
6440
|
*/
|
|
6449
|
-
|
|
6441
|
+
posLineType: PosLineType;
|
|
6450
6442
|
|
|
6451
6443
|
/**
|
|
6452
6444
|
* Unique identifier of the Object
|
|
@@ -6687,14 +6679,14 @@ export interface DocumentPosPayment {
|
|
|
6687
6679
|
balanceBeforeWithdrawal: number;
|
|
6688
6680
|
|
|
6689
6681
|
/**
|
|
6690
|
-
*
|
|
6682
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6691
6683
|
*/
|
|
6692
|
-
|
|
6684
|
+
externalPaymentId: string;
|
|
6693
6685
|
|
|
6694
6686
|
/**
|
|
6695
|
-
*
|
|
6687
|
+
* Typ der Position
|
|
6696
6688
|
*/
|
|
6697
|
-
|
|
6689
|
+
posLineType: PosLineType;
|
|
6698
6690
|
|
|
6699
6691
|
/**
|
|
6700
6692
|
* Unique identifier of the Object
|
|
@@ -6822,14 +6814,14 @@ export const enum DocumentRounding {
|
|
|
6822
6814
|
export interface DocumentShippingCost {
|
|
6823
6815
|
|
|
6824
6816
|
/**
|
|
6825
|
-
*
|
|
6817
|
+
* Die Versandkosten
|
|
6826
6818
|
*/
|
|
6827
|
-
|
|
6819
|
+
costs: number;
|
|
6828
6820
|
|
|
6829
6821
|
/**
|
|
6830
|
-
*
|
|
6822
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6831
6823
|
*/
|
|
6832
|
-
|
|
6824
|
+
manualCosts: boolean;
|
|
6833
6825
|
|
|
6834
6826
|
/**
|
|
6835
6827
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6957,14 +6949,14 @@ export interface DocumentText {
|
|
|
6957
6949
|
transferableIntoSubsequentDocuments: boolean;
|
|
6958
6950
|
|
|
6959
6951
|
/**
|
|
6960
|
-
*
|
|
6952
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6961
6953
|
*/
|
|
6962
|
-
|
|
6954
|
+
textPosition: TextPosition;
|
|
6963
6955
|
|
|
6964
6956
|
/**
|
|
6965
|
-
*
|
|
6957
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6966
6958
|
*/
|
|
6967
|
-
|
|
6959
|
+
deleted: boolean;
|
|
6968
6960
|
|
|
6969
6961
|
/**
|
|
6970
6962
|
* textBaustein Vorlage
|
|
@@ -7262,14 +7254,14 @@ export const enum DropShippingPolicy {
|
|
|
7262
7254
|
export interface DummySerialNumberStockTransferApi {
|
|
7263
7255
|
|
|
7264
7256
|
/**
|
|
7265
|
-
*
|
|
7257
|
+
* Ziel-Lager
|
|
7266
7258
|
*/
|
|
7267
|
-
|
|
7259
|
+
targetStorageId: number;
|
|
7268
7260
|
|
|
7269
7261
|
/**
|
|
7270
|
-
*
|
|
7262
|
+
* Seriennummer
|
|
7271
7263
|
*/
|
|
7272
|
-
|
|
7264
|
+
serialNumberId: number;
|
|
7273
7265
|
|
|
7274
7266
|
/**
|
|
7275
7267
|
* Bemerkung
|
|
@@ -7282,14 +7274,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7282
7274
|
bookDate: ScriptingDate;
|
|
7283
7275
|
|
|
7284
7276
|
/**
|
|
7285
|
-
*
|
|
7277
|
+
* Die gültige Seriennummer
|
|
7286
7278
|
*/
|
|
7287
|
-
|
|
7279
|
+
targetSerialNumber: string;
|
|
7288
7280
|
|
|
7289
7281
|
/**
|
|
7290
|
-
*
|
|
7282
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7291
7283
|
*/
|
|
7292
|
-
|
|
7284
|
+
targetExpiryDate: ScriptingDate;
|
|
7293
7285
|
|
|
7294
7286
|
/**
|
|
7295
7287
|
* Quell-Lagerplatz
|
|
@@ -7426,6 +7418,8 @@ export const enum EDocumentTransition {
|
|
|
7426
7418
|
ORDER_RESET_FROM_PICKING = 'ORDER_RESET_FROM_PICKING',
|
|
7427
7419
|
/**Auftrag abschließen **/
|
|
7428
7420
|
ORDER_CLOSE_REMAINING = 'ORDER_CLOSE_REMAINING',
|
|
7421
|
+
/**Auftrag wieder öffnen **/
|
|
7422
|
+
ORDER_REOPEN = 'ORDER_REOPEN',
|
|
7429
7423
|
/**Beleg auflösen **/
|
|
7430
7424
|
DISSOLVE = 'DISSOLVE',
|
|
7431
7425
|
/**Quittung abbrechen **/
|
|
@@ -7524,6 +7518,93 @@ export const enum ExchangeRateOrigin {
|
|
|
7524
7518
|
USER_DEFINED = 'USER_DEFINED'
|
|
7525
7519
|
}
|
|
7526
7520
|
|
|
7521
|
+
/**
|
|
7522
|
+
* Position eines extern erstellten Belegs inkl. gelieferter Steuerangaben
|
|
7523
|
+
*/
|
|
7524
|
+
export interface ExternalDocumentWithTaxesLine {
|
|
7525
|
+
|
|
7526
|
+
/**
|
|
7527
|
+
* Menge
|
|
7528
|
+
*/
|
|
7529
|
+
quantity: number;
|
|
7530
|
+
|
|
7531
|
+
/**
|
|
7532
|
+
* Zeilen-Netto
|
|
7533
|
+
*/
|
|
7534
|
+
netAmount: number;
|
|
7535
|
+
|
|
7536
|
+
/**
|
|
7537
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7538
|
+
*/
|
|
7539
|
+
taxValue: number;
|
|
7540
|
+
|
|
7541
|
+
/**
|
|
7542
|
+
* Netto-Einzelpreis
|
|
7543
|
+
*/
|
|
7544
|
+
price: number;
|
|
7545
|
+
|
|
7546
|
+
/**
|
|
7547
|
+
* ID des Artikels
|
|
7548
|
+
*/
|
|
7549
|
+
articleId: number;
|
|
7550
|
+
|
|
7551
|
+
/**
|
|
7552
|
+
* Zeilen-Brutto
|
|
7553
|
+
*/
|
|
7554
|
+
grossAmount: number;
|
|
7555
|
+
|
|
7556
|
+
/**
|
|
7557
|
+
* ID des Steuersatzes (nur bei steuerpflichtigem Beleg)
|
|
7558
|
+
*/
|
|
7559
|
+
taxRateId: number;
|
|
7560
|
+
|
|
7561
|
+
/**
|
|
7562
|
+
* Steuerart (Standard: VAT)
|
|
7563
|
+
*/
|
|
7564
|
+
taxType: DocumentTaxType;
|
|
7565
|
+
}
|
|
7566
|
+
|
|
7567
|
+
/**
|
|
7568
|
+
* Details zum Import eines extern erstellten Belegs
|
|
7569
|
+
*/
|
|
7570
|
+
export interface ExternalDocumentWithTaxesRequest {
|
|
7571
|
+
|
|
7572
|
+
/**
|
|
7573
|
+
* Belegdatum
|
|
7574
|
+
*/
|
|
7575
|
+
documentDate: ScriptingDate;
|
|
7576
|
+
|
|
7577
|
+
/**
|
|
7578
|
+
* ID des Kontos/Accounts
|
|
7579
|
+
*/
|
|
7580
|
+
accountId: number;
|
|
7581
|
+
|
|
7582
|
+
/**
|
|
7583
|
+
* Steuerpflichtig? true = mit Steuern, false = steuerfrei (keine Steuerzeilen). Null = Steuerstatus aus dem Kundenstamm übernehmen
|
|
7584
|
+
*/
|
|
7585
|
+
taxable: boolean;
|
|
7586
|
+
|
|
7587
|
+
/**
|
|
7588
|
+
* Abrechnungsart (Brutto/Netto)
|
|
7589
|
+
*/
|
|
7590
|
+
billingType: BillingType;
|
|
7591
|
+
|
|
7592
|
+
/**
|
|
7593
|
+
* Belegpositionen inkl. gelieferter Steuerangaben
|
|
7594
|
+
*/
|
|
7595
|
+
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7596
|
+
|
|
7597
|
+
/**
|
|
7598
|
+
* Key der Belegart
|
|
7599
|
+
*/
|
|
7600
|
+
documentTypeKey: string;
|
|
7601
|
+
|
|
7602
|
+
/**
|
|
7603
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7604
|
+
*/
|
|
7605
|
+
taxIdentificationNumber: string;
|
|
7606
|
+
}
|
|
7607
|
+
|
|
7527
7608
|
export interface FabricationComponentForProduction {
|
|
7528
7609
|
|
|
7529
7610
|
/**
|
|
@@ -7766,6 +7847,34 @@ export const enum ListingState {
|
|
|
7766
7847
|
QUEUED_FOR_DELETION = 'QUEUED_FOR_DELETION'
|
|
7767
7848
|
}
|
|
7768
7849
|
|
|
7850
|
+
export interface LocalizedTextTemplateContent {
|
|
7851
|
+
|
|
7852
|
+
/**
|
|
7853
|
+
* Sprache des Textes
|
|
7854
|
+
*/
|
|
7855
|
+
languageCodeIsoAlpha2: string;
|
|
7856
|
+
|
|
7857
|
+
/**
|
|
7858
|
+
* Unique identifier of the Object
|
|
7859
|
+
*/
|
|
7860
|
+
id: number;
|
|
7861
|
+
|
|
7862
|
+
/**
|
|
7863
|
+
* Version Identifier for this Object (for PUT)
|
|
7864
|
+
*/
|
|
7865
|
+
version: number;
|
|
7866
|
+
|
|
7867
|
+
/**
|
|
7868
|
+
* Text
|
|
7869
|
+
*/
|
|
7870
|
+
content: string;
|
|
7871
|
+
|
|
7872
|
+
/**
|
|
7873
|
+
* MetaInformations for this Object
|
|
7874
|
+
*/
|
|
7875
|
+
info: MetaInfo;
|
|
7876
|
+
}
|
|
7877
|
+
|
|
7769
7878
|
export interface MetaInfo {
|
|
7770
7879
|
|
|
7771
7880
|
/**
|
|
@@ -7959,14 +8068,14 @@ export interface OpenItem {
|
|
|
7959
8068
|
paymentDueDate: ScriptingDate;
|
|
7960
8069
|
|
|
7961
8070
|
/**
|
|
7962
|
-
* Länderkennzeichen
|
|
8071
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7963
8072
|
*/
|
|
7964
|
-
|
|
8073
|
+
performanceCountryCode: string;
|
|
7965
8074
|
|
|
7966
8075
|
/**
|
|
7967
|
-
* Länderkennzeichen
|
|
8076
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7968
8077
|
*/
|
|
7969
|
-
|
|
8078
|
+
sourceCountryCode: string;
|
|
7970
8079
|
|
|
7971
8080
|
/**
|
|
7972
8081
|
* agreed Deposit payment date
|
|
@@ -8417,14 +8526,14 @@ export interface OpenItemRecord {
|
|
|
8417
8526
|
version: number;
|
|
8418
8527
|
|
|
8419
8528
|
/**
|
|
8420
|
-
*
|
|
8529
|
+
* Buchungsbetrag in Basiswährung
|
|
8421
8530
|
*/
|
|
8422
|
-
|
|
8531
|
+
baseAmount: number;
|
|
8423
8532
|
|
|
8424
8533
|
/**
|
|
8425
|
-
*
|
|
8534
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8426
8535
|
*/
|
|
8427
|
-
|
|
8536
|
+
transactionId: number;
|
|
8428
8537
|
|
|
8429
8538
|
/**
|
|
8430
8539
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8442,14 +8551,14 @@ export interface OpenItemRecord {
|
|
|
8442
8551
|
totalAmount: number;
|
|
8443
8552
|
|
|
8444
8553
|
/**
|
|
8445
|
-
*
|
|
8554
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8446
8555
|
*/
|
|
8447
|
-
|
|
8556
|
+
baseCurrencyCode: string;
|
|
8448
8557
|
|
|
8449
8558
|
/**
|
|
8450
|
-
*
|
|
8559
|
+
* id des records, der diesen storniert hat
|
|
8451
8560
|
*/
|
|
8452
|
-
|
|
8561
|
+
revertedByRecordId: number;
|
|
8453
8562
|
|
|
8454
8563
|
/**
|
|
8455
8564
|
* qualifier of open item
|
|
@@ -8493,6 +8602,7 @@ export const enum OpenItemRecord$RecordOrigin {
|
|
|
8493
8602
|
PAYMENT_PLAN_ENTRY = 'PAYMENT_PLAN_ENTRY',
|
|
8494
8603
|
PAYMENT_IMPORT = 'PAYMENT_IMPORT',
|
|
8495
8604
|
CLEARING = 'CLEARING',
|
|
8605
|
+
CLEARING_DISSOLVED = 'CLEARING_DISSOLVED',
|
|
8496
8606
|
DEPOSIT = 'DEPOSIT',
|
|
8497
8607
|
CREDIT_NOTE = 'CREDIT_NOTE',
|
|
8498
8608
|
BALANCE_ADJUSTMENT = 'BALANCE_ADJUSTMENT',
|
|
@@ -8582,16 +8692,16 @@ export interface PaymentMethod {
|
|
|
8582
8692
|
*/
|
|
8583
8693
|
dunnable: boolean;
|
|
8584
8694
|
|
|
8585
|
-
/**
|
|
8586
|
-
* translations
|
|
8587
|
-
*/
|
|
8588
|
-
translations: Array<DocumentTypeTerm>;
|
|
8589
|
-
|
|
8590
8695
|
/**
|
|
8591
8696
|
* Debitoren-OP abschließen?
|
|
8592
8697
|
*/
|
|
8593
8698
|
closeCustomerAccountType: boolean;
|
|
8594
8699
|
|
|
8700
|
+
/**
|
|
8701
|
+
* translations
|
|
8702
|
+
*/
|
|
8703
|
+
translations: Array<DocumentTypeTerm>;
|
|
8704
|
+
|
|
8595
8705
|
/**
|
|
8596
8706
|
* +Tage für Folgelastschrift
|
|
8597
8707
|
*/
|
|
@@ -8827,14 +8937,14 @@ export interface PickTrolley {
|
|
|
8827
8937
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
8828
8938
|
|
|
8829
8939
|
/**
|
|
8830
|
-
*
|
|
8940
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
8831
8941
|
*/
|
|
8832
|
-
|
|
8942
|
+
storageBinRef: StorageBinRef;
|
|
8833
8943
|
|
|
8834
8944
|
/**
|
|
8835
|
-
*
|
|
8945
|
+
* Bearbeiter der Pickliste
|
|
8836
8946
|
*/
|
|
8837
|
-
|
|
8947
|
+
processedByUserRef: ApiObjectReference;
|
|
8838
8948
|
|
|
8839
8949
|
/**
|
|
8840
8950
|
* Beschreibung des Wagens
|
|
@@ -9253,14 +9363,14 @@ export interface PicklistLineComponent {
|
|
|
9253
9363
|
targetDocumentLineComponentId: number;
|
|
9254
9364
|
|
|
9255
9365
|
/**
|
|
9256
|
-
*
|
|
9366
|
+
* abweichende Artikelbezeichnung
|
|
9257
9367
|
*/
|
|
9258
|
-
|
|
9368
|
+
articleAlternativeName: string;
|
|
9259
9369
|
|
|
9260
9370
|
/**
|
|
9261
|
-
*
|
|
9371
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9262
9372
|
*/
|
|
9263
|
-
|
|
9373
|
+
quantityPerAssemblyGroup: number;
|
|
9264
9374
|
|
|
9265
9375
|
/**
|
|
9266
9376
|
* Verpackte Menge der Position
|
|
@@ -9463,6 +9573,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9463
9573
|
*/
|
|
9464
9574
|
storageAreaRefs: Array<ApiObjectReference>;
|
|
9465
9575
|
|
|
9576
|
+
/**
|
|
9577
|
+
* Id des salesChannels der bei der Selektion berücksichtigt wird
|
|
9578
|
+
*/
|
|
9579
|
+
salesChannelId: number;
|
|
9580
|
+
|
|
9466
9581
|
/**
|
|
9467
9582
|
* Nur vollständig lieferbare Aufträge
|
|
9468
9583
|
*/
|
|
@@ -9516,26 +9631,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9516
9631
|
*/
|
|
9517
9632
|
printPicklist: boolean;
|
|
9518
9633
|
|
|
9519
|
-
/**
|
|
9520
|
-
* Die zu verwendende Pickwagengruppe
|
|
9521
|
-
*/
|
|
9522
|
-
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9523
|
-
|
|
9524
9634
|
/**
|
|
9525
9635
|
* Maximale Anzahl an Positionen einer Pickliste
|
|
9526
9636
|
*/
|
|
9527
9637
|
maxPicklistLineCount: number;
|
|
9528
9638
|
|
|
9529
9639
|
/**
|
|
9530
|
-
*
|
|
9640
|
+
* Die zu verwendende Pickwagengruppe
|
|
9531
9641
|
*/
|
|
9532
|
-
|
|
9642
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9533
9643
|
|
|
9534
9644
|
/**
|
|
9535
9645
|
* Der zu verwendende Pickwagen
|
|
9536
9646
|
*/
|
|
9537
9647
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9538
9648
|
|
|
9649
|
+
/**
|
|
9650
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9651
|
+
*/
|
|
9652
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9653
|
+
|
|
9539
9654
|
/**
|
|
9540
9655
|
* Lagerplätze vorgeben
|
|
9541
9656
|
*/
|
|
@@ -9610,24 +9725,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9610
9725
|
showShippingFormOnPickingFinish: boolean;
|
|
9611
9726
|
|
|
9612
9727
|
/**
|
|
9613
|
-
*
|
|
9728
|
+
* Sammelbestätigung erlauben
|
|
9614
9729
|
*/
|
|
9615
|
-
|
|
9730
|
+
allowFullConfirmation: boolean;
|
|
9616
9731
|
|
|
9617
9732
|
/**
|
|
9618
|
-
*
|
|
9733
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9619
9734
|
*/
|
|
9620
|
-
|
|
9735
|
+
allowPickingOfServiceArticles: boolean;
|
|
9621
9736
|
|
|
9622
9737
|
/**
|
|
9623
|
-
*
|
|
9738
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9624
9739
|
*/
|
|
9625
|
-
|
|
9740
|
+
printLabelOnScan: boolean;
|
|
9626
9741
|
|
|
9627
9742
|
/**
|
|
9628
|
-
*
|
|
9743
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9629
9744
|
*/
|
|
9630
|
-
|
|
9745
|
+
useDigitalPicklist: boolean;
|
|
9631
9746
|
|
|
9632
9747
|
/**
|
|
9633
9748
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9644,26 +9759,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9644
9759
|
*/
|
|
9645
9760
|
printLabelOnCompleteOrder: boolean;
|
|
9646
9761
|
|
|
9647
|
-
/**
|
|
9648
|
-
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9649
|
-
*/
|
|
9650
|
-
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9651
|
-
|
|
9652
9762
|
/**
|
|
9653
9763
|
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9654
9764
|
*/
|
|
9655
9765
|
printLabelAfterPicking: boolean;
|
|
9656
9766
|
|
|
9657
9767
|
/**
|
|
9658
|
-
*
|
|
9768
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9659
9769
|
*/
|
|
9660
|
-
|
|
9770
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9661
9771
|
|
|
9662
9772
|
/**
|
|
9663
9773
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9664
9774
|
*/
|
|
9665
9775
|
autoDeterminationOfLots: boolean;
|
|
9666
9776
|
|
|
9777
|
+
/**
|
|
9778
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9779
|
+
*/
|
|
9780
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9781
|
+
|
|
9667
9782
|
/**
|
|
9668
9783
|
* Zielmengen in Masken verstecken?
|
|
9669
9784
|
*/
|
|
@@ -9777,14 +9892,14 @@ export interface PriceSelectionCriteria {
|
|
|
9777
9892
|
export interface Product {
|
|
9778
9893
|
|
|
9779
9894
|
/**
|
|
9780
|
-
*
|
|
9895
|
+
* Zolltarifnummer
|
|
9781
9896
|
*/
|
|
9782
|
-
|
|
9897
|
+
customsTariffNumber: string;
|
|
9783
9898
|
|
|
9784
9899
|
/**
|
|
9785
|
-
*
|
|
9900
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
9786
9901
|
*/
|
|
9787
|
-
|
|
9902
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
9788
9903
|
|
|
9789
9904
|
/**
|
|
9790
9905
|
* Gebindeschema dieses Produkts
|
|
@@ -9918,14 +10033,14 @@ export interface ProductArticleRef {
|
|
|
9918
10033
|
export interface ProductDiscount {
|
|
9919
10034
|
|
|
9920
10035
|
/**
|
|
9921
|
-
*
|
|
10036
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9922
10037
|
*/
|
|
9923
|
-
|
|
10038
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9924
10039
|
|
|
9925
10040
|
/**
|
|
9926
|
-
*
|
|
10041
|
+
* Kundengruppe
|
|
9927
10042
|
*/
|
|
9928
|
-
|
|
10043
|
+
customerGroupRef: ApiObjectReference;
|
|
9929
10044
|
|
|
9930
10045
|
/**
|
|
9931
10046
|
* Lieferantengruppe
|
|
@@ -9973,14 +10088,14 @@ export interface ProductDiscount {
|
|
|
9973
10088
|
currencyRef: CurrencyReference;
|
|
9974
10089
|
|
|
9975
10090
|
/**
|
|
9976
|
-
*
|
|
10091
|
+
* Preisgruppe
|
|
9977
10092
|
*/
|
|
9978
|
-
|
|
10093
|
+
priceGroupRef: ApiObjectReference;
|
|
9979
10094
|
|
|
9980
10095
|
/**
|
|
9981
|
-
*
|
|
10096
|
+
* Wert des Rabatts
|
|
9982
10097
|
*/
|
|
9983
|
-
|
|
10098
|
+
modifierValue: number;
|
|
9984
10099
|
|
|
9985
10100
|
/**
|
|
9986
10101
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10003,14 +10118,14 @@ export interface ProductDiscount {
|
|
|
10003
10118
|
modifierValueType: ValueType;
|
|
10004
10119
|
|
|
10005
10120
|
/**
|
|
10006
|
-
*
|
|
10121
|
+
* Account, für den der Rabatt gültig ist
|
|
10007
10122
|
*/
|
|
10008
|
-
|
|
10123
|
+
accountRef: ApiObjectReference;
|
|
10009
10124
|
|
|
10010
10125
|
/**
|
|
10011
|
-
*
|
|
10126
|
+
* Name des Rabatts
|
|
10012
10127
|
*/
|
|
10013
|
-
|
|
10128
|
+
modifierName: string;
|
|
10014
10129
|
|
|
10015
10130
|
/**
|
|
10016
10131
|
* Unique identifier of the Object
|
|
@@ -10127,14 +10242,14 @@ export interface ProductMainGroup {
|
|
|
10127
10242
|
export interface ProductPrice {
|
|
10128
10243
|
|
|
10129
10244
|
/**
|
|
10130
|
-
*
|
|
10245
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10131
10246
|
*/
|
|
10132
|
-
|
|
10247
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10133
10248
|
|
|
10134
10249
|
/**
|
|
10135
|
-
*
|
|
10250
|
+
* Kundengruppe
|
|
10136
10251
|
*/
|
|
10137
|
-
|
|
10252
|
+
customerGroupRef: ApiObjectReference;
|
|
10138
10253
|
|
|
10139
10254
|
/**
|
|
10140
10255
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10337,19 +10452,19 @@ export const enum RegulationSet {
|
|
|
10337
10452
|
export interface RequestDocument {
|
|
10338
10453
|
|
|
10339
10454
|
/**
|
|
10340
|
-
*
|
|
10455
|
+
* Belegdatum
|
|
10341
10456
|
*/
|
|
10342
|
-
|
|
10457
|
+
documentDate: ScriptingDate;
|
|
10343
10458
|
|
|
10344
10459
|
/**
|
|
10345
|
-
*
|
|
10460
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10346
10461
|
*/
|
|
10347
|
-
|
|
10462
|
+
incomingGoodsStorageBinId: number;
|
|
10348
10463
|
|
|
10349
10464
|
/**
|
|
10350
|
-
*
|
|
10465
|
+
* Der Anzahlungsbetrag
|
|
10351
10466
|
*/
|
|
10352
|
-
|
|
10467
|
+
depositPaymentAmount: number;
|
|
10353
10468
|
|
|
10354
10469
|
/**
|
|
10355
10470
|
* Leistungsdatum
|
|
@@ -10357,9 +10472,9 @@ export interface RequestDocument {
|
|
|
10357
10472
|
performanceDate: ScriptingDate;
|
|
10358
10473
|
|
|
10359
10474
|
/**
|
|
10360
|
-
*
|
|
10475
|
+
* ID der Kassenschublade (bei POS)
|
|
10361
10476
|
*/
|
|
10362
|
-
|
|
10477
|
+
cashDrawerId: number;
|
|
10363
10478
|
|
|
10364
10479
|
/**
|
|
10365
10480
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10371,6 +10486,11 @@ export interface RequestDocument {
|
|
|
10371
10486
|
*/
|
|
10372
10487
|
externalNumber: string;
|
|
10373
10488
|
|
|
10489
|
+
/**
|
|
10490
|
+
* Für interne Zwecke: Markiert den Beleg als extern erstellt (z.B. Marktplatz-Rechnung; das Original liegt im Fremdsystem)
|
|
10491
|
+
*/
|
|
10492
|
+
externallyCreated: boolean;
|
|
10493
|
+
|
|
10374
10494
|
/**
|
|
10375
10495
|
* Für interne Zwecke: Leistungsland für das Document
|
|
10376
10496
|
*/
|
|
@@ -10417,14 +10537,14 @@ export interface RequestDocument {
|
|
|
10417
10537
|
lines: Array<RequestDocumentLine>;
|
|
10418
10538
|
|
|
10419
10539
|
/**
|
|
10420
|
-
*
|
|
10540
|
+
* ID der Kasse (bei POS)
|
|
10421
10541
|
*/
|
|
10422
|
-
|
|
10542
|
+
posRegisterId: number;
|
|
10423
10543
|
|
|
10424
10544
|
/**
|
|
10425
|
-
*
|
|
10545
|
+
* Die Vertragsdetails
|
|
10426
10546
|
*/
|
|
10427
|
-
|
|
10547
|
+
contractDetail: DocumentContractDetail;
|
|
10428
10548
|
|
|
10429
10549
|
/**
|
|
10430
10550
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10482,14 +10602,14 @@ export interface RequestDocument {
|
|
|
10482
10602
|
texts: Array<DocumentText>;
|
|
10483
10603
|
|
|
10484
10604
|
/**
|
|
10485
|
-
*
|
|
10605
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10486
10606
|
*/
|
|
10487
|
-
|
|
10607
|
+
processedByPicklistProcessing: boolean;
|
|
10488
10608
|
|
|
10489
10609
|
/**
|
|
10490
|
-
*
|
|
10610
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10491
10611
|
*/
|
|
10492
|
-
|
|
10612
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10493
10613
|
|
|
10494
10614
|
/**
|
|
10495
10615
|
* Die Rabatte des Beleges
|
|
@@ -10565,14 +10685,14 @@ export interface RequestDocumentLine {
|
|
|
10565
10685
|
dropShippingPolicy: DropShippingPolicy;
|
|
10566
10686
|
|
|
10567
10687
|
/**
|
|
10568
|
-
*
|
|
10688
|
+
* (optional) Lager-ID
|
|
10569
10689
|
*/
|
|
10570
|
-
|
|
10690
|
+
storageId: number;
|
|
10571
10691
|
|
|
10572
10692
|
/**
|
|
10573
|
-
*
|
|
10693
|
+
* Positionsnummer der Artikel
|
|
10574
10694
|
*/
|
|
10575
|
-
|
|
10695
|
+
positionOfArticleLine: number;
|
|
10576
10696
|
|
|
10577
10697
|
/**
|
|
10578
10698
|
* Vertragsdetails zur Belegposition
|
|
@@ -10610,14 +10730,14 @@ export interface RequestDocumentLine {
|
|
|
10610
10730
|
custom: EavDocumentline;
|
|
10611
10731
|
|
|
10612
10732
|
/**
|
|
10613
|
-
*
|
|
10733
|
+
* (optional) ID des Artikels dieser Position
|
|
10614
10734
|
*/
|
|
10615
|
-
|
|
10735
|
+
articleId: number;
|
|
10616
10736
|
|
|
10617
10737
|
/**
|
|
10618
|
-
*
|
|
10738
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10619
10739
|
*/
|
|
10620
|
-
|
|
10740
|
+
settledOpenItemComment: string;
|
|
10621
10741
|
|
|
10622
10742
|
/**
|
|
10623
10743
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10660,9 +10780,9 @@ export interface RequestDocumentLine {
|
|
|
10660
10780
|
name: string;
|
|
10661
10781
|
|
|
10662
10782
|
/**
|
|
10663
|
-
*
|
|
10783
|
+
* Buchungen zu dieser Belegposition
|
|
10664
10784
|
*/
|
|
10665
|
-
|
|
10785
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10666
10786
|
|
|
10667
10787
|
/**
|
|
10668
10788
|
* Für interne Zwecke: Externe Artikelnummer
|
|
@@ -10670,19 +10790,19 @@ export interface RequestDocumentLine {
|
|
|
10670
10790
|
externalArticleNumber: string;
|
|
10671
10791
|
|
|
10672
10792
|
/**
|
|
10673
|
-
*
|
|
10793
|
+
* ID der Quell-Belegposition
|
|
10674
10794
|
*/
|
|
10675
|
-
|
|
10795
|
+
sourceLineId: number;
|
|
10676
10796
|
|
|
10677
10797
|
/**
|
|
10678
|
-
*
|
|
10798
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10679
10799
|
*/
|
|
10680
|
-
|
|
10800
|
+
doLabelPrint: boolean;
|
|
10681
10801
|
|
|
10682
10802
|
/**
|
|
10683
|
-
*
|
|
10803
|
+
* (optional) Preis des Artikels dieser Position
|
|
10684
10804
|
*/
|
|
10685
|
-
|
|
10805
|
+
productPrice: number;
|
|
10686
10806
|
}
|
|
10687
10807
|
|
|
10688
10808
|
export interface RequestDocumentLineBooking {
|
|
@@ -10811,14 +10931,14 @@ export interface RequestDocumentText {
|
|
|
10811
10931
|
export interface RevenueCalculation {
|
|
10812
10932
|
|
|
10813
10933
|
/**
|
|
10814
|
-
*
|
|
10934
|
+
* Deckungsbeitrag (absolut)
|
|
10815
10935
|
*/
|
|
10816
|
-
|
|
10936
|
+
revenue: number;
|
|
10817
10937
|
|
|
10818
10938
|
/**
|
|
10819
|
-
*
|
|
10939
|
+
* Netto Umsatz
|
|
10820
10940
|
*/
|
|
10821
|
-
|
|
10941
|
+
salesValue: number;
|
|
10822
10942
|
|
|
10823
10943
|
/**
|
|
10824
10944
|
* Einkaufspreis
|
|
@@ -11201,14 +11321,14 @@ export interface SequencerConfiguration {
|
|
|
11201
11321
|
key: string;
|
|
11202
11322
|
|
|
11203
11323
|
/**
|
|
11204
|
-
*
|
|
11324
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11205
11325
|
*/
|
|
11206
|
-
|
|
11326
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11207
11327
|
|
|
11208
11328
|
/**
|
|
11209
|
-
*
|
|
11329
|
+
* Contains details about the sequencer configuration
|
|
11210
11330
|
*/
|
|
11211
|
-
|
|
11331
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11212
11332
|
|
|
11213
11333
|
/**
|
|
11214
11334
|
* MetaInformations for this Object
|
|
@@ -11323,14 +11443,14 @@ export interface ShelfDocument {
|
|
|
11323
11443
|
tags: Array<TagDto>;
|
|
11324
11444
|
|
|
11325
11445
|
/**
|
|
11326
|
-
*
|
|
11446
|
+
* Mehrsprachige Bezeichnungen
|
|
11327
11447
|
*/
|
|
11328
|
-
|
|
11448
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11329
11449
|
|
|
11330
11450
|
/**
|
|
11331
|
-
*
|
|
11451
|
+
* share informations
|
|
11332
11452
|
*/
|
|
11333
|
-
|
|
11453
|
+
shares: Array<ShelfShare>;
|
|
11334
11454
|
|
|
11335
11455
|
/**
|
|
11336
11456
|
* Automatische Löschung ab
|
|
@@ -11462,14 +11582,14 @@ export interface ShelfDocumentType {
|
|
|
11462
11582
|
active: boolean;
|
|
11463
11583
|
|
|
11464
11584
|
/**
|
|
11465
|
-
*
|
|
11585
|
+
* access level or reading
|
|
11466
11586
|
*/
|
|
11467
|
-
|
|
11587
|
+
accessLevelRead: number;
|
|
11468
11588
|
|
|
11469
11589
|
/**
|
|
11470
|
-
*
|
|
11590
|
+
* label of type
|
|
11471
11591
|
*/
|
|
11472
|
-
|
|
11592
|
+
label: string;
|
|
11473
11593
|
|
|
11474
11594
|
/**
|
|
11475
11595
|
* storage rule for revisions
|
|
@@ -11515,14 +11635,14 @@ export interface ShelfFile {
|
|
|
11515
11635
|
subFiles: Array<SubFileInfo>;
|
|
11516
11636
|
|
|
11517
11637
|
/**
|
|
11518
|
-
*
|
|
11638
|
+
* revision number of this file
|
|
11519
11639
|
*/
|
|
11520
|
-
|
|
11640
|
+
revisionNumber: number;
|
|
11521
11641
|
|
|
11522
11642
|
/**
|
|
11523
|
-
*
|
|
11643
|
+
* fileSize
|
|
11524
11644
|
*/
|
|
11525
|
-
|
|
11645
|
+
fileSize: number;
|
|
11526
11646
|
|
|
11527
11647
|
/**
|
|
11528
11648
|
* file-extension of this entry
|
|
@@ -11550,14 +11670,14 @@ export interface ShelfFile {
|
|
|
11550
11670
|
version: number;
|
|
11551
11671
|
|
|
11552
11672
|
/**
|
|
11553
|
-
*
|
|
11673
|
+
* meta data
|
|
11554
11674
|
*/
|
|
11555
|
-
|
|
11675
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11556
11676
|
|
|
11557
11677
|
/**
|
|
11558
|
-
*
|
|
11678
|
+
* current reference of this file in our storage
|
|
11559
11679
|
*/
|
|
11560
|
-
|
|
11680
|
+
storageHandle: string;
|
|
11561
11681
|
|
|
11562
11682
|
/**
|
|
11563
11683
|
* MetaInformations for this Object
|
|
@@ -11604,14 +11724,14 @@ export interface ShelfShare {
|
|
|
11604
11724
|
publishState: ShelfSharePublishState;
|
|
11605
11725
|
|
|
11606
11726
|
/**
|
|
11607
|
-
*
|
|
11727
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11608
11728
|
*/
|
|
11609
|
-
|
|
11729
|
+
publicUrlDurationInMinutes: number;
|
|
11610
11730
|
|
|
11611
11731
|
/**
|
|
11612
|
-
*
|
|
11732
|
+
* Freifelder
|
|
11613
11733
|
*/
|
|
11614
|
-
|
|
11734
|
+
custom: EavShelfshare;
|
|
11615
11735
|
|
|
11616
11736
|
/**
|
|
11617
11737
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11823,14 +11943,14 @@ export interface StockMovementManualApi {
|
|
|
11823
11943
|
export interface StockTransferApi {
|
|
11824
11944
|
|
|
11825
11945
|
/**
|
|
11826
|
-
*
|
|
11946
|
+
* Ziel-Lager
|
|
11827
11947
|
*/
|
|
11828
|
-
|
|
11948
|
+
targetStorageId: number;
|
|
11829
11949
|
|
|
11830
11950
|
/**
|
|
11831
|
-
*
|
|
11951
|
+
* Seriennummer
|
|
11832
11952
|
*/
|
|
11833
|
-
|
|
11953
|
+
serialNumberId: number;
|
|
11834
11954
|
|
|
11835
11955
|
/**
|
|
11836
11956
|
* Bemerkung
|
|
@@ -12110,15 +12230,20 @@ export interface Supplier {
|
|
|
12110
12230
|
*/
|
|
12111
12231
|
performanceCountryCode: string;
|
|
12112
12232
|
|
|
12233
|
+
/**
|
|
12234
|
+
* reference to the payment method
|
|
12235
|
+
*/
|
|
12236
|
+
paymentMethodRef: ApiObjectReference;
|
|
12237
|
+
|
|
12113
12238
|
/**
|
|
12114
12239
|
* Lieferzeit in (Werk-)Tagen
|
|
12115
12240
|
*/
|
|
12116
12241
|
defaultDeliveryTime: number;
|
|
12117
12242
|
|
|
12118
12243
|
/**
|
|
12119
|
-
*
|
|
12244
|
+
* Bestellsperre
|
|
12120
12245
|
*/
|
|
12121
|
-
|
|
12246
|
+
orderBlocked: boolean;
|
|
12122
12247
|
|
|
12123
12248
|
/**
|
|
12124
12249
|
* currency code IsoAlpha3
|
|
@@ -12190,14 +12315,14 @@ export const enum TagType {
|
|
|
12190
12315
|
export interface TaxIdForeignCountry {
|
|
12191
12316
|
|
|
12192
12317
|
/**
|
|
12193
|
-
*
|
|
12318
|
+
* Tax ID of the company in the associated country
|
|
12194
12319
|
*/
|
|
12195
|
-
|
|
12320
|
+
taxId: string;
|
|
12196
12321
|
|
|
12197
12322
|
/**
|
|
12198
|
-
*
|
|
12323
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12199
12324
|
*/
|
|
12200
|
-
|
|
12325
|
+
countryCode: string;
|
|
12201
12326
|
|
|
12202
12327
|
/**
|
|
12203
12328
|
* Unique identifier of the Object
|
|
@@ -12360,6 +12485,105 @@ export const enum TextPosition {
|
|
|
12360
12485
|
FOOTER_TEXT = 'FOOTER_TEXT'
|
|
12361
12486
|
}
|
|
12362
12487
|
|
|
12488
|
+
export interface TextTemplate {
|
|
12489
|
+
|
|
12490
|
+
/**
|
|
12491
|
+
* Verwendungszweck des Templates
|
|
12492
|
+
*/
|
|
12493
|
+
templateType: TextTemplate$TextTemplateType;
|
|
12494
|
+
|
|
12495
|
+
/**
|
|
12496
|
+
* Soll der Inhalt des Textbausteins erst bei Belegübernahme gezogen werden?
|
|
12497
|
+
*/
|
|
12498
|
+
resolveContentInFollowUpDocument: boolean;
|
|
12499
|
+
|
|
12500
|
+
/**
|
|
12501
|
+
* Zieldokumenttypen. Geben zusammen mit Vorbelegstypen die Transitionen an für die dieses Template gilt
|
|
12502
|
+
*/
|
|
12503
|
+
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12504
|
+
|
|
12505
|
+
/**
|
|
12506
|
+
* Texte in den angebotenen Sprachen
|
|
12507
|
+
*/
|
|
12508
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12509
|
+
|
|
12510
|
+
/**
|
|
12511
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12512
|
+
*/
|
|
12513
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12514
|
+
|
|
12515
|
+
/**
|
|
12516
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12517
|
+
*/
|
|
12518
|
+
separateLine: boolean;
|
|
12519
|
+
|
|
12520
|
+
/**
|
|
12521
|
+
* article für den diese Templates gelten
|
|
12522
|
+
*/
|
|
12523
|
+
articleId: number;
|
|
12524
|
+
|
|
12525
|
+
/**
|
|
12526
|
+
* Wann wird ein UI-Hint angezeigt
|
|
12527
|
+
*/
|
|
12528
|
+
uiHintTypes: Array<TextTemplate$UiHintType>;
|
|
12529
|
+
|
|
12530
|
+
/**
|
|
12531
|
+
* ist dieser Baustein aktiv?
|
|
12532
|
+
*/
|
|
12533
|
+
active: boolean;
|
|
12534
|
+
|
|
12535
|
+
/**
|
|
12536
|
+
* Bezeichnung des Bausteins
|
|
12537
|
+
*/
|
|
12538
|
+
label: string;
|
|
12539
|
+
|
|
12540
|
+
/**
|
|
12541
|
+
* Version Identifier for this Object (for PUT)
|
|
12542
|
+
*/
|
|
12543
|
+
version: number;
|
|
12544
|
+
|
|
12545
|
+
/**
|
|
12546
|
+
* Erzeugte DocumentTexts beim Übergang in Folgebelege übernehmen?
|
|
12547
|
+
*/
|
|
12548
|
+
transferableIntoSubsequentDocuments: boolean;
|
|
12549
|
+
|
|
12550
|
+
/**
|
|
12551
|
+
* account für den diese Templates gelten
|
|
12552
|
+
*/
|
|
12553
|
+
accountId: number;
|
|
12554
|
+
|
|
12555
|
+
/**
|
|
12556
|
+
* Verkaufskanal
|
|
12557
|
+
*/
|
|
12558
|
+
salesChannelRef: ApiObjectReference;
|
|
12559
|
+
|
|
12560
|
+
/**
|
|
12561
|
+
* Position für den erzeugten DocumentText
|
|
12562
|
+
*/
|
|
12563
|
+
position: TextPosition;
|
|
12564
|
+
|
|
12565
|
+
/**
|
|
12566
|
+
* Unique identifier of the Object
|
|
12567
|
+
*/
|
|
12568
|
+
id: number;
|
|
12569
|
+
|
|
12570
|
+
/**
|
|
12571
|
+
* MetaInformations for this Object
|
|
12572
|
+
*/
|
|
12573
|
+
info: MetaInfo;
|
|
12574
|
+
}
|
|
12575
|
+
|
|
12576
|
+
export const enum TextTemplate$TextTemplateType {
|
|
12577
|
+
UI_HINT = 'UI_HINT',
|
|
12578
|
+
AUTOMATIC = 'AUTOMATIC',
|
|
12579
|
+
MANUAL = 'MANUAL'
|
|
12580
|
+
}
|
|
12581
|
+
|
|
12582
|
+
export const enum TextTemplate$UiHintType {
|
|
12583
|
+
UI_HINT_MASTER_DATA = 'UI_HINT_MASTER_DATA',
|
|
12584
|
+
UI_HINT_DOCUMENT = 'UI_HINT_DOCUMENT'
|
|
12585
|
+
}
|
|
12586
|
+
|
|
12363
12587
|
export interface TssSignature {
|
|
12364
12588
|
|
|
12365
12589
|
/**
|
|
@@ -12698,14 +12922,14 @@ export interface VariantValue {
|
|
|
12698
12922
|
version: number;
|
|
12699
12923
|
|
|
12700
12924
|
/**
|
|
12701
|
-
*
|
|
12925
|
+
* Variantenattribut
|
|
12702
12926
|
*/
|
|
12703
|
-
|
|
12927
|
+
attributeRef: ApiObjectReference;
|
|
12704
12928
|
|
|
12705
12929
|
/**
|
|
12706
|
-
*
|
|
12930
|
+
* Mehrsprachige Bezeichnungen
|
|
12707
12931
|
*/
|
|
12708
|
-
|
|
12932
|
+
labels: Array<VariantDescription>;
|
|
12709
12933
|
|
|
12710
12934
|
/**
|
|
12711
12935
|
* MetaInformations for this Object
|