@vario-software/types 2026.31.2 → 2026.31.3
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/scripting/services.d.ts +39 -39
- package/scripting/types.d.ts +342 -342
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* first contact type for this account
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
accountZoneId: AccountZoneId;
|
|
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
|
+
* Summe Forderungen
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
receivablesSum: number;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Kostenstelle
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* companyLegal for this account
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Country code
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
countryCode: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Street
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
street: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
additionalAddressLine1: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Parcel station
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
parcelStation: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Additional address line2
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
additionalAddressLine2: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* post-code of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankPostCode: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* name of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankName: 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
|
+
* origin type
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
originType: AccountBankdetail$OriginType;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* Is default bank?
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
defaultBank: boolean;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -1015,14 +1015,14 @@ export interface Article {
|
|
|
1015
1015
|
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* is this product purchasable
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
purchasable: boolean;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* Product custom data
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
@@ -1030,14 +1030,14 @@ export interface Article {
|
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
1032
|
/**
|
|
1033
|
-
*
|
|
1033
|
+
* is this product sellable without any quantity at the stock
|
|
1034
1034
|
*/
|
|
1035
|
-
|
|
1035
|
+
sellableWithoutStock: boolean;
|
|
1036
1036
|
|
|
1037
1037
|
/**
|
|
1038
|
-
*
|
|
1038
|
+
* Durchschnittl. EKP (Startwert)
|
|
1039
1039
|
*/
|
|
1040
|
-
|
|
1040
|
+
initialAvgPurchasePrice: number;
|
|
1041
1041
|
|
|
1042
1042
|
/**
|
|
1043
1043
|
* Seriennummern Auszeichnungsart
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Produktion
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
fabrication: boolean;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Soll-Handelsspanne
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
targetTradingMargin: number;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1214,20 +1214,15 @@ export interface Article {
|
|
|
1214
1214
|
*/
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
|
-
/**
|
|
1218
|
-
* Arbeitseinheit in Minuten
|
|
1219
|
-
*/
|
|
1220
|
-
workUnitInMinutes: number;
|
|
1221
|
-
|
|
1222
1217
|
/**
|
|
1223
1218
|
* Country code
|
|
1224
1219
|
*/
|
|
1225
1220
|
countryOfOriginRef: CountryReference;
|
|
1226
1221
|
|
|
1227
1222
|
/**
|
|
1228
|
-
*
|
|
1223
|
+
* Arbeitseinheit in Minuten
|
|
1229
1224
|
*/
|
|
1230
|
-
|
|
1225
|
+
workUnitInMinutes: number;
|
|
1231
1226
|
|
|
1232
1227
|
/**
|
|
1233
1228
|
* description custom data
|
|
@@ -1235,15 +1230,20 @@ export interface Article {
|
|
|
1235
1230
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1236
1231
|
|
|
1237
1232
|
/**
|
|
1238
|
-
*
|
|
1233
|
+
* Frei kommissionierbar
|
|
1239
1234
|
*/
|
|
1240
|
-
|
|
1235
|
+
freelyPickable: boolean;
|
|
1241
1236
|
|
|
1242
1237
|
/**
|
|
1243
1238
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1244
1239
|
*/
|
|
1245
1240
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1246
1241
|
|
|
1242
|
+
/**
|
|
1243
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
|
+
*/
|
|
1245
|
+
taxLiabilityReversed: 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
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
|
+
*/
|
|
1290
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1291
|
+
|
|
1287
1292
|
/**
|
|
1288
1293
|
* Vorgabe Herstellungskosten
|
|
1289
1294
|
*/
|
|
@@ -1294,11 +1299,6 @@ export interface Article {
|
|
|
1294
1299
|
*/
|
|
1295
1300
|
grossSalesPrice: number;
|
|
1296
1301
|
|
|
1297
|
-
/**
|
|
1298
|
-
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1299
|
-
*/
|
|
1300
|
-
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1301
|
-
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -1320,9 +1320,9 @@ export interface Article {
|
|
|
1320
1320
|
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
*
|
|
1323
|
+
* alternative name of this product
|
|
1324
1324
|
*/
|
|
1325
|
-
|
|
1325
|
+
alternativeName: string;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
1328
|
* Kontingentartikel
|
|
@@ -1330,9 +1330,9 @@ export interface Article {
|
|
|
1330
1330
|
contingentArticleRef: ApiObjectReference;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* rabattierbarer Artikel?
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
discountable: boolean;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1370,14 +1370,14 @@ export interface Article {
|
|
|
1370
1370
|
custom: EavArticle;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
|
-
*
|
|
1373
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1374
1374
|
*/
|
|
1375
|
-
|
|
1375
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1376
1376
|
|
|
1377
1377
|
/**
|
|
1378
|
-
*
|
|
1378
|
+
* Art des Haltbarkeitsdatums
|
|
1379
1379
|
*/
|
|
1380
|
-
|
|
1380
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Hersteller
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* Nur manuelle Produktion
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
onlyManualFabrication: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* provisionsberechtiger Artikel?
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
commissionable: 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
|
+
* Art der Preisermittlung
|
|
1617
1617
|
*/
|
|
1618
|
-
|
|
1618
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1619
1619
|
|
|
1620
1620
|
/**
|
|
1621
|
-
*
|
|
1621
|
+
* Abweichende Produktnummer
|
|
1622
1622
|
*/
|
|
1623
|
-
|
|
1623
|
+
deviatingArticleNumber: string;
|
|
1624
1624
|
|
|
1625
1625
|
/**
|
|
1626
1626
|
* Artikelnummer
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
* der
|
|
1738
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
customLowestPriceGross: number;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
*
|
|
1743
|
+
* der Sales Channel
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
salesChannelRef: ApiObjectReference;
|
|
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
|
+
* Aktuelle Menge in Kommissionierung
|
|
1962
|
+
*/
|
|
1963
|
+
quantityInPicking: number;
|
|
1964
|
+
|
|
1960
1965
|
/**
|
|
1961
1966
|
* Meldebestand
|
|
1962
1967
|
*/
|
|
@@ -1968,20 +1973,15 @@ export interface ArticleStorage {
|
|
|
1968
1973
|
orderedQuantity: number;
|
|
1969
1974
|
|
|
1970
1975
|
/**
|
|
1971
|
-
*
|
|
1976
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1972
1977
|
*/
|
|
1973
|
-
|
|
1978
|
+
virtualStockAmount: number;
|
|
1974
1979
|
|
|
1975
1980
|
/**
|
|
1976
1981
|
* Nachschub auf
|
|
1977
1982
|
*/
|
|
1978
1983
|
replenishmentOn: number;
|
|
1979
1984
|
|
|
1980
|
-
/**
|
|
1981
|
-
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1982
|
-
*/
|
|
1983
|
-
virtualStockAmount: 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
|
+
* Sollbestand
|
|
2027
2027
|
*/
|
|
2028
|
-
|
|
2028
|
+
targetStock: number;
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
2031
|
-
*
|
|
2031
|
+
* Vorgabe-Lagerplätze
|
|
2032
2032
|
*/
|
|
2033
|
-
|
|
2033
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
2034
2034
|
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Aktuelle Menge in Produktion
|
|
@@ -2056,14 +2056,14 @@ export interface ArticleSupplier {
|
|
|
2056
2056
|
accountDisplayName: string;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
|
-
*
|
|
2059
|
+
* Lieferanten-Meldebestand
|
|
2060
2060
|
*/
|
|
2061
|
-
|
|
2061
|
+
supplierReportingStock: number;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
|
-
*
|
|
2064
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2065
2065
|
*/
|
|
2066
|
-
|
|
2066
|
+
useSupplierArticleDescription: boolean;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2121,14 +2121,14 @@ export interface ArticleSupplier {
|
|
|
2121
2121
|
info: MetaInfo;
|
|
2122
2122
|
|
|
2123
2123
|
/**
|
|
2124
|
-
*
|
|
2124
|
+
* Verpackungseinheit
|
|
2125
2125
|
*/
|
|
2126
|
-
|
|
2126
|
+
packagingUnit: number;
|
|
2127
2127
|
|
|
2128
2128
|
/**
|
|
2129
|
-
*
|
|
2129
|
+
* Referenced Article name
|
|
2130
2130
|
*/
|
|
2131
|
-
|
|
2131
|
+
articleName: string;
|
|
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 Produktbezeichnung
|
|
2165
2165
|
*/
|
|
2166
|
-
|
|
2166
|
+
supplierArticleName: string;
|
|
2167
2167
|
|
|
2168
2168
|
/**
|
|
2169
|
-
* Abweichende
|
|
2169
|
+
* Abweichende Produktbeschreibung
|
|
2170
2170
|
*/
|
|
2171
|
-
|
|
2171
|
+
supplierArticleDescription: string;
|
|
2172
2172
|
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Standardpreis Netto
|
|
@@ -2214,14 +2214,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2214
|
quantity: number;
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
2217
|
-
*
|
|
2217
|
+
* Buchungen zu der Komponente
|
|
2218
2218
|
*/
|
|
2219
|
-
|
|
2219
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2220
2220
|
|
|
2221
2221
|
/**
|
|
2222
|
-
*
|
|
2222
|
+
* ID der Baugruppen-Quellposition
|
|
2223
2223
|
*/
|
|
2224
|
-
|
|
2224
|
+
sourceLineId: number;
|
|
2225
2225
|
|
|
2226
2226
|
/**
|
|
2227
2227
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* geplante Dauer
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
plannedDurationInSeconds: number;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* Aktivität intern abgerechnet?
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
internalBilled: boolean;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
system: boolean;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* tatsächliche Startzeit
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
startDateTime: ScriptingDateTime;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
assignedUserRef: ApiObjectReference;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
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
|
+
* Projektleiter vom Auftragnehmer
|
|
3206
3206
|
*/
|
|
3207
|
-
|
|
3207
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3208
3208
|
|
|
3209
3209
|
/**
|
|
3210
|
-
*
|
|
3210
|
+
* Phase
|
|
3211
3211
|
*/
|
|
3212
|
-
|
|
3212
|
+
phaseRef: ApiObjectReference;
|
|
3213
3213
|
|
|
3214
3214
|
/**
|
|
3215
3215
|
* Aufgaben-Nummer
|
|
@@ -3519,14 +3519,14 @@ export interface CrmSubType {
|
|
|
3519
3519
|
export interface CrmTask {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* Angebot
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
customerOfferRef: DocumentRef;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Liste von Erinnerungen
|
|
@@ -3903,14 +3903,14 @@ export interface CurrencyReference {
|
|
|
3903
3903
|
export interface Customer {
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
|
-
*
|
|
3906
|
+
* reference to customer group
|
|
3907
3907
|
*/
|
|
3908
|
-
|
|
3908
|
+
customerGroupRef: ApiObjectReference;
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
*
|
|
3911
|
+
* Option für die Stapelverarbeitung
|
|
3912
3912
|
*/
|
|
3913
|
-
|
|
3913
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
3916
3916
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -4207,14 +4207,14 @@ export interface DeliveryMethod {
|
|
|
4207
4207
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4208
|
|
|
4209
4209
|
/**
|
|
4210
|
-
*
|
|
4210
|
+
* translations
|
|
4211
4211
|
*/
|
|
4212
|
-
|
|
4212
|
+
translations: Array<DocumentTypeTerm>;
|
|
4213
4213
|
|
|
4214
4214
|
/**
|
|
4215
|
-
*
|
|
4215
|
+
* Quelle für Paketgewicht
|
|
4216
4216
|
*/
|
|
4217
|
-
|
|
4217
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4218
4218
|
|
|
4219
4219
|
/**
|
|
4220
4220
|
* Versand-Anbieter
|
|
@@ -4305,14 +4305,14 @@ export interface DeliveryTerm {
|
|
|
4305
4305
|
version: number;
|
|
4306
4306
|
|
|
4307
4307
|
/**
|
|
4308
|
-
*
|
|
4308
|
+
* translations
|
|
4309
4309
|
*/
|
|
4310
|
-
|
|
4310
|
+
translations: Array<DocumentTypeTerm>;
|
|
4311
4311
|
|
|
4312
4312
|
/**
|
|
4313
|
-
*
|
|
4313
|
+
* information, how the shipping charges should be calculated
|
|
4314
4314
|
*/
|
|
4315
|
-
|
|
4315
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4316
4316
|
|
|
4317
4317
|
/**
|
|
4318
4318
|
* Lieferarten
|
|
@@ -4448,14 +4448,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
4451
|
-
*
|
|
4451
|
+
* Leitweg-ID
|
|
4452
4452
|
*/
|
|
4453
|
-
|
|
4453
|
+
buyerReference: string;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
|
-
*
|
|
4456
|
+
* Bestellnummer aus Vorbeleg
|
|
4457
4457
|
*/
|
|
4458
|
-
|
|
4458
|
+
referencedOrderNumber: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4582,13 +4582,6 @@ 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
|
-
|
|
4592
4585
|
/**
|
|
4593
4586
|
* Kundennummer beim Lieferanten
|
|
4594
4587
|
*/
|
|
@@ -4599,6 +4592,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4599
4592
|
*/
|
|
4600
4593
|
maxDeliveries: number;
|
|
4601
4594
|
|
|
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
|
*/
|
|
@@ -4634,26 +4634,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4634
4634
|
*/
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
|
-
/**
|
|
4638
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4639
|
-
*/
|
|
4640
|
-
accountNumber: string;
|
|
4641
|
-
|
|
4642
4637
|
/**
|
|
4643
4638
|
* Berechnungsmodus
|
|
4644
4639
|
*/
|
|
4645
4640
|
calculationMode: CalculationMode;
|
|
4646
4641
|
|
|
4647
4642
|
/**
|
|
4648
|
-
*
|
|
4643
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4649
4644
|
*/
|
|
4650
|
-
|
|
4645
|
+
accountNumber: string;
|
|
4651
4646
|
|
|
4652
4647
|
/**
|
|
4653
4648
|
* Referenz auf Zahlungsbedingung
|
|
4654
4649
|
*/
|
|
4655
4650
|
paymentTermRef: PaymentTermRef;
|
|
4656
4651
|
|
|
4652
|
+
/**
|
|
4653
|
+
* Wird vom Workflow verarbeitet?
|
|
4654
|
+
*/
|
|
4655
|
+
processedByWorkflow: boolean;
|
|
4656
|
+
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
4659
4659
|
*/
|
|
@@ -4865,14 +4865,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4865
4865
|
customerNumber: string;
|
|
4866
4866
|
|
|
4867
4867
|
/**
|
|
4868
|
-
*
|
|
4868
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4869
4869
|
*/
|
|
4870
|
-
|
|
4870
|
+
taxIdentificationNumber: string;
|
|
4871
4871
|
|
|
4872
4872
|
/**
|
|
4873
|
-
*
|
|
4873
|
+
* Statusinstanz des Belegs
|
|
4874
4874
|
*/
|
|
4875
|
-
|
|
4875
|
+
documentState: DocumentTypeState;
|
|
4876
4876
|
|
|
4877
4877
|
/**
|
|
4878
4878
|
* Versandkostenpositionen
|
|
@@ -4927,14 +4927,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4927
4927
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
|
-
*
|
|
4930
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4931
4931
|
*/
|
|
4932
|
-
|
|
4932
|
+
reportGroupRef: ApiObjectReference;
|
|
4933
4933
|
|
|
4934
4934
|
/**
|
|
4935
|
-
*
|
|
4935
|
+
* Bestellt durch Ansprechpartner
|
|
4936
4936
|
*/
|
|
4937
|
-
|
|
4937
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4938
4938
|
}
|
|
4939
4939
|
|
|
4940
4940
|
export interface DocumentAdditionalInfo {
|
|
@@ -4945,14 +4945,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4945
4945
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4946
4946
|
|
|
4947
4947
|
/**
|
|
4948
|
-
*
|
|
4948
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4949
4949
|
*/
|
|
4950
|
-
|
|
4950
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4951
4951
|
|
|
4952
4952
|
/**
|
|
4953
|
-
*
|
|
4953
|
+
* Herkunft der Sprache
|
|
4954
4954
|
*/
|
|
4955
|
-
|
|
4955
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4956
4956
|
|
|
4957
4957
|
/**
|
|
4958
4958
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -4965,14 +4965,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4965
4965
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
|
-
*
|
|
4973
|
+
* Herkunft des Berechnungsmodus
|
|
4974
4974
|
*/
|
|
4975
|
-
|
|
4975
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4976
4976
|
|
|
4977
4977
|
/**
|
|
4978
4978
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAddress {
|
|
|
5072
5072
|
postOfficeBox: string;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* country code IsoAlpha3
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
countryCode: string;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* Street
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
street: string;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Unique identifier of the Object
|
|
@@ -5162,14 +5162,14 @@ export interface DocumentAddress {
|
|
|
5162
5162
|
paymentMethodRef: ApiObjectReference;
|
|
5163
5163
|
|
|
5164
5164
|
/**
|
|
5165
|
-
*
|
|
5165
|
+
* Referenz zum Account
|
|
5166
5166
|
*/
|
|
5167
|
-
|
|
5167
|
+
accountRef: ApiObjectReference;
|
|
5168
5168
|
|
|
5169
5169
|
/**
|
|
5170
|
-
*
|
|
5170
|
+
* salutation for this address
|
|
5171
5171
|
*/
|
|
5172
|
-
|
|
5172
|
+
salutation: string;
|
|
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
|
+
* Nächste Fälligkeit
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
nextDueDate: ScriptingDate;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
|
-
*
|
|
5295
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5296
5296
|
*/
|
|
5297
|
-
|
|
5297
|
+
lastProviderCancellationDate: 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
|
+
* Referenz zur Kundenauftragszeile
|
|
5499
5499
|
*/
|
|
5500
|
-
|
|
5500
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Gesamtbruttogewicht
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
totalGrossWeight: number;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
5508
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5550,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5550
5550
|
basePrice: number;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
|
-
*
|
|
5553
|
+
* Serientyp
|
|
5554
5554
|
*/
|
|
5555
|
-
|
|
5555
|
+
serialType: ArticleSerialType;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
|
-
*
|
|
5558
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5559
5559
|
*/
|
|
5560
|
-
|
|
5560
|
+
positionOfArticleLine: number;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
5563
|
* Preiseinheit
|
|
@@ -5665,14 +5665,14 @@ export interface DocumentLine {
|
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
5667
|
/**
|
|
5668
|
-
*
|
|
5668
|
+
* Vertragsinformationen
|
|
5669
5669
|
*/
|
|
5670
|
-
|
|
5670
|
+
contractDetail: DocumentContractDetail;
|
|
5671
5671
|
|
|
5672
5672
|
/**
|
|
5673
|
-
*
|
|
5673
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5674
5674
|
*/
|
|
5675
|
-
|
|
5675
|
+
baseSalesValueNet: number;
|
|
5676
5676
|
|
|
5677
5677
|
/**
|
|
5678
5678
|
* Einheit Nettogewicht
|
|
@@ -5765,14 +5765,14 @@ export interface DocumentLine {
|
|
|
5765
5765
|
commissions: Array<DocumentLineCommission>;
|
|
5766
5766
|
|
|
5767
5767
|
/**
|
|
5768
|
-
*
|
|
5768
|
+
* Positionstyp
|
|
5769
5769
|
*/
|
|
5770
|
-
|
|
5770
|
+
lineType: DocumentLineType;
|
|
5771
5771
|
|
|
5772
5772
|
/**
|
|
5773
|
-
*
|
|
5773
|
+
* Gesamtpreis Position in Basiswährung
|
|
5774
5774
|
*/
|
|
5775
|
-
|
|
5775
|
+
baseTotalLinePrice: number;
|
|
5776
5776
|
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5835,14 +5835,14 @@ export interface DocumentLine {
|
|
|
5835
5835
|
position: number;
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
|
-
*
|
|
5838
|
+
* Buchungen
|
|
5839
5839
|
*/
|
|
5840
|
-
|
|
5840
|
+
bookings: Array<DocumentLineBooking>;
|
|
5841
5841
|
|
|
5842
5842
|
/**
|
|
5843
|
-
*
|
|
5843
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5844
5844
|
*/
|
|
5845
|
-
|
|
5845
|
+
recalcLinePriceViaComponents: boolean;
|
|
5846
5846
|
|
|
5847
5847
|
/**
|
|
5848
5848
|
* unit gross Volume in cubic meters
|
|
@@ -5935,14 +5935,14 @@ export interface DocumentLine {
|
|
|
5935
5935
|
custom: EavDocumentline;
|
|
5936
5936
|
|
|
5937
5937
|
/**
|
|
5938
|
-
*
|
|
5938
|
+
* Artikel
|
|
5939
5939
|
*/
|
|
5940
|
-
|
|
5940
|
+
articleId: number;
|
|
5941
5941
|
|
|
5942
5942
|
/**
|
|
5943
|
-
*
|
|
5943
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5944
5944
|
*/
|
|
5945
|
-
|
|
5945
|
+
settledOpenItemComment: string;
|
|
5946
5946
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Interne Preisänderungsinformationen
|
|
@@ -6124,14 +6124,14 @@ export interface DocumentLineComponent {
|
|
|
6124
6124
|
custom: EavDocumentlinecomponent;
|
|
6125
6125
|
|
|
6126
6126
|
/**
|
|
6127
|
-
*
|
|
6127
|
+
* Referenz auf den Artikel der Komponente
|
|
6128
6128
|
*/
|
|
6129
|
-
|
|
6129
|
+
articleId: number;
|
|
6130
6130
|
|
|
6131
6131
|
/**
|
|
6132
|
-
*
|
|
6132
|
+
* Gelieferte Menge
|
|
6133
6133
|
*/
|
|
6134
|
-
|
|
6134
|
+
quantityCommitted: 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
|
+
* Abweichende Herstellungskosten
|
|
6277
6277
|
*/
|
|
6278
|
-
|
|
6278
|
+
deviatingUnitPrice: number;
|
|
6279
6279
|
|
|
6280
6280
|
/**
|
|
6281
|
-
*
|
|
6281
|
+
* Menge
|
|
6282
6282
|
*/
|
|
6283
|
-
|
|
6283
|
+
quantity: number;
|
|
6284
6284
|
|
|
6285
6285
|
/**
|
|
6286
6286
|
* Beschreibung
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Status der externen Zahlung
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Typ der Einlage/Ausgabe
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
depositExpenseTypeId: number;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6793,14 +6793,14 @@ export interface DocumentPosPayment {
|
|
|
6793
6793
|
version: number;
|
|
6794
6794
|
|
|
6795
6795
|
/**
|
|
6796
|
-
*
|
|
6796
|
+
* Zahlungsart
|
|
6797
6797
|
*/
|
|
6798
|
-
|
|
6798
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6799
6799
|
|
|
6800
6800
|
/**
|
|
6801
|
-
*
|
|
6801
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6802
6802
|
*/
|
|
6803
|
-
|
|
6803
|
+
withdrawalAmount: number;
|
|
6804
6804
|
|
|
6805
6805
|
/**
|
|
6806
6806
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* nächste Belegnummer
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
nextNumber: string;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* Zählerkreis
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetExpiryDate: ScriptingDate;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Die gültige Seriennummer
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetSerialNumber: string;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -8302,14 +8302,14 @@ export interface OpenItem {
|
|
|
8302
8302
|
paymentAmount: number;
|
|
8303
8303
|
|
|
8304
8304
|
/**
|
|
8305
|
-
*
|
|
8305
|
+
* how should a refund be done?
|
|
8306
8306
|
*/
|
|
8307
|
-
|
|
8307
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* Rechnungskorrektur
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
creditNote: ApiObjectReference;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
8315
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8372,14 +8372,14 @@ export interface OpenItem {
|
|
|
8372
8372
|
baseSumDiscount: number;
|
|
8373
8373
|
|
|
8374
8374
|
/**
|
|
8375
|
-
*
|
|
8375
|
+
* Zahlungsvorlage
|
|
8376
8376
|
*/
|
|
8377
|
-
|
|
8377
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
baseSumDunnings: number;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
@@ -8675,14 +8675,14 @@ export interface OpenItemRecord {
|
|
|
8675
8675
|
version: number;
|
|
8676
8676
|
|
|
8677
8677
|
/**
|
|
8678
|
-
*
|
|
8678
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8679
8679
|
*/
|
|
8680
|
-
|
|
8680
|
+
transactionId: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* Buchungsbetrag in Basiswährung
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
baseAmount: number;
|
|
8686
8686
|
|
|
8687
8687
|
/**
|
|
8688
8688
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8842,14 +8842,14 @@ export interface PaymentMethod {
|
|
|
8842
8842
|
dunnable: boolean;
|
|
8843
8843
|
|
|
8844
8844
|
/**
|
|
8845
|
-
*
|
|
8845
|
+
* Debitoren-OP abschließen?
|
|
8846
8846
|
*/
|
|
8847
|
-
|
|
8847
|
+
closeCustomerAccountType: boolean;
|
|
8848
8848
|
|
|
8849
8849
|
/**
|
|
8850
|
-
*
|
|
8850
|
+
* translations
|
|
8851
8851
|
*/
|
|
8852
|
-
|
|
8852
|
+
translations: Array<DocumentTypeTerm>;
|
|
8853
8853
|
|
|
8854
8854
|
/**
|
|
8855
8855
|
* +Tage für Folgelastschrift
|
|
@@ -8947,26 +8947,26 @@ export interface PaymentTerm {
|
|
|
8947
8947
|
*/
|
|
8948
8948
|
paymentDiscount2: number;
|
|
8949
8949
|
|
|
8950
|
-
/**
|
|
8951
|
-
* Percent for Discount 1
|
|
8952
|
-
*/
|
|
8953
|
-
paymentDiscount1: number;
|
|
8954
|
-
|
|
8955
8950
|
/**
|
|
8956
8951
|
* printDescription
|
|
8957
8952
|
*/
|
|
8958
8953
|
printDescription: string;
|
|
8959
8954
|
|
|
8960
8955
|
/**
|
|
8961
|
-
*
|
|
8956
|
+
* Percent for Discount 1
|
|
8962
8957
|
*/
|
|
8963
|
-
|
|
8958
|
+
paymentDiscount1: number;
|
|
8964
8959
|
|
|
8965
8960
|
/**
|
|
8966
8961
|
* for deposit: remaining term
|
|
8967
8962
|
*/
|
|
8968
8963
|
remainingTermRef: ApiObjectReference;
|
|
8969
8964
|
|
|
8965
|
+
/**
|
|
8966
|
+
* Days for Discount 1
|
|
8967
|
+
*/
|
|
8968
|
+
paymentDays1: number;
|
|
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
|
+
* Ziellager für Nachschub
|
|
9252
9252
|
*/
|
|
9253
|
-
|
|
9253
|
+
targetStorageRef: ApiObjectReference;
|
|
9254
9254
|
|
|
9255
9255
|
/**
|
|
9256
|
-
*
|
|
9256
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
9257
9257
|
*/
|
|
9258
|
-
|
|
9258
|
+
usedTemplate: PicklistTemplate;
|
|
9259
9259
|
|
|
9260
9260
|
/**
|
|
9261
9261
|
* Nummer der Pickliste
|
|
@@ -9687,15 +9687,20 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9687
9687
|
*/
|
|
9688
9688
|
maxArticleCountPerOrder: number;
|
|
9689
9689
|
|
|
9690
|
+
/**
|
|
9691
|
+
* Maximaler Auftragswert
|
|
9692
|
+
*/
|
|
9693
|
+
maxOrderValue: number;
|
|
9694
|
+
|
|
9690
9695
|
/**
|
|
9691
9696
|
* Alternative Selektion in VQL
|
|
9692
9697
|
*/
|
|
9693
9698
|
alternativeSelectionInVql: string;
|
|
9694
9699
|
|
|
9695
9700
|
/**
|
|
9696
|
-
*
|
|
9701
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9697
9702
|
*/
|
|
9698
|
-
|
|
9703
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9699
9704
|
|
|
9700
9705
|
/**
|
|
9701
9706
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -9707,11 +9712,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9707
9712
|
*/
|
|
9708
9713
|
onlyFullDeliverableOrderLines: boolean;
|
|
9709
9714
|
|
|
9710
|
-
/**
|
|
9711
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9712
|
-
*/
|
|
9713
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9714
|
-
|
|
9715
9715
|
/**
|
|
9716
9716
|
* Selektion über den Bereich vom Belegdatum
|
|
9717
9717
|
*/
|
|
@@ -9781,14 +9781,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9781
9781
|
printPicklist: boolean;
|
|
9782
9782
|
|
|
9783
9783
|
/**
|
|
9784
|
-
*
|
|
9784
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9785
9785
|
*/
|
|
9786
|
-
|
|
9786
|
+
maxPicklistLineCount: number;
|
|
9787
9787
|
|
|
9788
9788
|
/**
|
|
9789
|
-
*
|
|
9789
|
+
* Die zu verwendende Pickwagengruppe
|
|
9790
9790
|
*/
|
|
9791
|
-
|
|
9791
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9792
9792
|
|
|
9793
9793
|
/**
|
|
9794
9794
|
* Der zu verwendende Pickwagen
|
|
@@ -10182,14 +10182,14 @@ export interface ProductArticleRef {
|
|
|
10182
10182
|
export interface ProductDiscount {
|
|
10183
10183
|
|
|
10184
10184
|
/**
|
|
10185
|
-
*
|
|
10185
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10186
10186
|
*/
|
|
10187
|
-
|
|
10187
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10188
10188
|
|
|
10189
10189
|
/**
|
|
10190
|
-
*
|
|
10190
|
+
* Kundengruppe
|
|
10191
10191
|
*/
|
|
10192
|
-
|
|
10192
|
+
customerGroupRef: ApiObjectReference;
|
|
10193
10193
|
|
|
10194
10194
|
/**
|
|
10195
10195
|
* Lieferantengruppe
|
|
@@ -10242,14 +10242,14 @@ export interface ProductDiscount {
|
|
|
10242
10242
|
currencyRef: CurrencyReference;
|
|
10243
10243
|
|
|
10244
10244
|
/**
|
|
10245
|
-
*
|
|
10245
|
+
* Preisgruppe
|
|
10246
10246
|
*/
|
|
10247
|
-
|
|
10247
|
+
priceGroupRef: ApiObjectReference;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* Wert des Rabatts
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
modifierValue: number;
|
|
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
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10400
10400
|
*/
|
|
10401
|
-
|
|
10401
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10402
10402
|
|
|
10403
10403
|
/**
|
|
10404
|
-
*
|
|
10404
|
+
* Kundengruppe
|
|
10405
10405
|
*/
|
|
10406
|
-
|
|
10406
|
+
customerGroupRef: ApiObjectReference;
|
|
10407
10407
|
|
|
10408
10408
|
/**
|
|
10409
10409
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10501,14 +10501,14 @@ export interface ProductPrice {
|
|
|
10501
10501
|
specialOfferPrice: boolean;
|
|
10502
10502
|
|
|
10503
10503
|
/**
|
|
10504
|
-
*
|
|
10504
|
+
* Gültig bis
|
|
10505
10505
|
*/
|
|
10506
|
-
|
|
10506
|
+
validUntil: ScriptingDate;
|
|
10507
10507
|
|
|
10508
10508
|
/**
|
|
10509
|
-
*
|
|
10509
|
+
* Preisbasis
|
|
10510
10510
|
*/
|
|
10511
|
-
|
|
10511
|
+
priceBase: ArticlePriceBase;
|
|
10512
10512
|
|
|
10513
10513
|
/**
|
|
10514
10514
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
@@ -10611,14 +10611,14 @@ export const enum RegulationSet {
|
|
|
10611
10611
|
export interface RequestDocument {
|
|
10612
10612
|
|
|
10613
10613
|
/**
|
|
10614
|
-
*
|
|
10614
|
+
* Belegdatum
|
|
10615
10615
|
*/
|
|
10616
|
-
|
|
10616
|
+
documentDate: ScriptingDate;
|
|
10617
10617
|
|
|
10618
10618
|
/**
|
|
10619
|
-
*
|
|
10619
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10620
10620
|
*/
|
|
10621
|
-
|
|
10621
|
+
incomingGoodsStorageBinId: number;
|
|
10622
10622
|
|
|
10623
10623
|
/**
|
|
10624
10624
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10626,14 +10626,14 @@ export interface RequestDocument {
|
|
|
10626
10626
|
cashDrawerId: number;
|
|
10627
10627
|
|
|
10628
10628
|
/**
|
|
10629
|
-
*
|
|
10629
|
+
* Der Anzahlungsbetrag
|
|
10630
10630
|
*/
|
|
10631
|
-
|
|
10631
|
+
depositPaymentAmount: number;
|
|
10632
10632
|
|
|
10633
10633
|
/**
|
|
10634
|
-
*
|
|
10634
|
+
* Leistungsdatum
|
|
10635
10635
|
*/
|
|
10636
|
-
|
|
10636
|
+
performanceDate: ScriptingDate;
|
|
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
|
+
* Für interne Zwecke: Währung für das Document
|
|
10690
10690
|
*/
|
|
10691
|
-
|
|
10691
|
+
currencyId: number;
|
|
10692
10692
|
|
|
10693
10693
|
/**
|
|
10694
|
-
*
|
|
10694
|
+
* Dokumentzeilen
|
|
10695
10695
|
*/
|
|
10696
|
-
|
|
10696
|
+
lines: Array<RequestDocumentLine>;
|
|
10697
10697
|
|
|
10698
10698
|
/**
|
|
10699
10699
|
* Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
|
|
@@ -10701,14 +10701,14 @@ export interface RequestDocument {
|
|
|
10701
10701
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10702
10702
|
|
|
10703
10703
|
/**
|
|
10704
|
-
*
|
|
10704
|
+
* ID der Kasse (bei POS)
|
|
10705
10705
|
*/
|
|
10706
|
-
|
|
10706
|
+
posRegisterId: number;
|
|
10707
10707
|
|
|
10708
10708
|
/**
|
|
10709
|
-
*
|
|
10709
|
+
* Die Vertragsdetails
|
|
10710
10710
|
*/
|
|
10711
|
-
|
|
10711
|
+
contractDetail: DocumentContractDetail;
|
|
10712
10712
|
|
|
10713
10713
|
/**
|
|
10714
10714
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10834,14 +10834,14 @@ export interface RequestDocumentLine {
|
|
|
10834
10834
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10835
10835
|
|
|
10836
10836
|
/**
|
|
10837
|
-
*
|
|
10837
|
+
* Typ dieser Position
|
|
10838
10838
|
*/
|
|
10839
|
-
|
|
10839
|
+
lineType: DocumentLineType;
|
|
10840
10840
|
|
|
10841
10841
|
/**
|
|
10842
|
-
*
|
|
10842
|
+
* FiBu-Angaben
|
|
10843
10843
|
*/
|
|
10844
|
-
|
|
10844
|
+
financeBooking: DocumentFinanceBooking;
|
|
10845
10845
|
|
|
10846
10846
|
/**
|
|
10847
10847
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10899,14 +10899,14 @@ export interface RequestDocumentLine {
|
|
|
10899
10899
|
custom: EavDocumentline;
|
|
10900
10900
|
|
|
10901
10901
|
/**
|
|
10902
|
-
*
|
|
10902
|
+
* (optional) ID des Artikels dieser Position
|
|
10903
10903
|
*/
|
|
10904
|
-
|
|
10904
|
+
articleId: number;
|
|
10905
10905
|
|
|
10906
10906
|
/**
|
|
10907
|
-
*
|
|
10907
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10908
10908
|
*/
|
|
10909
|
-
|
|
10909
|
+
settledOpenItemComment: string;
|
|
10910
10910
|
|
|
10911
10911
|
/**
|
|
10912
10912
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10949,9 +10949,9 @@ export interface RequestDocumentLine {
|
|
|
10949
10949
|
name: string;
|
|
10950
10950
|
|
|
10951
10951
|
/**
|
|
10952
|
-
*
|
|
10952
|
+
* Buchungen zu dieser Belegposition
|
|
10953
10953
|
*/
|
|
10954
|
-
|
|
10954
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10955
10955
|
|
|
10956
10956
|
/**
|
|
10957
10957
|
* Für interne Zwecke: Externe Artikelnummer
|
|
@@ -10959,19 +10959,19 @@ export interface RequestDocumentLine {
|
|
|
10959
10959
|
externalArticleNumber: string;
|
|
10960
10960
|
|
|
10961
10961
|
/**
|
|
10962
|
-
*
|
|
10962
|
+
* ID der Quell-Belegposition
|
|
10963
10963
|
*/
|
|
10964
|
-
|
|
10964
|
+
sourceLineId: number;
|
|
10965
10965
|
|
|
10966
10966
|
/**
|
|
10967
|
-
*
|
|
10967
|
+
* (optional) Preis des Artikels dieser Position
|
|
10968
10968
|
*/
|
|
10969
|
-
|
|
10969
|
+
productPrice: number;
|
|
10970
10970
|
|
|
10971
10971
|
/**
|
|
10972
|
-
*
|
|
10972
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10973
10973
|
*/
|
|
10974
|
-
|
|
10974
|
+
doLabelPrint: boolean;
|
|
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
|
+
* is sales agent taxable
|
|
11140
11140
|
*/
|
|
11141
|
-
|
|
11141
|
+
taxable: boolean;
|
|
11142
11142
|
|
|
11143
11143
|
/**
|
|
11144
|
-
*
|
|
11144
|
+
* reference to the delivery method
|
|
11145
11145
|
*/
|
|
11146
|
-
|
|
11146
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11147
11147
|
|
|
11148
11148
|
/**
|
|
11149
11149
|
* Freifelder
|
|
@@ -11392,14 +11392,14 @@ export interface ScenarioDimensionValue {
|
|
|
11392
11392
|
export interface ScenarioFactDef {
|
|
11393
11393
|
|
|
11394
11394
|
/**
|
|
11395
|
-
* Attribut
|
|
11395
|
+
* Attribut Typ
|
|
11396
11396
|
*/
|
|
11397
|
-
|
|
11397
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11398
11398
|
|
|
11399
11399
|
/**
|
|
11400
|
-
* Attribut
|
|
11400
|
+
* Attribut Name
|
|
11401
11401
|
*/
|
|
11402
|
-
|
|
11402
|
+
factAttribute: string;
|
|
11403
11403
|
|
|
11404
11404
|
/**
|
|
11405
11405
|
* Unique identifier of the Object
|
|
@@ -11620,14 +11620,14 @@ export interface ShelfDocument {
|
|
|
11620
11620
|
tags: Array<TagDto>;
|
|
11621
11621
|
|
|
11622
11622
|
/**
|
|
11623
|
-
*
|
|
11623
|
+
* share informations
|
|
11624
11624
|
*/
|
|
11625
|
-
|
|
11625
|
+
shares: Array<ShelfShare>;
|
|
11626
11626
|
|
|
11627
11627
|
/**
|
|
11628
|
-
*
|
|
11628
|
+
* Mehrsprachige Bezeichnungen
|
|
11629
11629
|
*/
|
|
11630
|
-
|
|
11630
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11631
11631
|
|
|
11632
11632
|
/**
|
|
11633
11633
|
* Automatische Löschung ab
|
|
@@ -11759,14 +11759,14 @@ export interface ShelfDocumentType {
|
|
|
11759
11759
|
active: boolean;
|
|
11760
11760
|
|
|
11761
11761
|
/**
|
|
11762
|
-
*
|
|
11762
|
+
* access level or reading
|
|
11763
11763
|
*/
|
|
11764
|
-
|
|
11764
|
+
accessLevelRead: number;
|
|
11765
11765
|
|
|
11766
11766
|
/**
|
|
11767
|
-
*
|
|
11767
|
+
* label of type
|
|
11768
11768
|
*/
|
|
11769
|
-
|
|
11769
|
+
label: string;
|
|
11770
11770
|
|
|
11771
11771
|
/**
|
|
11772
11772
|
* storage rule for revisions
|
|
@@ -11847,14 +11847,14 @@ export interface ShelfFile {
|
|
|
11847
11847
|
version: number;
|
|
11848
11848
|
|
|
11849
11849
|
/**
|
|
11850
|
-
*
|
|
11850
|
+
* meta data
|
|
11851
11851
|
*/
|
|
11852
|
-
|
|
11852
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11853
11853
|
|
|
11854
11854
|
/**
|
|
11855
|
-
*
|
|
11855
|
+
* current reference of this file in our storage
|
|
11856
11856
|
*/
|
|
11857
|
-
|
|
11857
|
+
storageHandle: string;
|
|
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
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11905
11905
|
*/
|
|
11906
|
-
|
|
11906
|
+
publicUrlDurationInMinutes: number;
|
|
11907
11907
|
|
|
11908
11908
|
/**
|
|
11909
|
-
*
|
|
11909
|
+
* Freifelder
|
|
11910
11910
|
*/
|
|
11911
|
-
|
|
11911
|
+
custom: EavShelfshare;
|
|
11912
11912
|
|
|
11913
11913
|
/**
|
|
11914
11914
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12342,6 +12342,11 @@ export interface Supplier {
|
|
|
12342
12342
|
*/
|
|
12343
12343
|
info: MetaInfo;
|
|
12344
12344
|
|
|
12345
|
+
/**
|
|
12346
|
+
* Lieferantengruppe
|
|
12347
|
+
*/
|
|
12348
|
+
supplierGroupRef: ApiObjectReference;
|
|
12349
|
+
|
|
12345
12350
|
/**
|
|
12346
12351
|
* reference to the delivery method
|
|
12347
12352
|
*/
|
|
@@ -12352,11 +12357,6 @@ export interface Supplier {
|
|
|
12352
12357
|
*/
|
|
12353
12358
|
taxable: boolean;
|
|
12354
12359
|
|
|
12355
|
-
/**
|
|
12356
|
-
* Lieferantengruppe
|
|
12357
|
-
*/
|
|
12358
|
-
supplierGroupRef: ApiObjectReference;
|
|
12359
|
-
|
|
12360
12360
|
/**
|
|
12361
12361
|
* Mahnen?
|
|
12362
12362
|
*/
|
|
@@ -12408,14 +12408,14 @@ export interface Supplier {
|
|
|
12408
12408
|
performanceCountryCode: string;
|
|
12409
12409
|
|
|
12410
12410
|
/**
|
|
12411
|
-
*
|
|
12411
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12412
12412
|
*/
|
|
12413
|
-
|
|
12413
|
+
defaultDeliveryTime: number;
|
|
12414
12414
|
|
|
12415
12415
|
/**
|
|
12416
|
-
*
|
|
12416
|
+
* reference to the payment method
|
|
12417
12417
|
*/
|
|
12418
|
-
|
|
12418
|
+
paymentMethodRef: ApiObjectReference;
|
|
12419
12419
|
|
|
12420
12420
|
/**
|
|
12421
12421
|
* Bestellsperre
|