@vario-software/types 2026.31.0 → 2026.31.1
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 +37 -37
- package/scripting/types.d.ts +316 -316
package/scripting/types.d.ts
CHANGED
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* Leitweg-ID
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
buyerReference: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* GLN/ILN as location identifier for this address
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
globalLocationNumber: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* abweichende Zahlungsart
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Parcel station customer number
|
|
416
416
|
*/
|
|
417
|
-
|
|
417
|
+
parcelStationCustomerNumber: string;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Default contacts
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
425
|
* Name3
|
|
@@ -1029,6 +1029,11 @@ export interface Article {
|
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* is this product sellable without any quantity at the stock
|
|
1034
|
+
*/
|
|
1035
|
+
sellableWithoutStock: boolean;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* Seriennummern Auszeichnungsart
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
initialAvgPurchasePrice: number;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* is this product sellable without any quantity at the stock
|
|
1044
|
-
*/
|
|
1045
|
-
sellableWithoutStock: boolean;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1070,14 +1070,14 @@ export interface Article {
|
|
|
1070
1070
|
warrantyInMonths: number;
|
|
1071
1071
|
|
|
1072
1072
|
/**
|
|
1073
|
-
*
|
|
1073
|
+
* weight and size w.o. packaging
|
|
1074
1074
|
*/
|
|
1075
|
-
|
|
1075
|
+
netMetric: Article$Metric;
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
|
-
*
|
|
1078
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
1083
|
* unique product number
|
|
@@ -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
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* weight and size inc. packaging
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
grossMetric: Article$Metric;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* Verkaufseinheit
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
salesUnit: number;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Country code
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
countryOfOriginRef: CountryReference;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Arbeitseinheit in Minuten
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
workUnitInMinutes: number;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1309,15 +1309,20 @@ export interface Article {
|
|
|
1309
1309
|
*/
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
|
+
/**
|
|
1313
|
+
* Versandlabeldruck
|
|
1314
|
+
*/
|
|
1315
|
+
shippingLabelPrinting: boolean;
|
|
1316
|
+
|
|
1312
1317
|
/**
|
|
1313
1318
|
* reference to Product
|
|
1314
1319
|
*/
|
|
1315
1320
|
productRef: ApiObjectReference;
|
|
1316
1321
|
|
|
1317
1322
|
/**
|
|
1318
|
-
*
|
|
1323
|
+
* Kontingentartikel
|
|
1319
1324
|
*/
|
|
1320
|
-
|
|
1325
|
+
contingentArticleRef: ApiObjectReference;
|
|
1321
1326
|
|
|
1322
1327
|
/**
|
|
1323
1328
|
* rabattierbarer Artikel?
|
|
@@ -1329,11 +1334,6 @@ export interface Article {
|
|
|
1329
1334
|
*/
|
|
1330
1335
|
alternativeName: string;
|
|
1331
1336
|
|
|
1332
|
-
/**
|
|
1333
|
-
* Kontingentartikel
|
|
1334
|
-
*/
|
|
1335
|
-
contingentArticleRef: ApiObjectReference;
|
|
1336
|
-
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
1339
1339
|
*/
|
|
@@ -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
|
|
@@ -1443,14 +1443,14 @@ export interface Article$Metric {
|
|
|
1443
1443
|
sizeX: number;
|
|
1444
1444
|
|
|
1445
1445
|
/**
|
|
1446
|
-
*
|
|
1446
|
+
* size unit
|
|
1447
1447
|
*/
|
|
1448
|
-
|
|
1448
|
+
sizeUnit: UnitTypeReference;
|
|
1449
1449
|
|
|
1450
1450
|
/**
|
|
1451
|
-
*
|
|
1451
|
+
* weight
|
|
1452
1452
|
*/
|
|
1453
|
-
|
|
1453
|
+
weight: number;
|
|
1454
1454
|
|
|
1455
1455
|
/**
|
|
1456
1456
|
* size
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* size
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
sizeZ: number;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* weight unit
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
weightUnit: UnitTypeReference;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1553,14 +1553,14 @@ export interface ArticleCustomer {
|
|
|
1553
1553
|
articleName: string;
|
|
1554
1554
|
|
|
1555
1555
|
/**
|
|
1556
|
-
*
|
|
1556
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1557
1557
|
*/
|
|
1558
|
-
|
|
1558
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1559
1559
|
|
|
1560
1560
|
/**
|
|
1561
|
-
*
|
|
1561
|
+
* Etikettdruck-Einstellungen
|
|
1562
1562
|
*/
|
|
1563
|
-
|
|
1563
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1564
1564
|
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Kunden-Preise
|
|
@@ -1568,14 +1568,14 @@ export interface ArticleCustomer {
|
|
|
1568
1568
|
productPrices: Array<ProductPrice>;
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
|
-
*
|
|
1571
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1572
1572
|
*/
|
|
1573
|
-
|
|
1573
|
+
useDeviatingArticleDescription: boolean;
|
|
1574
1574
|
|
|
1575
1575
|
/**
|
|
1576
|
-
*
|
|
1576
|
+
* Referenced Article
|
|
1577
1577
|
*/
|
|
1578
|
-
|
|
1578
|
+
articleId: number;
|
|
1579
1579
|
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Aktiv?
|
|
@@ -1958,9 +1958,9 @@ export interface ArticleStorage {
|
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
|
-
*
|
|
1961
|
+
* Bestellte Menge
|
|
1962
1962
|
*/
|
|
1963
|
-
|
|
1963
|
+
orderedQuantity: number;
|
|
1964
1964
|
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1968,19 +1968,19 @@ export interface ArticleStorage {
|
|
|
1968
1968
|
quantityInPicking: number;
|
|
1969
1969
|
|
|
1970
1970
|
/**
|
|
1971
|
-
*
|
|
1971
|
+
* Meldebestand
|
|
1972
1972
|
*/
|
|
1973
|
-
|
|
1973
|
+
reorderPoint: number;
|
|
1974
1974
|
|
|
1975
1975
|
/**
|
|
1976
|
-
*
|
|
1976
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1977
1977
|
*/
|
|
1978
|
-
|
|
1978
|
+
virtualStockAmount: number;
|
|
1979
1979
|
|
|
1980
1980
|
/**
|
|
1981
|
-
*
|
|
1981
|
+
* Nachschub auf
|
|
1982
1982
|
*/
|
|
1983
|
-
|
|
1983
|
+
replenishmentOn: number;
|
|
1984
1984
|
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Reservierte Menge
|
|
@@ -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
|
|
@@ -2050,6 +2050,11 @@ export interface ArticleStorage {
|
|
|
2050
2050
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
|
+
/**
|
|
2054
|
+
* Anzeigename des Accounts
|
|
2055
|
+
*/
|
|
2056
|
+
accountDisplayName: string;
|
|
2057
|
+
|
|
2053
2058
|
/**
|
|
2054
2059
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2055
2060
|
*/
|
|
@@ -2060,11 +2065,6 @@ export interface ArticleSupplier {
|
|
|
2060
2065
|
*/
|
|
2061
2066
|
supplierReportingStock: number;
|
|
2062
2067
|
|
|
2063
|
-
/**
|
|
2064
|
-
* Anzeigename des Accounts
|
|
2065
|
-
*/
|
|
2066
|
-
accountDisplayName: string;
|
|
2067
|
-
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2070
2070
|
*/
|
|
@@ -2262,14 +2262,14 @@ export interface Asset {
|
|
|
2262
2262
|
active: boolean;
|
|
2263
2263
|
|
|
2264
2264
|
/**
|
|
2265
|
-
*
|
|
2265
|
+
* Zugehörige Assets
|
|
2266
2266
|
*/
|
|
2267
|
-
|
|
2267
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
2270
|
-
*
|
|
2270
|
+
* Ende Garantie
|
|
2271
2271
|
*/
|
|
2272
|
-
|
|
2272
|
+
warrantyEndDate: ScriptingDate;
|
|
2273
2273
|
|
|
2274
2274
|
/**
|
|
2275
2275
|
* Asset-Bezeichnung
|
|
@@ -2556,14 +2556,14 @@ export interface CountryReference {
|
|
|
2556
2556
|
export interface CreateNewDocumentRequest {
|
|
2557
2557
|
|
|
2558
2558
|
/**
|
|
2559
|
-
*
|
|
2559
|
+
* Belegart
|
|
2560
2560
|
*/
|
|
2561
|
-
|
|
2561
|
+
documentTypeLabel: string;
|
|
2562
2562
|
|
|
2563
2563
|
/**
|
|
2564
|
-
* Belegart
|
|
2564
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2565
2565
|
*/
|
|
2566
|
-
|
|
2566
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
2569
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* Aktivität intern abgerechnet?
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
internalBilled: boolean;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* geplante Dauer
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
plannedDurationInSeconds: number;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-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
|
|
@@ -3227,14 +3227,14 @@ export interface CrmProject {
|
|
|
3227
3227
|
billedTimes: number;
|
|
3228
3228
|
|
|
3229
3229
|
/**
|
|
3230
|
-
*
|
|
3230
|
+
* Einkaufsbelege
|
|
3231
3231
|
*/
|
|
3232
|
-
|
|
3232
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3233
3233
|
|
|
3234
3234
|
/**
|
|
3235
|
-
*
|
|
3235
|
+
* Geplanter Projektzeitraum (von)
|
|
3236
3236
|
*/
|
|
3237
|
-
|
|
3237
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3238
3238
|
|
|
3239
3239
|
/**
|
|
3240
3240
|
* Verkaufsbelege
|
|
@@ -3267,14 +3267,14 @@ export interface CrmProject {
|
|
|
3267
3267
|
info: MetaInfo;
|
|
3268
3268
|
|
|
3269
3269
|
/**
|
|
3270
|
-
*
|
|
3270
|
+
* Projektleiter vom Auftraggeber
|
|
3271
3271
|
*/
|
|
3272
|
-
|
|
3272
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3273
3273
|
|
|
3274
3274
|
/**
|
|
3275
|
-
*
|
|
3275
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3276
3276
|
*/
|
|
3277
|
-
|
|
3277
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3278
3278
|
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Übergeordnete CRM-Objekte
|
|
@@ -3463,14 +3463,14 @@ export interface CrmState {
|
|
|
3463
3463
|
readyToBill: boolean;
|
|
3464
3464
|
|
|
3465
3465
|
/**
|
|
3466
|
-
*
|
|
3466
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3467
3467
|
*/
|
|
3468
|
-
|
|
3468
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3469
3469
|
|
|
3470
3470
|
/**
|
|
3471
|
-
*
|
|
3471
|
+
* Handelt es sich um einen Anfang-Status
|
|
3472
3472
|
*/
|
|
3473
|
-
|
|
3473
|
+
startState: boolean;
|
|
3474
3474
|
|
|
3475
3475
|
/**
|
|
3476
3476
|
* MetaInformations for this Object
|
|
@@ -3519,9 +3519,9 @@ export interface CrmSubType {
|
|
|
3519
3519
|
export interface CrmTask {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
3527
|
* Angebot
|
|
@@ -3529,9 +3529,9 @@ export interface CrmTask {
|
|
|
3529
3529
|
customerOfferRef: DocumentRef;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
|
-
*
|
|
3532
|
+
* Liste von Erinnerungen
|
|
3533
3533
|
*/
|
|
3534
|
-
|
|
3534
|
+
reminders: Array<CrmReminder>;
|
|
3535
3535
|
|
|
3536
3536
|
/**
|
|
3537
3537
|
* Notizen
|
|
@@ -4305,14 +4305,14 @@ export interface DeliveryTerm {
|
|
|
4305
4305
|
version: number;
|
|
4306
4306
|
|
|
4307
4307
|
/**
|
|
4308
|
-
*
|
|
4308
|
+
* information, how the shipping charges should be calculated
|
|
4309
4309
|
*/
|
|
4310
|
-
|
|
4310
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4311
4311
|
|
|
4312
4312
|
/**
|
|
4313
|
-
*
|
|
4313
|
+
* translations
|
|
4314
4314
|
*/
|
|
4315
|
-
|
|
4315
|
+
translations: Array<DocumentTypeTerm>;
|
|
4316
4316
|
|
|
4317
4317
|
/**
|
|
4318
4318
|
* Lieferarten
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* Versandkostenartikel
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* free shipping net value
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
freeShippingNetValue: number;
|
|
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
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Referenz zum Rechnungskonto
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
billingAccountRef: ApiObjectReference;
|
|
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
|
+
* 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
|
|
@@ -4513,14 +4513,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4513
|
accountId: number;
|
|
4514
4514
|
|
|
4515
4515
|
/**
|
|
4516
|
-
* Länderkennzeichen
|
|
4516
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4517
4517
|
*/
|
|
4518
|
-
|
|
4518
|
+
sourceCountryCode: string;
|
|
4519
4519
|
|
|
4520
4520
|
/**
|
|
4521
|
-
* Länderkennzeichen
|
|
4521
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4522
4522
|
*/
|
|
4523
|
-
|
|
4523
|
+
performanceCountryCode: string;
|
|
4524
4524
|
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -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
|
*/
|
|
@@ -4645,14 +4645,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4645
4645
|
calculationMode: CalculationMode;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
|
-
*
|
|
4648
|
+
* Wird vom Workflow verarbeitet?
|
|
4649
4649
|
*/
|
|
4650
|
-
|
|
4650
|
+
processedByWorkflow: boolean;
|
|
4651
4651
|
|
|
4652
4652
|
/**
|
|
4653
|
-
*
|
|
4653
|
+
* Referenz auf Zahlungsbedingung
|
|
4654
4654
|
*/
|
|
4655
|
-
|
|
4655
|
+
paymentTermRef: PaymentTermRef;
|
|
4656
4656
|
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Verarbeitungsoption für Stapel
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Leistungsdatum
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
performanceDate: ScriptingDate;
|
|
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
|
+
* 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
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Status der USt-ID-Prüfung
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Rechnungsadresse
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
billingAddress: DocumentAddress;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Bestellt durch Ansprechpartner
|
|
@@ -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
|
|
@@ -5325,14 +5325,14 @@ export interface DocumentFabricationDetail {
|
|
|
5325
5325
|
targetStorageRef: ApiObjectReference;
|
|
5326
5326
|
|
|
5327
5327
|
/**
|
|
5328
|
-
*
|
|
5328
|
+
* Material-Lager
|
|
5329
5329
|
*/
|
|
5330
|
-
|
|
5330
|
+
componentsStorageRef: ApiObjectReference;
|
|
5331
5331
|
|
|
5332
5332
|
/**
|
|
5333
|
-
*
|
|
5333
|
+
* Notiz
|
|
5334
5334
|
*/
|
|
5335
|
-
|
|
5335
|
+
note: string;
|
|
5336
5336
|
|
|
5337
5337
|
/**
|
|
5338
5338
|
* QS-Lager
|
|
@@ -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
|
|
@@ -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
|
|
@@ -6336,14 +6336,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6336
6336
|
quantityFinished: number;
|
|
6337
6337
|
|
|
6338
6338
|
/**
|
|
6339
|
-
*
|
|
6339
|
+
* Menge defekt
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
quantityDefective: number;
|
|
6342
6342
|
|
|
6343
6343
|
/**
|
|
6344
|
-
*
|
|
6344
|
+
* Produzierte Seriennummern
|
|
6345
6345
|
*/
|
|
6346
|
-
|
|
6346
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6347
6347
|
|
|
6348
6348
|
/**
|
|
6349
6349
|
* Freifeld
|
|
@@ -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)
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
textPosition: TextPosition;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
deleted: boolean;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* Zählerkreis
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* nächste Belegnummer
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
nextNumber: string;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Seriennummer
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
serialNumberId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Ziel-Lager
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
targetStorageId: 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
|
+
* 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
|
|
@@ -7804,14 +7804,14 @@ export const enum FabricationOfComponents {
|
|
|
7804
7804
|
export interface FabricationProduceRequest {
|
|
7805
7805
|
|
|
7806
7806
|
/**
|
|
7807
|
-
*
|
|
7807
|
+
* Material automatisch bestätigen
|
|
7808
7808
|
*/
|
|
7809
|
-
|
|
7809
|
+
autoCommitComponents: boolean;
|
|
7810
7810
|
|
|
7811
7811
|
/**
|
|
7812
|
-
*
|
|
7812
|
+
* Zu produzierende Menge
|
|
7813
7813
|
*/
|
|
7814
|
-
|
|
7814
|
+
quantity: number;
|
|
7815
7815
|
|
|
7816
7816
|
/**
|
|
7817
7817
|
* Für die Produktion zu verwendendes Material
|
|
@@ -7865,14 +7865,14 @@ export interface FabricationRevertRequest {
|
|
|
7865
7865
|
quantity: number;
|
|
7866
7866
|
|
|
7867
7867
|
/**
|
|
7868
|
-
*
|
|
7868
|
+
* Material automatisch stornieren
|
|
7869
7869
|
*/
|
|
7870
|
-
|
|
7870
|
+
autoRevertComponents: boolean;
|
|
7871
7871
|
|
|
7872
7872
|
/**
|
|
7873
|
-
*
|
|
7873
|
+
* ID der zu stornierenden Position
|
|
7874
7874
|
*/
|
|
7875
|
-
|
|
7875
|
+
documentLineId: number;
|
|
7876
7876
|
|
|
7877
7877
|
/**
|
|
7878
7878
|
* Zu stornierende Seriennummern
|
|
@@ -8216,26 +8216,26 @@ export interface OpenItem {
|
|
|
8216
8216
|
*/
|
|
8217
8217
|
paymentDueDate: ScriptingDate;
|
|
8218
8218
|
|
|
8219
|
-
/**
|
|
8220
|
-
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8221
|
-
*/
|
|
8222
|
-
performanceCountryCode: string;
|
|
8223
|
-
|
|
8224
8219
|
/**
|
|
8225
8220
|
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8226
8221
|
*/
|
|
8227
8222
|
sourceCountryCode: string;
|
|
8228
8223
|
|
|
8229
8224
|
/**
|
|
8230
|
-
*
|
|
8225
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8231
8226
|
*/
|
|
8232
|
-
|
|
8227
|
+
performanceCountryCode: string;
|
|
8233
8228
|
|
|
8234
8229
|
/**
|
|
8235
8230
|
* agreed Deposit payment date
|
|
8236
8231
|
*/
|
|
8237
8232
|
depositPaymentDate: ScriptingDate;
|
|
8238
8233
|
|
|
8234
|
+
/**
|
|
8235
|
+
* Valutadatum schreibgeschützt
|
|
8236
|
+
*/
|
|
8237
|
+
valueDateReadOnly: boolean;
|
|
8238
|
+
|
|
8239
8239
|
/**
|
|
8240
8240
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8241
8241
|
*/
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* The full amount of the payment
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
fullPaymentAmount: number;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* Zahlungsplan
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -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
|
|
@@ -8392,14 +8392,14 @@ export interface OpenItem {
|
|
|
8392
8392
|
taxRateRef: ApiObjectReference;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
|
-
*
|
|
8395
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8396
8396
|
*/
|
|
8397
|
-
|
|
8397
|
+
baseCurrencyCode: string;
|
|
8398
8398
|
|
|
8399
8399
|
/**
|
|
8400
|
-
*
|
|
8400
|
+
* Anzahlungsrechnung
|
|
8401
8401
|
*/
|
|
8402
|
-
|
|
8402
|
+
depositInvoice: ApiObjectReference;
|
|
8403
8403
|
|
|
8404
8404
|
/**
|
|
8405
8405
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8675,14 +8675,14 @@ export interface OpenItemRecord {
|
|
|
8675
8675
|
version: number;
|
|
8676
8676
|
|
|
8677
8677
|
/**
|
|
8678
|
-
*
|
|
8678
|
+
* Buchungsbetrag in Basiswährung
|
|
8679
8679
|
*/
|
|
8680
|
-
|
|
8680
|
+
baseAmount: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
transactionId: 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
|
|
@@ -9366,14 +9366,14 @@ export interface PicklistLine {
|
|
|
9366
9366
|
articleNumber: string;
|
|
9367
9367
|
|
|
9368
9368
|
/**
|
|
9369
|
-
*
|
|
9369
|
+
* Art der Position
|
|
9370
9370
|
*/
|
|
9371
|
-
|
|
9371
|
+
lineType: PicklistLineType;
|
|
9372
9372
|
|
|
9373
9373
|
/**
|
|
9374
|
-
*
|
|
9374
|
+
* Lagernummer
|
|
9375
9375
|
*/
|
|
9376
|
-
|
|
9376
|
+
storageNumber: string;
|
|
9377
9377
|
|
|
9378
9378
|
/**
|
|
9379
9379
|
* ID der Ziel-Dokumentposition
|
|
@@ -9698,14 +9698,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9698
9698
|
alternativeSelectionInVql: string;
|
|
9699
9699
|
|
|
9700
9700
|
/**
|
|
9701
|
-
*
|
|
9701
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9702
9702
|
*/
|
|
9703
|
-
|
|
9703
|
+
maxOrderCount: number;
|
|
9704
9704
|
|
|
9705
9705
|
/**
|
|
9706
|
-
*
|
|
9706
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9707
9707
|
*/
|
|
9708
|
-
|
|
9708
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9709
9709
|
|
|
9710
9710
|
/**
|
|
9711
9711
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9780,26 +9780,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9780
9780
|
*/
|
|
9781
9781
|
printPicklist: boolean;
|
|
9782
9782
|
|
|
9783
|
-
/**
|
|
9784
|
-
* Die zu verwendende Pickwagengruppe
|
|
9785
|
-
*/
|
|
9786
|
-
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9787
|
-
|
|
9788
9783
|
/**
|
|
9789
9784
|
* Maximale Anzahl an Positionen einer Pickliste
|
|
9790
9785
|
*/
|
|
9791
9786
|
maxPicklistLineCount: number;
|
|
9792
9787
|
|
|
9793
9788
|
/**
|
|
9794
|
-
*
|
|
9789
|
+
* Die zu verwendende Pickwagengruppe
|
|
9795
9790
|
*/
|
|
9796
|
-
|
|
9791
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9797
9792
|
|
|
9798
9793
|
/**
|
|
9799
9794
|
* Der zu verwendende Pickwagen
|
|
9800
9795
|
*/
|
|
9801
9796
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9802
9797
|
|
|
9798
|
+
/**
|
|
9799
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9800
|
+
*/
|
|
9801
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9802
|
+
|
|
9803
9803
|
/**
|
|
9804
9804
|
* Lagerplätze vorgeben
|
|
9805
9805
|
*/
|
|
@@ -9909,14 +9909,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9909
9909
|
printLabelOnCompleteOrder: boolean;
|
|
9910
9910
|
|
|
9911
9911
|
/**
|
|
9912
|
-
*
|
|
9912
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9913
9913
|
*/
|
|
9914
|
-
|
|
9914
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9915
9915
|
|
|
9916
9916
|
/**
|
|
9917
|
-
*
|
|
9917
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9918
9918
|
*/
|
|
9919
|
-
|
|
9919
|
+
printLabelAfterPicking: 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 Account-IDs
|
|
10012
10012
|
*/
|
|
10013
|
-
|
|
10013
|
+
accountIds: Array<number>;
|
|
10014
10014
|
|
|
10015
10015
|
/**
|
|
10016
|
-
* Liste von
|
|
10016
|
+
* Liste von Artikel-IDs
|
|
10017
10017
|
*/
|
|
10018
|
-
|
|
10018
|
+
articleIds: 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
|
+
* 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
|
|
@@ -10700,26 +10700,26 @@ export interface RequestDocument {
|
|
|
10700
10700
|
*/
|
|
10701
10701
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10702
10702
|
|
|
10703
|
-
/**
|
|
10704
|
-
* ID der Kasse (bei POS)
|
|
10705
|
-
*/
|
|
10706
|
-
posRegisterId: number;
|
|
10707
|
-
|
|
10708
10703
|
/**
|
|
10709
10704
|
* Die Vertragsdetails
|
|
10710
10705
|
*/
|
|
10711
10706
|
contractDetail: DocumentContractDetail;
|
|
10712
10707
|
|
|
10713
10708
|
/**
|
|
10714
|
-
*
|
|
10709
|
+
* ID der Kasse (bei POS)
|
|
10715
10710
|
*/
|
|
10716
|
-
|
|
10711
|
+
posRegisterId: number;
|
|
10717
10712
|
|
|
10718
10713
|
/**
|
|
10719
10714
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10720
10715
|
*/
|
|
10721
10716
|
paymentTermId: number;
|
|
10722
10717
|
|
|
10718
|
+
/**
|
|
10719
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10720
|
+
*/
|
|
10721
|
+
supplierAccountId: number;
|
|
10722
|
+
|
|
10723
10723
|
/**
|
|
10724
10724
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10725
10725
|
*/
|
|
@@ -10949,14 +10949,14 @@ export interface RequestDocumentLine {
|
|
|
10949
10949
|
name: string;
|
|
10950
10950
|
|
|
10951
10951
|
/**
|
|
10952
|
-
*
|
|
10952
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10953
10953
|
*/
|
|
10954
|
-
|
|
10954
|
+
externalArticleNumber: string;
|
|
10955
10955
|
|
|
10956
10956
|
/**
|
|
10957
|
-
*
|
|
10957
|
+
* ID der Quell-Belegposition
|
|
10958
10958
|
*/
|
|
10959
|
-
|
|
10959
|
+
sourceLineId: number;
|
|
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
|
+
* (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 {
|
|
@@ -11498,14 +11498,14 @@ export interface SequencerConfiguration {
|
|
|
11498
11498
|
key: string;
|
|
11499
11499
|
|
|
11500
11500
|
/**
|
|
11501
|
-
*
|
|
11501
|
+
* Contains details about the sequencer configuration
|
|
11502
11502
|
*/
|
|
11503
|
-
|
|
11503
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11504
11504
|
|
|
11505
11505
|
/**
|
|
11506
|
-
*
|
|
11506
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11507
11507
|
*/
|
|
11508
|
-
|
|
11508
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11509
11509
|
|
|
11510
11510
|
/**
|
|
11511
11511
|
* MetaInformations for this Object
|
|
@@ -11812,14 +11812,14 @@ export interface ShelfFile {
|
|
|
11812
11812
|
subFiles: Array<SubFileInfo>;
|
|
11813
11813
|
|
|
11814
11814
|
/**
|
|
11815
|
-
*
|
|
11815
|
+
* revision number of this file
|
|
11816
11816
|
*/
|
|
11817
|
-
|
|
11817
|
+
revisionNumber: number;
|
|
11818
11818
|
|
|
11819
11819
|
/**
|
|
11820
|
-
*
|
|
11820
|
+
* fileSize
|
|
11821
11821
|
*/
|
|
11822
|
-
|
|
11822
|
+
fileSize: 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
|
+
* 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
|
|
@@ -12120,14 +12120,14 @@ export interface StockMovementManualApi {
|
|
|
12120
12120
|
export interface StockTransferApi {
|
|
12121
12121
|
|
|
12122
12122
|
/**
|
|
12123
|
-
*
|
|
12123
|
+
* Seriennummer
|
|
12124
12124
|
*/
|
|
12125
|
-
|
|
12125
|
+
serialNumberId: number;
|
|
12126
12126
|
|
|
12127
12127
|
/**
|
|
12128
|
-
*
|
|
12128
|
+
* Ziel-Lager
|
|
12129
12129
|
*/
|
|
12130
|
-
|
|
12130
|
+
targetStorageId: number;
|
|
12131
12131
|
|
|
12132
12132
|
/**
|
|
12133
12133
|
* Bemerkung
|
|
@@ -12408,14 +12408,14 @@ export interface Supplier {
|
|
|
12408
12408
|
performanceCountryCode: string;
|
|
12409
12409
|
|
|
12410
12410
|
/**
|
|
12411
|
-
*
|
|
12411
|
+
* reference to the payment method
|
|
12412
12412
|
*/
|
|
12413
|
-
|
|
12413
|
+
paymentMethodRef: ApiObjectReference;
|
|
12414
12414
|
|
|
12415
12415
|
/**
|
|
12416
|
-
*
|
|
12416
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12417
12417
|
*/
|
|
12418
|
-
|
|
12418
|
+
defaultDeliveryTime: number;
|
|
12419
12419
|
|
|
12420
12420
|
/**
|
|
12421
12421
|
* Bestellsperre
|
|
@@ -12441,14 +12441,14 @@ export interface TagDto {
|
|
|
12441
12441
|
editColor: string;
|
|
12442
12442
|
|
|
12443
12443
|
/**
|
|
12444
|
-
* Farbe
|
|
12444
|
+
* Farbe in Such-GUI
|
|
12445
12445
|
*/
|
|
12446
|
-
|
|
12446
|
+
searchColor: string;
|
|
12447
12447
|
|
|
12448
12448
|
/**
|
|
12449
|
-
* Farbe
|
|
12449
|
+
* Farbe für die Anzeige des Tags
|
|
12450
12450
|
*/
|
|
12451
|
-
|
|
12451
|
+
color: string;
|
|
12452
12452
|
|
|
12453
12453
|
/**
|
|
12454
12454
|
* Beschriftung des Tags
|