@vario-software/types 2026.31.1 → 2026.31.2
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 +2 -0
- package/scripting/services.d.ts +38 -38
- package/scripting/types.d.ts +347 -347
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
accountZoneId: AccountZoneId;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* first contact type for this account
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -144,14 +144,14 @@ export interface Account {
|
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Kostenstelle
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
costCenter: string;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Summe Forderungen
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
receivablesSum: number;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* companyLegal for this account
|
|
@@ -179,14 +179,14 @@ export interface Account {
|
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* Erstkontakt am
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
initialContactAt: ScriptingDate;
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* calculation mode of this document
|
|
188
188
|
*/
|
|
189
|
-
|
|
189
|
+
calculationMode: CalculationMode;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* Sprache des Accounts
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Standard-Ansprechpartner
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
defaultPerson: AccountPerson;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
additionalAddressLine1: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Additional address line2
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
additionalAddressLine2: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Parcel station
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
parcelStation: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Default contacts
|
|
416
416
|
*/
|
|
417
|
-
|
|
417
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Parcel station customer number
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
parcelStationCustomerNumber: string;
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
425
|
* Name3
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* name of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankName: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* post-code of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankPostCode: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* account from, if differs from account-address
|
|
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
|
|
|
505
505
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
|
-
*
|
|
508
|
+
* Is default bank?
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
defaultBank: boolean;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* origin type
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
originType: AccountBankdetail$OriginType;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -1015,20 +1015,25 @@ export interface Article {
|
|
|
1015
1015
|
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* Product custom data
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
listingCustom: EavArticleListing;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* is this product purchasable
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
purchasable: boolean;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Durchschnittl. EKP (Startwert)
|
|
1034
|
+
*/
|
|
1035
|
+
initialAvgPurchasePrice: number;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* is this product sellable without any quantity at the stock
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Durchschnittl. EKP (Startwert)
|
|
1044
|
-
*/
|
|
1045
|
-
initialAvgPurchasePrice: number;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1214,20 +1214,15 @@ export interface Article {
|
|
|
1214
1214
|
*/
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
|
-
/**
|
|
1218
|
-
* Country code
|
|
1219
|
-
*/
|
|
1220
|
-
countryOfOriginRef: CountryReference;
|
|
1221
|
-
|
|
1222
1217
|
/**
|
|
1223
1218
|
* Arbeitseinheit in Minuten
|
|
1224
1219
|
*/
|
|
1225
1220
|
workUnitInMinutes: number;
|
|
1226
1221
|
|
|
1227
1222
|
/**
|
|
1228
|
-
*
|
|
1223
|
+
* Country code
|
|
1229
1224
|
*/
|
|
1230
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1231
1226
|
|
|
1232
1227
|
/**
|
|
1233
1228
|
* Frei kommissionierbar
|
|
@@ -1235,15 +1230,20 @@ export interface Article {
|
|
|
1235
1230
|
freelyPickable: boolean;
|
|
1236
1231
|
|
|
1237
1232
|
/**
|
|
1238
|
-
*
|
|
1233
|
+
* description custom data
|
|
1239
1234
|
*/
|
|
1240
|
-
|
|
1235
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1241
1236
|
|
|
1242
1237
|
/**
|
|
1243
1238
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
1239
|
*/
|
|
1245
1240
|
taxLiabilityReversed: boolean;
|
|
1246
1241
|
|
|
1242
|
+
/**
|
|
1243
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1244
|
+
*/
|
|
1245
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1246
|
+
|
|
1247
1247
|
/**
|
|
1248
1248
|
* Notiz
|
|
1249
1249
|
*/
|
|
@@ -1284,6 +1284,11 @@ export interface Article {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
|
+
/**
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
|
+
*/
|
|
1290
|
+
defaultFabricationCost: number;
|
|
1291
|
+
|
|
1287
1292
|
/**
|
|
1288
1293
|
* gross sales prices
|
|
1289
1294
|
*/
|
|
@@ -1294,11 +1299,6 @@ export interface Article {
|
|
|
1294
1299
|
*/
|
|
1295
1300
|
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1296
1301
|
|
|
1297
|
-
/**
|
|
1298
|
-
* Vorgabe Herstellungskosten
|
|
1299
|
-
*/
|
|
1300
|
-
defaultFabricationCost: number;
|
|
1301
|
-
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -1320,14 +1320,14 @@ export interface Article {
|
|
|
1320
1320
|
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
*
|
|
1323
|
+
* rabattierbarer Artikel?
|
|
1324
1324
|
*/
|
|
1325
|
-
|
|
1325
|
+
discountable: boolean;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
|
-
*
|
|
1328
|
+
* Kontingentartikel
|
|
1329
1329
|
*/
|
|
1330
|
-
|
|
1330
|
+
contingentArticleRef: ApiObjectReference;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
1333
|
* alternative name of this product
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* provisionsberechtiger Artikel?
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
commissionable: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* Nur manuelle Produktion
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
onlyManualFabrication: boolean;
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1613,14 +1613,14 @@ export interface ArticleCustomer {
|
|
|
1613
1613
|
defaultGrossPrice: number;
|
|
1614
1614
|
|
|
1615
1615
|
/**
|
|
1616
|
-
*
|
|
1616
|
+
* Abweichende Produktnummer
|
|
1617
1617
|
*/
|
|
1618
|
-
|
|
1618
|
+
deviatingArticleNumber: string;
|
|
1619
1619
|
|
|
1620
1620
|
/**
|
|
1621
|
-
*
|
|
1621
|
+
* Art der Preisermittlung
|
|
1622
1622
|
*/
|
|
1623
|
-
|
|
1623
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1624
1624
|
|
|
1625
1625
|
/**
|
|
1626
1626
|
* Artikelnummer
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
*
|
|
1738
|
+
* der Sales Channel
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
salesChannelRef: ApiObjectReference;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
* der
|
|
1743
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
customLowestPriceGross: number;
|
|
1746
1746
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* soll der Artikel gelistet werden
|
|
@@ -1957,6 +1957,11 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
+
/**
|
|
1961
|
+
* Meldebestand
|
|
1962
|
+
*/
|
|
1963
|
+
reorderPoint: number;
|
|
1964
|
+
|
|
1960
1965
|
/**
|
|
1961
1966
|
* Bestellte Menge
|
|
1962
1967
|
*/
|
|
@@ -1968,20 +1973,15 @@ export interface ArticleStorage {
|
|
|
1968
1973
|
quantityInPicking: number;
|
|
1969
1974
|
|
|
1970
1975
|
/**
|
|
1971
|
-
*
|
|
1976
|
+
* Nachschub auf
|
|
1972
1977
|
*/
|
|
1973
|
-
|
|
1978
|
+
replenishmentOn: number;
|
|
1974
1979
|
|
|
1975
1980
|
/**
|
|
1976
1981
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1977
1982
|
*/
|
|
1978
1983
|
virtualStockAmount: number;
|
|
1979
1984
|
|
|
1980
|
-
/**
|
|
1981
|
-
* Nachschub auf
|
|
1982
|
-
*/
|
|
1983
|
-
replenishmentOn: number;
|
|
1984
|
-
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Reservierte Menge
|
|
1987
1987
|
*/
|
|
@@ -2023,14 +2023,14 @@ export interface ArticleStorage {
|
|
|
2023
2023
|
storageRef: ApiObjectReference;
|
|
2024
2024
|
|
|
2025
2025
|
/**
|
|
2026
|
-
*
|
|
2026
|
+
* Vorgabe-Lagerplätze
|
|
2027
2027
|
*/
|
|
2028
|
-
|
|
2028
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
2031
|
-
*
|
|
2031
|
+
* Sollbestand
|
|
2032
2032
|
*/
|
|
2033
|
-
|
|
2033
|
+
targetStock: number;
|
|
2034
2034
|
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Aktuelle Menge in Produktion
|
|
@@ -2121,14 +2121,14 @@ export interface ArticleSupplier {
|
|
|
2121
2121
|
info: MetaInfo;
|
|
2122
2122
|
|
|
2123
2123
|
/**
|
|
2124
|
-
*
|
|
2124
|
+
* Referenced Article name
|
|
2125
2125
|
*/
|
|
2126
|
-
|
|
2126
|
+
articleName: string;
|
|
2127
2127
|
|
|
2128
2128
|
/**
|
|
2129
|
-
*
|
|
2129
|
+
* Verpackungseinheit
|
|
2130
2130
|
*/
|
|
2131
|
-
|
|
2131
|
+
packagingUnit: number;
|
|
2132
2132
|
|
|
2133
2133
|
/**
|
|
2134
2134
|
* Lieferanten-Preise
|
|
@@ -2161,14 +2161,14 @@ export interface ArticleSupplier {
|
|
|
2161
2161
|
dropShippingAllowed: boolean;
|
|
2162
2162
|
|
|
2163
2163
|
/**
|
|
2164
|
-
* Abweichende
|
|
2164
|
+
* Abweichende Produktbeschreibung
|
|
2165
2165
|
*/
|
|
2166
|
-
|
|
2166
|
+
supplierArticleDescription: string;
|
|
2167
2167
|
|
|
2168
2168
|
/**
|
|
2169
|
-
* Abweichende
|
|
2169
|
+
* Abweichende Produktbezeichnung
|
|
2170
2170
|
*/
|
|
2171
|
-
|
|
2171
|
+
supplierArticleName: string;
|
|
2172
2172
|
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Standardpreis Netto
|
|
@@ -2176,14 +2176,14 @@ export interface ArticleSupplier {
|
|
|
2176
2176
|
defaultNetPrice: number;
|
|
2177
2177
|
|
|
2178
2178
|
/**
|
|
2179
|
-
*
|
|
2179
|
+
* Einkaufseinheit
|
|
2180
2180
|
*/
|
|
2181
|
-
|
|
2181
|
+
purchaseUnit: number;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
orderOnComponentBase: boolean;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
2189
|
* Referenced Supplier-Account
|
|
@@ -2262,14 +2262,14 @@ export interface Asset {
|
|
|
2262
2262
|
active: boolean;
|
|
2263
2263
|
|
|
2264
2264
|
/**
|
|
2265
|
-
*
|
|
2265
|
+
* Ende Garantie
|
|
2266
2266
|
*/
|
|
2267
|
-
|
|
2267
|
+
warrantyEndDate: ScriptingDate;
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
2270
|
-
*
|
|
2270
|
+
* Zugehörige Assets
|
|
2271
2271
|
*/
|
|
2272
|
-
|
|
2272
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2273
2273
|
|
|
2274
2274
|
/**
|
|
2275
2275
|
* Asset-Bezeichnung
|
|
@@ -2793,14 +2793,14 @@ export interface CrmActivityType {
|
|
|
2793
2793
|
export interface CrmChecklistItem {
|
|
2794
2794
|
|
|
2795
2795
|
/**
|
|
2796
|
-
*
|
|
2796
|
+
* Ist das Element "angehakt"?
|
|
2797
2797
|
*/
|
|
2798
|
-
|
|
2798
|
+
checked: boolean;
|
|
2799
2799
|
|
|
2800
2800
|
/**
|
|
2801
|
-
*
|
|
2801
|
+
* Text des Checklisten-Elements
|
|
2802
2802
|
*/
|
|
2803
|
-
|
|
2803
|
+
memo: string;
|
|
2804
2804
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* Unique identifier of the Object
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
assignedUserRef: ApiObjectReference;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3202,14 +3202,14 @@ export interface CrmProject {
|
|
|
3202
3202
|
priorityRef: ApiObjectReference;
|
|
3203
3203
|
|
|
3204
3204
|
/**
|
|
3205
|
-
*
|
|
3205
|
+
* Phase
|
|
3206
3206
|
*/
|
|
3207
|
-
|
|
3207
|
+
phaseRef: ApiObjectReference;
|
|
3208
3208
|
|
|
3209
3209
|
/**
|
|
3210
|
-
*
|
|
3210
|
+
* Projektleiter vom Auftragnehmer
|
|
3211
3211
|
*/
|
|
3212
|
-
|
|
3212
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3213
3213
|
|
|
3214
3214
|
/**
|
|
3215
3215
|
* Aufgaben-Nummer
|
|
@@ -3903,14 +3903,14 @@ export interface CurrencyReference {
|
|
|
3903
3903
|
export interface Customer {
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
|
-
*
|
|
3906
|
+
* Option für die Stapelverarbeitung
|
|
3907
3907
|
*/
|
|
3908
|
-
|
|
3908
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
*
|
|
3911
|
+
* reference to customer group
|
|
3912
3912
|
*/
|
|
3913
|
-
|
|
3913
|
+
customerGroupRef: ApiObjectReference;
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
3916
3916
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3928,14 +3928,14 @@ export interface Customer {
|
|
|
3928
3928
|
dueDate: ScriptingDate;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
*
|
|
3931
|
+
* Maximal mögliche Lieferungen
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
maxDeliveries: number;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
|
-
*
|
|
3936
|
+
* collective billable
|
|
3937
3937
|
*/
|
|
3938
|
-
|
|
3938
|
+
collectiveBillable: boolean;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4206,26 +4206,26 @@ export interface DeliveryMethod {
|
|
|
4206
4206
|
*/
|
|
4207
4207
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4208
|
|
|
4209
|
-
/**
|
|
4210
|
-
* translations
|
|
4211
|
-
*/
|
|
4212
|
-
translations: Array<DocumentTypeTerm>;
|
|
4213
|
-
|
|
4214
4209
|
/**
|
|
4215
4210
|
* Quelle für Paketgewicht
|
|
4216
4211
|
*/
|
|
4217
4212
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4218
4213
|
|
|
4219
4214
|
/**
|
|
4220
|
-
*
|
|
4215
|
+
* translations
|
|
4221
4216
|
*/
|
|
4222
|
-
|
|
4217
|
+
translations: Array<DocumentTypeTerm>;
|
|
4223
4218
|
|
|
4224
4219
|
/**
|
|
4225
4220
|
* Versand-Anbieter
|
|
4226
4221
|
*/
|
|
4227
4222
|
vdsCarrierId: number;
|
|
4228
4223
|
|
|
4224
|
+
/**
|
|
4225
|
+
* Gültige Ländercodes
|
|
4226
|
+
*/
|
|
4227
|
+
validCountryCodes: Array<string>;
|
|
4228
|
+
|
|
4229
4229
|
/**
|
|
4230
4230
|
* Standardgewichtseinheit
|
|
4231
4231
|
*/
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* free shipping net value
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
freeShippingNetValue: number;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* Versandkostenartikel
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* MetaInformations for this Object
|
|
@@ -4355,14 +4355,14 @@ export interface DmsOutputStream {
|
|
|
4355
4355
|
export interface Document {
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Referenz zum Rechnungskonto
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
billingAccountRef: ApiObjectReference;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4366
4366
|
|
|
4367
4367
|
/**
|
|
4368
4368
|
* Externe Belegnummer
|
|
@@ -4448,14 +4448,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
4451
|
-
*
|
|
4451
|
+
* Bestellnummer aus Vorbeleg
|
|
4452
4452
|
*/
|
|
4453
|
-
|
|
4453
|
+
referencedOrderNumber: string;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
|
-
*
|
|
4456
|
+
* Leitweg-ID
|
|
4457
4457
|
*/
|
|
4458
|
-
|
|
4458
|
+
buyerReference: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4582,6 +4582,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4582
4582
|
*/
|
|
4583
4583
|
posPayments: Array<DocumentPosPayment>;
|
|
4584
4584
|
|
|
4585
|
+
/**
|
|
4586
|
+
* Ist die Quittung bezahlt
|
|
4587
|
+
true wenn die Quittung bezahlt ist
|
|
4588
|
+
|
|
4589
|
+
*/
|
|
4590
|
+
posReceiptPayed: boolean;
|
|
4591
|
+
|
|
4585
4592
|
/**
|
|
4586
4593
|
* Kundennummer beim Lieferanten
|
|
4587
4594
|
*/
|
|
@@ -4592,13 +4599,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4592
4599
|
*/
|
|
4593
4600
|
maxDeliveries: number;
|
|
4594
4601
|
|
|
4595
|
-
/**
|
|
4596
|
-
* Ist die Quittung bezahlt
|
|
4597
|
-
true wenn die Quittung bezahlt ist
|
|
4598
|
-
|
|
4599
|
-
*/
|
|
4600
|
-
posReceiptPayed: boolean;
|
|
4601
|
-
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Quittung: Summe Zahlbetrag
|
|
4604
4604
|
*/
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Leistungsdatum
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
performanceDate: ScriptingDate;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Verarbeitungsoption für Stapel
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4865,14 +4865,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4865
4865
|
customerNumber: string;
|
|
4866
4866
|
|
|
4867
4867
|
/**
|
|
4868
|
-
*
|
|
4868
|
+
* Statusinstanz des Belegs
|
|
4869
4869
|
*/
|
|
4870
|
-
|
|
4870
|
+
documentState: DocumentTypeState;
|
|
4871
4871
|
|
|
4872
4872
|
/**
|
|
4873
|
-
*
|
|
4873
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4874
4874
|
*/
|
|
4875
|
-
|
|
4875
|
+
taxIdentificationNumber: string;
|
|
4876
4876
|
|
|
4877
4877
|
/**
|
|
4878
4878
|
* Versandkostenpositionen
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Rechnungsadresse
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
billingAddress: DocumentAddress;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Status der USt-ID-Prüfung
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Bestellt durch Ansprechpartner
|
|
@@ -5097,14 +5097,14 @@ export interface DocumentAddress {
|
|
|
5097
5097
|
info: MetaInfo;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
|
-
*
|
|
5100
|
+
* Lieferart
|
|
5101
5101
|
*/
|
|
5102
|
-
|
|
5102
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
|
-
*
|
|
5105
|
+
* GLN
|
|
5106
5106
|
*/
|
|
5107
|
-
|
|
5107
|
+
globalLocationNumber: string;
|
|
5108
5108
|
|
|
5109
5109
|
/**
|
|
5110
5110
|
* Postcode
|
|
@@ -5162,14 +5162,14 @@ export interface DocumentAddress {
|
|
|
5162
5162
|
paymentMethodRef: ApiObjectReference;
|
|
5163
5163
|
|
|
5164
5164
|
/**
|
|
5165
|
-
*
|
|
5165
|
+
* salutation for this address
|
|
5166
5166
|
*/
|
|
5167
|
-
|
|
5167
|
+
salutation: string;
|
|
5168
5168
|
|
|
5169
5169
|
/**
|
|
5170
|
-
*
|
|
5170
|
+
* Referenz zum Account
|
|
5171
5171
|
*/
|
|
5172
|
-
|
|
5172
|
+
accountRef: ApiObjectReference;
|
|
5173
5173
|
|
|
5174
5174
|
/**
|
|
5175
5175
|
* address line 2
|
|
@@ -5287,14 +5287,14 @@ export interface DocumentContractDetail {
|
|
|
5287
5287
|
runtimeToDate: ScriptingDate;
|
|
5288
5288
|
|
|
5289
5289
|
/**
|
|
5290
|
-
*
|
|
5290
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
|
-
*
|
|
5295
|
+
* Nächste Fälligkeit
|
|
5296
5296
|
*/
|
|
5297
|
-
|
|
5297
|
+
nextDueDate: ScriptingDate;
|
|
5298
5298
|
|
|
5299
5299
|
/**
|
|
5300
5300
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5495,14 +5495,14 @@ export interface DocumentLine {
|
|
|
5495
5495
|
number: string;
|
|
5496
5496
|
|
|
5497
5497
|
/**
|
|
5498
|
-
*
|
|
5498
|
+
* Gesamtbruttogewicht
|
|
5499
5499
|
*/
|
|
5500
|
-
|
|
5500
|
+
totalGrossWeight: number;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Referenz zur Kundenauftragszeile
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
5508
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5545,14 +5545,14 @@ export interface DocumentLine {
|
|
|
5545
5545
|
id: number;
|
|
5546
5546
|
|
|
5547
5547
|
/**
|
|
5548
|
-
*
|
|
5548
|
+
* Preis pro Einheit in Basiswährung
|
|
5549
5549
|
*/
|
|
5550
|
-
|
|
5550
|
+
basePrice: number;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
|
-
*
|
|
5553
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5554
5554
|
*/
|
|
5555
|
-
|
|
5555
|
+
positionOfArticleLine: number;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
5558
|
* Serientyp
|
|
@@ -5560,14 +5560,14 @@ export interface DocumentLine {
|
|
|
5560
5560
|
serialType: ArticleSerialType;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
|
-
*
|
|
5563
|
+
* Preiseinheit
|
|
5564
5564
|
*/
|
|
5565
|
-
|
|
5565
|
+
priceUnit: number;
|
|
5566
5566
|
|
|
5567
5567
|
/**
|
|
5568
|
-
*
|
|
5568
|
+
* Steuerschema
|
|
5569
5569
|
*/
|
|
5570
|
-
|
|
5570
|
+
taxSchemaRef: ApiObjectReference;
|
|
5571
5571
|
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5665,14 +5665,14 @@ export interface DocumentLine {
|
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
5667
|
/**
|
|
5668
|
-
*
|
|
5668
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5669
5669
|
*/
|
|
5670
|
-
|
|
5670
|
+
baseSalesValueNet: number;
|
|
5671
5671
|
|
|
5672
5672
|
/**
|
|
5673
|
-
*
|
|
5673
|
+
* Vertragsinformationen
|
|
5674
5674
|
*/
|
|
5675
|
-
|
|
5675
|
+
contractDetail: DocumentContractDetail;
|
|
5676
5676
|
|
|
5677
5677
|
/**
|
|
5678
5678
|
* Einheit Nettogewicht
|
|
@@ -6124,14 +6124,14 @@ export interface DocumentLineComponent {
|
|
|
6124
6124
|
custom: EavDocumentlinecomponent;
|
|
6125
6125
|
|
|
6126
6126
|
/**
|
|
6127
|
-
*
|
|
6127
|
+
* Gelieferte Menge
|
|
6128
6128
|
*/
|
|
6129
|
-
|
|
6129
|
+
quantityCommitted: number;
|
|
6130
6130
|
|
|
6131
6131
|
/**
|
|
6132
|
-
*
|
|
6132
|
+
* Referenz auf den Artikel der Komponente
|
|
6133
6133
|
*/
|
|
6134
|
-
|
|
6134
|
+
articleId: number;
|
|
6135
6135
|
|
|
6136
6136
|
/**
|
|
6137
6137
|
* Beschreibung des Artikels
|
|
@@ -6273,14 +6273,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6273
6273
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6274
6274
|
|
|
6275
6275
|
/**
|
|
6276
|
-
*
|
|
6276
|
+
* Menge
|
|
6277
6277
|
*/
|
|
6278
|
-
|
|
6278
|
+
quantity: number;
|
|
6279
6279
|
|
|
6280
6280
|
/**
|
|
6281
|
-
*
|
|
6281
|
+
* Abweichende Herstellungskosten
|
|
6282
6282
|
*/
|
|
6283
|
-
|
|
6283
|
+
deviatingUnitPrice: number;
|
|
6284
6284
|
|
|
6285
6285
|
/**
|
|
6286
6286
|
* Beschreibung
|
|
@@ -6793,14 +6793,14 @@ export interface DocumentPosPayment {
|
|
|
6793
6793
|
version: number;
|
|
6794
6794
|
|
|
6795
6795
|
/**
|
|
6796
|
-
*
|
|
6796
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6797
6797
|
*/
|
|
6798
|
-
|
|
6798
|
+
withdrawalAmount: number;
|
|
6799
6799
|
|
|
6800
6800
|
/**
|
|
6801
|
-
*
|
|
6801
|
+
* Zahlungsart
|
|
6802
6802
|
*/
|
|
6803
|
-
|
|
6803
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6804
6804
|
|
|
6805
6805
|
/**
|
|
6806
6806
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
deleted: boolean;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
textPosition: TextPosition;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Ziel-Lager
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
targetStorageId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Seriennummer
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
serialNumberId: number;
|
|
7410
7410
|
|
|
7411
7411
|
/**
|
|
7412
7412
|
* Bemerkung
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Die gültige Seriennummer
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetSerialNumber: string;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -8227,14 +8227,14 @@ export interface OpenItem {
|
|
|
8227
8227
|
performanceCountryCode: string;
|
|
8228
8228
|
|
|
8229
8229
|
/**
|
|
8230
|
-
*
|
|
8230
|
+
* Valutadatum schreibgeschützt
|
|
8231
8231
|
*/
|
|
8232
|
-
|
|
8232
|
+
valueDateReadOnly: boolean;
|
|
8233
8233
|
|
|
8234
8234
|
/**
|
|
8235
|
-
*
|
|
8235
|
+
* agreed Deposit payment date
|
|
8236
8236
|
*/
|
|
8237
|
-
|
|
8237
|
+
depositPaymentDate: ScriptingDate;
|
|
8238
8238
|
|
|
8239
8239
|
/**
|
|
8240
8240
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8369,18 +8369,18 @@ export interface OpenItem {
|
|
|
8369
8369
|
/**
|
|
8370
8370
|
* Summe der Abzüge (Skonto usw.) in Basiswährung
|
|
8371
8371
|
*/
|
|
8372
|
-
baseSumDiscount: number;
|
|
8373
|
-
|
|
8374
|
-
/**
|
|
8375
|
-
* Zahlungsvorlage
|
|
8376
|
-
*/
|
|
8377
|
-
paymentTemplateRef: ApiObjectReference;
|
|
8372
|
+
baseSumDiscount: number;
|
|
8378
8373
|
|
|
8379
8374
|
/**
|
|
8380
8375
|
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8381
8376
|
*/
|
|
8382
8377
|
baseSumDunnings: number;
|
|
8383
8378
|
|
|
8379
|
+
/**
|
|
8380
|
+
* Zahlungsvorlage
|
|
8381
|
+
*/
|
|
8382
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8383
|
+
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
8386
8386
|
*/
|
|
@@ -8700,14 +8700,14 @@ export interface OpenItemRecord {
|
|
|
8700
8700
|
totalAmount: number;
|
|
8701
8701
|
|
|
8702
8702
|
/**
|
|
8703
|
-
*
|
|
8703
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8704
8704
|
*/
|
|
8705
|
-
|
|
8705
|
+
baseCurrencyCode: string;
|
|
8706
8706
|
|
|
8707
8707
|
/**
|
|
8708
|
-
*
|
|
8708
|
+
* id des records, der diesen storniert hat
|
|
8709
8709
|
*/
|
|
8710
|
-
|
|
8710
|
+
revertedByRecordId: number;
|
|
8711
8711
|
|
|
8712
8712
|
/**
|
|
8713
8713
|
* qualifier of open item
|
|
@@ -8842,14 +8842,14 @@ export interface PaymentMethod {
|
|
|
8842
8842
|
dunnable: boolean;
|
|
8843
8843
|
|
|
8844
8844
|
/**
|
|
8845
|
-
*
|
|
8845
|
+
* translations
|
|
8846
8846
|
*/
|
|
8847
|
-
|
|
8847
|
+
translations: Array<DocumentTypeTerm>;
|
|
8848
8848
|
|
|
8849
8849
|
/**
|
|
8850
|
-
*
|
|
8850
|
+
* Debitoren-OP abschließen?
|
|
8851
8851
|
*/
|
|
8852
|
-
|
|
8852
|
+
closeCustomerAccountType: boolean;
|
|
8853
8853
|
|
|
8854
8854
|
/**
|
|
8855
8855
|
* +Tage für Folgelastschrift
|
|
@@ -8857,14 +8857,14 @@ export interface PaymentMethod {
|
|
|
8857
8857
|
daysToAddForFollowup: number;
|
|
8858
8858
|
|
|
8859
8859
|
/**
|
|
8860
|
-
*
|
|
8860
|
+
* external Payment Id
|
|
8861
8861
|
*/
|
|
8862
|
-
|
|
8862
|
+
externalPaymentId: string;
|
|
8863
8863
|
|
|
8864
8864
|
/**
|
|
8865
|
-
*
|
|
8865
|
+
* Die Business Transaction
|
|
8866
8866
|
*/
|
|
8867
|
-
|
|
8867
|
+
businessTransaction: ApiObjectReference;
|
|
8868
8868
|
|
|
8869
8869
|
/**
|
|
8870
8870
|
* Unique identifier of the Object
|
|
@@ -8947,26 +8947,26 @@ export interface PaymentTerm {
|
|
|
8947
8947
|
*/
|
|
8948
8948
|
paymentDiscount2: number;
|
|
8949
8949
|
|
|
8950
|
-
/**
|
|
8951
|
-
* printDescription
|
|
8952
|
-
*/
|
|
8953
|
-
printDescription: string;
|
|
8954
|
-
|
|
8955
8950
|
/**
|
|
8956
8951
|
* Percent for Discount 1
|
|
8957
8952
|
*/
|
|
8958
8953
|
paymentDiscount1: number;
|
|
8959
8954
|
|
|
8960
8955
|
/**
|
|
8961
|
-
*
|
|
8956
|
+
* printDescription
|
|
8962
8957
|
*/
|
|
8963
|
-
|
|
8958
|
+
printDescription: string;
|
|
8964
8959
|
|
|
8965
8960
|
/**
|
|
8966
8961
|
* Days for Discount 1
|
|
8967
8962
|
*/
|
|
8968
8963
|
paymentDays1: number;
|
|
8969
8964
|
|
|
8965
|
+
/**
|
|
8966
|
+
* for deposit: remaining term
|
|
8967
|
+
*/
|
|
8968
|
+
remainingTermRef: ApiObjectReference;
|
|
8969
|
+
|
|
8970
8970
|
/**
|
|
8971
8971
|
* Days for Discount 2
|
|
8972
8972
|
*/
|
|
@@ -9248,14 +9248,14 @@ export const enum PickingType {
|
|
|
9248
9248
|
export interface Picklist {
|
|
9249
9249
|
|
|
9250
9250
|
/**
|
|
9251
|
-
*
|
|
9251
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
9252
9252
|
*/
|
|
9253
|
-
|
|
9253
|
+
usedTemplate: PicklistTemplate;
|
|
9254
9254
|
|
|
9255
9255
|
/**
|
|
9256
|
-
*
|
|
9256
|
+
* Ziellager für Nachschub
|
|
9257
9257
|
*/
|
|
9258
|
-
|
|
9258
|
+
targetStorageRef: ApiObjectReference;
|
|
9259
9259
|
|
|
9260
9260
|
/**
|
|
9261
9261
|
* Nummer der Pickliste
|
|
@@ -9366,14 +9366,14 @@ export interface PicklistLine {
|
|
|
9366
9366
|
articleNumber: string;
|
|
9367
9367
|
|
|
9368
9368
|
/**
|
|
9369
|
-
*
|
|
9369
|
+
* Lagernummer
|
|
9370
9370
|
*/
|
|
9371
|
-
|
|
9371
|
+
storageNumber: string;
|
|
9372
9372
|
|
|
9373
9373
|
/**
|
|
9374
|
-
*
|
|
9374
|
+
* Art der Position
|
|
9375
9375
|
*/
|
|
9376
|
-
|
|
9376
|
+
lineType: PicklistLineType;
|
|
9377
9377
|
|
|
9378
9378
|
/**
|
|
9379
9379
|
* ID der Ziel-Dokumentposition
|
|
@@ -9688,14 +9688,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9688
9688
|
maxArticleCountPerOrder: number;
|
|
9689
9689
|
|
|
9690
9690
|
/**
|
|
9691
|
-
*
|
|
9691
|
+
* Alternative Selektion in VQL
|
|
9692
9692
|
*/
|
|
9693
|
-
|
|
9693
|
+
alternativeSelectionInVql: string;
|
|
9694
9694
|
|
|
9695
9695
|
/**
|
|
9696
|
-
*
|
|
9696
|
+
* Maximaler Auftragswert
|
|
9697
9697
|
*/
|
|
9698
|
-
|
|
9698
|
+
maxOrderValue: number;
|
|
9699
9699
|
|
|
9700
9700
|
/**
|
|
9701
9701
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -9703,14 +9703,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9703
9703
|
maxOrderCount: number;
|
|
9704
9704
|
|
|
9705
9705
|
/**
|
|
9706
|
-
*
|
|
9706
|
+
* Nur vollständig lieferbare Positionen
|
|
9707
9707
|
*/
|
|
9708
|
-
|
|
9708
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9709
9709
|
|
|
9710
9710
|
/**
|
|
9711
|
-
*
|
|
9711
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9712
9712
|
*/
|
|
9713
|
-
|
|
9713
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9714
9714
|
|
|
9715
9715
|
/**
|
|
9716
9716
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9781,14 +9781,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9781
9781
|
printPicklist: boolean;
|
|
9782
9782
|
|
|
9783
9783
|
/**
|
|
9784
|
-
*
|
|
9784
|
+
* Die zu verwendende Pickwagengruppe
|
|
9785
9785
|
*/
|
|
9786
|
-
|
|
9786
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9787
9787
|
|
|
9788
9788
|
/**
|
|
9789
|
-
*
|
|
9789
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9790
9790
|
*/
|
|
9791
|
-
|
|
9791
|
+
maxPicklistLineCount: number;
|
|
9792
9792
|
|
|
9793
9793
|
/**
|
|
9794
9794
|
* Der zu verwendende Pickwagen
|
|
@@ -9873,6 +9873,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9873
9873
|
*/
|
|
9874
9874
|
showShippingFormOnPickingFinish: boolean;
|
|
9875
9875
|
|
|
9876
|
+
/**
|
|
9877
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9878
|
+
*/
|
|
9879
|
+
allowPickingOfServiceArticles: boolean;
|
|
9880
|
+
|
|
9876
9881
|
/**
|
|
9877
9882
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9878
9883
|
*/
|
|
@@ -9883,11 +9888,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9883
9888
|
*/
|
|
9884
9889
|
allowFullConfirmation: boolean;
|
|
9885
9890
|
|
|
9886
|
-
/**
|
|
9887
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
9888
|
-
*/
|
|
9889
|
-
allowPickingOfServiceArticles: boolean;
|
|
9890
|
-
|
|
9891
9891
|
/**
|
|
9892
9892
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9893
9893
|
*/
|
|
@@ -9909,14 +9909,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9909
9909
|
printLabelOnCompleteOrder: boolean;
|
|
9910
9910
|
|
|
9911
9911
|
/**
|
|
9912
|
-
*
|
|
9912
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9913
9913
|
*/
|
|
9914
|
-
|
|
9914
|
+
printLabelAfterPicking: boolean;
|
|
9915
9915
|
|
|
9916
9916
|
/**
|
|
9917
|
-
*
|
|
9917
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9918
9918
|
*/
|
|
9919
|
-
|
|
9919
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9920
9920
|
|
|
9921
9921
|
/**
|
|
9922
9922
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -10008,14 +10008,14 @@ export interface PriceSelectionCriteria {
|
|
|
10008
10008
|
quantity: number;
|
|
10009
10009
|
|
|
10010
10010
|
/**
|
|
10011
|
-
* Liste von
|
|
10011
|
+
* Liste von Artikel-IDs
|
|
10012
10012
|
*/
|
|
10013
|
-
|
|
10013
|
+
articleIds: Array<number>;
|
|
10014
10014
|
|
|
10015
10015
|
/**
|
|
10016
|
-
* Liste von
|
|
10016
|
+
* Liste von Account-IDs
|
|
10017
10017
|
*/
|
|
10018
|
-
|
|
10018
|
+
accountIds: Array<number>;
|
|
10019
10019
|
|
|
10020
10020
|
/**
|
|
10021
10021
|
* ein qualifier
|
|
@@ -10182,14 +10182,14 @@ export interface ProductArticleRef {
|
|
|
10182
10182
|
export interface ProductDiscount {
|
|
10183
10183
|
|
|
10184
10184
|
/**
|
|
10185
|
-
*
|
|
10185
|
+
* Kundengruppe
|
|
10186
10186
|
*/
|
|
10187
|
-
|
|
10187
|
+
customerGroupRef: ApiObjectReference;
|
|
10188
10188
|
|
|
10189
10189
|
/**
|
|
10190
|
-
*
|
|
10190
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10191
10191
|
*/
|
|
10192
|
-
|
|
10192
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10193
10193
|
|
|
10194
10194
|
/**
|
|
10195
10195
|
* Lieferantengruppe
|
|
@@ -10217,14 +10217,14 @@ export interface ProductDiscount {
|
|
|
10217
10217
|
validFrom: ScriptingDate;
|
|
10218
10218
|
|
|
10219
10219
|
/**
|
|
10220
|
-
*
|
|
10220
|
+
* Warengruppe
|
|
10221
10221
|
*/
|
|
10222
|
-
|
|
10222
|
+
productGroupRef: ApiObjectReference;
|
|
10223
10223
|
|
|
10224
10224
|
/**
|
|
10225
|
-
*
|
|
10225
|
+
* Bestimmt die Art des Rabatts
|
|
10226
10226
|
*/
|
|
10227
|
-
|
|
10227
|
+
modifierType: PriceModifierType;
|
|
10228
10228
|
|
|
10229
10229
|
/**
|
|
10230
10230
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10242,14 +10242,14 @@ export interface ProductDiscount {
|
|
|
10242
10242
|
currencyRef: CurrencyReference;
|
|
10243
10243
|
|
|
10244
10244
|
/**
|
|
10245
|
-
*
|
|
10245
|
+
* Wert des Rabatts
|
|
10246
10246
|
*/
|
|
10247
|
-
|
|
10247
|
+
modifierValue: number;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* Preisgruppe
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
priceGroupRef: ApiObjectReference;
|
|
10253
10253
|
|
|
10254
10254
|
/**
|
|
10255
10255
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10396,14 +10396,14 @@ export interface ProductMainGroup {
|
|
|
10396
10396
|
export interface ProductPrice {
|
|
10397
10397
|
|
|
10398
10398
|
/**
|
|
10399
|
-
*
|
|
10399
|
+
* Kundengruppe
|
|
10400
10400
|
*/
|
|
10401
|
-
|
|
10401
|
+
customerGroupRef: ApiObjectReference;
|
|
10402
10402
|
|
|
10403
10403
|
/**
|
|
10404
|
-
*
|
|
10404
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10405
10405
|
*/
|
|
10406
|
-
|
|
10406
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10407
10407
|
|
|
10408
10408
|
/**
|
|
10409
10409
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10626,14 +10626,14 @@ export interface RequestDocument {
|
|
|
10626
10626
|
cashDrawerId: number;
|
|
10627
10627
|
|
|
10628
10628
|
/**
|
|
10629
|
-
*
|
|
10629
|
+
* Leistungsdatum
|
|
10630
10630
|
*/
|
|
10631
|
-
|
|
10631
|
+
performanceDate: ScriptingDate;
|
|
10632
10632
|
|
|
10633
10633
|
/**
|
|
10634
|
-
*
|
|
10634
|
+
* Der Anzahlungsbetrag
|
|
10635
10635
|
*/
|
|
10636
|
-
|
|
10636
|
+
depositPaymentAmount: number;
|
|
10637
10637
|
|
|
10638
10638
|
/**
|
|
10639
10639
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10686,14 +10686,14 @@ export interface RequestDocument {
|
|
|
10686
10686
|
deliveryTermId: number;
|
|
10687
10687
|
|
|
10688
10688
|
/**
|
|
10689
|
-
*
|
|
10689
|
+
* Dokumentzeilen
|
|
10690
10690
|
*/
|
|
10691
|
-
|
|
10691
|
+
lines: Array<RequestDocumentLine>;
|
|
10692
10692
|
|
|
10693
10693
|
/**
|
|
10694
|
-
*
|
|
10694
|
+
* Für interne Zwecke: Währung für das Document
|
|
10695
10695
|
*/
|
|
10696
|
-
|
|
10696
|
+
currencyId: number;
|
|
10697
10697
|
|
|
10698
10698
|
/**
|
|
10699
10699
|
* Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
|
|
@@ -10711,14 +10711,14 @@ export interface RequestDocument {
|
|
|
10711
10711
|
posRegisterId: number;
|
|
10712
10712
|
|
|
10713
10713
|
/**
|
|
10714
|
-
*
|
|
10714
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10715
10715
|
*/
|
|
10716
|
-
|
|
10716
|
+
supplierAccountId: number;
|
|
10717
10717
|
|
|
10718
10718
|
/**
|
|
10719
|
-
*
|
|
10719
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10720
10720
|
*/
|
|
10721
|
-
|
|
10721
|
+
paymentTermId: number;
|
|
10722
10722
|
|
|
10723
10723
|
/**
|
|
10724
10724
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10854,14 +10854,14 @@ export interface RequestDocumentLine {
|
|
|
10854
10854
|
dropShippingPolicy: DropShippingPolicy;
|
|
10855
10855
|
|
|
10856
10856
|
/**
|
|
10857
|
-
*
|
|
10857
|
+
* (optional) Lager-ID
|
|
10858
10858
|
*/
|
|
10859
|
-
|
|
10859
|
+
storageId: number;
|
|
10860
10860
|
|
|
10861
10861
|
/**
|
|
10862
|
-
*
|
|
10862
|
+
* Positionsnummer der Artikel
|
|
10863
10863
|
*/
|
|
10864
|
-
|
|
10864
|
+
positionOfArticleLine: number;
|
|
10865
10865
|
|
|
10866
10866
|
/**
|
|
10867
10867
|
* Vertragsdetails zur Belegposition
|
|
@@ -10949,14 +10949,14 @@ export interface RequestDocumentLine {
|
|
|
10949
10949
|
name: string;
|
|
10950
10950
|
|
|
10951
10951
|
/**
|
|
10952
|
-
*
|
|
10952
|
+
* ID der Quell-Belegposition
|
|
10953
10953
|
*/
|
|
10954
|
-
|
|
10954
|
+
sourceLineId: number;
|
|
10955
10955
|
|
|
10956
10956
|
/**
|
|
10957
|
-
*
|
|
10957
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10958
10958
|
*/
|
|
10959
|
-
|
|
10959
|
+
externalArticleNumber: string;
|
|
10960
10960
|
|
|
10961
10961
|
/**
|
|
10962
10962
|
* Buchungen zu dieser Belegposition
|
|
@@ -10964,14 +10964,14 @@ export interface RequestDocumentLine {
|
|
|
10964
10964
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10965
10965
|
|
|
10966
10966
|
/**
|
|
10967
|
-
*
|
|
10967
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10968
10968
|
*/
|
|
10969
|
-
|
|
10969
|
+
doLabelPrint: boolean;
|
|
10970
10970
|
|
|
10971
10971
|
/**
|
|
10972
|
-
*
|
|
10972
|
+
* (optional) Preis des Artikels dieser Position
|
|
10973
10973
|
*/
|
|
10974
|
-
|
|
10974
|
+
productPrice: number;
|
|
10975
10975
|
}
|
|
10976
10976
|
|
|
10977
10977
|
export interface RequestDocumentLineBooking {
|
|
@@ -11136,14 +11136,14 @@ export interface SalesAgent {
|
|
|
11136
11136
|
note: string;
|
|
11137
11137
|
|
|
11138
11138
|
/**
|
|
11139
|
-
*
|
|
11139
|
+
* reference to the delivery method
|
|
11140
11140
|
*/
|
|
11141
|
-
|
|
11141
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11142
11142
|
|
|
11143
11143
|
/**
|
|
11144
|
-
*
|
|
11144
|
+
* is sales agent taxable
|
|
11145
11145
|
*/
|
|
11146
|
-
|
|
11146
|
+
taxable: boolean;
|
|
11147
11147
|
|
|
11148
11148
|
/**
|
|
11149
11149
|
* Freifelder
|
|
@@ -11759,14 +11759,14 @@ export interface ShelfDocumentType {
|
|
|
11759
11759
|
active: boolean;
|
|
11760
11760
|
|
|
11761
11761
|
/**
|
|
11762
|
-
*
|
|
11762
|
+
* label of type
|
|
11763
11763
|
*/
|
|
11764
|
-
|
|
11764
|
+
label: string;
|
|
11765
11765
|
|
|
11766
11766
|
/**
|
|
11767
|
-
*
|
|
11767
|
+
* access level or reading
|
|
11768
11768
|
*/
|
|
11769
|
-
|
|
11769
|
+
accessLevelRead: number;
|
|
11770
11770
|
|
|
11771
11771
|
/**
|
|
11772
11772
|
* storage rule for revisions
|
|
@@ -11812,14 +11812,14 @@ export interface ShelfFile {
|
|
|
11812
11812
|
subFiles: Array<SubFileInfo>;
|
|
11813
11813
|
|
|
11814
11814
|
/**
|
|
11815
|
-
*
|
|
11815
|
+
* fileSize
|
|
11816
11816
|
*/
|
|
11817
|
-
|
|
11817
|
+
fileSize: number;
|
|
11818
11818
|
|
|
11819
11819
|
/**
|
|
11820
|
-
*
|
|
11820
|
+
* revision number of this file
|
|
11821
11821
|
*/
|
|
11822
|
-
|
|
11822
|
+
revisionNumber: number;
|
|
11823
11823
|
|
|
11824
11824
|
/**
|
|
11825
11825
|
* file-extension of this entry
|
|
@@ -11847,14 +11847,14 @@ export interface ShelfFile {
|
|
|
11847
11847
|
version: number;
|
|
11848
11848
|
|
|
11849
11849
|
/**
|
|
11850
|
-
*
|
|
11850
|
+
* current reference of this file in our storage
|
|
11851
11851
|
*/
|
|
11852
|
-
|
|
11852
|
+
storageHandle: string;
|
|
11853
11853
|
|
|
11854
11854
|
/**
|
|
11855
|
-
*
|
|
11855
|
+
* meta data
|
|
11856
11856
|
*/
|
|
11857
|
-
|
|
11857
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11858
11858
|
|
|
11859
11859
|
/**
|
|
11860
11860
|
* MetaInformations for this Object
|
|
@@ -11901,14 +11901,14 @@ export interface ShelfShare {
|
|
|
11901
11901
|
publishState: ShelfSharePublishState;
|
|
11902
11902
|
|
|
11903
11903
|
/**
|
|
11904
|
-
*
|
|
11904
|
+
* Freifelder
|
|
11905
11905
|
*/
|
|
11906
|
-
|
|
11906
|
+
custom: EavShelfshare;
|
|
11907
11907
|
|
|
11908
11908
|
/**
|
|
11909
|
-
*
|
|
11909
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11910
11910
|
*/
|
|
11911
|
-
|
|
11911
|
+
publicUrlDurationInMinutes: number;
|
|
11912
11912
|
|
|
11913
11913
|
/**
|
|
11914
11914
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12120,14 +12120,14 @@ export interface StockMovementManualApi {
|
|
|
12120
12120
|
export interface StockTransferApi {
|
|
12121
12121
|
|
|
12122
12122
|
/**
|
|
12123
|
-
*
|
|
12123
|
+
* Ziel-Lager
|
|
12124
12124
|
*/
|
|
12125
|
-
|
|
12125
|
+
targetStorageId: number;
|
|
12126
12126
|
|
|
12127
12127
|
/**
|
|
12128
|
-
*
|
|
12128
|
+
* Seriennummer
|
|
12129
12129
|
*/
|
|
12130
|
-
|
|
12130
|
+
serialNumberId: number;
|
|
12131
12131
|
|
|
12132
12132
|
/**
|
|
12133
12133
|
* Bemerkung
|
|
@@ -12342,11 +12342,6 @@ export interface Supplier {
|
|
|
12342
12342
|
*/
|
|
12343
12343
|
info: MetaInfo;
|
|
12344
12344
|
|
|
12345
|
-
/**
|
|
12346
|
-
* Lieferantengruppe
|
|
12347
|
-
*/
|
|
12348
|
-
supplierGroupRef: ApiObjectReference;
|
|
12349
|
-
|
|
12350
12345
|
/**
|
|
12351
12346
|
* reference to the delivery method
|
|
12352
12347
|
*/
|
|
@@ -12357,6 +12352,11 @@ export interface Supplier {
|
|
|
12357
12352
|
*/
|
|
12358
12353
|
taxable: boolean;
|
|
12359
12354
|
|
|
12355
|
+
/**
|
|
12356
|
+
* Lieferantengruppe
|
|
12357
|
+
*/
|
|
12358
|
+
supplierGroupRef: ApiObjectReference;
|
|
12359
|
+
|
|
12360
12360
|
/**
|
|
12361
12361
|
* Mahnen?
|
|
12362
12362
|
*/
|
|
@@ -12884,14 +12884,14 @@ export interface User {
|
|
|
12884
12884
|
version: number;
|
|
12885
12885
|
|
|
12886
12886
|
/**
|
|
12887
|
-
*
|
|
12887
|
+
* is the email verified
|
|
12888
12888
|
*/
|
|
12889
|
-
|
|
12889
|
+
emailVerified: boolean;
|
|
12890
12890
|
|
|
12891
12891
|
/**
|
|
12892
|
-
*
|
|
12892
|
+
* first-name
|
|
12893
12893
|
*/
|
|
12894
|
-
|
|
12894
|
+
firstName: string;
|
|
12895
12895
|
|
|
12896
12896
|
/**
|
|
12897
12897
|
* email-address
|