@vario-software/types 2026.32.4 → 2026.32.5
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 +52 -52
- package/scripting/types.d.ts +303 -303
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
|
titleRef: ApiCreatableReference;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Street
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
street: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Country code
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
countryCode: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
|
|
|
505
505
|
bankCity: string;
|
|
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
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
payablesSum: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Kreditlimit
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
maximalLoan: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1015,20 +1015,25 @@ 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
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Durchschnittl. EKP (Startwert)
|
|
1034
|
+
*/
|
|
1035
|
+
initialAvgPurchasePrice: number;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* is this product sellable without any quantity at the stock
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Durchschnittl. EKP (Startwert)
|
|
1044
|
-
*/
|
|
1045
|
-
initialAvgPurchasePrice: number;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* Verkaufseinheit
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
salesUnit: number;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* weight and size inc. packaging
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
grossMetric: Article$Metric;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1214,26 +1214,26 @@ export interface Article {
|
|
|
1214
1214
|
*/
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
|
-
/**
|
|
1218
|
-
* Country code
|
|
1219
|
-
*/
|
|
1220
|
-
countryOfOriginRef: CountryReference;
|
|
1221
|
-
|
|
1222
1217
|
/**
|
|
1223
1218
|
* Arbeitseinheit in Minuten
|
|
1224
1219
|
*/
|
|
1225
1220
|
workUnitInMinutes: number;
|
|
1226
1221
|
|
|
1227
1222
|
/**
|
|
1228
|
-
*
|
|
1223
|
+
* Country code
|
|
1229
1224
|
*/
|
|
1230
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1231
1226
|
|
|
1232
1227
|
/**
|
|
1233
1228
|
* description custom data
|
|
1234
1229
|
*/
|
|
1235
1230
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1236
1231
|
|
|
1232
|
+
/**
|
|
1233
|
+
* Frei kommissionierbar
|
|
1234
|
+
*/
|
|
1235
|
+
freelyPickable: boolean;
|
|
1236
|
+
|
|
1237
1237
|
/**
|
|
1238
1238
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1239
1239
|
*/
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
defaultFabricationCost: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* gross sales prices
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
grossSalesPrice: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
@@ -1310,14 +1310,14 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* reference to Product
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
productRef: ApiObjectReference;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* Versandlabeldruck
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* rabattierbarer Artikel?
|
|
@@ -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
|
|
@@ -1553,14 +1553,14 @@ export interface ArticleCustomer {
|
|
|
1553
1553
|
articleName: string;
|
|
1554
1554
|
|
|
1555
1555
|
/**
|
|
1556
|
-
*
|
|
1556
|
+
* Etikettdruck-Einstellungen
|
|
1557
1557
|
*/
|
|
1558
|
-
|
|
1558
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1559
1559
|
|
|
1560
1560
|
/**
|
|
1561
|
-
*
|
|
1561
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1562
1562
|
*/
|
|
1563
|
-
|
|
1563
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1564
1564
|
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Kunden-Preise
|
|
@@ -1957,6 +1957,11 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
+
/**
|
|
1961
|
+
* Meldebestand
|
|
1962
|
+
*/
|
|
1963
|
+
reorderPoint: number;
|
|
1964
|
+
|
|
1960
1965
|
/**
|
|
1961
1966
|
* Bestellte Menge
|
|
1962
1967
|
*/
|
|
@@ -1968,20 +1973,15 @@ export interface ArticleStorage {
|
|
|
1968
1973
|
quantityInPicking: number;
|
|
1969
1974
|
|
|
1970
1975
|
/**
|
|
1971
|
-
*
|
|
1976
|
+
* Nachschub auf
|
|
1972
1977
|
*/
|
|
1973
|
-
|
|
1978
|
+
replenishmentOn: number;
|
|
1974
1979
|
|
|
1975
1980
|
/**
|
|
1976
1981
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1977
1982
|
*/
|
|
1978
1983
|
virtualStockAmount: number;
|
|
1979
1984
|
|
|
1980
|
-
/**
|
|
1981
|
-
* Nachschub auf
|
|
1982
|
-
*/
|
|
1983
|
-
replenishmentOn: number;
|
|
1984
|
-
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Reservierte Menge
|
|
1987
1987
|
*/
|
|
@@ -2023,14 +2023,14 @@ export interface ArticleStorage {
|
|
|
2023
2023
|
storageRef: ApiObjectReference;
|
|
2024
2024
|
|
|
2025
2025
|
/**
|
|
2026
|
-
*
|
|
2026
|
+
* Vorgabe-Lagerplätze
|
|
2027
2027
|
*/
|
|
2028
|
-
|
|
2028
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
2031
|
-
*
|
|
2031
|
+
* Sollbestand
|
|
2032
2032
|
*/
|
|
2033
|
-
|
|
2033
|
+
targetStock: number;
|
|
2034
2034
|
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Aktuelle Menge in Produktion
|
|
@@ -2051,9 +2051,9 @@ export interface ArticleStorage {
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
2053
|
/**
|
|
2054
|
-
*
|
|
2054
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2055
2055
|
*/
|
|
2056
|
-
|
|
2056
|
+
useSupplierArticleDescription: boolean;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
2059
|
* Lieferanten-Meldebestand
|
|
@@ -2061,9 +2061,9 @@ export interface ArticleSupplier {
|
|
|
2061
2061
|
supplierReportingStock: number;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
|
-
*
|
|
2064
|
+
* Anzeigename des Accounts
|
|
2065
2065
|
*/
|
|
2066
|
-
|
|
2066
|
+
accountDisplayName: string;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Lieferzeit in (Werk-)Tagen
|
|
@@ -2161,14 +2161,14 @@ export interface ArticleSupplier {
|
|
|
2161
2161
|
dropShippingAllowed: boolean;
|
|
2162
2162
|
|
|
2163
2163
|
/**
|
|
2164
|
-
* Abweichende
|
|
2164
|
+
* Abweichende Produktbeschreibung
|
|
2165
2165
|
*/
|
|
2166
|
-
|
|
2166
|
+
supplierArticleDescription: string;
|
|
2167
2167
|
|
|
2168
2168
|
/**
|
|
2169
|
-
* Abweichende
|
|
2169
|
+
* Abweichende Produktbezeichnung
|
|
2170
2170
|
*/
|
|
2171
|
-
|
|
2171
|
+
supplierArticleName: string;
|
|
2172
2172
|
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Standardpreis Netto
|
|
@@ -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
|
-
* Belegart
|
|
2559
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2560
2560
|
*/
|
|
2561
|
-
|
|
2561
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2562
2562
|
|
|
2563
2563
|
/**
|
|
2564
|
-
*
|
|
2564
|
+
* Belegart
|
|
2565
2565
|
*/
|
|
2566
|
-
|
|
2566
|
+
documentTypeLabel: string;
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
2569
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -2793,14 +2793,14 @@ export interface CrmActivityType {
|
|
|
2793
2793
|
export interface CrmChecklistItem {
|
|
2794
2794
|
|
|
2795
2795
|
/**
|
|
2796
|
-
*
|
|
2796
|
+
* Text des Checklisten-Elements
|
|
2797
2797
|
*/
|
|
2798
|
-
|
|
2798
|
+
memo: string;
|
|
2799
2799
|
|
|
2800
2800
|
/**
|
|
2801
|
-
*
|
|
2801
|
+
* Ist das Element "angehakt"?
|
|
2802
2802
|
*/
|
|
2803
|
-
|
|
2803
|
+
checked: boolean;
|
|
2804
2804
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* Unique identifier of the Object
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* 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)
|
|
@@ -3724,14 +3724,14 @@ export interface CrmTask {
|
|
|
3724
3724
|
parentRefs: Array<CrmObjectRef>;
|
|
3725
3725
|
|
|
3726
3726
|
/**
|
|
3727
|
-
*
|
|
3727
|
+
* Beauftragte Zeit in Sekunden
|
|
3728
3728
|
*/
|
|
3729
|
-
|
|
3729
|
+
effortCommissioned: number;
|
|
3730
3730
|
|
|
3731
3731
|
/**
|
|
3732
|
-
*
|
|
3732
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3733
3733
|
*/
|
|
3734
|
-
|
|
3734
|
+
externalRecordedTimes: number;
|
|
3735
3735
|
|
|
3736
3736
|
/**
|
|
3737
3737
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3903,14 +3903,14 @@ export interface CurrencyReference {
|
|
|
3903
3903
|
export interface Customer {
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
|
-
*
|
|
3906
|
+
* Option für die Stapelverarbeitung
|
|
3907
3907
|
*/
|
|
3908
|
-
|
|
3908
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
*
|
|
3911
|
+
* reference to customer group
|
|
3912
3912
|
*/
|
|
3913
|
-
|
|
3913
|
+
customerGroupRef: ApiObjectReference;
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
3916
3916
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* reference to product price group
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
collectiveInvoiceManually: boolean;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the Object
|
|
@@ -3988,14 +3988,14 @@ export interface Customer {
|
|
|
3988
3988
|
info: MetaInfo;
|
|
3989
3989
|
|
|
3990
3990
|
/**
|
|
3991
|
-
*
|
|
3991
|
+
* tax able or tax free
|
|
3992
3992
|
*/
|
|
3993
|
-
|
|
3993
|
+
taxable: boolean;
|
|
3994
3994
|
|
|
3995
3995
|
/**
|
|
3996
|
-
*
|
|
3996
|
+
* reference to the delivery method
|
|
3997
3997
|
*/
|
|
3998
|
-
|
|
3998
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3999
3999
|
|
|
4000
4000
|
/**
|
|
4001
4001
|
* active true/false
|
|
@@ -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
|
|
@@ -4453,14 +4453,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4453
4453
|
taxable: boolean;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
|
-
*
|
|
4456
|
+
* Leitweg-ID
|
|
4457
4457
|
*/
|
|
4458
|
-
|
|
4458
|
+
buyerReference: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
|
-
*
|
|
4461
|
+
* Bestellnummer aus Vorbeleg
|
|
4462
4462
|
*/
|
|
4463
|
-
|
|
4463
|
+
referencedOrderNumber: string;
|
|
4464
4464
|
|
|
4465
4465
|
/**
|
|
4466
4466
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -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
|
|
@@ -4635,14 +4635,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
4637
|
/**
|
|
4638
|
-
*
|
|
4638
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4639
4639
|
*/
|
|
4640
|
-
|
|
4640
|
+
accountNumber: string;
|
|
4641
4641
|
|
|
4642
4642
|
/**
|
|
4643
|
-
*
|
|
4643
|
+
* Berechnungsmodus
|
|
4644
4644
|
*/
|
|
4645
|
-
|
|
4645
|
+
calculationMode: CalculationMode;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
4648
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4705,14 +4705,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4705
4705
|
en16931Profile: EN16931Profile;
|
|
4706
4706
|
|
|
4707
4707
|
/**
|
|
4708
|
-
*
|
|
4708
|
+
* Ort der steuerlichen Leistungserbringung
|
|
4709
4709
|
*/
|
|
4710
|
-
|
|
4710
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
4711
4711
|
|
|
4712
4712
|
/**
|
|
4713
|
-
*
|
|
4713
|
+
* Wechselkurs
|
|
4714
4714
|
*/
|
|
4715
|
-
|
|
4715
|
+
exchangeRate: number;
|
|
4716
4716
|
|
|
4717
4717
|
/**
|
|
4718
4718
|
* Zusätzliche Infos zu Entscheidungen im Belegkontext
|
|
@@ -4884,11 +4884,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4884
4884
|
*/
|
|
4885
4885
|
posReceiptChangeAmount: number;
|
|
4886
4886
|
|
|
4887
|
-
/**
|
|
4888
|
-
* Referenz auf Lieferbedingung
|
|
4889
|
-
*/
|
|
4890
|
-
deliveryTermRef: ApiObjectReference;
|
|
4891
|
-
|
|
4892
4887
|
/**
|
|
4893
4888
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4894
4889
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4896,6 +4891,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4896
4891
|
*/
|
|
4897
4892
|
posReceiptBalanced: boolean;
|
|
4898
4893
|
|
|
4894
|
+
/**
|
|
4895
|
+
* Referenz auf Lieferbedingung
|
|
4896
|
+
*/
|
|
4897
|
+
deliveryTermRef: ApiObjectReference;
|
|
4898
|
+
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
4901
4901
|
*/
|
|
@@ -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
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAddress {
|
|
|
5072
5072
|
postOfficeBox: string;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* Street
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
street: string;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* country code IsoAlpha3
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
countryCode: string;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Unique identifier of the Object
|
|
@@ -5544,11 +5544,6 @@ export interface DocumentLine {
|
|
|
5544
5544
|
*/
|
|
5545
5545
|
id: number;
|
|
5546
5546
|
|
|
5547
|
-
/**
|
|
5548
|
-
* Serientyp
|
|
5549
|
-
*/
|
|
5550
|
-
serialType: ArticleSerialType;
|
|
5551
|
-
|
|
5552
5547
|
/**
|
|
5553
5548
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5554
5549
|
*/
|
|
@@ -5559,6 +5554,11 @@ export interface DocumentLine {
|
|
|
5559
5554
|
*/
|
|
5560
5555
|
basePrice: number;
|
|
5561
5556
|
|
|
5557
|
+
/**
|
|
5558
|
+
* Serientyp
|
|
5559
|
+
*/
|
|
5560
|
+
serialType: ArticleSerialType;
|
|
5561
|
+
|
|
5562
5562
|
/**
|
|
5563
5563
|
* Steuerschema
|
|
5564
5564
|
*/
|
|
@@ -6124,14 +6124,14 @@ export interface DocumentLineComponent {
|
|
|
6124
6124
|
custom: EavDocumentlinecomponent;
|
|
6125
6125
|
|
|
6126
6126
|
/**
|
|
6127
|
-
*
|
|
6127
|
+
* Gelieferte Menge
|
|
6128
6128
|
*/
|
|
6129
|
-
|
|
6129
|
+
quantityCommitted: number;
|
|
6130
6130
|
|
|
6131
6131
|
/**
|
|
6132
|
-
*
|
|
6132
|
+
* Referenz auf den Artikel der Komponente
|
|
6133
6133
|
*/
|
|
6134
|
-
|
|
6134
|
+
articleId: number;
|
|
6135
6135
|
|
|
6136
6136
|
/**
|
|
6137
6137
|
* Beschreibung des Artikels
|
|
@@ -6608,14 +6608,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6608
6608
|
customerShareOnReduction: number;
|
|
6609
6609
|
|
|
6610
6610
|
/**
|
|
6611
|
-
*
|
|
6611
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6612
6612
|
*/
|
|
6613
|
-
|
|
6613
|
+
waitForReturnBeforeExchange: boolean;
|
|
6614
6614
|
|
|
6615
6615
|
/**
|
|
6616
|
-
*
|
|
6616
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6617
6617
|
*/
|
|
6618
|
-
|
|
6618
|
+
deliveryTermRef: ApiObjectReference;
|
|
6619
6619
|
|
|
6620
6620
|
/**
|
|
6621
6621
|
* Referenz auf Retourengrund
|
|
@@ -7418,26 +7418,26 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7418
7418
|
*/
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
|
-
/**
|
|
7422
|
-
* Die gültige Seriennummer
|
|
7423
|
-
*/
|
|
7424
|
-
targetSerialNumber: string;
|
|
7425
|
-
|
|
7426
7421
|
/**
|
|
7427
7422
|
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7423
|
*/
|
|
7429
7424
|
targetExpiryDate: ScriptingDate;
|
|
7430
7425
|
|
|
7431
7426
|
/**
|
|
7432
|
-
*
|
|
7427
|
+
* Die gültige Seriennummer
|
|
7433
7428
|
*/
|
|
7434
|
-
|
|
7429
|
+
targetSerialNumber: string;
|
|
7435
7430
|
|
|
7436
7431
|
/**
|
|
7437
7432
|
* Quell-Lagerplatz
|
|
7438
7433
|
*/
|
|
7439
7434
|
sourceStorageBinId: number;
|
|
7440
7435
|
|
|
7436
|
+
/**
|
|
7437
|
+
* Menge
|
|
7438
|
+
*/
|
|
7439
|
+
quantity: number;
|
|
7440
|
+
|
|
7441
7441
|
/**
|
|
7442
7442
|
* Quell-Lager
|
|
7443
7443
|
*/
|
|
@@ -8127,14 +8127,14 @@ export interface OpenItem {
|
|
|
8127
8127
|
balance: number;
|
|
8128
8128
|
|
|
8129
8129
|
/**
|
|
8130
|
-
*
|
|
8130
|
+
* Steuersachverhalt Leistungserbringung (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8131
8131
|
*/
|
|
8132
|
-
|
|
8132
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
8133
8133
|
|
|
8134
8134
|
/**
|
|
8135
|
-
*
|
|
8135
|
+
* Kurs der Währung zu Basiswährung
|
|
8136
8136
|
*/
|
|
8137
|
-
|
|
8137
|
+
exchangeRate: number;
|
|
8138
8138
|
|
|
8139
8139
|
/**
|
|
8140
8140
|
* Die Mahnstufe
|
|
@@ -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
|
* Valutadatum schreibgeschützt
|
|
8236
8231
|
*/
|
|
8237
8232
|
valueDateReadOnly: boolean;
|
|
8238
8233
|
|
|
8234
|
+
/**
|
|
8235
|
+
* agreed Deposit payment date
|
|
8236
|
+
*/
|
|
8237
|
+
depositPaymentDate: ScriptingDate;
|
|
8238
|
+
|
|
8239
8239
|
/**
|
|
8240
8240
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8241
8241
|
*/
|
|
@@ -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
|
|
@@ -8615,14 +8615,14 @@ export interface OpenItemRecord {
|
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
8617
|
/**
|
|
8618
|
-
*
|
|
8618
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8619
8619
|
*/
|
|
8620
|
-
|
|
8620
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8621
8621
|
|
|
8622
8622
|
/**
|
|
8623
|
-
*
|
|
8623
|
+
* record discountable amount
|
|
8624
8624
|
*/
|
|
8625
|
-
|
|
8625
|
+
discountableAmount: number;
|
|
8626
8626
|
|
|
8627
8627
|
/**
|
|
8628
8628
|
* record date
|
|
@@ -8965,26 +8965,26 @@ export interface PaymentTerm {
|
|
|
8965
8965
|
*/
|
|
8966
8966
|
paymentDiscount2: number;
|
|
8967
8967
|
|
|
8968
|
-
/**
|
|
8969
|
-
* Percent for Discount 1
|
|
8970
|
-
*/
|
|
8971
|
-
paymentDiscount1: number;
|
|
8972
|
-
|
|
8973
8968
|
/**
|
|
8974
8969
|
* printDescription
|
|
8975
8970
|
*/
|
|
8976
8971
|
printDescription: string;
|
|
8977
8972
|
|
|
8978
8973
|
/**
|
|
8979
|
-
*
|
|
8974
|
+
* Percent for Discount 1
|
|
8980
8975
|
*/
|
|
8981
|
-
|
|
8976
|
+
paymentDiscount1: number;
|
|
8982
8977
|
|
|
8983
8978
|
/**
|
|
8984
8979
|
* for deposit: remaining term
|
|
8985
8980
|
*/
|
|
8986
8981
|
remainingTermRef: ApiObjectReference;
|
|
8987
8982
|
|
|
8983
|
+
/**
|
|
8984
|
+
* Days for Discount 1
|
|
8985
|
+
*/
|
|
8986
|
+
paymentDays1: number;
|
|
8987
|
+
|
|
8988
8988
|
/**
|
|
8989
8989
|
* Days for Discount 2
|
|
8990
8990
|
*/
|
|
@@ -9104,14 +9104,14 @@ export interface PickTrolley {
|
|
|
9104
9104
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9105
9105
|
|
|
9106
9106
|
/**
|
|
9107
|
-
*
|
|
9107
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9108
9108
|
*/
|
|
9109
|
-
|
|
9109
|
+
storageBinRef: StorageBinRef;
|
|
9110
9110
|
|
|
9111
9111
|
/**
|
|
9112
|
-
*
|
|
9112
|
+
* Bearbeiter der Pickliste
|
|
9113
9113
|
*/
|
|
9114
|
-
|
|
9114
|
+
processedByUserRef: ApiObjectReference;
|
|
9115
9115
|
|
|
9116
9116
|
/**
|
|
9117
9117
|
* Beschreibung des Wagens
|
|
@@ -9266,14 +9266,14 @@ export const enum PickingType {
|
|
|
9266
9266
|
export interface Picklist {
|
|
9267
9267
|
|
|
9268
9268
|
/**
|
|
9269
|
-
*
|
|
9269
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
9270
9270
|
*/
|
|
9271
|
-
|
|
9271
|
+
usedTemplate: PicklistTemplate;
|
|
9272
9272
|
|
|
9273
9273
|
/**
|
|
9274
|
-
*
|
|
9274
|
+
* Ziellager für Nachschub
|
|
9275
9275
|
*/
|
|
9276
|
-
|
|
9276
|
+
targetStorageRef: ApiObjectReference;
|
|
9277
9277
|
|
|
9278
9278
|
/**
|
|
9279
9279
|
* Nummer der Pickliste
|
|
@@ -9675,20 +9675,15 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9675
9675
|
*/
|
|
9676
9676
|
maxArticleCountPerOrder: number;
|
|
9677
9677
|
|
|
9678
|
-
/**
|
|
9679
|
-
* Maximaler Auftragswert
|
|
9680
|
-
*/
|
|
9681
|
-
maxOrderValue: number;
|
|
9682
|
-
|
|
9683
9678
|
/**
|
|
9684
9679
|
* Alternative Selektion in VQL
|
|
9685
9680
|
*/
|
|
9686
9681
|
alternativeSelectionInVql: string;
|
|
9687
9682
|
|
|
9688
9683
|
/**
|
|
9689
|
-
*
|
|
9684
|
+
* Maximaler Auftragswert
|
|
9690
9685
|
*/
|
|
9691
|
-
|
|
9686
|
+
maxOrderValue: number;
|
|
9692
9687
|
|
|
9693
9688
|
/**
|
|
9694
9689
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -9700,6 +9695,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9700
9695
|
*/
|
|
9701
9696
|
maxOrderCount: number;
|
|
9702
9697
|
|
|
9698
|
+
/**
|
|
9699
|
+
* Nur vollständig lieferbare Positionen
|
|
9700
|
+
*/
|
|
9701
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9702
|
+
|
|
9703
9703
|
/**
|
|
9704
9704
|
* Selektion über den Bereich vom Belegdatum
|
|
9705
9705
|
*/
|
|
@@ -9769,19 +9769,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9769
9769
|
printPicklist: boolean;
|
|
9770
9770
|
|
|
9771
9771
|
/**
|
|
9772
|
-
*
|
|
9772
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9773
9773
|
*/
|
|
9774
|
-
|
|
9774
|
+
maxPicklistLineCount: number;
|
|
9775
9775
|
|
|
9776
9776
|
/**
|
|
9777
|
-
*
|
|
9777
|
+
* Die zu verwendende Pickwagengruppe
|
|
9778
9778
|
*/
|
|
9779
|
-
|
|
9779
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9780
9780
|
|
|
9781
9781
|
/**
|
|
9782
|
-
*
|
|
9782
|
+
* Lagerplätze vorgeben
|
|
9783
9783
|
*/
|
|
9784
|
-
|
|
9784
|
+
specifyStorageBins: boolean;
|
|
9785
9785
|
|
|
9786
9786
|
/**
|
|
9787
9787
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9789,19 +9789,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9789
9789
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9790
9790
|
|
|
9791
9791
|
/**
|
|
9792
|
-
*
|
|
9792
|
+
* Der zu verwendende Pickwagen
|
|
9793
9793
|
*/
|
|
9794
|
-
|
|
9794
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9795
9795
|
|
|
9796
9796
|
/**
|
|
9797
|
-
*
|
|
9797
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9798
9798
|
*/
|
|
9799
|
-
|
|
9799
|
+
sortByRoutePosition: boolean;
|
|
9800
9800
|
|
|
9801
9801
|
/**
|
|
9802
|
-
*
|
|
9802
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9803
9803
|
*/
|
|
9804
|
-
|
|
9804
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9805
9805
|
|
|
9806
9806
|
/**
|
|
9807
9807
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -9861,6 +9861,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9861
9861
|
*/
|
|
9862
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9863
|
|
|
9864
|
+
/**
|
|
9865
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9866
|
+
*/
|
|
9867
|
+
allowPickingOfServiceArticles: boolean;
|
|
9868
|
+
|
|
9864
9869
|
/**
|
|
9865
9870
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9866
9871
|
*/
|
|
@@ -9871,11 +9876,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9871
9876
|
*/
|
|
9872
9877
|
allowFullConfirmation: boolean;
|
|
9873
9878
|
|
|
9874
|
-
/**
|
|
9875
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
9876
|
-
*/
|
|
9877
|
-
allowPickingOfServiceArticles: boolean;
|
|
9878
|
-
|
|
9879
9879
|
/**
|
|
9880
9880
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9881
9881
|
*/
|
|
@@ -9897,14 +9897,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9897
9897
|
printLabelOnCompleteOrder: boolean;
|
|
9898
9898
|
|
|
9899
9899
|
/**
|
|
9900
|
-
*
|
|
9900
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9901
9901
|
*/
|
|
9902
|
-
|
|
9902
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9903
9903
|
|
|
9904
9904
|
/**
|
|
9905
|
-
*
|
|
9905
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9906
9906
|
*/
|
|
9907
|
-
|
|
9907
|
+
printLabelAfterPicking: boolean;
|
|
9908
9908
|
|
|
9909
9909
|
/**
|
|
9910
9910
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -9996,14 +9996,14 @@ export interface PriceSelectionCriteria {
|
|
|
9996
9996
|
quantity: number;
|
|
9997
9997
|
|
|
9998
9998
|
/**
|
|
9999
|
-
* Liste von
|
|
9999
|
+
* Liste von Account-IDs
|
|
10000
10000
|
*/
|
|
10001
|
-
|
|
10001
|
+
accountIds: Array<number>;
|
|
10002
10002
|
|
|
10003
10003
|
/**
|
|
10004
|
-
* Liste von
|
|
10004
|
+
* Liste von Artikel-IDs
|
|
10005
10005
|
*/
|
|
10006
|
-
|
|
10006
|
+
articleIds: Array<number>;
|
|
10007
10007
|
|
|
10008
10008
|
/**
|
|
10009
10009
|
* ein qualifier
|
|
@@ -10205,14 +10205,14 @@ export interface ProductDiscount {
|
|
|
10205
10205
|
fromQuantity: number;
|
|
10206
10206
|
|
|
10207
10207
|
/**
|
|
10208
|
-
*
|
|
10208
|
+
* Hersteller
|
|
10209
10209
|
*/
|
|
10210
|
-
|
|
10210
|
+
manufacturerRef: ApiObjectReference;
|
|
10211
10211
|
|
|
10212
10212
|
/**
|
|
10213
|
-
*
|
|
10213
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10214
10214
|
*/
|
|
10215
|
-
|
|
10215
|
+
articleRef: ApiObjectReference;
|
|
10216
10216
|
|
|
10217
10217
|
/**
|
|
10218
10218
|
* Gültig von
|
|
@@ -10220,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10220
10220
|
validFrom: ScriptingDate;
|
|
10221
10221
|
|
|
10222
10222
|
/**
|
|
10223
|
-
*
|
|
10223
|
+
* Bestimmt die Art des Rabatts
|
|
10224
10224
|
*/
|
|
10225
|
-
|
|
10225
|
+
modifierType: PriceModifierType;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* Warengruppe
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
productGroupRef: ApiObjectReference;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10245,14 +10245,14 @@ export interface ProductDiscount {
|
|
|
10245
10245
|
currencyRef: CurrencyReference;
|
|
10246
10246
|
|
|
10247
10247
|
/**
|
|
10248
|
-
*
|
|
10248
|
+
* Wert des Rabatts
|
|
10249
10249
|
*/
|
|
10250
|
-
|
|
10250
|
+
modifierValue: number;
|
|
10251
10251
|
|
|
10252
10252
|
/**
|
|
10253
|
-
*
|
|
10253
|
+
* Preisgruppe
|
|
10254
10254
|
*/
|
|
10255
|
-
|
|
10255
|
+
priceGroupRef: ApiObjectReference;
|
|
10256
10256
|
|
|
10257
10257
|
/**
|
|
10258
10258
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10469,14 +10469,14 @@ export interface ProductPrice {
|
|
|
10469
10469
|
supplierGroupRef: ApiObjectReference;
|
|
10470
10470
|
|
|
10471
10471
|
/**
|
|
10472
|
-
*
|
|
10472
|
+
* Hersteller
|
|
10473
10473
|
*/
|
|
10474
|
-
|
|
10474
|
+
manufacturerRef: ApiObjectReference;
|
|
10475
10475
|
|
|
10476
10476
|
/**
|
|
10477
|
-
*
|
|
10477
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10478
10478
|
*/
|
|
10479
|
-
|
|
10479
|
+
articleRef: ApiObjectReference;
|
|
10480
10480
|
|
|
10481
10481
|
/**
|
|
10482
10482
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10629,14 +10629,14 @@ export interface RequestDocument {
|
|
|
10629
10629
|
cashDrawerId: number;
|
|
10630
10630
|
|
|
10631
10631
|
/**
|
|
10632
|
-
*
|
|
10632
|
+
* Leistungsdatum
|
|
10633
10633
|
*/
|
|
10634
|
-
|
|
10634
|
+
performanceDate: ScriptingDate;
|
|
10635
10635
|
|
|
10636
10636
|
/**
|
|
10637
|
-
*
|
|
10637
|
+
* Der Anzahlungsbetrag
|
|
10638
10638
|
*/
|
|
10639
|
-
|
|
10639
|
+
depositPaymentAmount: number;
|
|
10640
10640
|
|
|
10641
10641
|
/**
|
|
10642
10642
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10704,14 +10704,14 @@ export interface RequestDocument {
|
|
|
10704
10704
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10705
10705
|
|
|
10706
10706
|
/**
|
|
10707
|
-
*
|
|
10707
|
+
* Die Vertragsdetails
|
|
10708
10708
|
*/
|
|
10709
|
-
|
|
10709
|
+
contractDetail: DocumentContractDetail;
|
|
10710
10710
|
|
|
10711
10711
|
/**
|
|
10712
|
-
*
|
|
10712
|
+
* ID der Kasse (bei POS)
|
|
10713
10713
|
*/
|
|
10714
|
-
|
|
10714
|
+
posRegisterId: number;
|
|
10715
10715
|
|
|
10716
10716
|
/**
|
|
10717
10717
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10769,14 +10769,14 @@ export interface RequestDocument {
|
|
|
10769
10769
|
texts: Array<DocumentText>;
|
|
10770
10770
|
|
|
10771
10771
|
/**
|
|
10772
|
-
*
|
|
10772
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10773
10773
|
*/
|
|
10774
|
-
|
|
10774
|
+
processedByPicklistProcessing: boolean;
|
|
10775
10775
|
|
|
10776
10776
|
/**
|
|
10777
|
-
*
|
|
10777
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10778
10778
|
*/
|
|
10779
|
-
|
|
10779
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10780
10780
|
|
|
10781
10781
|
/**
|
|
10782
10782
|
* Die Rabatte des Beleges
|
|
@@ -10952,14 +10952,14 @@ export interface RequestDocumentLine {
|
|
|
10952
10952
|
name: string;
|
|
10953
10953
|
|
|
10954
10954
|
/**
|
|
10955
|
-
*
|
|
10955
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10956
10956
|
*/
|
|
10957
|
-
|
|
10957
|
+
externalArticleNumber: string;
|
|
10958
10958
|
|
|
10959
10959
|
/**
|
|
10960
|
-
*
|
|
10960
|
+
* ID der Quell-Belegposition
|
|
10961
10961
|
*/
|
|
10962
|
-
|
|
10962
|
+
sourceLineId: number;
|
|
10963
10963
|
|
|
10964
10964
|
/**
|
|
10965
10965
|
* Buchungen zu dieser Belegposition
|
|
@@ -11111,14 +11111,14 @@ export const enum ReturnCategory {
|
|
|
11111
11111
|
export interface RevenueCalculation {
|
|
11112
11112
|
|
|
11113
11113
|
/**
|
|
11114
|
-
*
|
|
11114
|
+
* Netto Umsatz
|
|
11115
11115
|
*/
|
|
11116
|
-
|
|
11116
|
+
salesValue: number;
|
|
11117
11117
|
|
|
11118
11118
|
/**
|
|
11119
|
-
*
|
|
11119
|
+
* Deckungsbeitrag (absolut)
|
|
11120
11120
|
*/
|
|
11121
|
-
|
|
11121
|
+
revenue: number;
|
|
11122
11122
|
|
|
11123
11123
|
/**
|
|
11124
11124
|
* Einkaufspreis
|
|
@@ -11139,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11139
11139
|
note: string;
|
|
11140
11140
|
|
|
11141
11141
|
/**
|
|
11142
|
-
*
|
|
11142
|
+
* is sales agent taxable
|
|
11143
11143
|
*/
|
|
11144
|
-
|
|
11144
|
+
taxable: boolean;
|
|
11145
11145
|
|
|
11146
11146
|
/**
|
|
11147
|
-
*
|
|
11147
|
+
* reference to the delivery method
|
|
11148
11148
|
*/
|
|
11149
|
-
|
|
11149
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11150
11150
|
|
|
11151
11151
|
/**
|
|
11152
11152
|
* Freifelder
|
|
@@ -11501,14 +11501,14 @@ export interface SequencerConfiguration {
|
|
|
11501
11501
|
key: string;
|
|
11502
11502
|
|
|
11503
11503
|
/**
|
|
11504
|
-
*
|
|
11504
|
+
* Contains details about the sequencer configuration
|
|
11505
11505
|
*/
|
|
11506
|
-
|
|
11506
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11507
11507
|
|
|
11508
11508
|
/**
|
|
11509
|
-
*
|
|
11509
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11510
11510
|
*/
|
|
11511
|
-
|
|
11511
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11512
11512
|
|
|
11513
11513
|
/**
|
|
11514
11514
|
* MetaInformations for this Object
|
|
@@ -11815,14 +11815,14 @@ export interface ShelfFile {
|
|
|
11815
11815
|
subFiles: Array<SubFileInfo>;
|
|
11816
11816
|
|
|
11817
11817
|
/**
|
|
11818
|
-
*
|
|
11818
|
+
* fileSize
|
|
11819
11819
|
*/
|
|
11820
|
-
|
|
11820
|
+
fileSize: number;
|
|
11821
11821
|
|
|
11822
11822
|
/**
|
|
11823
|
-
*
|
|
11823
|
+
* revision number of this file
|
|
11824
11824
|
*/
|
|
11825
|
-
|
|
11825
|
+
revisionNumber: number;
|
|
11826
11826
|
|
|
11827
11827
|
/**
|
|
11828
11828
|
* file-extension of this entry
|
|
@@ -11850,14 +11850,14 @@ export interface ShelfFile {
|
|
|
11850
11850
|
version: number;
|
|
11851
11851
|
|
|
11852
11852
|
/**
|
|
11853
|
-
*
|
|
11853
|
+
* current reference of this file in our storage
|
|
11854
11854
|
*/
|
|
11855
|
-
|
|
11855
|
+
storageHandle: string;
|
|
11856
11856
|
|
|
11857
11857
|
/**
|
|
11858
|
-
*
|
|
11858
|
+
* meta data
|
|
11859
11859
|
*/
|
|
11860
|
-
|
|
11860
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11861
11861
|
|
|
11862
11862
|
/**
|
|
11863
11863
|
* MetaInformations for this Object
|
|
@@ -12105,14 +12105,14 @@ export interface StockMovementManualApi {
|
|
|
12105
12105
|
expiryDate: ScriptingDate;
|
|
12106
12106
|
|
|
12107
12107
|
/**
|
|
12108
|
-
*
|
|
12108
|
+
* Notiz zur Seriennummer
|
|
12109
12109
|
*/
|
|
12110
|
-
|
|
12110
|
+
serialNumberNote: string;
|
|
12111
12111
|
|
|
12112
12112
|
/**
|
|
12113
|
-
*
|
|
12113
|
+
* Zugang oder Abgang
|
|
12114
12114
|
*/
|
|
12115
|
-
|
|
12115
|
+
factor: StockJournalFactor;
|
|
12116
12116
|
|
|
12117
12117
|
/**
|
|
12118
12118
|
* Lager
|
|
@@ -12143,14 +12143,14 @@ export interface StockTransferApi {
|
|
|
12143
12143
|
bookDate: ScriptingDate;
|
|
12144
12144
|
|
|
12145
12145
|
/**
|
|
12146
|
-
*
|
|
12146
|
+
* Quell-Lagerplatz
|
|
12147
12147
|
*/
|
|
12148
|
-
|
|
12148
|
+
sourceStorageBinId: number;
|
|
12149
12149
|
|
|
12150
12150
|
/**
|
|
12151
|
-
*
|
|
12151
|
+
* Menge
|
|
12152
12152
|
*/
|
|
12153
|
-
|
|
12153
|
+
quantity: number;
|
|
12154
12154
|
|
|
12155
12155
|
/**
|
|
12156
12156
|
* Quell-Lager
|
|
@@ -12350,6 +12350,11 @@ export interface Supplier {
|
|
|
12350
12350
|
*/
|
|
12351
12351
|
info: MetaInfo;
|
|
12352
12352
|
|
|
12353
|
+
/**
|
|
12354
|
+
* tax able or tax free
|
|
12355
|
+
*/
|
|
12356
|
+
taxable: boolean;
|
|
12357
|
+
|
|
12353
12358
|
/**
|
|
12354
12359
|
* reference to the delivery method
|
|
12355
12360
|
*/
|
|
@@ -12360,11 +12365,6 @@ export interface Supplier {
|
|
|
12360
12365
|
*/
|
|
12361
12366
|
supplierGroupRef: ApiObjectReference;
|
|
12362
12367
|
|
|
12363
|
-
/**
|
|
12364
|
-
* tax able or tax free
|
|
12365
|
-
*/
|
|
12366
|
-
taxable: boolean;
|
|
12367
|
-
|
|
12368
12368
|
/**
|
|
12369
12369
|
* Mahnen?
|
|
12370
12370
|
*/
|
|
@@ -12688,14 +12688,14 @@ export interface TextTemplate {
|
|
|
12688
12688
|
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12689
12689
|
|
|
12690
12690
|
/**
|
|
12691
|
-
*
|
|
12691
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12692
12692
|
*/
|
|
12693
|
-
|
|
12693
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12694
12694
|
|
|
12695
12695
|
/**
|
|
12696
|
-
*
|
|
12696
|
+
* Texte in den angebotenen Sprachen
|
|
12697
12697
|
*/
|
|
12698
|
-
|
|
12698
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12699
12699
|
|
|
12700
12700
|
/**
|
|
12701
12701
|
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
@@ -12892,14 +12892,14 @@ export interface User {
|
|
|
12892
12892
|
version: number;
|
|
12893
12893
|
|
|
12894
12894
|
/**
|
|
12895
|
-
*
|
|
12895
|
+
* first-name
|
|
12896
12896
|
*/
|
|
12897
|
-
|
|
12897
|
+
firstName: string;
|
|
12898
12898
|
|
|
12899
12899
|
/**
|
|
12900
|
-
*
|
|
12900
|
+
* is the email verified
|
|
12901
12901
|
*/
|
|
12902
|
-
|
|
12902
|
+
emailVerified: boolean;
|
|
12903
12903
|
|
|
12904
12904
|
/**
|
|
12905
12905
|
* email-address
|