@vario-software/types 2026.29.3 → 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 +137 -33
- package/scripting/types.d.ts +553 -329
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -142,26 +142,26 @@ export interface Account {
|
|
|
142
142
|
*/
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
|
-
/**
|
|
146
|
-
* Kostenstelle
|
|
147
|
-
*/
|
|
148
|
-
costCenter: string;
|
|
149
|
-
|
|
150
145
|
/**
|
|
151
146
|
* Summe Forderungen
|
|
152
147
|
*/
|
|
153
148
|
receivablesSum: number;
|
|
154
149
|
|
|
155
150
|
/**
|
|
156
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
157
152
|
*/
|
|
158
|
-
|
|
153
|
+
costCenter: string;
|
|
159
154
|
|
|
160
155
|
/**
|
|
161
156
|
* companyLegal for this account
|
|
162
157
|
*/
|
|
163
158
|
companyLegalRef: ApiCreatableReference;
|
|
164
159
|
|
|
160
|
+
/**
|
|
161
|
+
* Custom account data
|
|
162
|
+
*/
|
|
163
|
+
custom: EavAccount;
|
|
164
|
+
|
|
165
165
|
/**
|
|
166
166
|
* tax number/ Steuernummer
|
|
167
167
|
*/
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* 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
|
|
@@ -335,26 +335,26 @@ export interface AccountAddress {
|
|
|
335
335
|
*/
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
|
-
/**
|
|
339
|
-
* Leitweg-ID
|
|
340
|
-
*/
|
|
341
|
-
buyerReference: string;
|
|
342
|
-
|
|
343
338
|
/**
|
|
344
339
|
* GLN/ILN as location identifier for this address
|
|
345
340
|
*/
|
|
346
341
|
globalLocationNumber: string;
|
|
347
342
|
|
|
348
343
|
/**
|
|
349
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
350
345
|
*/
|
|
351
|
-
|
|
346
|
+
buyerReference: string;
|
|
352
347
|
|
|
353
348
|
/**
|
|
354
349
|
* abweichende Zahlungsart
|
|
355
350
|
*/
|
|
356
351
|
deviatingPaymentMethodRef: ApiObjectReference;
|
|
357
352
|
|
|
353
|
+
/**
|
|
354
|
+
* Custom data
|
|
355
|
+
*/
|
|
356
|
+
custom: EavAccountaddress;
|
|
357
|
+
|
|
358
358
|
/**
|
|
359
359
|
* Postcode
|
|
360
360
|
*/
|
|
@@ -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
|
|
@@ -451,14 +451,14 @@ export interface AccountAddress {
|
|
|
451
451
|
name1: string;
|
|
452
452
|
|
|
453
453
|
/**
|
|
454
|
-
*
|
|
454
|
+
* abweichende Zahlungsbedingungen
|
|
455
455
|
*/
|
|
456
|
-
|
|
456
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
457
457
|
|
|
458
458
|
/**
|
|
459
|
-
*
|
|
459
|
+
* Contacts
|
|
460
460
|
*/
|
|
461
|
-
|
|
461
|
+
contacts: Array<Contact>;
|
|
462
462
|
|
|
463
463
|
/**
|
|
464
464
|
* is this the default address of the account
|
|
@@ -595,14 +595,14 @@ export interface AccountListing {
|
|
|
595
595
|
export interface AccountLoanValue {
|
|
596
596
|
|
|
597
597
|
/**
|
|
598
|
-
*
|
|
598
|
+
* Nicht berücksichtigter Betrag
|
|
599
599
|
*/
|
|
600
|
-
|
|
600
|
+
unconsideredAmount: number;
|
|
601
601
|
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* Account
|
|
604
604
|
*/
|
|
605
|
-
|
|
605
|
+
accountId: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
608
|
* Betrag aus Aufträgen
|
|
@@ -610,14 +610,14 @@ export interface AccountLoanValue {
|
|
|
610
610
|
nonInvoicedDocumentLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
|
-
*
|
|
618
|
+
* Kreditlimit
|
|
619
619
|
*/
|
|
620
|
-
|
|
620
|
+
maximalLoan: number;
|
|
621
621
|
|
|
622
622
|
/**
|
|
623
623
|
* Überschrittener Kreditbetrag
|
|
@@ -827,14 +827,14 @@ export interface AccountPerson {
|
|
|
827
827
|
tags: Array<TagDto>;
|
|
828
828
|
|
|
829
829
|
/**
|
|
830
|
-
*
|
|
830
|
+
* Default contacts
|
|
831
831
|
*/
|
|
832
|
-
|
|
832
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
833
833
|
|
|
834
834
|
/**
|
|
835
|
-
*
|
|
835
|
+
* First name
|
|
836
836
|
*/
|
|
837
|
-
|
|
837
|
+
firstName: string;
|
|
838
838
|
|
|
839
839
|
/**
|
|
840
840
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1028,6 +1028,11 @@ export interface Article {
|
|
|
1028
1028
|
*/
|
|
1029
1029
|
baseCapacityUnit: UnitTypeReference;
|
|
1030
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* is this product sellable without any quantity at the stock
|
|
1033
|
+
*/
|
|
1034
|
+
sellableWithoutStock: boolean;
|
|
1035
|
+
|
|
1031
1036
|
/**
|
|
1032
1037
|
* Durchschnittl. EKP (Startwert)
|
|
1033
1038
|
*/
|
|
@@ -1038,11 +1043,6 @@ export interface Article {
|
|
|
1038
1043
|
*/
|
|
1039
1044
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1040
1045
|
|
|
1041
|
-
/**
|
|
1042
|
-
* is this product sellable without any quantity at the stock
|
|
1043
|
-
*/
|
|
1044
|
-
sellableWithoutStock: boolean;
|
|
1045
|
-
|
|
1046
1046
|
/**
|
|
1047
1047
|
* gross Volume in cubic meters
|
|
1048
1048
|
*/
|
|
@@ -1144,14 +1144,14 @@ export interface Article {
|
|
|
1144
1144
|
deliveryMethodRef: ApiObjectReference;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
|
-
*
|
|
1147
|
+
* Produktion
|
|
1148
1148
|
*/
|
|
1149
|
-
|
|
1149
|
+
fabrication: boolean;
|
|
1150
1150
|
|
|
1151
1151
|
/**
|
|
1152
|
-
*
|
|
1152
|
+
* Soll-Handelsspanne
|
|
1153
1153
|
*/
|
|
1154
|
-
|
|
1154
|
+
targetTradingMargin: number;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
1157
|
* active
|
|
@@ -1208,20 +1208,15 @@ export interface Article {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
listingStateChangeTime: ScriptingDateTime;
|
|
1210
1210
|
|
|
1211
|
-
/**
|
|
1212
|
-
* Arbeitseinheit in Minuten
|
|
1213
|
-
*/
|
|
1214
|
-
workUnitInMinutes: number;
|
|
1215
|
-
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Country code
|
|
1218
1213
|
*/
|
|
1219
1214
|
countryOfOriginRef: CountryReference;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* Arbeitseinheit in Minuten
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
workUnitInMinutes: number;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Frei kommissionierbar
|
|
@@ -1229,9 +1224,9 @@ export interface Article {
|
|
|
1229
1224
|
freelyPickable: boolean;
|
|
1230
1225
|
|
|
1231
1226
|
/**
|
|
1232
|
-
*
|
|
1227
|
+
* description custom data
|
|
1233
1228
|
*/
|
|
1234
|
-
|
|
1229
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1235
1230
|
|
|
1236
1231
|
/**
|
|
1237
1232
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1243,6 +1238,11 @@ export interface Article {
|
|
|
1243
1238
|
*/
|
|
1244
1239
|
note: string;
|
|
1245
1240
|
|
|
1241
|
+
/**
|
|
1242
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1243
|
+
*/
|
|
1244
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1245
|
+
|
|
1246
1246
|
/**
|
|
1247
1247
|
* Erlaubte Arten der Kommissionierung
|
|
1248
1248
|
*/
|
|
@@ -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
|
*/
|
|
@@ -1309,9 +1314,9 @@ export interface Article {
|
|
|
1309
1314
|
shippingLabelPrinting: boolean;
|
|
1310
1315
|
|
|
1311
1316
|
/**
|
|
1312
|
-
*
|
|
1317
|
+
* alternative name of this product
|
|
1313
1318
|
*/
|
|
1314
|
-
|
|
1319
|
+
alternativeName: string;
|
|
1315
1320
|
|
|
1316
1321
|
/**
|
|
1317
1322
|
* Kontingentartikel
|
|
@@ -1319,9 +1324,9 @@ export interface Article {
|
|
|
1319
1324
|
contingentArticleRef: ApiObjectReference;
|
|
1320
1325
|
|
|
1321
1326
|
/**
|
|
1322
|
-
*
|
|
1327
|
+
* rabattierbarer Artikel?
|
|
1323
1328
|
*/
|
|
1324
|
-
|
|
1329
|
+
discountable: boolean;
|
|
1325
1330
|
|
|
1326
1331
|
/**
|
|
1327
1332
|
* base capacity
|
|
@@ -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?
|
|
@@ -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,20 +1936,15 @@ export const enum ArticleSerialType {
|
|
|
1931
1936
|
|
|
1932
1937
|
export interface ArticleStorage {
|
|
1933
1938
|
|
|
1934
|
-
/**
|
|
1935
|
-
* Bestand im Lager
|
|
1936
|
-
*/
|
|
1937
|
-
quantityInStock: number;
|
|
1938
|
-
|
|
1939
1939
|
/**
|
|
1940
1940
|
* Nachschub ab
|
|
1941
1941
|
*/
|
|
1942
1942
|
replenishmentFrom: number;
|
|
1943
1943
|
|
|
1944
1944
|
/**
|
|
1945
|
-
*
|
|
1945
|
+
* Bestand im Lager
|
|
1946
1946
|
*/
|
|
1947
|
-
|
|
1947
|
+
quantityInStock: number;
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
1950
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1956,6 +1956,11 @@ export interface ArticleStorage {
|
|
|
1956
1956
|
*/
|
|
1957
1957
|
reorderPoint: number;
|
|
1958
1958
|
|
|
1959
|
+
/**
|
|
1960
|
+
* Bestellte Menge
|
|
1961
|
+
*/
|
|
1962
|
+
orderedQuantity: number;
|
|
1963
|
+
|
|
1959
1964
|
/**
|
|
1960
1965
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1961
1966
|
*/
|
|
@@ -2039,26 +2044,26 @@ export interface ArticleSupplier {
|
|
|
2039
2044
|
*/
|
|
2040
2045
|
supplierReportingStock: number;
|
|
2041
2046
|
|
|
2042
|
-
/**
|
|
2043
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2044
|
-
*/
|
|
2045
|
-
useSupplierArticleDescription: boolean;
|
|
2046
|
-
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Anzeigename des Accounts
|
|
2049
2049
|
*/
|
|
2050
2050
|
accountDisplayName: string;
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
2053
|
-
* Soll
|
|
2053
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2054
2054
|
*/
|
|
2055
|
-
|
|
2055
|
+
useSupplierArticleDescription: boolean;
|
|
2056
2056
|
|
|
2057
2057
|
/**
|
|
2058
2058
|
* Lieferzeit in (Werk-)Tagen
|
|
2059
2059
|
*/
|
|
2060
2060
|
deliveryTime: number;
|
|
2061
2061
|
|
|
2062
|
+
/**
|
|
2063
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2064
|
+
*/
|
|
2065
|
+
useSupplierArticleIdentifier: boolean;
|
|
2066
|
+
|
|
2062
2067
|
/**
|
|
2063
2068
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2064
2069
|
*/
|
|
@@ -2105,14 +2110,14 @@ export interface ArticleSupplier {
|
|
|
2105
2110
|
info: MetaInfo;
|
|
2106
2111
|
|
|
2107
2112
|
/**
|
|
2108
|
-
*
|
|
2113
|
+
* Verpackungseinheit
|
|
2109
2114
|
*/
|
|
2110
|
-
|
|
2115
|
+
packagingUnit: number;
|
|
2111
2116
|
|
|
2112
2117
|
/**
|
|
2113
|
-
*
|
|
2118
|
+
* Referenced Article name
|
|
2114
2119
|
*/
|
|
2115
|
-
|
|
2120
|
+
articleName: string;
|
|
2116
2121
|
|
|
2117
2122
|
/**
|
|
2118
2123
|
* Lieferanten-Preise
|
|
@@ -2160,9 +2165,9 @@ export interface ArticleSupplier {
|
|
|
2160
2165
|
defaultNetPrice: number;
|
|
2161
2166
|
|
|
2162
2167
|
/**
|
|
2163
|
-
*
|
|
2168
|
+
* Einkaufseinheit
|
|
2164
2169
|
*/
|
|
2165
|
-
|
|
2170
|
+
purchaseUnit: number;
|
|
2166
2171
|
|
|
2167
2172
|
/**
|
|
2168
2173
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
@@ -2170,9 +2175,9 @@ export interface ArticleSupplier {
|
|
|
2170
2175
|
orderOnComponentBase: boolean;
|
|
2171
2176
|
|
|
2172
2177
|
/**
|
|
2173
|
-
*
|
|
2178
|
+
* Referenced Supplier-Account
|
|
2174
2179
|
*/
|
|
2175
|
-
|
|
2180
|
+
accountId: number;
|
|
2176
2181
|
|
|
2177
2182
|
/**
|
|
2178
2183
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2511,15 +2516,20 @@ export interface CountryReference {
|
|
|
2511
2516
|
*/
|
|
2512
2517
|
export interface CreateNewDocumentRequest {
|
|
2513
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* Belegart
|
|
2521
|
+
*/
|
|
2522
|
+
documentTypeLabel: string;
|
|
2523
|
+
|
|
2514
2524
|
/**
|
|
2515
2525
|
* Standard-Belegart der Kategorie verwenden
|
|
2516
2526
|
*/
|
|
2517
2527
|
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2518
2528
|
|
|
2519
2529
|
/**
|
|
2520
|
-
*
|
|
2530
|
+
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
2521
2531
|
*/
|
|
2522
|
-
|
|
2532
|
+
externallyCreated: boolean;
|
|
2523
2533
|
|
|
2524
2534
|
/**
|
|
2525
2535
|
* Details zum Beleg
|
|
@@ -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)
|
|
@@ -3854,14 +3864,14 @@ export interface CurrencyReference {
|
|
|
3854
3864
|
export interface Customer {
|
|
3855
3865
|
|
|
3856
3866
|
/**
|
|
3857
|
-
*
|
|
3867
|
+
* reference to customer group
|
|
3858
3868
|
*/
|
|
3859
|
-
|
|
3869
|
+
customerGroupRef: ApiObjectReference;
|
|
3860
3870
|
|
|
3861
3871
|
/**
|
|
3862
|
-
*
|
|
3872
|
+
* Option für die Stapelverarbeitung
|
|
3863
3873
|
*/
|
|
3864
|
-
|
|
3874
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3865
3875
|
|
|
3866
3876
|
/**
|
|
3867
3877
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -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
|
|
@@ -4098,14 +4108,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4098
4108
|
export interface DeliveryMethod {
|
|
4099
4109
|
|
|
4100
4110
|
/**
|
|
4101
|
-
*
|
|
4111
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4102
4112
|
*/
|
|
4103
|
-
|
|
4113
|
+
splitIntoNewDocument: boolean;
|
|
4104
4114
|
|
|
4105
4115
|
/**
|
|
4106
|
-
*
|
|
4116
|
+
* E-Mail an Versender übergeben
|
|
4107
4117
|
*/
|
|
4108
|
-
|
|
4118
|
+
forwardEmailToShipper: boolean;
|
|
4109
4119
|
|
|
4110
4120
|
/**
|
|
4111
4121
|
* Min. Gewicht pro Paket
|
|
@@ -4168,14 +4178,14 @@ export interface DeliveryMethod {
|
|
|
4168
4178
|
translations: Array<DocumentTypeTerm>;
|
|
4169
4179
|
|
|
4170
4180
|
/**
|
|
4171
|
-
*
|
|
4181
|
+
* Versand-Anbieter
|
|
4172
4182
|
*/
|
|
4173
|
-
|
|
4183
|
+
vdsCarrierId: number;
|
|
4174
4184
|
|
|
4175
4185
|
/**
|
|
4176
|
-
*
|
|
4186
|
+
* Gültige Ländercodes
|
|
4177
4187
|
*/
|
|
4178
|
-
|
|
4188
|
+
validCountryCodes: Array<string>;
|
|
4179
4189
|
|
|
4180
4190
|
/**
|
|
4181
4191
|
* Standardgewichtseinheit
|
|
@@ -4276,14 +4286,14 @@ export interface DeliveryTerm {
|
|
|
4276
4286
|
id: number;
|
|
4277
4287
|
|
|
4278
4288
|
/**
|
|
4279
|
-
*
|
|
4289
|
+
* free shipping net value
|
|
4280
4290
|
*/
|
|
4281
|
-
|
|
4291
|
+
freeShippingNetValue: number;
|
|
4282
4292
|
|
|
4283
4293
|
/**
|
|
4284
|
-
*
|
|
4294
|
+
* Versandkostenartikel
|
|
4285
4295
|
*/
|
|
4286
|
-
|
|
4296
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4287
4297
|
|
|
4288
4298
|
/**
|
|
4289
4299
|
* MetaInformations for this Object
|
|
@@ -4306,14 +4316,14 @@ export interface DmsOutputStream {
|
|
|
4306
4316
|
export interface Document {
|
|
4307
4317
|
|
|
4308
4318
|
/**
|
|
4309
|
-
*
|
|
4319
|
+
* Referenz zum Rechnungskonto
|
|
4310
4320
|
*/
|
|
4311
|
-
|
|
4321
|
+
billingAccountRef: ApiObjectReference;
|
|
4312
4322
|
|
|
4313
4323
|
/**
|
|
4314
|
-
*
|
|
4324
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4315
4325
|
*/
|
|
4316
|
-
|
|
4326
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4317
4327
|
|
|
4318
4328
|
/**
|
|
4319
4329
|
* Externe Belegnummer
|
|
@@ -4394,14 +4404,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4394
4404
|
deliveryQuantityPackages: number;
|
|
4395
4405
|
|
|
4396
4406
|
/**
|
|
4397
|
-
*
|
|
4407
|
+
* Leitweg-ID
|
|
4398
4408
|
*/
|
|
4399
|
-
|
|
4409
|
+
buyerReference: string;
|
|
4400
4410
|
|
|
4401
4411
|
/**
|
|
4402
|
-
*
|
|
4412
|
+
* Bestellnummer aus Vorbeleg
|
|
4403
4413
|
*/
|
|
4404
|
-
|
|
4414
|
+
referencedOrderNumber: string;
|
|
4405
4415
|
|
|
4406
4416
|
/**
|
|
4407
4417
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -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
|
|
@@ -4591,14 +4601,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4591
4601
|
accountNumber: string;
|
|
4592
4602
|
|
|
4593
4603
|
/**
|
|
4594
|
-
*
|
|
4604
|
+
* Referenz auf Zahlungsbedingung
|
|
4595
4605
|
*/
|
|
4596
|
-
|
|
4606
|
+
paymentTermRef: PaymentTermRef;
|
|
4597
4607
|
|
|
4598
4608
|
/**
|
|
4599
|
-
*
|
|
4609
|
+
* Wird vom Workflow verarbeitet?
|
|
4600
4610
|
*/
|
|
4601
|
-
|
|
4611
|
+
processedByWorkflow: boolean;
|
|
4602
4612
|
|
|
4603
4613
|
/**
|
|
4604
4614
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4811,14 +4821,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4811
4821
|
customerNumber: string;
|
|
4812
4822
|
|
|
4813
4823
|
/**
|
|
4814
|
-
*
|
|
4824
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4815
4825
|
*/
|
|
4816
|
-
|
|
4826
|
+
taxIdentificationNumber: string;
|
|
4817
4827
|
|
|
4818
4828
|
/**
|
|
4819
|
-
*
|
|
4829
|
+
* Statusinstanz des Belegs
|
|
4820
4830
|
*/
|
|
4821
|
-
|
|
4831
|
+
documentState: DocumentTypeState;
|
|
4822
4832
|
|
|
4823
4833
|
/**
|
|
4824
4834
|
* Versandkostenpositionen
|
|
@@ -4862,25 +4872,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4862
4872
|
*/
|
|
4863
4873
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4864
4874
|
|
|
4865
|
-
/**
|
|
4866
|
-
* Status der USt-ID-Prüfung
|
|
4867
|
-
*/
|
|
4868
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4869
|
-
|
|
4870
4875
|
/**
|
|
4871
4876
|
* Rechnungsadresse
|
|
4872
4877
|
*/
|
|
4873
4878
|
billingAddress: DocumentAddress;
|
|
4874
4879
|
|
|
4875
4880
|
/**
|
|
4876
|
-
*
|
|
4881
|
+
* Status der USt-ID-Prüfung
|
|
4877
4882
|
*/
|
|
4878
|
-
|
|
4883
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4879
4884
|
|
|
4880
4885
|
/**
|
|
4881
4886
|
* Bestellt durch Ansprechpartner
|
|
4882
4887
|
*/
|
|
4883
4888
|
orderedByPersonRef: ApiObjectReference;
|
|
4889
|
+
|
|
4890
|
+
/**
|
|
4891
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4892
|
+
*/
|
|
4893
|
+
reportGroupRef: ApiObjectReference;
|
|
4884
4894
|
}
|
|
4885
4895
|
|
|
4886
4896
|
export interface DocumentAdditionalInfo {
|
|
@@ -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
|
/**
|
|
@@ -5061,14 +5048,14 @@ export interface DocumentAddress {
|
|
|
5061
5048
|
info: MetaInfo;
|
|
5062
5049
|
|
|
5063
5050
|
/**
|
|
5064
|
-
*
|
|
5051
|
+
* Lieferart
|
|
5065
5052
|
*/
|
|
5066
|
-
|
|
5053
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5067
5054
|
|
|
5068
5055
|
/**
|
|
5069
|
-
*
|
|
5056
|
+
* GLN
|
|
5070
5057
|
*/
|
|
5071
|
-
|
|
5058
|
+
globalLocationNumber: string;
|
|
5072
5059
|
|
|
5073
5060
|
/**
|
|
5074
5061
|
* Postcode
|
|
@@ -5636,6 +5623,11 @@ export interface DocumentLine {
|
|
|
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
|
|
@@ -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
|
|
@@ -6667,14 +6659,14 @@ export interface DocumentPosPayment {
|
|
|
6667
6659
|
version: number;
|
|
6668
6660
|
|
|
6669
6661
|
/**
|
|
6670
|
-
*
|
|
6662
|
+
* Zahlungsart
|
|
6671
6663
|
*/
|
|
6672
|
-
|
|
6664
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6673
6665
|
|
|
6674
6666
|
/**
|
|
6675
|
-
*
|
|
6667
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6676
6668
|
*/
|
|
6677
|
-
|
|
6669
|
+
withdrawalAmount: number;
|
|
6678
6670
|
|
|
6679
6671
|
/**
|
|
6680
6672
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -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
|
|
@@ -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
|
|
@@ -7074,14 +7066,14 @@ export interface DocumentType {
|
|
|
7074
7066
|
labels: Array<DocumentTypeLabel>;
|
|
7075
7067
|
|
|
7076
7068
|
/**
|
|
7077
|
-
*
|
|
7069
|
+
* Zählerkreis
|
|
7078
7070
|
*/
|
|
7079
|
-
|
|
7071
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7080
7072
|
|
|
7081
7073
|
/**
|
|
7082
|
-
*
|
|
7074
|
+
* nächste Belegnummer
|
|
7083
7075
|
*/
|
|
7084
|
-
|
|
7076
|
+
nextNumber: string;
|
|
7085
7077
|
|
|
7086
7078
|
/**
|
|
7087
7079
|
* Sortierung
|
|
@@ -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
|
|
@@ -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',
|
|
@@ -8689,14 +8799,14 @@ export interface PaymentTerm {
|
|
|
8689
8799
|
paymentDiscount2: number;
|
|
8690
8800
|
|
|
8691
8801
|
/**
|
|
8692
|
-
*
|
|
8802
|
+
* printDescription
|
|
8693
8803
|
*/
|
|
8694
|
-
|
|
8804
|
+
printDescription: string;
|
|
8695
8805
|
|
|
8696
8806
|
/**
|
|
8697
|
-
*
|
|
8807
|
+
* Percent for Discount 1
|
|
8698
8808
|
*/
|
|
8699
|
-
|
|
8809
|
+
paymentDiscount1: number;
|
|
8700
8810
|
|
|
8701
8811
|
/**
|
|
8702
8812
|
* for deposit: remaining term
|
|
@@ -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
|
|
@@ -9428,26 +9538,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9428
9538
|
*/
|
|
9429
9539
|
maxArticleCountPerOrder: number;
|
|
9430
9540
|
|
|
9431
|
-
/**
|
|
9432
|
-
* Alternative Selektion in VQL
|
|
9433
|
-
*/
|
|
9434
|
-
alternativeSelectionInVql: string;
|
|
9435
|
-
|
|
9436
9541
|
/**
|
|
9437
9542
|
* Maximaler Auftragswert
|
|
9438
9543
|
*/
|
|
9439
9544
|
maxOrderValue: number;
|
|
9440
9545
|
|
|
9441
9546
|
/**
|
|
9442
|
-
*
|
|
9547
|
+
* Alternative Selektion in VQL
|
|
9443
9548
|
*/
|
|
9444
|
-
|
|
9549
|
+
alternativeSelectionInVql: string;
|
|
9445
9550
|
|
|
9446
9551
|
/**
|
|
9447
9552
|
* Selektion über den Bereich vom Lieferdatum
|
|
9448
9553
|
*/
|
|
9449
9554
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9450
9555
|
|
|
9556
|
+
/**
|
|
9557
|
+
* Nur vollständig lieferbare Positionen
|
|
9558
|
+
*/
|
|
9559
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9560
|
+
|
|
9451
9561
|
/**
|
|
9452
9562
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9453
9563
|
*/
|
|
@@ -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
|
*/
|
|
@@ -9527,14 +9642,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9527
9642
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9528
9643
|
|
|
9529
9644
|
/**
|
|
9530
|
-
*
|
|
9645
|
+
* Der zu verwendende Pickwagen
|
|
9531
9646
|
*/
|
|
9532
|
-
|
|
9647
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9533
9648
|
|
|
9534
9649
|
/**
|
|
9535
|
-
*
|
|
9650
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9536
9651
|
*/
|
|
9537
|
-
|
|
9652
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9538
9653
|
|
|
9539
9654
|
/**
|
|
9540
9655
|
* Lagerplätze vorgeben
|
|
@@ -9542,14 +9657,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9542
9657
|
specifyStorageBins: boolean;
|
|
9543
9658
|
|
|
9544
9659
|
/**
|
|
9545
|
-
*
|
|
9660
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9546
9661
|
*/
|
|
9547
|
-
|
|
9662
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9548
9663
|
|
|
9549
9664
|
/**
|
|
9550
|
-
*
|
|
9665
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9551
9666
|
*/
|
|
9552
|
-
|
|
9667
|
+
sortByRoutePosition: boolean;
|
|
9553
9668
|
|
|
9554
9669
|
/**
|
|
9555
9670
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -9609,11 +9724,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9609
9724
|
*/
|
|
9610
9725
|
showShippingFormOnPickingFinish: boolean;
|
|
9611
9726
|
|
|
9612
|
-
/**
|
|
9613
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9614
|
-
*/
|
|
9615
|
-
useDigitalPicklist: boolean;
|
|
9616
|
-
|
|
9617
9727
|
/**
|
|
9618
9728
|
* Sammelbestätigung erlauben
|
|
9619
9729
|
*/
|
|
@@ -9629,6 +9739,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9629
9739
|
*/
|
|
9630
9740
|
printLabelOnScan: boolean;
|
|
9631
9741
|
|
|
9742
|
+
/**
|
|
9743
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9744
|
+
*/
|
|
9745
|
+
useDigitalPicklist: boolean;
|
|
9746
|
+
|
|
9632
9747
|
/**
|
|
9633
9748
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9634
9749
|
*/
|
|
@@ -9655,14 +9770,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9655
9770
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9656
9771
|
|
|
9657
9772
|
/**
|
|
9658
|
-
*
|
|
9773
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9659
9774
|
*/
|
|
9660
|
-
|
|
9775
|
+
autoDeterminationOfLots: boolean;
|
|
9661
9776
|
|
|
9662
9777
|
/**
|
|
9663
|
-
*
|
|
9778
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9664
9779
|
*/
|
|
9665
|
-
|
|
9780
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9666
9781
|
|
|
9667
9782
|
/**
|
|
9668
9783
|
* Zielmengen in Masken verstecken?
|
|
@@ -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
|
|
@@ -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
|
|
@@ -10222,14 +10337,14 @@ export interface ProductPrice {
|
|
|
10222
10337
|
qualifier: ProductPriceQualifier;
|
|
10223
10338
|
|
|
10224
10339
|
/**
|
|
10225
|
-
*
|
|
10340
|
+
* Aktionpreis
|
|
10226
10341
|
*/
|
|
10227
|
-
|
|
10342
|
+
specialOfferPrice: boolean;
|
|
10228
10343
|
|
|
10229
10344
|
/**
|
|
10230
|
-
*
|
|
10345
|
+
* Preisbasis
|
|
10231
10346
|
*/
|
|
10232
|
-
|
|
10347
|
+
priceBase: ArticlePriceBase;
|
|
10233
10348
|
|
|
10234
10349
|
/**
|
|
10235
10350
|
* Gültig bis
|
|
@@ -10347,14 +10462,14 @@ export interface RequestDocument {
|
|
|
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
|
|
10356
10471
|
*/
|
|
10357
|
-
|
|
10472
|
+
performanceDate: ScriptingDate;
|
|
10358
10473
|
|
|
10359
10474
|
/**
|
|
10360
10475
|
* ID der Kassenschublade (bei POS)
|
|
@@ -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)
|
|
@@ -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
|
|
@@ -10659,6 +10779,11 @@ export interface RequestDocumentLine {
|
|
|
10659
10779
|
*/
|
|
10660
10780
|
name: string;
|
|
10661
10781
|
|
|
10782
|
+
/**
|
|
10783
|
+
* Buchungen zu dieser Belegposition
|
|
10784
|
+
*/
|
|
10785
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10786
|
+
|
|
10662
10787
|
/**
|
|
10663
10788
|
* Für interne Zwecke: Externe Artikelnummer
|
|
10664
10789
|
*/
|
|
@@ -10669,11 +10794,6 @@ export interface RequestDocumentLine {
|
|
|
10669
10794
|
*/
|
|
10670
10795
|
sourceLineId: number;
|
|
10671
10796
|
|
|
10672
|
-
/**
|
|
10673
|
-
* Buchungen zu dieser Belegposition
|
|
10674
|
-
*/
|
|
10675
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
10676
|
-
|
|
10677
10797
|
/**
|
|
10678
10798
|
* Zu der Zeile Etikettendruck anstoßen
|
|
10679
10799
|
*/
|
|
@@ -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
|
|
@@ -11805,14 +11925,14 @@ export interface StockMovementManualApi {
|
|
|
11805
11925
|
expiryDate: ScriptingDate;
|
|
11806
11926
|
|
|
11807
11927
|
/**
|
|
11808
|
-
*
|
|
11928
|
+
* Notiz zur Seriennummer
|
|
11809
11929
|
*/
|
|
11810
|
-
|
|
11930
|
+
serialNumberNote: string;
|
|
11811
11931
|
|
|
11812
11932
|
/**
|
|
11813
|
-
*
|
|
11933
|
+
* Zugang oder Abgang
|
|
11814
11934
|
*/
|
|
11815
|
-
|
|
11935
|
+
factor: StockJournalFactor;
|
|
11816
11936
|
|
|
11817
11937
|
/**
|
|
11818
11938
|
* Lager
|
|
@@ -12046,14 +12166,14 @@ export interface Supplier {
|
|
|
12046
12166
|
info: MetaInfo;
|
|
12047
12167
|
|
|
12048
12168
|
/**
|
|
12049
|
-
*
|
|
12169
|
+
* reference to the delivery method
|
|
12050
12170
|
*/
|
|
12051
|
-
|
|
12171
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12052
12172
|
|
|
12053
12173
|
/**
|
|
12054
|
-
*
|
|
12174
|
+
* Lieferantengruppe
|
|
12055
12175
|
*/
|
|
12056
|
-
|
|
12176
|
+
supplierGroupRef: ApiObjectReference;
|
|
12057
12177
|
|
|
12058
12178
|
/**
|
|
12059
12179
|
* tax able or tax free
|
|
@@ -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
|
|
@@ -12139,14 +12264,14 @@ export interface TagDto {
|
|
|
12139
12264
|
editColor: string;
|
|
12140
12265
|
|
|
12141
12266
|
/**
|
|
12142
|
-
* Farbe
|
|
12267
|
+
* Farbe in Such-GUI
|
|
12143
12268
|
*/
|
|
12144
|
-
|
|
12269
|
+
searchColor: string;
|
|
12145
12270
|
|
|
12146
12271
|
/**
|
|
12147
|
-
* Farbe
|
|
12272
|
+
* Farbe für die Anzeige des Tags
|
|
12148
12273
|
*/
|
|
12149
|
-
|
|
12274
|
+
color: string;
|
|
12150
12275
|
|
|
12151
12276
|
/**
|
|
12152
12277
|
* Beschriftung des Tags
|
|
@@ -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
|
/**
|
|
@@ -12483,14 +12707,14 @@ export interface User {
|
|
|
12483
12707
|
version: number;
|
|
12484
12708
|
|
|
12485
12709
|
/**
|
|
12486
|
-
*
|
|
12710
|
+
* is the email verified
|
|
12487
12711
|
*/
|
|
12488
|
-
|
|
12712
|
+
emailVerified: boolean;
|
|
12489
12713
|
|
|
12490
12714
|
/**
|
|
12491
|
-
*
|
|
12715
|
+
* first-name
|
|
12492
12716
|
*/
|
|
12493
|
-
|
|
12717
|
+
firstName: string;
|
|
12494
12718
|
|
|
12495
12719
|
/**
|
|
12496
12720
|
* email-address
|