@vario-software/types 2026.31.3 → 2026.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +3331 -1101
- package/scripting/services.d.ts +24 -24
- package/scripting/types.d.ts +398 -390
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
accountZoneId: AccountZoneId;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* first contact type for this account
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -143,26 +143,26 @@ export interface Account {
|
|
|
143
143
|
*/
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
|
-
/**
|
|
147
|
-
* Summe Forderungen
|
|
148
|
-
*/
|
|
149
|
-
receivablesSum: number;
|
|
150
|
-
|
|
151
146
|
/**
|
|
152
147
|
* Kostenstelle
|
|
153
148
|
*/
|
|
154
149
|
costCenter: string;
|
|
155
150
|
|
|
156
151
|
/**
|
|
157
|
-
*
|
|
152
|
+
* Summe Forderungen
|
|
158
153
|
*/
|
|
159
|
-
|
|
154
|
+
receivablesSum: number;
|
|
160
155
|
|
|
161
156
|
/**
|
|
162
157
|
* Custom account data
|
|
163
158
|
*/
|
|
164
159
|
custom: EavAccount;
|
|
165
160
|
|
|
161
|
+
/**
|
|
162
|
+
* companyLegal for this account
|
|
163
|
+
*/
|
|
164
|
+
companyLegalRef: ApiCreatableReference;
|
|
165
|
+
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
168
168
|
*/
|
|
@@ -179,14 +179,14 @@ export interface Account {
|
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* calculation mode of this document
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
calculationMode: CalculationMode;
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* Erstkontakt am
|
|
188
188
|
*/
|
|
189
|
-
|
|
189
|
+
initialContactAt: ScriptingDate;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* Sprache des Accounts
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Standard-Ansprechpartner
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
defaultPerson: AccountPerson;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
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
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
globalLocationNumber: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* Custom data
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
custom: EavAccountaddress;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* abweichende Zahlungsart
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
additionalAddressLine1: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Additional address line2
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
additionalAddressLine2: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Parcel station
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
parcelStation: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* 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
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* Contacts
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
contacts: Array<Contact>;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* abweichende Zahlungsbedingungen
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* name of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankName: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* post-code of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankPostCode: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* account from, if differs from account-address
|
|
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
|
|
|
505
505
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
|
-
*
|
|
508
|
+
* Is default bank?
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
defaultBank: boolean;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* origin type
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
originType: AccountBankdetail$OriginType;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Kreditlimit
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
maximalLoan: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
payablesSum: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* First name
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
firstName: string;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* Default contacts
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1015,20 +1015,25 @@ export interface Article {
|
|
|
1015
1015
|
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* Product custom data
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
listingCustom: EavArticleListing;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* is this product purchasable
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
purchasable: boolean;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Seriennummern Auszeichnungsart
|
|
1034
|
+
*/
|
|
1035
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
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
|
initialAvgPurchasePrice: number;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Seriennummern Auszeichnungsart
|
|
1044
|
-
*/
|
|
1045
|
-
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1284,6 +1284,11 @@ export interface Article {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
|
+
/**
|
|
1288
|
+
* gross sales prices
|
|
1289
|
+
*/
|
|
1290
|
+
grossSalesPrice: number;
|
|
1291
|
+
|
|
1287
1292
|
/**
|
|
1288
1293
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1294
|
*/
|
|
@@ -1294,11 +1299,6 @@ export interface Article {
|
|
|
1294
1299
|
*/
|
|
1295
1300
|
defaultFabricationCost: number;
|
|
1296
1301
|
|
|
1297
|
-
/**
|
|
1298
|
-
* gross sales prices
|
|
1299
|
-
*/
|
|
1300
|
-
grossSalesPrice: number;
|
|
1301
|
-
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -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
|
* alternative name of this product
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
*
|
|
1738
|
+
* der Sales Channel
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
salesChannelRef: ApiObjectReference;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
* der
|
|
1743
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
customLowestPriceGross: number;
|
|
1746
1746
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* soll der Artikel gelistet werden
|
|
@@ -1957,11 +1957,6 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
-
/**
|
|
1961
|
-
* Aktuelle Menge in Kommissionierung
|
|
1962
|
-
*/
|
|
1963
|
-
quantityInPicking: number;
|
|
1964
|
-
|
|
1965
1960
|
/**
|
|
1966
1961
|
* Meldebestand
|
|
1967
1962
|
*/
|
|
@@ -1973,15 +1968,20 @@ export interface ArticleStorage {
|
|
|
1973
1968
|
orderedQuantity: number;
|
|
1974
1969
|
|
|
1975
1970
|
/**
|
|
1976
|
-
*
|
|
1971
|
+
* Aktuelle Menge in Kommissionierung
|
|
1977
1972
|
*/
|
|
1978
|
-
|
|
1973
|
+
quantityInPicking: number;
|
|
1979
1974
|
|
|
1980
1975
|
/**
|
|
1981
1976
|
* Nachschub auf
|
|
1982
1977
|
*/
|
|
1983
1978
|
replenishmentOn: number;
|
|
1984
1979
|
|
|
1980
|
+
/**
|
|
1981
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1982
|
+
*/
|
|
1983
|
+
virtualStockAmount: number;
|
|
1984
|
+
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Reservierte Menge
|
|
1987
1987
|
*/
|
|
@@ -2023,14 +2023,14 @@ export interface ArticleStorage {
|
|
|
2023
2023
|
storageRef: ApiObjectReference;
|
|
2024
2024
|
|
|
2025
2025
|
/**
|
|
2026
|
-
*
|
|
2026
|
+
* 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
|
|
@@ -2050,6 +2050,11 @@ export interface ArticleStorage {
|
|
|
2050
2050
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
|
+
/**
|
|
2054
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2055
|
+
*/
|
|
2056
|
+
useSupplierArticleDescription: boolean;
|
|
2057
|
+
|
|
2053
2058
|
/**
|
|
2054
2059
|
* Anzeigename des Accounts
|
|
2055
2060
|
*/
|
|
@@ -2061,20 +2066,15 @@ export interface ArticleSupplier {
|
|
|
2061
2066
|
supplierReportingStock: number;
|
|
2062
2067
|
|
|
2063
2068
|
/**
|
|
2064
|
-
*
|
|
2069
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2065
2070
|
*/
|
|
2066
|
-
|
|
2071
|
+
deliveryTime: number;
|
|
2067
2072
|
|
|
2068
2073
|
/**
|
|
2069
2074
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2070
2075
|
*/
|
|
2071
2076
|
useSupplierArticleIdentifier: boolean;
|
|
2072
2077
|
|
|
2073
|
-
/**
|
|
2074
|
-
* Lieferzeit in (Werk-)Tagen
|
|
2075
|
-
*/
|
|
2076
|
-
deliveryTime: number;
|
|
2077
|
-
|
|
2078
2078
|
/**
|
|
2079
2079
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2080
2080
|
*/
|
|
@@ -2121,14 +2121,14 @@ export interface ArticleSupplier {
|
|
|
2121
2121
|
info: MetaInfo;
|
|
2122
2122
|
|
|
2123
2123
|
/**
|
|
2124
|
-
*
|
|
2124
|
+
* Referenced Article name
|
|
2125
2125
|
*/
|
|
2126
|
-
|
|
2126
|
+
articleName: string;
|
|
2127
2127
|
|
|
2128
2128
|
/**
|
|
2129
|
-
*
|
|
2129
|
+
* Verpackungseinheit
|
|
2130
2130
|
*/
|
|
2131
|
-
|
|
2131
|
+
packagingUnit: number;
|
|
2132
2132
|
|
|
2133
2133
|
/**
|
|
2134
2134
|
* Lieferanten-Preise
|
|
@@ -2161,14 +2161,14 @@ export interface ArticleSupplier {
|
|
|
2161
2161
|
dropShippingAllowed: boolean;
|
|
2162
2162
|
|
|
2163
2163
|
/**
|
|
2164
|
-
* Abweichende
|
|
2164
|
+
* Abweichende Produktbeschreibung
|
|
2165
2165
|
*/
|
|
2166
|
-
|
|
2166
|
+
supplierArticleDescription: string;
|
|
2167
2167
|
|
|
2168
2168
|
/**
|
|
2169
|
-
* Abweichende
|
|
2169
|
+
* Abweichende Produktbezeichnung
|
|
2170
2170
|
*/
|
|
2171
|
-
|
|
2171
|
+
supplierArticleName: string;
|
|
2172
2172
|
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Standardpreis Netto
|
|
@@ -2176,14 +2176,14 @@ export interface ArticleSupplier {
|
|
|
2176
2176
|
defaultNetPrice: number;
|
|
2177
2177
|
|
|
2178
2178
|
/**
|
|
2179
|
-
*
|
|
2179
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2180
2180
|
*/
|
|
2181
|
-
|
|
2181
|
+
orderOnComponentBase: boolean;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Einkaufseinheit
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
purchaseUnit: number;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
2189
|
* Referenced Supplier-Account
|
|
@@ -2214,14 +2214,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2214
|
quantity: number;
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
2217
|
-
*
|
|
2217
|
+
* ID der Baugruppen-Quellposition
|
|
2218
2218
|
*/
|
|
2219
|
-
|
|
2219
|
+
sourceLineId: number;
|
|
2220
2220
|
|
|
2221
2221
|
/**
|
|
2222
|
-
*
|
|
2222
|
+
* Buchungen zu der Komponente
|
|
2223
2223
|
*/
|
|
2224
|
-
|
|
2224
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2225
2225
|
|
|
2226
2226
|
/**
|
|
2227
2227
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* tatsächliche Startzeit
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
startDateTime: ScriptingDateTime;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
system: boolean;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -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
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
assignedUserRef: ApiObjectReference;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3227,14 +3227,14 @@ export interface CrmProject {
|
|
|
3227
3227
|
billedTimes: number;
|
|
3228
3228
|
|
|
3229
3229
|
/**
|
|
3230
|
-
*
|
|
3230
|
+
* Geplanter Projektzeitraum (von)
|
|
3231
3231
|
*/
|
|
3232
|
-
|
|
3232
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3233
3233
|
|
|
3234
3234
|
/**
|
|
3235
|
-
*
|
|
3235
|
+
* Einkaufsbelege
|
|
3236
3236
|
*/
|
|
3237
|
-
|
|
3237
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3238
3238
|
|
|
3239
3239
|
/**
|
|
3240
3240
|
* Verkaufsbelege
|
|
@@ -3267,14 +3267,14 @@ export interface CrmProject {
|
|
|
3267
3267
|
info: MetaInfo;
|
|
3268
3268
|
|
|
3269
3269
|
/**
|
|
3270
|
-
*
|
|
3270
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3271
3271
|
*/
|
|
3272
|
-
|
|
3272
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3273
3273
|
|
|
3274
3274
|
/**
|
|
3275
|
-
*
|
|
3275
|
+
* Projektleiter vom Auftraggeber
|
|
3276
3276
|
*/
|
|
3277
|
-
|
|
3277
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3278
3278
|
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Übergeordnete CRM-Objekte
|
|
@@ -3928,14 +3928,14 @@ export interface Customer {
|
|
|
3928
3928
|
dueDate: ScriptingDate;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
*
|
|
3931
|
+
* collective billable
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
collectiveBillable: boolean;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
|
-
*
|
|
3936
|
+
* Maximal mögliche Lieferungen
|
|
3937
3937
|
*/
|
|
3938
|
-
|
|
3938
|
+
maxDeliveries: number;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
collectiveInvoiceManually: boolean;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* reference to product price group
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the 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
|
|
@@ -4513,14 +4513,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4513
|
accountId: number;
|
|
4514
4514
|
|
|
4515
4515
|
/**
|
|
4516
|
-
* Länderkennzeichen
|
|
4516
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4517
4517
|
*/
|
|
4518
|
-
|
|
4518
|
+
performanceCountryCode: string;
|
|
4519
4519
|
|
|
4520
4520
|
/**
|
|
4521
|
-
* Länderkennzeichen
|
|
4521
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4522
4522
|
*/
|
|
4523
|
-
|
|
4523
|
+
sourceCountryCode: string;
|
|
4524
4524
|
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4568,14 +4568,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4568
4568
|
supplierNumber: string;
|
|
4569
4569
|
|
|
4570
4570
|
/**
|
|
4571
|
-
*
|
|
4571
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4572
4572
|
*/
|
|
4573
|
-
|
|
4573
|
+
deliveryApproved: boolean;
|
|
4574
4574
|
|
|
4575
4575
|
/**
|
|
4576
|
-
*
|
|
4576
|
+
* Gesamtpreis brutto
|
|
4577
4577
|
*/
|
|
4578
|
-
|
|
4578
|
+
totalGrossPrice: number;
|
|
4579
4579
|
|
|
4580
4580
|
/**
|
|
4581
4581
|
* Kassen-Zahlungspositionen
|
|
@@ -4620,14 +4620,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4620
4620
|
contractDetail: DocumentContractDetail;
|
|
4621
4621
|
|
|
4622
4622
|
/**
|
|
4623
|
-
*
|
|
4623
|
+
* Zahlungsplan vorhanden?
|
|
4624
4624
|
*/
|
|
4625
|
-
|
|
4625
|
+
paymentPlan: boolean;
|
|
4626
4626
|
|
|
4627
4627
|
/**
|
|
4628
|
-
*
|
|
4628
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4629
4629
|
*/
|
|
4630
|
-
|
|
4630
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
|
4633
4633
|
* Produktionsdetails
|
|
@@ -4684,26 +4684,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4684
4684
|
*/
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
|
-
/**
|
|
4688
|
-
* Leistungsdatum
|
|
4689
|
-
*/
|
|
4690
|
-
performanceDate: ScriptingDate;
|
|
4691
|
-
|
|
4692
4687
|
/**
|
|
4693
4688
|
* Verarbeitungsoption für Stapel
|
|
4694
4689
|
*/
|
|
4695
4690
|
stackProcessingType: OrderStackProcessingType;
|
|
4696
4691
|
|
|
4697
4692
|
/**
|
|
4698
|
-
*
|
|
4693
|
+
* Leistungsdatum
|
|
4699
4694
|
*/
|
|
4700
|
-
|
|
4695
|
+
performanceDate: ScriptingDate;
|
|
4701
4696
|
|
|
4702
4697
|
/**
|
|
4703
4698
|
* EN16931-Profil für elektronische Rechnungen
|
|
4704
4699
|
*/
|
|
4705
4700
|
en16931Profile: EN16931Profile;
|
|
4706
4701
|
|
|
4702
|
+
/**
|
|
4703
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4704
|
+
*/
|
|
4705
|
+
dropShippingInvoiceApproved: boolean;
|
|
4706
|
+
|
|
4707
4707
|
/**
|
|
4708
4708
|
* Ort der steuerlichen Leistungserbringung
|
|
4709
4709
|
*/
|
|
@@ -4750,14 +4750,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4750
4750
|
dropShipping: boolean;
|
|
4751
4751
|
|
|
4752
4752
|
/**
|
|
4753
|
-
*
|
|
4753
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4754
4754
|
*/
|
|
4755
|
-
|
|
4755
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4756
4756
|
|
|
4757
4757
|
/**
|
|
4758
|
-
*
|
|
4758
|
+
* Gesamtpreis netto
|
|
4759
4759
|
*/
|
|
4760
|
-
|
|
4760
|
+
totalNetPrice: number;
|
|
4761
4761
|
|
|
4762
4762
|
/**
|
|
4763
4763
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4884,6 +4884,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4884
4884
|
*/
|
|
4885
4885
|
posReceiptChangeAmount: number;
|
|
4886
4886
|
|
|
4887
|
+
/**
|
|
4888
|
+
* Referenz auf Lieferbedingung
|
|
4889
|
+
*/
|
|
4890
|
+
deliveryTermRef: ApiObjectReference;
|
|
4891
|
+
|
|
4887
4892
|
/**
|
|
4888
4893
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4889
4894
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4891,11 +4896,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4891
4896
|
*/
|
|
4892
4897
|
posReceiptBalanced: boolean;
|
|
4893
4898
|
|
|
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
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -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
|
-
* Preis pro Einheit in Basiswährung
|
|
5549
|
-
*/
|
|
5550
|
-
basePrice: number;
|
|
5551
|
-
|
|
5552
5547
|
/**
|
|
5553
5548
|
* Serientyp
|
|
5554
5549
|
*/
|
|
@@ -5560,15 +5555,20 @@ export interface DocumentLine {
|
|
|
5560
5555
|
positionOfArticleLine: number;
|
|
5561
5556
|
|
|
5562
5557
|
/**
|
|
5563
|
-
*
|
|
5558
|
+
* Preis pro Einheit in Basiswährung
|
|
5564
5559
|
*/
|
|
5565
|
-
|
|
5560
|
+
basePrice: number;
|
|
5566
5561
|
|
|
5567
5562
|
/**
|
|
5568
5563
|
* Steuerschema
|
|
5569
5564
|
*/
|
|
5570
5565
|
taxSchemaRef: ApiObjectReference;
|
|
5571
5566
|
|
|
5567
|
+
/**
|
|
5568
|
+
* Preiseinheit
|
|
5569
|
+
*/
|
|
5570
|
+
priceUnit: number;
|
|
5571
|
+
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
5574
5574
|
*/
|
|
@@ -5765,14 +5765,14 @@ export interface DocumentLine {
|
|
|
5765
5765
|
commissions: Array<DocumentLineCommission>;
|
|
5766
5766
|
|
|
5767
5767
|
/**
|
|
5768
|
-
*
|
|
5768
|
+
* Gesamtpreis Position in Basiswährung
|
|
5769
5769
|
*/
|
|
5770
|
-
|
|
5770
|
+
baseTotalLinePrice: number;
|
|
5771
5771
|
|
|
5772
5772
|
/**
|
|
5773
|
-
*
|
|
5773
|
+
* Positionstyp
|
|
5774
5774
|
*/
|
|
5775
|
-
|
|
5775
|
+
lineType: DocumentLineType;
|
|
5776
5776
|
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5835,14 +5835,14 @@ export interface DocumentLine {
|
|
|
5835
5835
|
position: number;
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
|
-
*
|
|
5838
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5839
5839
|
*/
|
|
5840
|
-
|
|
5840
|
+
recalcLinePriceViaComponents: boolean;
|
|
5841
5841
|
|
|
5842
5842
|
/**
|
|
5843
|
-
*
|
|
5843
|
+
* Buchungen
|
|
5844
5844
|
*/
|
|
5845
|
-
|
|
5845
|
+
bookings: Array<DocumentLineBooking>;
|
|
5846
5846
|
|
|
5847
5847
|
/**
|
|
5848
5848
|
* unit gross Volume in cubic meters
|
|
@@ -5935,14 +5935,14 @@ export interface DocumentLine {
|
|
|
5935
5935
|
custom: EavDocumentline;
|
|
5936
5936
|
|
|
5937
5937
|
/**
|
|
5938
|
-
*
|
|
5938
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5939
5939
|
*/
|
|
5940
|
-
|
|
5940
|
+
settledOpenItemComment: string;
|
|
5941
5941
|
|
|
5942
5942
|
/**
|
|
5943
|
-
*
|
|
5943
|
+
* Artikel
|
|
5944
5944
|
*/
|
|
5945
|
-
|
|
5945
|
+
articleId: number;
|
|
5946
5946
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Interne Preisänderungsinformationen
|
|
@@ -6124,14 +6124,14 @@ export interface DocumentLineComponent {
|
|
|
6124
6124
|
custom: EavDocumentlinecomponent;
|
|
6125
6125
|
|
|
6126
6126
|
/**
|
|
6127
|
-
*
|
|
6127
|
+
* 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
|
|
@@ -6336,14 +6336,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6336
6336
|
quantityFinished: number;
|
|
6337
6337
|
|
|
6338
6338
|
/**
|
|
6339
|
-
*
|
|
6339
|
+
* Produzierte Seriennummern
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6342
6342
|
|
|
6343
6343
|
/**
|
|
6344
|
-
*
|
|
6344
|
+
* Menge defekt
|
|
6345
6345
|
*/
|
|
6346
|
-
|
|
6346
|
+
quantityDefective: number;
|
|
6347
6347
|
|
|
6348
6348
|
/**
|
|
6349
6349
|
* Freifeld
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Typ der Einlage/Ausgabe
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
depositExpenseTypeId: number;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Status der externen Zahlung
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6608,14 +6608,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6608
6608
|
customerShareOnReduction: number;
|
|
6609
6609
|
|
|
6610
6610
|
/**
|
|
6611
|
-
*
|
|
6611
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6612
6612
|
*/
|
|
6613
|
-
|
|
6613
|
+
deliveryTermRef: ApiObjectReference;
|
|
6614
6614
|
|
|
6615
6615
|
/**
|
|
6616
|
-
*
|
|
6616
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6617
6617
|
*/
|
|
6618
|
-
|
|
6618
|
+
waitForReturnBeforeExchange: boolean;
|
|
6619
6619
|
|
|
6620
6620
|
/**
|
|
6621
6621
|
* Referenz auf Retourengrund
|
|
@@ -6793,14 +6793,14 @@ export interface DocumentPosPayment {
|
|
|
6793
6793
|
version: number;
|
|
6794
6794
|
|
|
6795
6795
|
/**
|
|
6796
|
-
*
|
|
6796
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6797
6797
|
*/
|
|
6798
|
-
|
|
6798
|
+
withdrawalAmount: number;
|
|
6799
6799
|
|
|
6800
6800
|
/**
|
|
6801
|
-
*
|
|
6801
|
+
* Zahlungsart
|
|
6802
6802
|
*/
|
|
6803
|
-
|
|
6803
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6804
6804
|
|
|
6805
6805
|
/**
|
|
6806
6806
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -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
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Die gültige Seriennummer
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetSerialNumber: string;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -8217,14 +8217,14 @@ export interface OpenItem {
|
|
|
8217
8217
|
paymentDueDate: ScriptingDate;
|
|
8218
8218
|
|
|
8219
8219
|
/**
|
|
8220
|
-
* Länderkennzeichen
|
|
8220
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8221
8221
|
*/
|
|
8222
|
-
|
|
8222
|
+
performanceCountryCode: string;
|
|
8223
8223
|
|
|
8224
8224
|
/**
|
|
8225
|
-
* Länderkennzeichen
|
|
8225
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8226
8226
|
*/
|
|
8227
|
-
|
|
8227
|
+
sourceCountryCode: string;
|
|
8228
8228
|
|
|
8229
8229
|
/**
|
|
8230
8230
|
* Valutadatum schreibgeschützt
|
|
@@ -8302,14 +8302,14 @@ export interface OpenItem {
|
|
|
8302
8302
|
paymentAmount: number;
|
|
8303
8303
|
|
|
8304
8304
|
/**
|
|
8305
|
-
*
|
|
8305
|
+
* Rechnungskorrektur
|
|
8306
8306
|
*/
|
|
8307
|
-
|
|
8307
|
+
creditNote: ApiObjectReference;
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* how should a refund be done?
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
8315
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* Zahlungsplan
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* The full amount of the payment
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
fullPaymentAmount: number;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -8372,14 +8372,14 @@ export interface OpenItem {
|
|
|
8372
8372
|
baseSumDiscount: number;
|
|
8373
8373
|
|
|
8374
8374
|
/**
|
|
8375
|
-
*
|
|
8375
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8376
8376
|
*/
|
|
8377
|
-
|
|
8377
|
+
baseSumDunnings: number;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Zahlungsvorlage
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
@@ -8392,14 +8392,14 @@ export interface OpenItem {
|
|
|
8392
8392
|
taxRateRef: ApiObjectReference;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
|
-
*
|
|
8395
|
+
* Anzahlungsrechnung
|
|
8396
8396
|
*/
|
|
8397
|
-
|
|
8397
|
+
depositInvoice: ApiObjectReference;
|
|
8398
8398
|
|
|
8399
8399
|
/**
|
|
8400
|
-
*
|
|
8400
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8401
8401
|
*/
|
|
8402
|
-
|
|
8402
|
+
baseCurrencyCode: string;
|
|
8403
8403
|
|
|
8404
8404
|
/**
|
|
8405
8405
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8614,6 +8614,11 @@ export interface OpenItemRecord {
|
|
|
8614
8614
|
*/
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
|
+
/**
|
|
8618
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8619
|
+
*/
|
|
8620
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8621
|
+
|
|
8617
8622
|
/**
|
|
8618
8623
|
* record discountable amount
|
|
8619
8624
|
*/
|
|
@@ -8735,6 +8740,19 @@ export interface OpenItemRecord {
|
|
|
8735
8740
|
currencyCode: string;
|
|
8736
8741
|
}
|
|
8737
8742
|
|
|
8743
|
+
export const enum OpenItemRecord$BookingType {
|
|
8744
|
+
PAYABLE = 'PAYABLE',
|
|
8745
|
+
RECEIVABLE = 'RECEIVABLE',
|
|
8746
|
+
PAYMENT_PAYABLE = 'PAYMENT_PAYABLE',
|
|
8747
|
+
PAYMENT_RECEIVABLE = 'PAYMENT_RECEIVABLE',
|
|
8748
|
+
PAYMENT_PAYABLE_DISSOLVED = 'PAYMENT_PAYABLE_DISSOLVED',
|
|
8749
|
+
PAYMENT_RECEIVABLE_DISSOLVED = 'PAYMENT_RECEIVABLE_DISSOLVED',
|
|
8750
|
+
DUNNING_PAYABLE = 'DUNNING_PAYABLE',
|
|
8751
|
+
DUNNING_RECEIVABLE = 'DUNNING_RECEIVABLE',
|
|
8752
|
+
DUNNING_PAYABLE_DISSOLVED = 'DUNNING_PAYABLE_DISSOLVED',
|
|
8753
|
+
DUNNING_RECEIVABLE_DISSOLVED = 'DUNNING_RECEIVABLE_DISSOLVED'
|
|
8754
|
+
}
|
|
8755
|
+
|
|
8738
8756
|
export const enum OpenItemRecord$RecordOrigin {
|
|
8739
8757
|
DOCUMENT = 'DOCUMENT',
|
|
8740
8758
|
PAYMENT = 'PAYMENT',
|
|
@@ -8841,31 +8859,31 @@ export interface PaymentMethod {
|
|
|
8841
8859
|
*/
|
|
8842
8860
|
dunnable: boolean;
|
|
8843
8861
|
|
|
8844
|
-
/**
|
|
8845
|
-
* Debitoren-OP abschließen?
|
|
8846
|
-
*/
|
|
8847
|
-
closeCustomerAccountType: boolean;
|
|
8848
|
-
|
|
8849
8862
|
/**
|
|
8850
8863
|
* translations
|
|
8851
8864
|
*/
|
|
8852
8865
|
translations: Array<DocumentTypeTerm>;
|
|
8853
8866
|
|
|
8854
8867
|
/**
|
|
8855
|
-
*
|
|
8868
|
+
* Debitoren-OP abschließen?
|
|
8856
8869
|
*/
|
|
8857
|
-
|
|
8870
|
+
closeCustomerAccountType: boolean;
|
|
8858
8871
|
|
|
8859
8872
|
/**
|
|
8860
|
-
*
|
|
8873
|
+
* +Tage für Folgelastschrift
|
|
8861
8874
|
*/
|
|
8862
|
-
|
|
8875
|
+
daysToAddForFollowup: number;
|
|
8863
8876
|
|
|
8864
8877
|
/**
|
|
8865
8878
|
* Die Business Transaction
|
|
8866
8879
|
*/
|
|
8867
8880
|
businessTransaction: ApiObjectReference;
|
|
8868
8881
|
|
|
8882
|
+
/**
|
|
8883
|
+
* external Payment Id
|
|
8884
|
+
*/
|
|
8885
|
+
externalPaymentId: string;
|
|
8886
|
+
|
|
8869
8887
|
/**
|
|
8870
8888
|
* Unique identifier of the Object
|
|
8871
8889
|
*/
|
|
@@ -9320,25 +9338,15 @@ export interface PicklistLine {
|
|
|
9320
9338
|
*/
|
|
9321
9339
|
components: Array<PicklistLineComponent>;
|
|
9322
9340
|
|
|
9323
|
-
/**
|
|
9324
|
-
* Artikelbezeichnung
|
|
9325
|
-
*/
|
|
9326
|
-
articleName: string;
|
|
9327
|
-
|
|
9328
9341
|
/**
|
|
9329
9342
|
* Menge der Position
|
|
9330
9343
|
*/
|
|
9331
9344
|
quantity: number;
|
|
9332
9345
|
|
|
9333
9346
|
/**
|
|
9334
|
-
*
|
|
9335
|
-
*/
|
|
9336
|
-
articleDescription: string;
|
|
9337
|
-
|
|
9338
|
-
/**
|
|
9339
|
-
* ID des Artikels
|
|
9347
|
+
* Artikel
|
|
9340
9348
|
*/
|
|
9341
|
-
|
|
9349
|
+
articleRef: ProductArticleRef;
|
|
9342
9350
|
|
|
9343
9351
|
/**
|
|
9344
9352
|
* ID des Ziel-Dokuments
|
|
@@ -9356,19 +9364,9 @@ export interface PicklistLine {
|
|
|
9356
9364
|
sourceDocumentLineId: number;
|
|
9357
9365
|
|
|
9358
9366
|
/**
|
|
9359
|
-
*
|
|
9360
|
-
*/
|
|
9361
|
-
storageDisplayName: string;
|
|
9362
|
-
|
|
9363
|
-
/**
|
|
9364
|
-
* Artikelnummer
|
|
9365
|
-
*/
|
|
9366
|
-
articleNumber: string;
|
|
9367
|
-
|
|
9368
|
-
/**
|
|
9369
|
-
* Lagernummer
|
|
9367
|
+
* Lagers
|
|
9370
9368
|
*/
|
|
9371
|
-
|
|
9369
|
+
storageRef: ApiObjectReference;
|
|
9372
9370
|
|
|
9373
9371
|
/**
|
|
9374
9372
|
* Art der Position
|
|
@@ -9380,11 +9378,6 @@ export interface PicklistLine {
|
|
|
9380
9378
|
*/
|
|
9381
9379
|
targetDocumentLineId: number;
|
|
9382
9380
|
|
|
9383
|
-
/**
|
|
9384
|
-
* abweichende Artikelbezeichnung
|
|
9385
|
-
*/
|
|
9386
|
-
articleAlternativeName: string;
|
|
9387
|
-
|
|
9388
9381
|
/**
|
|
9389
9382
|
* Verpackte Menge der Position
|
|
9390
9383
|
*/
|
|
@@ -9410,11 +9403,6 @@ export interface PicklistLine {
|
|
|
9410
9403
|
*/
|
|
9411
9404
|
sourceDocumentId: number;
|
|
9412
9405
|
|
|
9413
|
-
/**
|
|
9414
|
-
* ID des Lagers, aus dem gepickt werden soll
|
|
9415
|
-
*/
|
|
9416
|
-
storageId: number;
|
|
9417
|
-
|
|
9418
9406
|
/**
|
|
9419
9407
|
* MetaInformations for this Object
|
|
9420
9408
|
*/
|
|
@@ -9697,11 +9685,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9697
9685
|
*/
|
|
9698
9686
|
alternativeSelectionInVql: string;
|
|
9699
9687
|
|
|
9700
|
-
/**
|
|
9701
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9702
|
-
*/
|
|
9703
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9704
|
-
|
|
9705
9688
|
/**
|
|
9706
9689
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9707
9690
|
*/
|
|
@@ -9712,6 +9695,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9712
9695
|
*/
|
|
9713
9696
|
onlyFullDeliverableOrderLines: boolean;
|
|
9714
9697
|
|
|
9698
|
+
/**
|
|
9699
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9700
|
+
*/
|
|
9701
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9702
|
+
|
|
9715
9703
|
/**
|
|
9716
9704
|
* Selektion über den Bereich vom Belegdatum
|
|
9717
9705
|
*/
|
|
@@ -9791,9 +9779,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9791
9779
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9792
9780
|
|
|
9793
9781
|
/**
|
|
9794
|
-
*
|
|
9782
|
+
* Lagerplätze vorgeben
|
|
9795
9783
|
*/
|
|
9796
|
-
|
|
9784
|
+
specifyStorageBins: boolean;
|
|
9797
9785
|
|
|
9798
9786
|
/**
|
|
9799
9787
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9801,19 +9789,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9801
9789
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9802
9790
|
|
|
9803
9791
|
/**
|
|
9804
|
-
*
|
|
9792
|
+
* Der zu verwendende Pickwagen
|
|
9805
9793
|
*/
|
|
9806
|
-
|
|
9794
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9807
9795
|
|
|
9808
9796
|
/**
|
|
9809
|
-
*
|
|
9797
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9810
9798
|
*/
|
|
9811
|
-
|
|
9799
|
+
sortByRoutePosition: boolean;
|
|
9812
9800
|
|
|
9813
9801
|
/**
|
|
9814
|
-
*
|
|
9802
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9815
9803
|
*/
|
|
9816
|
-
|
|
9804
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9817
9805
|
|
|
9818
9806
|
/**
|
|
9819
9807
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -9879,14 +9867,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9879
9867
|
allowPickingOfServiceArticles: boolean;
|
|
9880
9868
|
|
|
9881
9869
|
/**
|
|
9882
|
-
*
|
|
9870
|
+
* Sammelbestätigung erlauben
|
|
9883
9871
|
*/
|
|
9884
|
-
|
|
9872
|
+
allowFullConfirmation: boolean;
|
|
9885
9873
|
|
|
9886
9874
|
/**
|
|
9887
|
-
*
|
|
9875
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9888
9876
|
*/
|
|
9889
|
-
|
|
9877
|
+
useDigitalPicklist: boolean;
|
|
9890
9878
|
|
|
9891
9879
|
/**
|
|
9892
9880
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
@@ -9909,14 +9897,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9909
9897
|
printLabelOnCompleteOrder: boolean;
|
|
9910
9898
|
|
|
9911
9899
|
/**
|
|
9912
|
-
*
|
|
9900
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9913
9901
|
*/
|
|
9914
|
-
|
|
9902
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9915
9903
|
|
|
9916
9904
|
/**
|
|
9917
|
-
*
|
|
9905
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9918
9906
|
*/
|
|
9919
|
-
|
|
9907
|
+
printLabelAfterPicking: boolean;
|
|
9920
9908
|
|
|
9921
9909
|
/**
|
|
9922
9910
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -10173,23 +10161,38 @@ export interface ProductArticleRef {
|
|
|
10173
10161
|
*/
|
|
10174
10162
|
unit: UnitTypeReference;
|
|
10175
10163
|
|
|
10164
|
+
/**
|
|
10165
|
+
* Bezeichnung
|
|
10166
|
+
*/
|
|
10167
|
+
name: string;
|
|
10168
|
+
|
|
10169
|
+
/**
|
|
10170
|
+
* Beschreibung
|
|
10171
|
+
*/
|
|
10172
|
+
description: string;
|
|
10173
|
+
|
|
10176
10174
|
/**
|
|
10177
10175
|
* Article ID
|
|
10178
10176
|
*/
|
|
10179
10177
|
id: number;
|
|
10178
|
+
|
|
10179
|
+
/**
|
|
10180
|
+
* Serientyp
|
|
10181
|
+
*/
|
|
10182
|
+
serialType: ArticleSerialType;
|
|
10180
10183
|
}
|
|
10181
10184
|
|
|
10182
10185
|
export interface ProductDiscount {
|
|
10183
10186
|
|
|
10184
10187
|
/**
|
|
10185
|
-
*
|
|
10188
|
+
* Kundengruppe
|
|
10186
10189
|
*/
|
|
10187
|
-
|
|
10190
|
+
customerGroupRef: ApiObjectReference;
|
|
10188
10191
|
|
|
10189
10192
|
/**
|
|
10190
|
-
*
|
|
10193
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10191
10194
|
*/
|
|
10192
|
-
|
|
10195
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10193
10196
|
|
|
10194
10197
|
/**
|
|
10195
10198
|
* Lieferantengruppe
|
|
@@ -10217,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10217
10220
|
validFrom: ScriptingDate;
|
|
10218
10221
|
|
|
10219
10222
|
/**
|
|
10220
|
-
*
|
|
10223
|
+
* Bestimmt die Art des Rabatts
|
|
10221
10224
|
*/
|
|
10222
|
-
|
|
10225
|
+
modifierType: PriceModifierType;
|
|
10223
10226
|
|
|
10224
10227
|
/**
|
|
10225
|
-
*
|
|
10228
|
+
* Warengruppe
|
|
10226
10229
|
*/
|
|
10227
|
-
|
|
10230
|
+
productGroupRef: ApiObjectReference;
|
|
10228
10231
|
|
|
10229
10232
|
/**
|
|
10230
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10396,14 +10399,14 @@ export interface ProductMainGroup {
|
|
|
10396
10399
|
export interface ProductPrice {
|
|
10397
10400
|
|
|
10398
10401
|
/**
|
|
10399
|
-
*
|
|
10402
|
+
* Kundengruppe
|
|
10400
10403
|
*/
|
|
10401
|
-
|
|
10404
|
+
customerGroupRef: ApiObjectReference;
|
|
10402
10405
|
|
|
10403
10406
|
/**
|
|
10404
|
-
*
|
|
10407
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10405
10408
|
*/
|
|
10406
|
-
|
|
10409
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10407
10410
|
|
|
10408
10411
|
/**
|
|
10409
10412
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10495,6 +10498,11 @@ export interface ProductPrice {
|
|
|
10495
10498
|
*/
|
|
10496
10499
|
qualifier: ProductPriceQualifier;
|
|
10497
10500
|
|
|
10501
|
+
/**
|
|
10502
|
+
* Preisbasis
|
|
10503
|
+
*/
|
|
10504
|
+
priceBase: ArticlePriceBase;
|
|
10505
|
+
|
|
10498
10506
|
/**
|
|
10499
10507
|
* Aktionpreis
|
|
10500
10508
|
*/
|
|
@@ -10505,11 +10513,6 @@ export interface ProductPrice {
|
|
|
10505
10513
|
*/
|
|
10506
10514
|
validUntil: ScriptingDate;
|
|
10507
10515
|
|
|
10508
|
-
/**
|
|
10509
|
-
* Preisbasis
|
|
10510
|
-
*/
|
|
10511
|
-
priceBase: ArticlePriceBase;
|
|
10512
|
-
|
|
10513
10516
|
/**
|
|
10514
10517
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10515
10518
|
*/
|
|
@@ -10611,14 +10614,14 @@ export const enum RegulationSet {
|
|
|
10611
10614
|
export interface RequestDocument {
|
|
10612
10615
|
|
|
10613
10616
|
/**
|
|
10614
|
-
*
|
|
10617
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10615
10618
|
*/
|
|
10616
|
-
|
|
10619
|
+
incomingGoodsStorageBinId: number;
|
|
10617
10620
|
|
|
10618
10621
|
/**
|
|
10619
|
-
*
|
|
10622
|
+
* Belegdatum
|
|
10620
10623
|
*/
|
|
10621
|
-
|
|
10624
|
+
documentDate: ScriptingDate;
|
|
10622
10625
|
|
|
10623
10626
|
/**
|
|
10624
10627
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10701,14 +10704,14 @@ export interface RequestDocument {
|
|
|
10701
10704
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10702
10705
|
|
|
10703
10706
|
/**
|
|
10704
|
-
*
|
|
10707
|
+
* Die Vertragsdetails
|
|
10705
10708
|
*/
|
|
10706
|
-
|
|
10709
|
+
contractDetail: DocumentContractDetail;
|
|
10707
10710
|
|
|
10708
10711
|
/**
|
|
10709
|
-
*
|
|
10712
|
+
* ID der Kasse (bei POS)
|
|
10710
10713
|
*/
|
|
10711
|
-
|
|
10714
|
+
posRegisterId: number;
|
|
10712
10715
|
|
|
10713
10716
|
/**
|
|
10714
10717
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10854,14 +10857,14 @@ export interface RequestDocumentLine {
|
|
|
10854
10857
|
dropShippingPolicy: DropShippingPolicy;
|
|
10855
10858
|
|
|
10856
10859
|
/**
|
|
10857
|
-
*
|
|
10860
|
+
* Positionsnummer der Artikel
|
|
10858
10861
|
*/
|
|
10859
|
-
|
|
10862
|
+
positionOfArticleLine: number;
|
|
10860
10863
|
|
|
10861
10864
|
/**
|
|
10862
|
-
*
|
|
10865
|
+
* (optional) Lager-ID
|
|
10863
10866
|
*/
|
|
10864
|
-
|
|
10867
|
+
storageId: number;
|
|
10865
10868
|
|
|
10866
10869
|
/**
|
|
10867
10870
|
* Vertragsdetails zur Belegposition
|
|
@@ -10899,14 +10902,14 @@ export interface RequestDocumentLine {
|
|
|
10899
10902
|
custom: EavDocumentline;
|
|
10900
10903
|
|
|
10901
10904
|
/**
|
|
10902
|
-
*
|
|
10905
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10903
10906
|
*/
|
|
10904
|
-
|
|
10907
|
+
settledOpenItemComment: string;
|
|
10905
10908
|
|
|
10906
10909
|
/**
|
|
10907
|
-
*
|
|
10910
|
+
* (optional) ID des Artikels dieser Position
|
|
10908
10911
|
*/
|
|
10909
|
-
|
|
10912
|
+
articleId: number;
|
|
10910
10913
|
|
|
10911
10914
|
/**
|
|
10912
10915
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10948,11 +10951,6 @@ export interface RequestDocumentLine {
|
|
|
10948
10951
|
*/
|
|
10949
10952
|
name: string;
|
|
10950
10953
|
|
|
10951
|
-
/**
|
|
10952
|
-
* Buchungen zu dieser Belegposition
|
|
10953
|
-
*/
|
|
10954
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
10955
|
-
|
|
10956
10954
|
/**
|
|
10957
10955
|
* Für interne Zwecke: Externe Artikelnummer
|
|
10958
10956
|
*/
|
|
@@ -10964,14 +10962,19 @@ export interface RequestDocumentLine {
|
|
|
10964
10962
|
sourceLineId: number;
|
|
10965
10963
|
|
|
10966
10964
|
/**
|
|
10967
|
-
*
|
|
10965
|
+
* Buchungen zu dieser Belegposition
|
|
10968
10966
|
*/
|
|
10969
|
-
|
|
10967
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10970
10968
|
|
|
10971
10969
|
/**
|
|
10972
10970
|
* Zu der Zeile Etikettendruck anstoßen
|
|
10973
10971
|
*/
|
|
10974
10972
|
doLabelPrint: boolean;
|
|
10973
|
+
|
|
10974
|
+
/**
|
|
10975
|
+
* (optional) Preis des Artikels dieser Position
|
|
10976
|
+
*/
|
|
10977
|
+
productPrice: number;
|
|
10975
10978
|
}
|
|
10976
10979
|
|
|
10977
10980
|
export interface RequestDocumentLineBooking {
|
|
@@ -11136,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11136
11139
|
note: string;
|
|
11137
11140
|
|
|
11138
11141
|
/**
|
|
11139
|
-
*
|
|
11142
|
+
* reference to the delivery method
|
|
11140
11143
|
*/
|
|
11141
|
-
|
|
11144
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11142
11145
|
|
|
11143
11146
|
/**
|
|
11144
|
-
*
|
|
11147
|
+
* is sales agent taxable
|
|
11145
11148
|
*/
|
|
11146
|
-
|
|
11149
|
+
taxable: boolean;
|
|
11147
11150
|
|
|
11148
11151
|
/**
|
|
11149
11152
|
* Freifelder
|
|
@@ -11392,14 +11395,14 @@ export interface ScenarioDimensionValue {
|
|
|
11392
11395
|
export interface ScenarioFactDef {
|
|
11393
11396
|
|
|
11394
11397
|
/**
|
|
11395
|
-
* Attribut
|
|
11398
|
+
* Attribut Name
|
|
11396
11399
|
*/
|
|
11397
|
-
|
|
11400
|
+
factAttribute: string;
|
|
11398
11401
|
|
|
11399
11402
|
/**
|
|
11400
|
-
* Attribut
|
|
11403
|
+
* Attribut Typ
|
|
11401
11404
|
*/
|
|
11402
|
-
|
|
11405
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11403
11406
|
|
|
11404
11407
|
/**
|
|
11405
11408
|
* Unique identifier of the Object
|
|
@@ -11620,14 +11623,14 @@ export interface ShelfDocument {
|
|
|
11620
11623
|
tags: Array<TagDto>;
|
|
11621
11624
|
|
|
11622
11625
|
/**
|
|
11623
|
-
*
|
|
11626
|
+
* Mehrsprachige Bezeichnungen
|
|
11624
11627
|
*/
|
|
11625
|
-
|
|
11628
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11626
11629
|
|
|
11627
11630
|
/**
|
|
11628
|
-
*
|
|
11631
|
+
* share informations
|
|
11629
11632
|
*/
|
|
11630
|
-
|
|
11633
|
+
shares: Array<ShelfShare>;
|
|
11631
11634
|
|
|
11632
11635
|
/**
|
|
11633
11636
|
* Automatische Löschung ab
|
|
@@ -11703,14 +11706,14 @@ export interface ShelfDocumentAttribution {
|
|
|
11703
11706
|
shelfResourceId: number;
|
|
11704
11707
|
|
|
11705
11708
|
/**
|
|
11706
|
-
*
|
|
11709
|
+
* id of the referenced object
|
|
11707
11710
|
*/
|
|
11708
|
-
|
|
11711
|
+
refId: number;
|
|
11709
11712
|
|
|
11710
11713
|
/**
|
|
11711
|
-
*
|
|
11714
|
+
* Verfügbare Transformationen zum Bild
|
|
11712
11715
|
*/
|
|
11713
|
-
|
|
11716
|
+
transformationKeys: Array<string>;
|
|
11714
11717
|
|
|
11715
11718
|
/**
|
|
11716
11719
|
* Unique identifier of the Object
|
|
@@ -11812,14 +11815,14 @@ export interface ShelfFile {
|
|
|
11812
11815
|
subFiles: Array<SubFileInfo>;
|
|
11813
11816
|
|
|
11814
11817
|
/**
|
|
11815
|
-
*
|
|
11818
|
+
* revision number of this file
|
|
11816
11819
|
*/
|
|
11817
|
-
|
|
11820
|
+
revisionNumber: number;
|
|
11818
11821
|
|
|
11819
11822
|
/**
|
|
11820
|
-
*
|
|
11823
|
+
* fileSize
|
|
11821
11824
|
*/
|
|
11822
|
-
|
|
11825
|
+
fileSize: number;
|
|
11823
11826
|
|
|
11824
11827
|
/**
|
|
11825
11828
|
* file-extension of this entry
|
|
@@ -11847,14 +11850,14 @@ export interface ShelfFile {
|
|
|
11847
11850
|
version: number;
|
|
11848
11851
|
|
|
11849
11852
|
/**
|
|
11850
|
-
*
|
|
11853
|
+
* current reference of this file in our storage
|
|
11851
11854
|
*/
|
|
11852
|
-
|
|
11855
|
+
storageHandle: string;
|
|
11853
11856
|
|
|
11854
11857
|
/**
|
|
11855
|
-
*
|
|
11858
|
+
* meta data
|
|
11856
11859
|
*/
|
|
11857
|
-
|
|
11860
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11858
11861
|
|
|
11859
11862
|
/**
|
|
11860
11863
|
* MetaInformations for this Object
|
|
@@ -12240,6 +12243,11 @@ export interface StorageBinRef {
|
|
|
12240
12243
|
*/
|
|
12241
12244
|
displayName: string;
|
|
12242
12245
|
|
|
12246
|
+
/**
|
|
12247
|
+
* Laufwegposition
|
|
12248
|
+
*/
|
|
12249
|
+
routePosition: number;
|
|
12250
|
+
|
|
12243
12251
|
/**
|
|
12244
12252
|
* ID
|
|
12245
12253
|
*/
|
|
@@ -12343,14 +12351,14 @@ export interface Supplier {
|
|
|
12343
12351
|
info: MetaInfo;
|
|
12344
12352
|
|
|
12345
12353
|
/**
|
|
12346
|
-
*
|
|
12354
|
+
* reference to the delivery method
|
|
12347
12355
|
*/
|
|
12348
|
-
|
|
12356
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12349
12357
|
|
|
12350
12358
|
/**
|
|
12351
|
-
*
|
|
12359
|
+
* Lieferantengruppe
|
|
12352
12360
|
*/
|
|
12353
|
-
|
|
12361
|
+
supplierGroupRef: ApiObjectReference;
|
|
12354
12362
|
|
|
12355
12363
|
/**
|
|
12356
12364
|
* tax able or tax free
|
|
@@ -12408,14 +12416,14 @@ export interface Supplier {
|
|
|
12408
12416
|
performanceCountryCode: string;
|
|
12409
12417
|
|
|
12410
12418
|
/**
|
|
12411
|
-
*
|
|
12419
|
+
* reference to the payment method
|
|
12412
12420
|
*/
|
|
12413
|
-
|
|
12421
|
+
paymentMethodRef: ApiObjectReference;
|
|
12414
12422
|
|
|
12415
12423
|
/**
|
|
12416
|
-
*
|
|
12424
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12417
12425
|
*/
|
|
12418
|
-
|
|
12426
|
+
defaultDeliveryTime: number;
|
|
12419
12427
|
|
|
12420
12428
|
/**
|
|
12421
12429
|
* Bestellsperre
|
|
@@ -12441,14 +12449,14 @@ export interface TagDto {
|
|
|
12441
12449
|
editColor: string;
|
|
12442
12450
|
|
|
12443
12451
|
/**
|
|
12444
|
-
* Farbe
|
|
12452
|
+
* Farbe für die Anzeige des Tags
|
|
12445
12453
|
*/
|
|
12446
|
-
|
|
12454
|
+
color: string;
|
|
12447
12455
|
|
|
12448
12456
|
/**
|
|
12449
|
-
* Farbe
|
|
12457
|
+
* Farbe in Such-GUI
|
|
12450
12458
|
*/
|
|
12451
|
-
|
|
12459
|
+
searchColor: string;
|
|
12452
12460
|
|
|
12453
12461
|
/**
|
|
12454
12462
|
* Beschriftung des Tags
|
|
@@ -12680,14 +12688,14 @@ export interface TextTemplate {
|
|
|
12680
12688
|
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12681
12689
|
|
|
12682
12690
|
/**
|
|
12683
|
-
*
|
|
12691
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12684
12692
|
*/
|
|
12685
|
-
|
|
12693
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12686
12694
|
|
|
12687
12695
|
/**
|
|
12688
|
-
*
|
|
12696
|
+
* Texte in den angebotenen Sprachen
|
|
12689
12697
|
*/
|
|
12690
|
-
|
|
12698
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12691
12699
|
|
|
12692
12700
|
/**
|
|
12693
12701
|
* Wird eine eigene DocumentLine für den Baustein angelegt?
|