@vario-software/types 2026.23.0 → 2026.23.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +10 -10
- package/scripting/types.d.ts +331 -331
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* origin type
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Is default bank?
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
defaultBank: boolean;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -1023,11 +1023,6 @@ export interface Article {
|
|
|
1023
1023
|
*/
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
|
-
/**
|
|
1027
|
-
* Durchschnittl. EKP (Startwert)
|
|
1028
|
-
*/
|
|
1029
|
-
initialAvgPurchasePrice: number;
|
|
1030
|
-
|
|
1031
1026
|
/**
|
|
1032
1027
|
* is this product sellable without any quantity at the stock
|
|
1033
1028
|
*/
|
|
@@ -1038,6 +1033,11 @@ export interface Article {
|
|
|
1038
1033
|
*/
|
|
1039
1034
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1040
1035
|
|
|
1036
|
+
/**
|
|
1037
|
+
* Durchschnittl. EKP (Startwert)
|
|
1038
|
+
*/
|
|
1039
|
+
initialAvgPurchasePrice: number;
|
|
1040
|
+
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
1043
1043
|
*/
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1134,14 +1134,14 @@ export interface Article {
|
|
|
1134
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Produktion
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
fabrication: boolean;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
|
-
*
|
|
1142
|
+
* Soll-Handelsspanne
|
|
1143
1143
|
*/
|
|
1144
|
-
|
|
1144
|
+
targetTradingMargin: number;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* active
|
|
@@ -1199,14 +1199,14 @@ export interface Article {
|
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
1201
|
/**
|
|
1202
|
-
*
|
|
1202
|
+
* Country code
|
|
1203
1203
|
*/
|
|
1204
|
-
|
|
1204
|
+
countryOfOriginRef: CountryReference;
|
|
1205
1205
|
|
|
1206
1206
|
/**
|
|
1207
|
-
*
|
|
1207
|
+
* Arbeitseinheit in Minuten
|
|
1208
1208
|
*/
|
|
1209
|
-
|
|
1209
|
+
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* Frei kommissionierbar
|
|
@@ -1219,14 +1219,14 @@ export interface Article {
|
|
|
1219
1219
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
*
|
|
1222
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1223
1223
|
*/
|
|
1224
|
-
|
|
1224
|
+
taxLiabilityReversed: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
@@ -1304,14 +1304,14 @@ export interface Article {
|
|
|
1304
1304
|
contingentArticleRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* rabattierbarer Artikel?
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
discountable: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* alternative name of this product
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
alternativeName: string;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1894,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* Bestellte Menge
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
orderedQuantity: number;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1904,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1904
1904
|
quantityInPicking: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Meldebestand
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
reorderPoint: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
virtualStockAmount: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Nachschub auf
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
replenishmentOn: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Vorgabe-Lagerplätze
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Sollbestand
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
targetStock: number;
|
|
1970
1970
|
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1986,11 +1986,6 @@ export interface ArticleStorage {
|
|
|
1986
1986
|
|
|
1987
1987
|
export interface ArticleSupplier {
|
|
1988
1988
|
|
|
1989
|
-
/**
|
|
1990
|
-
* Lieferanten-Meldebestand
|
|
1991
|
-
*/
|
|
1992
|
-
supplierReportingStock: number;
|
|
1993
|
-
|
|
1994
1989
|
/**
|
|
1995
1990
|
* Anzeigename des Accounts
|
|
1996
1991
|
*/
|
|
@@ -2002,15 +1997,20 @@ export interface ArticleSupplier {
|
|
|
2002
1997
|
useSupplierArticleDescription: boolean;
|
|
2003
1998
|
|
|
2004
1999
|
/**
|
|
2005
|
-
*
|
|
2000
|
+
* Lieferanten-Meldebestand
|
|
2006
2001
|
*/
|
|
2007
|
-
|
|
2002
|
+
supplierReportingStock: number;
|
|
2008
2003
|
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Lieferzeit in (Werk-)Tagen
|
|
2011
2006
|
*/
|
|
2012
2007
|
deliveryTime: number;
|
|
2013
2008
|
|
|
2009
|
+
/**
|
|
2010
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2011
|
+
*/
|
|
2012
|
+
useSupplierArticleIdentifier: boolean;
|
|
2013
|
+
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2016
2016
|
*/
|
|
@@ -2097,14 +2097,14 @@ export interface ArticleSupplier {
|
|
|
2097
2097
|
dropShippingAllowed: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
* Abweichende
|
|
2100
|
+
* Abweichende Produktbezeichnung
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierArticleName: string;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
|
-
* Abweichende
|
|
2105
|
+
* Abweichende Produktbeschreibung
|
|
2106
2106
|
*/
|
|
2107
|
-
|
|
2107
|
+
supplierArticleDescription: string;
|
|
2108
2108
|
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Standardpreis Netto
|
|
@@ -2112,14 +2112,14 @@ export interface ArticleSupplier {
|
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
2114
|
/**
|
|
2115
|
-
*
|
|
2115
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2116
2116
|
*/
|
|
2117
|
-
|
|
2117
|
+
orderOnComponentBase: boolean;
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
*
|
|
2120
|
+
* Einkaufseinheit
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
purchaseUnit: number;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
2125
|
* Referenced Supplier-Account
|
|
@@ -2566,14 +2566,14 @@ export interface CrmActivityType {
|
|
|
2566
2566
|
export interface CrmChecklistItem {
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
|
-
*
|
|
2569
|
+
* Ist das Element "angehakt"?
|
|
2570
2570
|
*/
|
|
2571
|
-
|
|
2571
|
+
checked: boolean;
|
|
2572
2572
|
|
|
2573
2573
|
/**
|
|
2574
|
-
*
|
|
2574
|
+
* Text des Checklisten-Elements
|
|
2575
2575
|
*/
|
|
2576
|
-
|
|
2576
|
+
memo: string;
|
|
2577
2577
|
|
|
2578
2578
|
/**
|
|
2579
2579
|
* Unique identifier of the Object
|
|
@@ -2684,14 +2684,14 @@ export interface CrmDeal {
|
|
|
2684
2684
|
info: MetaInfo;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
assignedUserRef: ApiObjectReference;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2693
2693
|
*/
|
|
2694
|
-
|
|
2694
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2695
2695
|
|
|
2696
2696
|
/**
|
|
2697
2697
|
* Chance (in Prozent)
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Phase
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
phaseRef: ApiObjectReference;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Projektleiter vom Auftragnehmer
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Aufgaben-Nummer
|
|
@@ -3220,14 +3220,14 @@ export interface CrmState {
|
|
|
3220
3220
|
readyToBill: boolean;
|
|
3221
3221
|
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
3223
|
+
* Handelt es sich um einen Anfang-Status
|
|
3224
3224
|
*/
|
|
3225
|
-
|
|
3225
|
+
startState: boolean;
|
|
3226
3226
|
|
|
3227
3227
|
/**
|
|
3228
|
-
*
|
|
3228
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3229
3229
|
*/
|
|
3230
|
-
|
|
3230
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3231
3231
|
|
|
3232
3232
|
/**
|
|
3233
3233
|
* MetaInformations for this Object
|
|
@@ -3275,6 +3275,11 @@ export interface CrmSubType {
|
|
|
3275
3275
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
|
+
/**
|
|
3279
|
+
* Liste von Erinnerungen
|
|
3280
|
+
*/
|
|
3281
|
+
reminders: Array<CrmReminder>;
|
|
3282
|
+
|
|
3278
3283
|
/**
|
|
3279
3284
|
* Angebot
|
|
3280
3285
|
*/
|
|
@@ -3285,11 +3290,6 @@ export interface CrmTask {
|
|
|
3285
3290
|
*/
|
|
3286
3291
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3287
3292
|
|
|
3288
|
-
/**
|
|
3289
|
-
* Liste von Erinnerungen
|
|
3290
|
-
*/
|
|
3291
|
-
reminders: Array<CrmReminder>;
|
|
3292
|
-
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Notizen
|
|
3295
3295
|
*/
|
|
@@ -3655,14 +3655,14 @@ export interface CurrencyReference {
|
|
|
3655
3655
|
export interface Customer {
|
|
3656
3656
|
|
|
3657
3657
|
/**
|
|
3658
|
-
*
|
|
3658
|
+
* reference to customer group
|
|
3659
3659
|
*/
|
|
3660
|
-
|
|
3660
|
+
customerGroupRef: ApiObjectReference;
|
|
3661
3661
|
|
|
3662
3662
|
/**
|
|
3663
|
-
*
|
|
3663
|
+
* Option für die Stapelverarbeitung
|
|
3664
3664
|
*/
|
|
3665
|
-
|
|
3665
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3666
3666
|
|
|
3667
3667
|
/**
|
|
3668
3668
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3680,14 +3680,14 @@ export interface Customer {
|
|
|
3680
3680
|
dueDate: ScriptingDate;
|
|
3681
3681
|
|
|
3682
3682
|
/**
|
|
3683
|
-
*
|
|
3683
|
+
* collective billable
|
|
3684
3684
|
*/
|
|
3685
|
-
|
|
3685
|
+
collectiveBillable: boolean;
|
|
3686
3686
|
|
|
3687
3687
|
/**
|
|
3688
|
-
*
|
|
3688
|
+
* Maximal mögliche Lieferungen
|
|
3689
3689
|
*/
|
|
3690
|
-
|
|
3690
|
+
maxDeliveries: number;
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
3693
3693
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3899,14 +3899,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3899
3899
|
export interface DeliveryMethod {
|
|
3900
3900
|
|
|
3901
3901
|
/**
|
|
3902
|
-
*
|
|
3902
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3903
3903
|
*/
|
|
3904
|
-
|
|
3904
|
+
splitIntoNewDocument: boolean;
|
|
3905
3905
|
|
|
3906
3906
|
/**
|
|
3907
|
-
*
|
|
3907
|
+
* E-Mail an Versender übergeben
|
|
3908
3908
|
*/
|
|
3909
|
-
|
|
3909
|
+
forwardEmailToShipper: boolean;
|
|
3910
3910
|
|
|
3911
3911
|
/**
|
|
3912
3912
|
* Min. Gewicht pro Paket
|
|
@@ -3959,14 +3959,14 @@ export interface DeliveryMethod {
|
|
|
3959
3959
|
defaultSizeUnit: UnitTypeReference;
|
|
3960
3960
|
|
|
3961
3961
|
/**
|
|
3962
|
-
*
|
|
3962
|
+
* translations
|
|
3963
3963
|
*/
|
|
3964
|
-
|
|
3964
|
+
translations: Array<DocumentTypeTerm>;
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
|
-
*
|
|
3967
|
+
* Quelle für Paketgewicht
|
|
3968
3968
|
*/
|
|
3969
|
-
|
|
3969
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Gültige Ländercodes
|
|
@@ -4057,14 +4057,14 @@ export interface DeliveryTerm {
|
|
|
4057
4057
|
version: number;
|
|
4058
4058
|
|
|
4059
4059
|
/**
|
|
4060
|
-
*
|
|
4060
|
+
* translations
|
|
4061
4061
|
*/
|
|
4062
|
-
|
|
4062
|
+
translations: Array<DocumentTypeTerm>;
|
|
4063
4063
|
|
|
4064
4064
|
/**
|
|
4065
|
-
*
|
|
4065
|
+
* information, how the shipping charges should be calculated
|
|
4066
4066
|
*/
|
|
4067
|
-
|
|
4067
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4068
4068
|
|
|
4069
4069
|
/**
|
|
4070
4070
|
* Lieferarten
|
|
@@ -4095,14 +4095,14 @@ export interface DeliveryTerm {
|
|
|
4095
4095
|
export interface Document {
|
|
4096
4096
|
|
|
4097
4097
|
/**
|
|
4098
|
-
*
|
|
4098
|
+
* Referenz zum Rechnungskonto
|
|
4099
4099
|
*/
|
|
4100
|
-
|
|
4100
|
+
billingAccountRef: ApiObjectReference;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
4108
|
* Externe Belegnummer
|
|
@@ -4183,9 +4183,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4183
4183
|
deliveryQuantityPackages: number;
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
4186
|
-
*
|
|
4186
|
+
* Steuerpflichtig oder steuerfrei
|
|
4187
4187
|
*/
|
|
4188
|
-
|
|
4188
|
+
taxable: boolean;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
4191
|
* Leitweg-ID
|
|
@@ -4193,9 +4193,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4193
4193
|
buyerReference: string;
|
|
4194
4194
|
|
|
4195
4195
|
/**
|
|
4196
|
-
*
|
|
4196
|
+
* Bestellnummer aus Vorbeleg
|
|
4197
4197
|
*/
|
|
4198
|
-
|
|
4198
|
+
referencedOrderNumber: string;
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
4201
4201
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4293,20 +4293,27 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4293
4293
|
supplierNumber: string;
|
|
4294
4294
|
|
|
4295
4295
|
/**
|
|
4296
|
-
*
|
|
4296
|
+
* Gesamtpreis brutto
|
|
4297
4297
|
*/
|
|
4298
|
-
|
|
4298
|
+
totalGrossPrice: number;
|
|
4299
4299
|
|
|
4300
4300
|
/**
|
|
4301
|
-
*
|
|
4301
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4302
4302
|
*/
|
|
4303
|
-
|
|
4303
|
+
deliveryApproved: boolean;
|
|
4304
4304
|
|
|
4305
4305
|
/**
|
|
4306
4306
|
* Kassen-Zahlungspositionen
|
|
4307
4307
|
*/
|
|
4308
4308
|
posPayments: Array<DocumentPosPayment>;
|
|
4309
4309
|
|
|
4310
|
+
/**
|
|
4311
|
+
* Ist die Quittung bezahlt
|
|
4312
|
+
true wenn die Quittung bezahlt ist
|
|
4313
|
+
|
|
4314
|
+
*/
|
|
4315
|
+
posReceiptPayed: boolean;
|
|
4316
|
+
|
|
4310
4317
|
/**
|
|
4311
4318
|
* Kundennummer beim Lieferanten
|
|
4312
4319
|
*/
|
|
@@ -4317,13 +4324,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4317
4324
|
*/
|
|
4318
4325
|
maxDeliveries: number;
|
|
4319
4326
|
|
|
4320
|
-
/**
|
|
4321
|
-
* Ist die Quittung bezahlt
|
|
4322
|
-
true wenn die Quittung bezahlt ist
|
|
4323
|
-
|
|
4324
|
-
*/
|
|
4325
|
-
posReceiptPayed: boolean;
|
|
4326
|
-
|
|
4327
4327
|
/**
|
|
4328
4328
|
* Quittung: Summe Zahlbetrag
|
|
4329
4329
|
*/
|
|
@@ -4370,14 +4370,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4370
4370
|
accountNumber: string;
|
|
4371
4371
|
|
|
4372
4372
|
/**
|
|
4373
|
-
*
|
|
4373
|
+
* Referenz auf Zahlungsbedingung
|
|
4374
4374
|
*/
|
|
4375
|
-
|
|
4375
|
+
paymentTermRef: PaymentTermRef;
|
|
4376
4376
|
|
|
4377
4377
|
/**
|
|
4378
|
-
*
|
|
4378
|
+
* Wird vom Workflow verarbeitet?
|
|
4379
4379
|
*/
|
|
4380
|
-
|
|
4380
|
+
processedByWorkflow: boolean;
|
|
4381
4381
|
|
|
4382
4382
|
/**
|
|
4383
4383
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4410,14 +4410,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4410
4410
|
defaultAddress: DocumentAddress;
|
|
4411
4411
|
|
|
4412
4412
|
/**
|
|
4413
|
-
*
|
|
4413
|
+
* Verarbeitungsoption für Stapel
|
|
4414
4414
|
*/
|
|
4415
|
-
|
|
4415
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4416
4416
|
|
|
4417
4417
|
/**
|
|
4418
|
-
*
|
|
4418
|
+
* Leistungsdatum
|
|
4419
4419
|
*/
|
|
4420
|
-
|
|
4420
|
+
performanceDate: ScriptingDate;
|
|
4421
4421
|
|
|
4422
4422
|
/**
|
|
4423
4423
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4475,14 +4475,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4475
4475
|
dropShipping: boolean;
|
|
4476
4476
|
|
|
4477
4477
|
/**
|
|
4478
|
-
*
|
|
4478
|
+
* Gesamtpreis netto
|
|
4479
4479
|
*/
|
|
4480
|
-
|
|
4480
|
+
totalNetPrice: number;
|
|
4481
4481
|
|
|
4482
4482
|
/**
|
|
4483
|
-
*
|
|
4483
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4484
4484
|
*/
|
|
4485
|
-
|
|
4485
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4486
4486
|
|
|
4487
4487
|
/**
|
|
4488
4488
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4641,25 +4641,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4641
4641
|
*/
|
|
4642
4642
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4643
4643
|
|
|
4644
|
-
/**
|
|
4645
|
-
* Status der USt-ID-Prüfung
|
|
4646
|
-
*/
|
|
4647
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4648
|
-
|
|
4649
4644
|
/**
|
|
4650
4645
|
* Rechnungsadresse
|
|
4651
4646
|
*/
|
|
4652
4647
|
billingAddress: DocumentAddress;
|
|
4653
4648
|
|
|
4654
4649
|
/**
|
|
4655
|
-
*
|
|
4650
|
+
* Status der USt-ID-Prüfung
|
|
4656
4651
|
*/
|
|
4657
|
-
|
|
4652
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4658
4653
|
|
|
4659
4654
|
/**
|
|
4660
4655
|
* Bestellt durch Ansprechpartner
|
|
4661
4656
|
*/
|
|
4662
4657
|
orderedByPersonRef: ApiObjectReference;
|
|
4658
|
+
|
|
4659
|
+
/**
|
|
4660
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4661
|
+
*/
|
|
4662
|
+
reportGroupRef: ApiObjectReference;
|
|
4663
4663
|
}
|
|
4664
4664
|
|
|
4665
4665
|
export interface DocumentAdditionalInfo {
|
|
@@ -4685,14 +4685,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4685
4685
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Herkunft des Berechnungsmodus
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4810,14 +4810,14 @@ export interface DocumentAddress {
|
|
|
4810
4810
|
postOfficeBox: string;
|
|
4811
4811
|
|
|
4812
4812
|
/**
|
|
4813
|
-
*
|
|
4813
|
+
* country code IsoAlpha3
|
|
4814
4814
|
*/
|
|
4815
|
-
|
|
4815
|
+
countryCode: string;
|
|
4816
4816
|
|
|
4817
4817
|
/**
|
|
4818
|
-
*
|
|
4818
|
+
* Street
|
|
4819
4819
|
*/
|
|
4820
|
-
|
|
4820
|
+
street: string;
|
|
4821
4821
|
|
|
4822
4822
|
/**
|
|
4823
4823
|
* Unique identifier of the Object
|
|
@@ -4835,14 +4835,14 @@ export interface DocumentAddress {
|
|
|
4835
4835
|
info: MetaInfo;
|
|
4836
4836
|
|
|
4837
4837
|
/**
|
|
4838
|
-
*
|
|
4838
|
+
* Lieferart
|
|
4839
4839
|
*/
|
|
4840
|
-
|
|
4840
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4841
4841
|
|
|
4842
4842
|
/**
|
|
4843
|
-
*
|
|
4843
|
+
* GLN
|
|
4844
4844
|
*/
|
|
4845
|
-
|
|
4845
|
+
globalLocationNumber: string;
|
|
4846
4846
|
|
|
4847
4847
|
/**
|
|
4848
4848
|
* Postcode
|
|
@@ -5023,14 +5023,14 @@ export interface DocumentContractDetail {
|
|
|
5023
5023
|
runtimeToDate: ScriptingDate;
|
|
5024
5024
|
|
|
5025
5025
|
/**
|
|
5026
|
-
*
|
|
5026
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5027
5027
|
*/
|
|
5028
|
-
|
|
5028
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5029
5029
|
|
|
5030
5030
|
/**
|
|
5031
|
-
*
|
|
5031
|
+
* Nächste Fälligkeit
|
|
5032
5032
|
*/
|
|
5033
|
-
|
|
5033
|
+
nextDueDate: ScriptingDate;
|
|
5034
5034
|
|
|
5035
5035
|
/**
|
|
5036
5036
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5061,14 +5061,14 @@ export interface DocumentFabricationDetail {
|
|
|
5061
5061
|
targetStorageRef: ApiObjectReference;
|
|
5062
5062
|
|
|
5063
5063
|
/**
|
|
5064
|
-
*
|
|
5064
|
+
* Material-Lager
|
|
5065
5065
|
*/
|
|
5066
|
-
|
|
5066
|
+
componentsStorageRef: ApiObjectReference;
|
|
5067
5067
|
|
|
5068
5068
|
/**
|
|
5069
|
-
*
|
|
5069
|
+
* Notiz
|
|
5070
5070
|
*/
|
|
5071
|
-
|
|
5071
|
+
note: string;
|
|
5072
5072
|
|
|
5073
5073
|
/**
|
|
5074
5074
|
* QS-Lager
|
|
@@ -5210,14 +5210,14 @@ export interface DocumentLine {
|
|
|
5210
5210
|
country: CountryReference;
|
|
5211
5211
|
|
|
5212
5212
|
/**
|
|
5213
|
-
*
|
|
5213
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5214
5214
|
*/
|
|
5215
|
-
|
|
5215
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5216
5216
|
|
|
5217
5217
|
/**
|
|
5218
|
-
*
|
|
5218
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5219
5219
|
*/
|
|
5220
|
-
|
|
5220
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5221
5221
|
|
|
5222
5222
|
/**
|
|
5223
5223
|
* verarbeitete Menge
|
|
@@ -5265,14 +5265,14 @@ export interface DocumentLine {
|
|
|
5265
5265
|
number: string;
|
|
5266
5266
|
|
|
5267
5267
|
/**
|
|
5268
|
-
*
|
|
5268
|
+
* Referenz zur Kundenauftragszeile
|
|
5269
5269
|
*/
|
|
5270
|
-
|
|
5270
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5271
5271
|
|
|
5272
5272
|
/**
|
|
5273
|
-
*
|
|
5273
|
+
* Gesamtbruttogewicht
|
|
5274
5274
|
*/
|
|
5275
|
-
|
|
5275
|
+
totalGrossWeight: number;
|
|
5276
5276
|
|
|
5277
5277
|
/**
|
|
5278
5278
|
* skontierbare Position?
|
|
@@ -5290,14 +5290,14 @@ export interface DocumentLine {
|
|
|
5290
5290
|
price: number;
|
|
5291
5291
|
|
|
5292
5292
|
/**
|
|
5293
|
-
*
|
|
5293
|
+
* FiBu-Buchung
|
|
5294
5294
|
*/
|
|
5295
|
-
|
|
5295
|
+
financeBooking: DocumentFinanceBooking;
|
|
5296
5296
|
|
|
5297
5297
|
/**
|
|
5298
|
-
*
|
|
5298
|
+
* Gesamtpreis Position in Basiswährung
|
|
5299
5299
|
*/
|
|
5300
|
-
|
|
5300
|
+
baseTotalLinePrice: number;
|
|
5301
5301
|
|
|
5302
5302
|
/**
|
|
5303
5303
|
* Positionstyp
|
|
@@ -5335,9 +5335,9 @@ export interface DocumentLine {
|
|
|
5335
5335
|
id: number;
|
|
5336
5336
|
|
|
5337
5337
|
/**
|
|
5338
|
-
*
|
|
5338
|
+
* Externe Referenz zum VDS-Paket
|
|
5339
5339
|
*/
|
|
5340
|
-
|
|
5340
|
+
externalReferenceVds: string;
|
|
5341
5341
|
|
|
5342
5342
|
/**
|
|
5343
5343
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -5345,14 +5345,14 @@ export interface DocumentLine {
|
|
|
5345
5345
|
positionOfArticleLine: number;
|
|
5346
5346
|
|
|
5347
5347
|
/**
|
|
5348
|
-
*
|
|
5348
|
+
* Preis pro Einheit in Basiswährung
|
|
5349
5349
|
*/
|
|
5350
|
-
|
|
5350
|
+
basePrice: number;
|
|
5351
5351
|
|
|
5352
5352
|
/**
|
|
5353
|
-
*
|
|
5353
|
+
* Serientyp
|
|
5354
5354
|
*/
|
|
5355
|
-
|
|
5355
|
+
serialType: ArticleSerialType;
|
|
5356
5356
|
|
|
5357
5357
|
/**
|
|
5358
5358
|
* MetaInformations for this Object
|
|
@@ -5515,14 +5515,14 @@ export interface DocumentLine {
|
|
|
5515
5515
|
unitType: UnitTypeReference;
|
|
5516
5516
|
|
|
5517
5517
|
/**
|
|
5518
|
-
*
|
|
5518
|
+
* Referenz zur Basiszeile
|
|
5519
5519
|
*/
|
|
5520
|
-
|
|
5520
|
+
baseLineId: number;
|
|
5521
5521
|
|
|
5522
5522
|
/**
|
|
5523
|
-
*
|
|
5523
|
+
* Zubehör Einfügeart
|
|
5524
5524
|
*/
|
|
5525
|
-
|
|
5525
|
+
insertTerm: AccessoryInsertTerm;
|
|
5526
5526
|
|
|
5527
5527
|
/**
|
|
5528
5528
|
* Einheit Bruttogewicht
|
|
@@ -5550,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5550
5550
|
productType: ProductType;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
|
-
*
|
|
5553
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5554
5554
|
*/
|
|
5555
|
-
|
|
5555
|
+
baseSalesValueNet: number;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
|
-
*
|
|
5558
|
+
* Vertragsinformationen
|
|
5559
5559
|
*/
|
|
5560
|
-
|
|
5560
|
+
contractDetail: DocumentContractDetail;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
5563
|
* Einheit Nettogewicht
|
|
@@ -5789,14 +5789,14 @@ export interface DocumentLineComponent {
|
|
|
5789
5789
|
custom: EavDocumentlinecomponent;
|
|
5790
5790
|
|
|
5791
5791
|
/**
|
|
5792
|
-
*
|
|
5792
|
+
* Referenz auf den Artikel der Komponente
|
|
5793
5793
|
*/
|
|
5794
|
-
|
|
5794
|
+
articleId: number;
|
|
5795
5795
|
|
|
5796
5796
|
/**
|
|
5797
|
-
*
|
|
5797
|
+
* Gelieferte Menge
|
|
5798
5798
|
*/
|
|
5799
|
-
|
|
5799
|
+
quantityCommitted: number;
|
|
5800
5800
|
|
|
5801
5801
|
/**
|
|
5802
5802
|
* Beschreibung des Artikels
|
|
@@ -5933,14 +5933,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5933
5933
|
quantityFinished: number;
|
|
5934
5934
|
|
|
5935
5935
|
/**
|
|
5936
|
-
*
|
|
5936
|
+
* Menge defekt
|
|
5937
5937
|
*/
|
|
5938
|
-
|
|
5938
|
+
quantityDefective: number;
|
|
5939
5939
|
|
|
5940
5940
|
/**
|
|
5941
|
-
*
|
|
5941
|
+
* Produzierte Seriennummern
|
|
5942
5942
|
*/
|
|
5943
|
-
|
|
5943
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5944
5944
|
|
|
5945
5945
|
/**
|
|
5946
5946
|
* Freifeld
|
|
@@ -6039,14 +6039,14 @@ export interface DocumentLinePosDetail {
|
|
|
6039
6039
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6040
6040
|
|
|
6041
6041
|
/**
|
|
6042
|
-
*
|
|
6042
|
+
* Typ der Einlage/Ausgabe
|
|
6043
6043
|
*/
|
|
6044
|
-
|
|
6044
|
+
depositExpenseTypeId: number;
|
|
6045
6045
|
|
|
6046
6046
|
/**
|
|
6047
|
-
*
|
|
6047
|
+
* Status der externen Zahlung
|
|
6048
6048
|
*/
|
|
6049
|
-
|
|
6049
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6050
6050
|
|
|
6051
6051
|
/**
|
|
6052
6052
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6304,14 +6304,14 @@ export interface DocumentPosPayment {
|
|
|
6304
6304
|
version: number;
|
|
6305
6305
|
|
|
6306
6306
|
/**
|
|
6307
|
-
*
|
|
6307
|
+
* Zahlungsart
|
|
6308
6308
|
*/
|
|
6309
|
-
|
|
6309
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6310
6310
|
|
|
6311
6311
|
/**
|
|
6312
|
-
*
|
|
6312
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6313
6313
|
*/
|
|
6314
|
-
|
|
6314
|
+
withdrawalAmount: number;
|
|
6315
6315
|
|
|
6316
6316
|
/**
|
|
6317
6317
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6454,14 +6454,14 @@ export interface DocumentRef {
|
|
|
6454
6454
|
export interface DocumentShippingCost {
|
|
6455
6455
|
|
|
6456
6456
|
/**
|
|
6457
|
-
*
|
|
6457
|
+
* Die Versandkosten
|
|
6458
6458
|
*/
|
|
6459
|
-
|
|
6459
|
+
costs: number;
|
|
6460
6460
|
|
|
6461
6461
|
/**
|
|
6462
|
-
*
|
|
6462
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6463
6463
|
*/
|
|
6464
|
-
|
|
6464
|
+
manualCosts: boolean;
|
|
6465
6465
|
|
|
6466
6466
|
/**
|
|
6467
6467
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6589,14 +6589,14 @@ export interface DocumentText {
|
|
|
6589
6589
|
transferableIntoSubsequentDocuments: boolean;
|
|
6590
6590
|
|
|
6591
6591
|
/**
|
|
6592
|
-
*
|
|
6592
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6593
6593
|
*/
|
|
6594
|
-
|
|
6594
|
+
deleted: boolean;
|
|
6595
6595
|
|
|
6596
6596
|
/**
|
|
6597
|
-
*
|
|
6597
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6598
6598
|
*/
|
|
6599
|
-
|
|
6599
|
+
textPosition: TextPosition;
|
|
6600
6600
|
|
|
6601
6601
|
/**
|
|
6602
6602
|
* textBaustein Vorlage
|
|
@@ -6706,14 +6706,14 @@ export interface DocumentType {
|
|
|
6706
6706
|
labels: Array<DocumentTypeLabel>;
|
|
6707
6707
|
|
|
6708
6708
|
/**
|
|
6709
|
-
*
|
|
6709
|
+
* nächste Belegnummer
|
|
6710
6710
|
*/
|
|
6711
|
-
|
|
6711
|
+
nextNumber: string;
|
|
6712
6712
|
|
|
6713
6713
|
/**
|
|
6714
|
-
*
|
|
6714
|
+
* Zählerkreis
|
|
6715
6715
|
*/
|
|
6716
|
-
|
|
6716
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6717
6717
|
|
|
6718
6718
|
/**
|
|
6719
6719
|
* Sortierung
|
|
@@ -7256,14 +7256,14 @@ export interface FabricationRevertRequest {
|
|
|
7256
7256
|
quantity: number;
|
|
7257
7257
|
|
|
7258
7258
|
/**
|
|
7259
|
-
*
|
|
7259
|
+
* ID der zu stornierenden Position
|
|
7260
7260
|
*/
|
|
7261
|
-
|
|
7261
|
+
documentLineId: number;
|
|
7262
7262
|
|
|
7263
7263
|
/**
|
|
7264
|
-
*
|
|
7264
|
+
* Material automatisch stornieren
|
|
7265
7265
|
*/
|
|
7266
|
-
|
|
7266
|
+
autoRevertComponents: boolean;
|
|
7267
7267
|
|
|
7268
7268
|
/**
|
|
7269
7269
|
* Zu stornierende Seriennummern
|
|
@@ -7279,14 +7279,14 @@ export interface FabricationRevertRequest {
|
|
|
7279
7279
|
export interface FabricationSerialNumber {
|
|
7280
7280
|
|
|
7281
7281
|
/**
|
|
7282
|
-
*
|
|
7282
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7283
7283
|
*/
|
|
7284
|
-
|
|
7284
|
+
serialNumberId: number;
|
|
7285
7285
|
|
|
7286
7286
|
/**
|
|
7287
|
-
*
|
|
7287
|
+
* MHD / Verfallsdatum
|
|
7288
7288
|
*/
|
|
7289
|
-
|
|
7289
|
+
expiryDate: ScriptingDate;
|
|
7290
7290
|
|
|
7291
7291
|
/**
|
|
7292
7292
|
* Bemerkung
|
|
@@ -7836,14 +7836,14 @@ export const enum PickingType {
|
|
|
7836
7836
|
export interface Picklist {
|
|
7837
7837
|
|
|
7838
7838
|
/**
|
|
7839
|
-
*
|
|
7839
|
+
* Ziellager für Nachschub
|
|
7840
7840
|
*/
|
|
7841
|
-
|
|
7841
|
+
targetStorageRef: ApiObjectReference;
|
|
7842
7842
|
|
|
7843
7843
|
/**
|
|
7844
|
-
*
|
|
7844
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7845
7845
|
*/
|
|
7846
|
-
|
|
7846
|
+
usedTemplate: PicklistTemplate;
|
|
7847
7847
|
|
|
7848
7848
|
/**
|
|
7849
7849
|
* Nummer der Pickliste
|
|
@@ -7894,14 +7894,14 @@ export interface Picklist {
|
|
|
7894
7894
|
export interface PicklistLine {
|
|
7895
7895
|
|
|
7896
7896
|
/**
|
|
7897
|
-
*
|
|
7897
|
+
* Gesammelte Menge der Position
|
|
7898
7898
|
*/
|
|
7899
|
-
|
|
7899
|
+
quantityCollected: number;
|
|
7900
7900
|
|
|
7901
7901
|
/**
|
|
7902
|
-
*
|
|
7902
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7903
7903
|
*/
|
|
7904
|
-
|
|
7904
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7905
7905
|
|
|
7906
7906
|
/**
|
|
7907
7907
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7939,14 +7939,14 @@ export interface PicklistLine {
|
|
|
7939
7939
|
version: number;
|
|
7940
7940
|
|
|
7941
7941
|
/**
|
|
7942
|
-
*
|
|
7942
|
+
* Lageranzeigename
|
|
7943
7943
|
*/
|
|
7944
|
-
|
|
7944
|
+
storageDisplayName: string;
|
|
7945
7945
|
|
|
7946
7946
|
/**
|
|
7947
|
-
*
|
|
7947
|
+
* ID der Quell-Dokumentposition
|
|
7948
7948
|
*/
|
|
7949
|
-
|
|
7949
|
+
sourceDocumentLineId: number;
|
|
7950
7950
|
|
|
7951
7951
|
/**
|
|
7952
7952
|
* Artikelnummer
|
|
@@ -8285,6 +8285,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8285
8285
|
*/
|
|
8286
8286
|
maxOrderValue: number;
|
|
8287
8287
|
|
|
8288
|
+
/**
|
|
8289
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8290
|
+
*/
|
|
8291
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8292
|
+
|
|
8288
8293
|
/**
|
|
8289
8294
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8290
8295
|
*/
|
|
@@ -8295,11 +8300,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8295
8300
|
*/
|
|
8296
8301
|
onlyFullDeliverableOrderLines: boolean;
|
|
8297
8302
|
|
|
8298
|
-
/**
|
|
8299
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
8300
|
-
*/
|
|
8301
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8302
|
-
|
|
8303
8303
|
/**
|
|
8304
8304
|
* Selektion über den Bereich vom Belegdatum
|
|
8305
8305
|
*/
|
|
@@ -8359,19 +8359,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8359
8359
|
printPicklist: boolean;
|
|
8360
8360
|
|
|
8361
8361
|
/**
|
|
8362
|
-
*
|
|
8362
|
+
* Die zu verwendende Pickwagengruppe
|
|
8363
8363
|
*/
|
|
8364
|
-
|
|
8364
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8365
8365
|
|
|
8366
8366
|
/**
|
|
8367
|
-
*
|
|
8367
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8368
8368
|
*/
|
|
8369
|
-
|
|
8369
|
+
maxPicklistLineCount: number;
|
|
8370
8370
|
|
|
8371
8371
|
/**
|
|
8372
|
-
*
|
|
8372
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8373
8373
|
*/
|
|
8374
|
-
|
|
8374
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8375
8375
|
|
|
8376
8376
|
/**
|
|
8377
8377
|
* Der zu verwendende Pickwagen
|
|
@@ -8379,9 +8379,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8379
8379
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* Lagerplätze vorgeben
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
specifyStorageBins: boolean;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
8387
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8451,11 +8451,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8451
8451
|
*/
|
|
8452
8452
|
showShippingFormOnPickingFinish: boolean;
|
|
8453
8453
|
|
|
8454
|
-
/**
|
|
8455
|
-
* Sammelbestätigung erlauben
|
|
8456
|
-
*/
|
|
8457
|
-
allowFullConfirmation: boolean;
|
|
8458
|
-
|
|
8459
8454
|
/**
|
|
8460
8455
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8461
8456
|
*/
|
|
@@ -8466,6 +8461,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8466
8461
|
*/
|
|
8467
8462
|
allowPickingOfServiceArticles: boolean;
|
|
8468
8463
|
|
|
8464
|
+
/**
|
|
8465
|
+
* Sammelbestätigung erlauben
|
|
8466
|
+
*/
|
|
8467
|
+
allowFullConfirmation: boolean;
|
|
8468
|
+
|
|
8469
8469
|
/**
|
|
8470
8470
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
8471
8471
|
*/
|
|
@@ -8482,14 +8482,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8482
8482
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8483
8483
|
|
|
8484
8484
|
/**
|
|
8485
|
-
*
|
|
8485
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8486
8486
|
*/
|
|
8487
|
-
|
|
8487
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8488
8488
|
|
|
8489
8489
|
/**
|
|
8490
|
-
*
|
|
8490
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8491
8491
|
*/
|
|
8492
|
-
|
|
8492
|
+
autoDeterminationOfLots: boolean;
|
|
8493
8493
|
|
|
8494
8494
|
/**
|
|
8495
8495
|
* Zielmengen in Masken verstecken?
|
|
@@ -8565,14 +8565,14 @@ export interface PriceSelectionCriteria {
|
|
|
8565
8565
|
quantity: number;
|
|
8566
8566
|
|
|
8567
8567
|
/**
|
|
8568
|
-
* Liste von
|
|
8568
|
+
* Liste von Artikel-IDs
|
|
8569
8569
|
*/
|
|
8570
|
-
|
|
8570
|
+
articleIds: Array<number>;
|
|
8571
8571
|
|
|
8572
8572
|
/**
|
|
8573
|
-
* Liste von
|
|
8573
|
+
* Liste von Account-IDs
|
|
8574
8574
|
*/
|
|
8575
|
-
|
|
8575
|
+
accountIds: Array<number>;
|
|
8576
8576
|
|
|
8577
8577
|
/**
|
|
8578
8578
|
* ein qualifier
|
|
@@ -8769,14 +8769,14 @@ export interface ProductDiscount {
|
|
|
8769
8769
|
validFrom: ScriptingDate;
|
|
8770
8770
|
|
|
8771
8771
|
/**
|
|
8772
|
-
*
|
|
8772
|
+
* Bestimmt die Art des Rabatts
|
|
8773
8773
|
*/
|
|
8774
|
-
|
|
8774
|
+
modifierType: PriceModifierType;
|
|
8775
8775
|
|
|
8776
8776
|
/**
|
|
8777
|
-
*
|
|
8777
|
+
* Warengruppe
|
|
8778
8778
|
*/
|
|
8779
|
-
|
|
8779
|
+
productGroupRef: ApiObjectReference;
|
|
8780
8780
|
|
|
8781
8781
|
/**
|
|
8782
8782
|
* Version Identifier for this Object (for PUT)
|
|
@@ -9137,19 +9137,19 @@ export const enum RegulationSet {
|
|
|
9137
9137
|
export interface RequestDocument {
|
|
9138
9138
|
|
|
9139
9139
|
/**
|
|
9140
|
-
*
|
|
9140
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9141
9141
|
*/
|
|
9142
|
-
|
|
9142
|
+
incomingGoodsStorageBinId: number;
|
|
9143
9143
|
|
|
9144
9144
|
/**
|
|
9145
|
-
*
|
|
9145
|
+
* Belegdatum
|
|
9146
9146
|
*/
|
|
9147
|
-
|
|
9147
|
+
documentDate: ScriptingDate;
|
|
9148
9148
|
|
|
9149
9149
|
/**
|
|
9150
|
-
*
|
|
9150
|
+
* ID der Kassenschublade (bei POS)
|
|
9151
9151
|
*/
|
|
9152
|
-
|
|
9152
|
+
cashDrawerId: number;
|
|
9153
9153
|
|
|
9154
9154
|
/**
|
|
9155
9155
|
* Der Anzahlungsbetrag
|
|
@@ -9157,9 +9157,9 @@ export interface RequestDocument {
|
|
|
9157
9157
|
depositPaymentAmount: number;
|
|
9158
9158
|
|
|
9159
9159
|
/**
|
|
9160
|
-
*
|
|
9160
|
+
* Leistungsdatum
|
|
9161
9161
|
*/
|
|
9162
|
-
|
|
9162
|
+
performanceDate: ScriptingDate;
|
|
9163
9163
|
|
|
9164
9164
|
/**
|
|
9165
9165
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9221,26 +9221,26 @@ export interface RequestDocument {
|
|
|
9221
9221
|
*/
|
|
9222
9222
|
lines: Array<RequestDocumentLine>;
|
|
9223
9223
|
|
|
9224
|
-
/**
|
|
9225
|
-
* Die Vertragsdetails
|
|
9226
|
-
*/
|
|
9227
|
-
contractDetail: DocumentContractDetail;
|
|
9228
|
-
|
|
9229
9224
|
/**
|
|
9230
9225
|
* ID der Kasse (bei POS)
|
|
9231
9226
|
*/
|
|
9232
9227
|
posRegisterId: number;
|
|
9233
9228
|
|
|
9234
9229
|
/**
|
|
9235
|
-
*
|
|
9230
|
+
* Die Vertragsdetails
|
|
9236
9231
|
*/
|
|
9237
|
-
|
|
9232
|
+
contractDetail: DocumentContractDetail;
|
|
9238
9233
|
|
|
9239
9234
|
/**
|
|
9240
9235
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9241
9236
|
*/
|
|
9242
9237
|
paymentTermId: number;
|
|
9243
9238
|
|
|
9239
|
+
/**
|
|
9240
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9241
|
+
*/
|
|
9242
|
+
supplierAccountId: number;
|
|
9243
|
+
|
|
9244
9244
|
/**
|
|
9245
9245
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
9246
9246
|
*/
|
|
@@ -9282,14 +9282,14 @@ export interface RequestDocument {
|
|
|
9282
9282
|
accountId: number;
|
|
9283
9283
|
|
|
9284
9284
|
/**
|
|
9285
|
-
*
|
|
9285
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
9286
9286
|
*/
|
|
9287
|
-
|
|
9287
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
9288
9288
|
|
|
9289
9289
|
/**
|
|
9290
|
-
*
|
|
9290
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
9291
9291
|
*/
|
|
9292
|
-
|
|
9292
|
+
processedByPicklistProcessing: boolean;
|
|
9293
9293
|
|
|
9294
9294
|
/**
|
|
9295
9295
|
* Die Rabatte des Beleges
|
|
@@ -9460,14 +9460,14 @@ export interface RequestDocumentLine {
|
|
|
9460
9460
|
externalArticleNumber: string;
|
|
9461
9461
|
|
|
9462
9462
|
/**
|
|
9463
|
-
*
|
|
9463
|
+
* Buchungen zu dieser Belegposition
|
|
9464
9464
|
*/
|
|
9465
|
-
|
|
9465
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9466
9466
|
|
|
9467
9467
|
/**
|
|
9468
|
-
*
|
|
9468
|
+
* ID der Quell-Belegposition
|
|
9469
9469
|
*/
|
|
9470
|
-
|
|
9470
|
+
sourceLineId: number;
|
|
9471
9471
|
|
|
9472
9472
|
/**
|
|
9473
9473
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9629,14 +9629,14 @@ export interface SalesAgent {
|
|
|
9629
9629
|
note: string;
|
|
9630
9630
|
|
|
9631
9631
|
/**
|
|
9632
|
-
*
|
|
9632
|
+
* reference to the delivery method
|
|
9633
9633
|
*/
|
|
9634
|
-
|
|
9634
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9635
9635
|
|
|
9636
9636
|
/**
|
|
9637
|
-
*
|
|
9637
|
+
* is sales agent taxable
|
|
9638
9638
|
*/
|
|
9639
|
-
|
|
9639
|
+
taxable: boolean;
|
|
9640
9640
|
|
|
9641
9641
|
/**
|
|
9642
9642
|
* Freifelder
|
|
@@ -10225,14 +10225,14 @@ export interface ShelfDocumentType {
|
|
|
10225
10225
|
accessLevelWrite: number;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* system presetting
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
systemPresetting: boolean;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
|
-
*
|
|
10233
|
+
* Ist die Dokumentenart aktiv
|
|
10234
10234
|
*/
|
|
10235
|
-
|
|
10235
|
+
active: boolean;
|
|
10236
10236
|
|
|
10237
10237
|
/**
|
|
10238
10238
|
* access level or reading
|
|
@@ -10810,14 +10810,14 @@ export interface Supplier {
|
|
|
10810
10810
|
info: MetaInfo;
|
|
10811
10811
|
|
|
10812
10812
|
/**
|
|
10813
|
-
*
|
|
10813
|
+
* reference to the delivery method
|
|
10814
10814
|
*/
|
|
10815
|
-
|
|
10815
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10816
10816
|
|
|
10817
10817
|
/**
|
|
10818
|
-
*
|
|
10818
|
+
* Lieferantengruppe
|
|
10819
10819
|
*/
|
|
10820
|
-
|
|
10820
|
+
supplierGroupRef: ApiObjectReference;
|
|
10821
10821
|
|
|
10822
10822
|
/**
|
|
10823
10823
|
* tax able or tax free
|
|
@@ -11211,6 +11211,11 @@ export interface User {
|
|
|
11211
11211
|
*/
|
|
11212
11212
|
roles: Array<ApiObjectReference>;
|
|
11213
11213
|
|
|
11214
|
+
/**
|
|
11215
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11216
|
+
*/
|
|
11217
|
+
referencedCustomerUserId: number;
|
|
11218
|
+
|
|
11214
11219
|
/**
|
|
11215
11220
|
* Gruppen
|
|
11216
11221
|
*/
|
|
@@ -11221,11 +11226,6 @@ export interface User {
|
|
|
11221
11226
|
*/
|
|
11222
11227
|
active: boolean;
|
|
11223
11228
|
|
|
11224
|
-
/**
|
|
11225
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11226
|
-
*/
|
|
11227
|
-
referencedCustomerUserId: number;
|
|
11228
|
-
|
|
11229
11229
|
/**
|
|
11230
11230
|
* App-Identifier
|
|
11231
11231
|
*/
|
|
@@ -11262,14 +11262,14 @@ export interface User {
|
|
|
11262
11262
|
id: number;
|
|
11263
11263
|
|
|
11264
11264
|
/**
|
|
11265
|
-
*
|
|
11265
|
+
* Valid to
|
|
11266
11266
|
*/
|
|
11267
|
-
|
|
11267
|
+
validTo: ScriptingDateTime;
|
|
11268
11268
|
|
|
11269
11269
|
/**
|
|
11270
|
-
*
|
|
11270
|
+
* username
|
|
11271
11271
|
*/
|
|
11272
|
-
|
|
11272
|
+
username: string;
|
|
11273
11273
|
|
|
11274
11274
|
/**
|
|
11275
11275
|
* MetaInformations for this Object
|