@vario-software/types 2026.24.3 → 2026.25.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/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Street
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
street: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Country code
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
countryCode: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1024,14 +1024,14 @@ export interface Article {
|
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* Seriennummern Auszeichnungsart
|
|
1028
1028
|
*/
|
|
1029
|
-
|
|
1029
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
|
-
*
|
|
1032
|
+
* is this product sellable without any quantity at the stock
|
|
1033
1033
|
*/
|
|
1034
|
-
|
|
1034
|
+
sellableWithoutStock: boolean;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
1037
|
* Durchschnittl. EKP (Startwert)
|
|
@@ -1208,26 +1208,26 @@ export interface Article {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
|
-
/**
|
|
1212
|
-
* Frei kommissionierbar
|
|
1213
|
-
*/
|
|
1214
|
-
freelyPickable: boolean;
|
|
1215
|
-
|
|
1216
1211
|
/**
|
|
1217
1212
|
* description custom data
|
|
1218
1213
|
*/
|
|
1219
1214
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* Frei kommissionierbar
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
freelyPickable: boolean;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1223
|
*/
|
|
1229
1224
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1228
|
+
*/
|
|
1229
|
+
taxLiabilityReversed: boolean;
|
|
1230
|
+
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
1233
1233
|
*/
|
|
@@ -1289,14 +1289,14 @@ export interface Article {
|
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
|
-
*
|
|
1292
|
+
* reference to Product
|
|
1293
1293
|
*/
|
|
1294
|
-
|
|
1294
|
+
productRef: ApiObjectReference;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
|
-
*
|
|
1297
|
+
* Versandlabeldruck
|
|
1298
1298
|
*/
|
|
1299
|
-
|
|
1299
|
+
shippingLabelPrinting: boolean;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
1302
|
* Kontingentartikel
|
|
@@ -1304,14 +1304,14 @@ export interface Article {
|
|
|
1304
1304
|
contingentArticleRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* alternative name of this product
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
alternativeName: string;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1503,11 +1503,6 @@ export interface ArticleCustomer {
|
|
|
1503
1503
|
*/
|
|
1504
1504
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1505
1505
|
|
|
1506
|
-
/**
|
|
1507
|
-
* Kunden-Preise
|
|
1508
|
-
*/
|
|
1509
|
-
productPrices: Array<ProductPrice>;
|
|
1510
|
-
|
|
1511
1506
|
/**
|
|
1512
1507
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1513
1508
|
*/
|
|
@@ -1518,6 +1513,11 @@ export interface ArticleCustomer {
|
|
|
1518
1513
|
*/
|
|
1519
1514
|
articleId: number;
|
|
1520
1515
|
|
|
1516
|
+
/**
|
|
1517
|
+
* Kunden-Preise
|
|
1518
|
+
*/
|
|
1519
|
+
productPrices: Array<ProductPrice>;
|
|
1520
|
+
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Aktiv?
|
|
1523
1523
|
*/
|
|
@@ -1676,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1676
1676
|
proposedLowestPriceGross: number;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
* der
|
|
1679
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
customLowestPriceGross: number;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* der Sales Channel
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
salesChannelRef: ApiObjectReference;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1884,14 +1884,14 @@ export const enum ArticleSerialType {
|
|
|
1884
1884
|
export interface ArticleStorage {
|
|
1885
1885
|
|
|
1886
1886
|
/**
|
|
1887
|
-
*
|
|
1887
|
+
* Nachschub ab
|
|
1888
1888
|
*/
|
|
1889
|
-
|
|
1889
|
+
replenishmentFrom: number;
|
|
1890
1890
|
|
|
1891
1891
|
/**
|
|
1892
|
-
*
|
|
1892
|
+
* Bestand im Lager
|
|
1893
1893
|
*/
|
|
1894
|
-
|
|
1894
|
+
quantityInStock: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
1897
|
* Meldebestand
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Sollbestand
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
targetStock: number;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Vorgabe-Lagerplätze
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
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
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1996
1991
|
*/
|
|
@@ -2002,15 +1997,20 @@ export interface ArticleSupplier {
|
|
|
2002
1997
|
accountDisplayName: string;
|
|
2003
1998
|
|
|
2004
1999
|
/**
|
|
2005
|
-
*
|
|
2000
|
+
* Lieferanten-Meldebestand
|
|
2006
2001
|
*/
|
|
2007
|
-
|
|
2002
|
+
supplierReportingStock: number;
|
|
2008
2003
|
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2011
2006
|
*/
|
|
2012
2007
|
useSupplierArticleIdentifier: boolean;
|
|
2013
2008
|
|
|
2009
|
+
/**
|
|
2010
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2011
|
+
*/
|
|
2012
|
+
deliveryTime: number;
|
|
2013
|
+
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2016
2016
|
*/
|
|
@@ -2056,26 +2056,26 @@ export interface ArticleSupplier {
|
|
|
2056
2056
|
*/
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
|
-
/**
|
|
2060
|
-
* Verpackungseinheit
|
|
2061
|
-
*/
|
|
2062
|
-
packagingUnit: number;
|
|
2063
|
-
|
|
2064
2059
|
/**
|
|
2065
2060
|
* Referenced Article name
|
|
2066
2061
|
*/
|
|
2067
2062
|
articleName: string;
|
|
2068
2063
|
|
|
2069
2064
|
/**
|
|
2070
|
-
*
|
|
2065
|
+
* Verpackungseinheit
|
|
2071
2066
|
*/
|
|
2072
|
-
|
|
2067
|
+
packagingUnit: number;
|
|
2073
2068
|
|
|
2074
2069
|
/**
|
|
2075
2070
|
* Referenced Article
|
|
2076
2071
|
*/
|
|
2077
2072
|
articleId: number;
|
|
2078
2073
|
|
|
2074
|
+
/**
|
|
2075
|
+
* Lieferanten-Preise
|
|
2076
|
+
*/
|
|
2077
|
+
productPrices: Array<ProductPrice>;
|
|
2078
|
+
|
|
2079
2079
|
/**
|
|
2080
2080
|
* Aktiv?
|
|
2081
2081
|
*/
|
|
@@ -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
|
|
@@ -2149,7 +2149,6 @@ export const enum BankPaymentType {
|
|
|
2149
2149
|
SEPA_B2B_DIRECT_DEBIT = 'SEPA_B2B_DIRECT_DEBIT',
|
|
2150
2150
|
CLEARING = 'CLEARING',
|
|
2151
2151
|
CLEARING_WITH_PREDECESSOR_DOCUMENT = 'CLEARING_WITH_PREDECESSOR_DOCUMENT',
|
|
2152
|
-
APP = 'APP',
|
|
2153
2152
|
OTHER = 'OTHER'
|
|
2154
2153
|
}
|
|
2155
2154
|
|
|
@@ -2334,14 +2333,14 @@ export interface CountryReference {
|
|
|
2334
2333
|
export interface CreateNewDocumentRequest {
|
|
2335
2334
|
|
|
2336
2335
|
/**
|
|
2337
|
-
* Belegart
|
|
2336
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2338
2337
|
*/
|
|
2339
|
-
|
|
2338
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2340
2339
|
|
|
2341
2340
|
/**
|
|
2342
|
-
*
|
|
2341
|
+
* Belegart
|
|
2343
2342
|
*/
|
|
2344
|
-
|
|
2343
|
+
documentTypeLabel: string;
|
|
2345
2344
|
|
|
2346
2345
|
/**
|
|
2347
2346
|
* Details zum Beleg
|
|
@@ -2452,14 +2451,14 @@ export interface CrmActivity {
|
|
|
2452
2451
|
userRef: ApiObjectReference;
|
|
2453
2452
|
|
|
2454
2453
|
/**
|
|
2455
|
-
*
|
|
2454
|
+
* tatsächliche Startzeit
|
|
2456
2455
|
*/
|
|
2457
|
-
|
|
2456
|
+
startDateTime: ScriptingDateTime;
|
|
2458
2457
|
|
|
2459
2458
|
/**
|
|
2460
|
-
*
|
|
2459
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2461
2460
|
*/
|
|
2462
|
-
|
|
2461
|
+
system: boolean;
|
|
2463
2462
|
|
|
2464
2463
|
/**
|
|
2465
2464
|
* Inhalt dieser Aktivität
|
|
@@ -2684,14 +2683,14 @@ export interface CrmDeal {
|
|
|
2684
2683
|
info: MetaInfo;
|
|
2685
2684
|
|
|
2686
2685
|
/**
|
|
2687
|
-
*
|
|
2686
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2688
2687
|
*/
|
|
2689
|
-
|
|
2688
|
+
assignedUserRef: ApiObjectReference;
|
|
2690
2689
|
|
|
2691
2690
|
/**
|
|
2692
|
-
*
|
|
2691
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2693
2692
|
*/
|
|
2694
|
-
|
|
2693
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2695
2694
|
|
|
2696
2695
|
/**
|
|
2697
2696
|
* Chance (in Prozent)
|
|
@@ -2965,14 +2964,14 @@ export interface CrmProject {
|
|
|
2965
2964
|
priorityRef: ApiObjectReference;
|
|
2966
2965
|
|
|
2967
2966
|
/**
|
|
2968
|
-
*
|
|
2967
|
+
* Phase
|
|
2969
2968
|
*/
|
|
2970
|
-
|
|
2969
|
+
phaseRef: ApiObjectReference;
|
|
2971
2970
|
|
|
2972
2971
|
/**
|
|
2973
|
-
*
|
|
2972
|
+
* Projektleiter vom Auftragnehmer
|
|
2974
2973
|
*/
|
|
2975
|
-
|
|
2974
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2976
2975
|
|
|
2977
2976
|
/**
|
|
2978
2977
|
* Aufgaben-Nummer
|
|
@@ -2990,14 +2989,14 @@ export interface CrmProject {
|
|
|
2990
2989
|
billedTimes: number;
|
|
2991
2990
|
|
|
2992
2991
|
/**
|
|
2993
|
-
*
|
|
2992
|
+
* Einkaufsbelege
|
|
2994
2993
|
*/
|
|
2995
|
-
|
|
2994
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2996
2995
|
|
|
2997
2996
|
/**
|
|
2998
|
-
*
|
|
2997
|
+
* Geplanter Projektzeitraum (von)
|
|
2999
2998
|
*/
|
|
3000
|
-
|
|
2999
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3001
3000
|
|
|
3002
3001
|
/**
|
|
3003
3002
|
* Verkaufsbelege
|
|
@@ -3275,6 +3274,11 @@ export interface CrmSubType {
|
|
|
3275
3274
|
|
|
3276
3275
|
export interface CrmTask {
|
|
3277
3276
|
|
|
3277
|
+
/**
|
|
3278
|
+
* Liste von Erinnerungen
|
|
3279
|
+
*/
|
|
3280
|
+
reminders: Array<CrmReminder>;
|
|
3281
|
+
|
|
3278
3282
|
/**
|
|
3279
3283
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3280
3284
|
*/
|
|
@@ -3285,11 +3289,6 @@ export interface CrmTask {
|
|
|
3285
3289
|
*/
|
|
3286
3290
|
customerOfferRef: DocumentRef;
|
|
3287
3291
|
|
|
3288
|
-
/**
|
|
3289
|
-
* Liste von Erinnerungen
|
|
3290
|
-
*/
|
|
3291
|
-
reminders: Array<CrmReminder>;
|
|
3292
|
-
|
|
3293
3292
|
/**
|
|
3294
3293
|
* Notizen
|
|
3295
3294
|
*/
|
|
@@ -3476,14 +3475,14 @@ export interface CrmTask {
|
|
|
3476
3475
|
parentRefs: Array<CrmObjectRef>;
|
|
3477
3476
|
|
|
3478
3477
|
/**
|
|
3479
|
-
*
|
|
3478
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3480
3479
|
*/
|
|
3481
|
-
|
|
3480
|
+
externalRecordedTimes: number;
|
|
3482
3481
|
|
|
3483
3482
|
/**
|
|
3484
|
-
*
|
|
3483
|
+
* Beauftragte Zeit in Sekunden
|
|
3485
3484
|
*/
|
|
3486
|
-
|
|
3485
|
+
effortCommissioned: number;
|
|
3487
3486
|
|
|
3488
3487
|
/**
|
|
3489
3488
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3715,14 +3714,14 @@ export interface Customer {
|
|
|
3715
3714
|
stackProcessingPriority: number;
|
|
3716
3715
|
|
|
3717
3716
|
/**
|
|
3718
|
-
*
|
|
3717
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3719
3718
|
*/
|
|
3720
|
-
|
|
3719
|
+
collectiveInvoiceManually: boolean;
|
|
3721
3720
|
|
|
3722
3721
|
/**
|
|
3723
|
-
*
|
|
3722
|
+
* reference to product price group
|
|
3724
3723
|
*/
|
|
3725
|
-
|
|
3724
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3726
3725
|
|
|
3727
3726
|
/**
|
|
3728
3727
|
* Unique identifier of the Object
|
|
@@ -3959,14 +3958,14 @@ export interface DeliveryMethod {
|
|
|
3959
3958
|
defaultSizeUnit: UnitTypeReference;
|
|
3960
3959
|
|
|
3961
3960
|
/**
|
|
3962
|
-
*
|
|
3961
|
+
* Quelle für Paketgewicht
|
|
3963
3962
|
*/
|
|
3964
|
-
|
|
3963
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3965
3964
|
|
|
3966
3965
|
/**
|
|
3967
|
-
*
|
|
3966
|
+
* translations
|
|
3968
3967
|
*/
|
|
3969
|
-
|
|
3968
|
+
translations: Array<DocumentTypeTerm>;
|
|
3970
3969
|
|
|
3971
3970
|
/**
|
|
3972
3971
|
* Versand-Anbieter
|
|
@@ -4057,14 +4056,14 @@ export interface DeliveryTerm {
|
|
|
4057
4056
|
version: number;
|
|
4058
4057
|
|
|
4059
4058
|
/**
|
|
4060
|
-
*
|
|
4059
|
+
* information, how the shipping charges should be calculated
|
|
4061
4060
|
*/
|
|
4062
|
-
|
|
4061
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4063
4062
|
|
|
4064
4063
|
/**
|
|
4065
|
-
*
|
|
4064
|
+
* translations
|
|
4066
4065
|
*/
|
|
4067
|
-
|
|
4066
|
+
translations: Array<DocumentTypeTerm>;
|
|
4068
4067
|
|
|
4069
4068
|
/**
|
|
4070
4069
|
* Lieferarten
|
|
@@ -4243,14 +4242,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4243
4242
|
accountId: number;
|
|
4244
4243
|
|
|
4245
4244
|
/**
|
|
4246
|
-
* Länderkennzeichen
|
|
4245
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4247
4246
|
*/
|
|
4248
|
-
|
|
4247
|
+
performanceCountryCode: string;
|
|
4249
4248
|
|
|
4250
4249
|
/**
|
|
4251
|
-
* Länderkennzeichen
|
|
4250
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4252
4251
|
*/
|
|
4253
|
-
|
|
4252
|
+
sourceCountryCode: string;
|
|
4254
4253
|
|
|
4255
4254
|
/**
|
|
4256
4255
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4278,14 +4277,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4278
4277
|
documentDate: ScriptingDate;
|
|
4279
4278
|
|
|
4280
4279
|
/**
|
|
4281
|
-
*
|
|
4280
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4282
4281
|
*/
|
|
4283
|
-
|
|
4282
|
+
taxLiabilityReversed: boolean;
|
|
4284
4283
|
|
|
4285
4284
|
/**
|
|
4286
|
-
*
|
|
4285
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4287
4286
|
*/
|
|
4288
|
-
|
|
4287
|
+
roundingAmount: number;
|
|
4289
4288
|
|
|
4290
4289
|
/**
|
|
4291
4290
|
* Versanddatum
|
|
@@ -4312,13 +4311,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4312
4311
|
*/
|
|
4313
4312
|
posPayments: Array<DocumentPosPayment>;
|
|
4314
4313
|
|
|
4315
|
-
/**
|
|
4316
|
-
* Ist die Quittung bezahlt
|
|
4317
|
-
true wenn die Quittung bezahlt ist
|
|
4318
|
-
|
|
4319
|
-
*/
|
|
4320
|
-
posReceiptPayed: boolean;
|
|
4321
|
-
|
|
4322
4314
|
/**
|
|
4323
4315
|
* Kundennummer beim Lieferanten
|
|
4324
4316
|
*/
|
|
@@ -4329,6 +4321,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4329
4321
|
*/
|
|
4330
4322
|
maxDeliveries: number;
|
|
4331
4323
|
|
|
4324
|
+
/**
|
|
4325
|
+
* Ist die Quittung bezahlt
|
|
4326
|
+
true wenn die Quittung bezahlt ist
|
|
4327
|
+
|
|
4328
|
+
*/
|
|
4329
|
+
posReceiptPayed: boolean;
|
|
4330
|
+
|
|
4332
4331
|
/**
|
|
4333
4332
|
* Quittung: Summe Zahlbetrag
|
|
4334
4333
|
*/
|
|
@@ -4385,14 +4384,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4385
4384
|
processedByWorkflow: boolean;
|
|
4386
4385
|
|
|
4387
4386
|
/**
|
|
4388
|
-
*
|
|
4387
|
+
* Telefon an Versender übergeben
|
|
4389
4388
|
*/
|
|
4390
|
-
|
|
4389
|
+
forwardPhoneToShipper: boolean;
|
|
4391
4390
|
|
|
4392
4391
|
/**
|
|
4393
|
-
*
|
|
4392
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4394
4393
|
*/
|
|
4395
|
-
|
|
4394
|
+
baseTotalDocumentPriceModifier: number;
|
|
4396
4395
|
|
|
4397
4396
|
/**
|
|
4398
4397
|
* Liste der Belegtexte
|
|
@@ -4415,14 +4414,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4415
4414
|
defaultAddress: DocumentAddress;
|
|
4416
4415
|
|
|
4417
4416
|
/**
|
|
4418
|
-
*
|
|
4417
|
+
* Leistungsdatum
|
|
4419
4418
|
*/
|
|
4420
|
-
|
|
4419
|
+
performanceDate: ScriptingDate;
|
|
4421
4420
|
|
|
4422
4421
|
/**
|
|
4423
|
-
*
|
|
4422
|
+
* Verarbeitungsoption für Stapel
|
|
4424
4423
|
*/
|
|
4425
|
-
|
|
4424
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4426
4425
|
|
|
4427
4426
|
/**
|
|
4428
4427
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4450,14 +4449,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4450
4449
|
additionalInfo: DocumentAdditionalInfo;
|
|
4451
4450
|
|
|
4452
4451
|
/**
|
|
4453
|
-
*
|
|
4452
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4454
4453
|
*/
|
|
4455
|
-
|
|
4454
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4456
4455
|
|
|
4457
4456
|
/**
|
|
4458
|
-
*
|
|
4457
|
+
* Bestelldatum
|
|
4459
4458
|
*/
|
|
4460
|
-
|
|
4459
|
+
orderedOn: ScriptingDate;
|
|
4461
4460
|
|
|
4462
4461
|
/**
|
|
4463
4462
|
* MetaInformations for this Object
|
|
@@ -4657,14 +4656,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4657
4656
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4658
4657
|
|
|
4659
4658
|
/**
|
|
4660
|
-
*
|
|
4659
|
+
* Bestellt durch Ansprechpartner
|
|
4661
4660
|
*/
|
|
4662
|
-
|
|
4661
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4663
4662
|
|
|
4664
4663
|
/**
|
|
4665
|
-
*
|
|
4664
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4666
4665
|
*/
|
|
4667
|
-
|
|
4666
|
+
reportGroupRef: ApiObjectReference;
|
|
4668
4667
|
}
|
|
4669
4668
|
|
|
4670
4669
|
export interface DocumentAdditionalInfo {
|
|
@@ -4675,14 +4674,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4675
4674
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4676
4675
|
|
|
4677
4676
|
/**
|
|
4678
|
-
*
|
|
4677
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4679
4678
|
*/
|
|
4680
|
-
|
|
4679
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4681
4680
|
|
|
4682
4681
|
/**
|
|
4683
|
-
*
|
|
4682
|
+
* Herkunft der Sprache
|
|
4684
4683
|
*/
|
|
4685
|
-
|
|
4684
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4686
4685
|
|
|
4687
4686
|
/**
|
|
4688
4687
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -4695,14 +4694,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4695
4694
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4696
4695
|
|
|
4697
4696
|
/**
|
|
4698
|
-
*
|
|
4697
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4699
4698
|
*/
|
|
4700
|
-
|
|
4699
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4701
4700
|
|
|
4702
4701
|
/**
|
|
4703
|
-
*
|
|
4702
|
+
* Herkunft des Berechnungsmodus
|
|
4704
4703
|
*/
|
|
4705
|
-
|
|
4704
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4706
4705
|
|
|
4707
4706
|
/**
|
|
4708
4707
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4820,14 +4819,14 @@ export interface DocumentAddress {
|
|
|
4820
4819
|
postOfficeBox: string;
|
|
4821
4820
|
|
|
4822
4821
|
/**
|
|
4823
|
-
*
|
|
4822
|
+
* Street
|
|
4824
4823
|
*/
|
|
4825
|
-
|
|
4824
|
+
street: string;
|
|
4826
4825
|
|
|
4827
4826
|
/**
|
|
4828
|
-
*
|
|
4827
|
+
* country code IsoAlpha3
|
|
4829
4828
|
*/
|
|
4830
|
-
|
|
4829
|
+
countryCode: string;
|
|
4831
4830
|
|
|
4832
4831
|
/**
|
|
4833
4832
|
* Unique identifier of the Object
|
|
@@ -4845,14 +4844,14 @@ export interface DocumentAddress {
|
|
|
4845
4844
|
info: MetaInfo;
|
|
4846
4845
|
|
|
4847
4846
|
/**
|
|
4848
|
-
*
|
|
4847
|
+
* GLN
|
|
4849
4848
|
*/
|
|
4850
|
-
|
|
4849
|
+
globalLocationNumber: string;
|
|
4851
4850
|
|
|
4852
4851
|
/**
|
|
4853
|
-
*
|
|
4852
|
+
* Lieferart
|
|
4854
4853
|
*/
|
|
4855
|
-
|
|
4854
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4856
4855
|
|
|
4857
4856
|
/**
|
|
4858
4857
|
* Postcode
|
|
@@ -5033,14 +5032,14 @@ export interface DocumentContractDetail {
|
|
|
5033
5032
|
runtimeToDate: ScriptingDate;
|
|
5034
5033
|
|
|
5035
5034
|
/**
|
|
5036
|
-
*
|
|
5035
|
+
* Nächste Fälligkeit
|
|
5037
5036
|
*/
|
|
5038
|
-
|
|
5037
|
+
nextDueDate: ScriptingDate;
|
|
5039
5038
|
|
|
5040
5039
|
/**
|
|
5041
|
-
*
|
|
5040
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5042
5041
|
*/
|
|
5043
|
-
|
|
5042
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5044
5043
|
|
|
5045
5044
|
/**
|
|
5046
5045
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5071,14 +5070,14 @@ export interface DocumentFabricationDetail {
|
|
|
5071
5070
|
targetStorageRef: ApiObjectReference;
|
|
5072
5071
|
|
|
5073
5072
|
/**
|
|
5074
|
-
*
|
|
5073
|
+
* Notiz
|
|
5075
5074
|
*/
|
|
5076
|
-
|
|
5075
|
+
note: string;
|
|
5077
5076
|
|
|
5078
5077
|
/**
|
|
5079
|
-
*
|
|
5078
|
+
* Material-Lager
|
|
5080
5079
|
*/
|
|
5081
|
-
|
|
5080
|
+
componentsStorageRef: ApiObjectReference;
|
|
5082
5081
|
|
|
5083
5082
|
/**
|
|
5084
5083
|
* QS-Lager
|
|
@@ -5205,14 +5204,14 @@ export const enum DocumentImportType {
|
|
|
5205
5204
|
export interface DocumentLine {
|
|
5206
5205
|
|
|
5207
5206
|
/**
|
|
5208
|
-
*
|
|
5207
|
+
* Leistungsdatum
|
|
5209
5208
|
*/
|
|
5210
|
-
|
|
5209
|
+
performanceDate: ScriptingDate;
|
|
5211
5210
|
|
|
5212
5211
|
/**
|
|
5213
|
-
*
|
|
5212
|
+
* Zolltarifnummer
|
|
5214
5213
|
*/
|
|
5215
|
-
|
|
5214
|
+
customsTariffNumber: string;
|
|
5216
5215
|
|
|
5217
5216
|
/**
|
|
5218
5217
|
* Land der Herkunft
|
|
@@ -5275,14 +5274,14 @@ export interface DocumentLine {
|
|
|
5275
5274
|
number: string;
|
|
5276
5275
|
|
|
5277
5276
|
/**
|
|
5278
|
-
*
|
|
5277
|
+
* Gesamtbruttogewicht
|
|
5279
5278
|
*/
|
|
5280
|
-
|
|
5279
|
+
totalGrossWeight: number;
|
|
5281
5280
|
|
|
5282
5281
|
/**
|
|
5283
|
-
*
|
|
5282
|
+
* Referenz zur Kundenauftragszeile
|
|
5284
5283
|
*/
|
|
5285
|
-
|
|
5284
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5286
5285
|
|
|
5287
5286
|
/**
|
|
5288
5287
|
* skontierbare Position?
|
|
@@ -5299,6 +5298,11 @@ export interface DocumentLine {
|
|
|
5299
5298
|
*/
|
|
5300
5299
|
price: number;
|
|
5301
5300
|
|
|
5301
|
+
/**
|
|
5302
|
+
* Gesamtpreis Position in Basiswährung
|
|
5303
|
+
*/
|
|
5304
|
+
baseTotalLinePrice: number;
|
|
5305
|
+
|
|
5302
5306
|
/**
|
|
5303
5307
|
* FiBu-Buchung
|
|
5304
5308
|
*/
|
|
@@ -5309,11 +5313,6 @@ export interface DocumentLine {
|
|
|
5309
5313
|
*/
|
|
5310
5314
|
lineType: DocumentLineType;
|
|
5311
5315
|
|
|
5312
|
-
/**
|
|
5313
|
-
* Gesamtpreis Position in Basiswährung
|
|
5314
|
-
*/
|
|
5315
|
-
baseTotalLinePrice: number;
|
|
5316
|
-
|
|
5317
5316
|
/**
|
|
5318
5317
|
* vorgeorderte Menge in Pickvorgang
|
|
5319
5318
|
*/
|
|
@@ -5344,11 +5343,6 @@ export interface DocumentLine {
|
|
|
5344
5343
|
*/
|
|
5345
5344
|
id: number;
|
|
5346
5345
|
|
|
5347
|
-
/**
|
|
5348
|
-
* Externe Referenz zum VDS-Paket
|
|
5349
|
-
*/
|
|
5350
|
-
externalReferenceVds: string;
|
|
5351
|
-
|
|
5352
5346
|
/**
|
|
5353
5347
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5354
5348
|
*/
|
|
@@ -5359,6 +5353,11 @@ export interface DocumentLine {
|
|
|
5359
5353
|
*/
|
|
5360
5354
|
basePrice: number;
|
|
5361
5355
|
|
|
5356
|
+
/**
|
|
5357
|
+
* Externe Referenz zum VDS-Paket
|
|
5358
|
+
*/
|
|
5359
|
+
externalReferenceVds: string;
|
|
5360
|
+
|
|
5362
5361
|
/**
|
|
5363
5362
|
* Serientyp
|
|
5364
5363
|
*/
|
|
@@ -5530,14 +5529,14 @@ export interface DocumentLine {
|
|
|
5530
5529
|
unitType: UnitTypeReference;
|
|
5531
5530
|
|
|
5532
5531
|
/**
|
|
5533
|
-
*
|
|
5532
|
+
* Zubehör Einfügeart
|
|
5534
5533
|
*/
|
|
5535
|
-
|
|
5534
|
+
insertTerm: AccessoryInsertTerm;
|
|
5536
5535
|
|
|
5537
5536
|
/**
|
|
5538
|
-
*
|
|
5537
|
+
* Referenz zur Basiszeile
|
|
5539
5538
|
*/
|
|
5540
|
-
|
|
5539
|
+
baseLineId: number;
|
|
5541
5540
|
|
|
5542
5541
|
/**
|
|
5543
5542
|
* Einheit Bruttogewicht
|
|
@@ -5809,14 +5808,14 @@ export interface DocumentLineComponent {
|
|
|
5809
5808
|
custom: EavDocumentlinecomponent;
|
|
5810
5809
|
|
|
5811
5810
|
/**
|
|
5812
|
-
*
|
|
5811
|
+
* Referenz auf den Artikel der Komponente
|
|
5813
5812
|
*/
|
|
5814
|
-
|
|
5813
|
+
articleId: number;
|
|
5815
5814
|
|
|
5816
5815
|
/**
|
|
5817
|
-
*
|
|
5816
|
+
* Gelieferte Menge
|
|
5818
5817
|
*/
|
|
5819
|
-
|
|
5818
|
+
quantityCommitted: number;
|
|
5820
5819
|
|
|
5821
5820
|
/**
|
|
5822
5821
|
* Beschreibung des Artikels
|
|
@@ -6167,14 +6166,14 @@ export interface DocumentLinePosDetail {
|
|
|
6167
6166
|
balanceBeforeWithdrawal: number;
|
|
6168
6167
|
|
|
6169
6168
|
/**
|
|
6170
|
-
*
|
|
6169
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6171
6170
|
*/
|
|
6172
|
-
|
|
6171
|
+
externalPaymentId: string;
|
|
6173
6172
|
|
|
6174
6173
|
/**
|
|
6175
|
-
*
|
|
6174
|
+
* Typ der Position
|
|
6176
6175
|
*/
|
|
6177
|
-
|
|
6176
|
+
posLineType: PosLineType;
|
|
6178
6177
|
|
|
6179
6178
|
/**
|
|
6180
6179
|
* Unique identifier of the Object
|
|
@@ -6388,14 +6387,14 @@ export interface DocumentPosPayment {
|
|
|
6388
6387
|
version: number;
|
|
6389
6388
|
|
|
6390
6389
|
/**
|
|
6391
|
-
*
|
|
6390
|
+
* Zahlungsart
|
|
6392
6391
|
*/
|
|
6393
|
-
|
|
6392
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6394
6393
|
|
|
6395
6394
|
/**
|
|
6396
|
-
*
|
|
6395
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6397
6396
|
*/
|
|
6398
|
-
|
|
6397
|
+
withdrawalAmount: number;
|
|
6399
6398
|
|
|
6400
6399
|
/**
|
|
6401
6400
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6408,14 +6407,14 @@ export interface DocumentPosPayment {
|
|
|
6408
6407
|
balanceBeforeWithdrawal: number;
|
|
6409
6408
|
|
|
6410
6409
|
/**
|
|
6411
|
-
*
|
|
6410
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6412
6411
|
*/
|
|
6413
|
-
|
|
6412
|
+
externalPaymentId: string;
|
|
6414
6413
|
|
|
6415
6414
|
/**
|
|
6416
|
-
*
|
|
6415
|
+
* Typ der Position
|
|
6417
6416
|
*/
|
|
6418
|
-
|
|
6417
|
+
posLineType: PosLineType;
|
|
6419
6418
|
|
|
6420
6419
|
/**
|
|
6421
6420
|
* Unique identifier of the Object
|
|
@@ -6543,14 +6542,14 @@ export const enum DocumentRounding {
|
|
|
6543
6542
|
export interface DocumentShippingCost {
|
|
6544
6543
|
|
|
6545
6544
|
/**
|
|
6546
|
-
*
|
|
6545
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6547
6546
|
*/
|
|
6548
|
-
|
|
6547
|
+
manualCosts: boolean;
|
|
6549
6548
|
|
|
6550
6549
|
/**
|
|
6551
|
-
*
|
|
6550
|
+
* Die Versandkosten
|
|
6552
6551
|
*/
|
|
6553
|
-
|
|
6552
|
+
costs: number;
|
|
6554
6553
|
|
|
6555
6554
|
/**
|
|
6556
6555
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6678,14 +6677,14 @@ export interface DocumentText {
|
|
|
6678
6677
|
transferableIntoSubsequentDocuments: boolean;
|
|
6679
6678
|
|
|
6680
6679
|
/**
|
|
6681
|
-
*
|
|
6680
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6682
6681
|
*/
|
|
6683
|
-
|
|
6682
|
+
textPosition: TextPosition;
|
|
6684
6683
|
|
|
6685
6684
|
/**
|
|
6686
|
-
*
|
|
6685
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6687
6686
|
*/
|
|
6688
|
-
|
|
6687
|
+
deleted: boolean;
|
|
6689
6688
|
|
|
6690
6689
|
/**
|
|
6691
6690
|
* textBaustein Vorlage
|
|
@@ -7512,159 +7511,142 @@ export interface NotificationDataprovider {
|
|
|
7512
7511
|
export interface NotificationEventConfig<Object> {
|
|
7513
7512
|
}
|
|
7514
7513
|
|
|
7515
|
-
export
|
|
7516
|
-
NO_PICKING = 'NO_PICKING',
|
|
7517
|
-
ACCORDING_TO_CRITERIA = 'ACCORDING_TO_CRITERIA',
|
|
7518
|
-
ONLY_FULL_ORDER = 'ONLY_FULL_ORDER',
|
|
7519
|
-
ONLY_FULL_ORDER_LINES = 'ONLY_FULL_ORDER_LINES',
|
|
7520
|
-
AVAILABLE_QUANTITIES = 'AVAILABLE_QUANTITIES',
|
|
7521
|
-
NO_PROCESSING = 'NO_PROCESSING',
|
|
7522
|
-
FULL_ORDER_LINES_MAX_TWO_PARTIAL_DELIVERIES = 'FULL_ORDER_LINES_MAX_TWO_PARTIAL_DELIVERIES',
|
|
7523
|
-
AVAILABLE_QUANTITIES_MAX_TWO_PARTIAL_DELIVERIES = 'AVAILABLE_QUANTITIES_MAX_TWO_PARTIAL_DELIVERIES',
|
|
7524
|
-
FULL_ORDER_LINES_MAX_THREE_PARTIAL_DELIVERIES = 'FULL_ORDER_LINES_MAX_THREE_PARTIAL_DELIVERIES',
|
|
7525
|
-
AVAILABLE_QUANTITIES_MAX_THREE_PARTIAL_DELIVERIES = 'AVAILABLE_QUANTITIES_MAX_THREE_PARTIAL_DELIVERIES',
|
|
7526
|
-
AVAILABLE_QUANTITIES_FINISH_ORDER = 'AVAILABLE_QUANTITIES_FINISH_ORDER'
|
|
7527
|
-
}
|
|
7528
|
-
|
|
7529
|
-
export interface PaymentMethod {
|
|
7514
|
+
export interface OpenItem {
|
|
7530
7515
|
|
|
7531
7516
|
/**
|
|
7532
|
-
*
|
|
7517
|
+
* Leistungsdatum (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7533
7518
|
*/
|
|
7534
|
-
|
|
7519
|
+
performanceDate: ScriptingDate;
|
|
7535
7520
|
|
|
7536
7521
|
/**
|
|
7537
|
-
*
|
|
7522
|
+
* Fälligkeitsdatum (Skonto2)
|
|
7538
7523
|
*/
|
|
7539
|
-
|
|
7524
|
+
paymentDiscount2DueDate: ScriptingDate;
|
|
7540
7525
|
|
|
7541
7526
|
/**
|
|
7542
|
-
*
|
|
7527
|
+
* Externe OP-Nummer
|
|
7543
7528
|
*/
|
|
7544
|
-
|
|
7529
|
+
externalNumber: string;
|
|
7545
7530
|
|
|
7546
7531
|
/**
|
|
7547
|
-
*
|
|
7532
|
+
* How many days are given for using the first discount rule
|
|
7548
7533
|
*/
|
|
7549
|
-
|
|
7534
|
+
paymentDays1: number;
|
|
7550
7535
|
|
|
7551
7536
|
/**
|
|
7552
|
-
*
|
|
7537
|
+
* How many days are given for using the second discount rule
|
|
7553
7538
|
*/
|
|
7554
|
-
|
|
7539
|
+
paymentDays2: number;
|
|
7555
7540
|
|
|
7556
7541
|
/**
|
|
7557
|
-
*
|
|
7542
|
+
* Fälligkeitsdatum (Skonto1)
|
|
7558
7543
|
*/
|
|
7559
|
-
|
|
7544
|
+
paymentDiscount1DueDate: ScriptingDate;
|
|
7560
7545
|
|
|
7561
7546
|
/**
|
|
7562
|
-
*
|
|
7547
|
+
* Ursprung der Skontowerte (Tage und Prozentsätze)
|
|
7563
7548
|
*/
|
|
7564
|
-
|
|
7549
|
+
paymentDiscountOrigin: PaymentDiscountOrigin;
|
|
7565
7550
|
|
|
7566
7551
|
/**
|
|
7567
|
-
*
|
|
7552
|
+
* Anzahl Mahnpositionen/Mahnungen für diesen OP
|
|
7568
7553
|
*/
|
|
7569
|
-
|
|
7554
|
+
dunningCount: number;
|
|
7570
7555
|
|
|
7571
7556
|
/**
|
|
7572
|
-
*
|
|
7557
|
+
* balanced date of this open item (calculated)
|
|
7573
7558
|
*/
|
|
7574
|
-
|
|
7559
|
+
balancedDate: ScriptingDate;
|
|
7575
7560
|
|
|
7576
7561
|
/**
|
|
7577
|
-
*
|
|
7562
|
+
* Gesamtsumme der Rechnungsbeträge in Basiswährung
|
|
7578
7563
|
*/
|
|
7579
|
-
|
|
7564
|
+
baseSumTotalAmount: number;
|
|
7580
7565
|
|
|
7581
7566
|
/**
|
|
7582
|
-
*
|
|
7567
|
+
* The kind of payment
|
|
7583
7568
|
*/
|
|
7584
|
-
|
|
7569
|
+
paymentKind: OpenItem$OpenItemPaymentKind;
|
|
7585
7570
|
|
|
7586
7571
|
/**
|
|
7587
|
-
*
|
|
7572
|
+
* OP-Nummer
|
|
7588
7573
|
*/
|
|
7589
|
-
|
|
7574
|
+
number: string;
|
|
7590
7575
|
|
|
7591
7576
|
/**
|
|
7592
|
-
*
|
|
7577
|
+
* saldo
|
|
7593
7578
|
*/
|
|
7594
|
-
|
|
7579
|
+
balance: number;
|
|
7595
7580
|
|
|
7596
7581
|
/**
|
|
7597
|
-
*
|
|
7582
|
+
* Steuersachverhalt Leistungserbringung (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7598
7583
|
*/
|
|
7599
|
-
|
|
7584
|
+
taxPerformanceLocation: TaxPerformanceLocationType;
|
|
7600
7585
|
|
|
7601
7586
|
/**
|
|
7602
|
-
*
|
|
7587
|
+
* Kurs der Währung zu Basiswährung
|
|
7603
7588
|
*/
|
|
7604
|
-
|
|
7589
|
+
exchangeRate: number;
|
|
7605
7590
|
|
|
7606
7591
|
/**
|
|
7607
|
-
*
|
|
7592
|
+
* Die Mahnstufe
|
|
7608
7593
|
*/
|
|
7609
|
-
|
|
7594
|
+
dunningLevel: number;
|
|
7610
7595
|
|
|
7611
7596
|
/**
|
|
7612
|
-
*
|
|
7597
|
+
* Fälligkeit in Tagen
|
|
7613
7598
|
*/
|
|
7614
|
-
|
|
7599
|
+
paymentDaysNet: number;
|
|
7615
7600
|
|
|
7616
7601
|
/**
|
|
7617
|
-
*
|
|
7602
|
+
* Unique identifier of the Object
|
|
7618
7603
|
*/
|
|
7619
|
-
|
|
7620
|
-
}
|
|
7621
|
-
|
|
7622
|
-
export interface PaymentTerm {
|
|
7604
|
+
id: number;
|
|
7623
7605
|
|
|
7624
7606
|
/**
|
|
7625
|
-
*
|
|
7607
|
+
* Der Zustand der Zahlung
|
|
7626
7608
|
*/
|
|
7627
|
-
|
|
7609
|
+
paymentState: OpenItemPaymentState;
|
|
7628
7610
|
|
|
7629
7611
|
/**
|
|
7630
|
-
*
|
|
7612
|
+
* Mahnsperre
|
|
7631
7613
|
*/
|
|
7632
|
-
|
|
7614
|
+
dunningBlock: boolean;
|
|
7633
7615
|
|
|
7634
7616
|
/**
|
|
7635
|
-
*
|
|
7617
|
+
* Summe der Zahlungen in Basiswährung
|
|
7636
7618
|
*/
|
|
7637
|
-
|
|
7619
|
+
baseSumPayments: number;
|
|
7638
7620
|
|
|
7639
7621
|
/**
|
|
7640
|
-
*
|
|
7622
|
+
* order
|
|
7641
7623
|
*/
|
|
7642
|
-
|
|
7624
|
+
order: ApiObjectReference;
|
|
7643
7625
|
|
|
7644
7626
|
/**
|
|
7645
|
-
*
|
|
7627
|
+
* MetaInformations for this Object
|
|
7646
7628
|
*/
|
|
7647
|
-
|
|
7629
|
+
info: MetaInfo;
|
|
7648
7630
|
|
|
7649
7631
|
/**
|
|
7650
|
-
*
|
|
7632
|
+
* Summe Mahngebühren und Zinsen
|
|
7651
7633
|
*/
|
|
7652
|
-
|
|
7634
|
+
sumDunnings: number;
|
|
7653
7635
|
|
|
7654
7636
|
/**
|
|
7655
|
-
*
|
|
7637
|
+
* allgemeine Gebühren in Basiswährung
|
|
7656
7638
|
*/
|
|
7657
|
-
|
|
7639
|
+
baseSumFee: number;
|
|
7658
7640
|
|
|
7659
7641
|
/**
|
|
7660
|
-
*
|
|
7642
|
+
* Vereinbarter Anzahlungsbetrag in Basiswährung
|
|
7661
7643
|
*/
|
|
7662
|
-
|
|
7644
|
+
baseDepositPaymentAmount: number;
|
|
7663
7645
|
|
|
7664
7646
|
/**
|
|
7665
|
-
*
|
|
7647
|
+
* Summe gebuchte Zahlungen
|
|
7666
7648
|
*/
|
|
7667
|
-
|
|
7649
|
+
sumPayments: number;
|
|
7668
7650
|
|
|
7669
7651
|
/**
|
|
7670
7652
|
* Version Identifier for this Object (for PUT)
|
|
@@ -7672,22 +7654,812 @@ export interface PaymentTerm {
|
|
|
7672
7654
|
version: number;
|
|
7673
7655
|
|
|
7674
7656
|
/**
|
|
7675
|
-
*
|
|
7657
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
7676
7658
|
*/
|
|
7677
|
-
|
|
7659
|
+
baseSumDiscountableAmount: number;
|
|
7678
7660
|
|
|
7679
7661
|
/**
|
|
7680
|
-
*
|
|
7662
|
+
* List of tags
|
|
7681
7663
|
*/
|
|
7682
|
-
|
|
7664
|
+
tags: Array<TagDto>;
|
|
7683
7665
|
|
|
7684
7666
|
/**
|
|
7685
|
-
*
|
|
7667
|
+
* Fälligkeitsdatum
|
|
7686
7668
|
*/
|
|
7687
|
-
|
|
7669
|
+
paymentDueDate: ScriptingDate;
|
|
7688
7670
|
|
|
7689
7671
|
/**
|
|
7690
|
-
*
|
|
7672
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7673
|
+
*/
|
|
7674
|
+
performanceCountryCode: string;
|
|
7675
|
+
|
|
7676
|
+
/**
|
|
7677
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7678
|
+
*/
|
|
7679
|
+
sourceCountryCode: string;
|
|
7680
|
+
|
|
7681
|
+
/**
|
|
7682
|
+
* agreed Deposit payment date
|
|
7683
|
+
*/
|
|
7684
|
+
depositPaymentDate: ScriptingDate;
|
|
7685
|
+
|
|
7686
|
+
/**
|
|
7687
|
+
* Valutadatum schreibgeschützt
|
|
7688
|
+
*/
|
|
7689
|
+
valueDateReadOnly: boolean;
|
|
7690
|
+
|
|
7691
|
+
/**
|
|
7692
|
+
* Does this open item belong to accounts payable or accounts receivable
|
|
7693
|
+
*/
|
|
7694
|
+
qualifier: OpenItem$OpenItemQualifier;
|
|
7695
|
+
|
|
7696
|
+
/**
|
|
7697
|
+
* Ursprüngliche Zahlungsbedingung
|
|
7698
|
+
*/
|
|
7699
|
+
basisPaymentTermRef: ApiObjectReference;
|
|
7700
|
+
|
|
7701
|
+
/**
|
|
7702
|
+
* Ist der OP durch ein Dokument geblockt?
|
|
7703
|
+
*/
|
|
7704
|
+
blockedByDocument: boolean;
|
|
7705
|
+
|
|
7706
|
+
/**
|
|
7707
|
+
* Zahlungsart
|
|
7708
|
+
*/
|
|
7709
|
+
paymentMethodRef: ApiObjectReference;
|
|
7710
|
+
|
|
7711
|
+
/**
|
|
7712
|
+
* Offener Betrag (Saldo) in Basiswährung
|
|
7713
|
+
*/
|
|
7714
|
+
baseBalance: number;
|
|
7715
|
+
|
|
7716
|
+
/**
|
|
7717
|
+
* is the agreed deposit payed?
|
|
7718
|
+
*/
|
|
7719
|
+
depositPayed: boolean;
|
|
7720
|
+
|
|
7721
|
+
/**
|
|
7722
|
+
* agreed Deposit payment amount
|
|
7723
|
+
*/
|
|
7724
|
+
depositPaymentAmount: number;
|
|
7725
|
+
|
|
7726
|
+
/**
|
|
7727
|
+
* free payments
|
|
7728
|
+
*/
|
|
7729
|
+
records: Array<OpenItemRecord>;
|
|
7730
|
+
|
|
7731
|
+
/**
|
|
7732
|
+
* Verwendungszweck
|
|
7733
|
+
*/
|
|
7734
|
+
purpose: string;
|
|
7735
|
+
|
|
7736
|
+
/**
|
|
7737
|
+
* How much discount can be given for speedy payment, rule 2
|
|
7738
|
+
*/
|
|
7739
|
+
paymentDiscount2: number;
|
|
7740
|
+
|
|
7741
|
+
/**
|
|
7742
|
+
* kann wiedereröffet werden
|
|
7743
|
+
*/
|
|
7744
|
+
canBeReopened: boolean;
|
|
7745
|
+
|
|
7746
|
+
/**
|
|
7747
|
+
* How much discount can be given for speedy payment, rule 1
|
|
7748
|
+
*/
|
|
7749
|
+
paymentDiscount1: number;
|
|
7750
|
+
|
|
7751
|
+
/**
|
|
7752
|
+
* Der momentan gültige zu zahlende Betrag
|
|
7753
|
+
*/
|
|
7754
|
+
paymentAmount: number;
|
|
7755
|
+
|
|
7756
|
+
/**
|
|
7757
|
+
* how should a refund be done?
|
|
7758
|
+
*/
|
|
7759
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
7760
|
+
|
|
7761
|
+
/**
|
|
7762
|
+
* Rechnungskorrektur
|
|
7763
|
+
*/
|
|
7764
|
+
creditNote: ApiObjectReference;
|
|
7765
|
+
|
|
7766
|
+
/**
|
|
7767
|
+
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
7768
|
+
*/
|
|
7769
|
+
bookingAccountType: OpenItem$BookingAccountType;
|
|
7770
|
+
|
|
7771
|
+
/**
|
|
7772
|
+
* Der Mahnzustand
|
|
7773
|
+
*/
|
|
7774
|
+
dunningState: OpenItemDunningState;
|
|
7775
|
+
|
|
7776
|
+
/**
|
|
7777
|
+
* Skontobetrag 2
|
|
7778
|
+
*/
|
|
7779
|
+
paymentDiscount2Amount: number;
|
|
7780
|
+
|
|
7781
|
+
/**
|
|
7782
|
+
* allgemeine Gebühren
|
|
7783
|
+
*/
|
|
7784
|
+
sumFee: number;
|
|
7785
|
+
|
|
7786
|
+
/**
|
|
7787
|
+
* The full amount of the payment
|
|
7788
|
+
*/
|
|
7789
|
+
fullPaymentAmount: number;
|
|
7790
|
+
|
|
7791
|
+
/**
|
|
7792
|
+
* Zahlungsplan
|
|
7793
|
+
*/
|
|
7794
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
7795
|
+
|
|
7796
|
+
/**
|
|
7797
|
+
* Zahlungssperre
|
|
7798
|
+
*/
|
|
7799
|
+
paymentBlock: boolean;
|
|
7800
|
+
|
|
7801
|
+
/**
|
|
7802
|
+
* Ursprüngliches Fälligkeitsdatum
|
|
7803
|
+
*/
|
|
7804
|
+
originalPaymentDueDate: ScriptingDate;
|
|
7805
|
+
|
|
7806
|
+
/**
|
|
7807
|
+
* whether this open item is balanced, partially paid or open
|
|
7808
|
+
*/
|
|
7809
|
+
balanceState: OpenItemBalanceState;
|
|
7810
|
+
|
|
7811
|
+
/**
|
|
7812
|
+
* Valutadatum
|
|
7813
|
+
*/
|
|
7814
|
+
valueDate: ScriptingDate;
|
|
7815
|
+
|
|
7816
|
+
/**
|
|
7817
|
+
* Skontobetrag 1
|
|
7818
|
+
*/
|
|
7819
|
+
paymentDiscount1Amount: number;
|
|
7820
|
+
|
|
7821
|
+
/**
|
|
7822
|
+
* Summe der Abzüge (Skonto usw.) in Basiswährung
|
|
7823
|
+
*/
|
|
7824
|
+
baseSumDiscount: number;
|
|
7825
|
+
|
|
7826
|
+
/**
|
|
7827
|
+
* Zahlungsvorlage
|
|
7828
|
+
*/
|
|
7829
|
+
paymentTemplateRef: ApiObjectReference;
|
|
7830
|
+
|
|
7831
|
+
/**
|
|
7832
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
7833
|
+
*/
|
|
7834
|
+
baseSumDunnings: number;
|
|
7835
|
+
|
|
7836
|
+
/**
|
|
7837
|
+
* Rechnungsbetrag
|
|
7838
|
+
*/
|
|
7839
|
+
sumTotalAmount: number;
|
|
7840
|
+
|
|
7841
|
+
/**
|
|
7842
|
+
* Steuersatz (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7843
|
+
*/
|
|
7844
|
+
taxRateRef: ApiObjectReference;
|
|
7845
|
+
|
|
7846
|
+
/**
|
|
7847
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
7848
|
+
*/
|
|
7849
|
+
baseCurrencyCode: string;
|
|
7850
|
+
|
|
7851
|
+
/**
|
|
7852
|
+
* Anzahlungsrechnung
|
|
7853
|
+
*/
|
|
7854
|
+
depositInvoice: ApiObjectReference;
|
|
7855
|
+
|
|
7856
|
+
/**
|
|
7857
|
+
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7858
|
+
*/
|
|
7859
|
+
taxState: TaxStateType;
|
|
7860
|
+
|
|
7861
|
+
/**
|
|
7862
|
+
* Kommentar
|
|
7863
|
+
*/
|
|
7864
|
+
comment: string;
|
|
7865
|
+
|
|
7866
|
+
/**
|
|
7867
|
+
* invoice
|
|
7868
|
+
*/
|
|
7869
|
+
invoice: ApiObjectReference;
|
|
7870
|
+
|
|
7871
|
+
/**
|
|
7872
|
+
* skontierbarer Rechnungsbetrag
|
|
7873
|
+
*/
|
|
7874
|
+
sumDiscountableAmount: number;
|
|
7875
|
+
|
|
7876
|
+
/**
|
|
7877
|
+
* Währung des offenen Postens (ISO-A3)
|
|
7878
|
+
*/
|
|
7879
|
+
currencyCode: string;
|
|
7880
|
+
|
|
7881
|
+
/**
|
|
7882
|
+
* account
|
|
7883
|
+
*/
|
|
7884
|
+
account: ApiObjectReference;
|
|
7885
|
+
}
|
|
7886
|
+
|
|
7887
|
+
export const enum OpenItem$BookingAccountType {
|
|
7888
|
+
CUSTOMER = 'CUSTOMER',
|
|
7889
|
+
SUPPLIER = 'SUPPLIER'
|
|
7890
|
+
}
|
|
7891
|
+
|
|
7892
|
+
export const enum OpenItem$OpenItemPaymentKind {
|
|
7893
|
+
PREPAYMENT = 'PREPAYMENT',
|
|
7894
|
+
PAYMENT = 'PAYMENT'
|
|
7895
|
+
}
|
|
7896
|
+
|
|
7897
|
+
export const enum OpenItem$OpenItemQualifier {
|
|
7898
|
+
PAYABLE = 'PAYABLE',
|
|
7899
|
+
RECEIVABLE = 'RECEIVABLE'
|
|
7900
|
+
}
|
|
7901
|
+
|
|
7902
|
+
export const enum OpenItem$OpenItemRefundType {
|
|
7903
|
+
DISBURSE = 'DISBURSE',
|
|
7904
|
+
OFFSET_LATER = 'OFFSET_LATER'
|
|
7905
|
+
}
|
|
7906
|
+
|
|
7907
|
+
export const enum OpenItemBalanceState {
|
|
7908
|
+
OPEN = 'OPEN',
|
|
7909
|
+
PARTIALLY_BALANCED = 'PARTIALLY_BALANCED',
|
|
7910
|
+
BALANCED = 'BALANCED',
|
|
7911
|
+
OVERPAID = 'OVERPAID'
|
|
7912
|
+
}
|
|
7913
|
+
|
|
7914
|
+
export const enum OpenItemDunningState {
|
|
7915
|
+
IN_DUNNING = 'IN_DUNNING',
|
|
7916
|
+
NO_DUNNING = 'NO_DUNNING',
|
|
7917
|
+
DUNNING_PAID = 'DUNNING_PAID',
|
|
7918
|
+
DUNNING_PARTIALLY_PAID = 'DUNNING_PARTIALLY_PAID',
|
|
7919
|
+
DUNNING_OVERPAID = 'DUNNING_OVERPAID'
|
|
7920
|
+
}
|
|
7921
|
+
|
|
7922
|
+
export interface OpenItemPaymentPlan {
|
|
7923
|
+
|
|
7924
|
+
/**
|
|
7925
|
+
* Fälligkeitsregel
|
|
7926
|
+
*/
|
|
7927
|
+
dueDateCalculation: string;
|
|
7928
|
+
|
|
7929
|
+
/**
|
|
7930
|
+
* Betrag
|
|
7931
|
+
*/
|
|
7932
|
+
amount: number;
|
|
7933
|
+
|
|
7934
|
+
/**
|
|
7935
|
+
* Enddatum
|
|
7936
|
+
*/
|
|
7937
|
+
endDate: ScriptingDate;
|
|
7938
|
+
|
|
7939
|
+
/**
|
|
7940
|
+
* Fälligkeitsdatum
|
|
7941
|
+
*/
|
|
7942
|
+
dueDate: ScriptingDate;
|
|
7943
|
+
|
|
7944
|
+
/**
|
|
7945
|
+
* Zahlungsplantyp
|
|
7946
|
+
*/
|
|
7947
|
+
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
7948
|
+
|
|
7949
|
+
/**
|
|
7950
|
+
* Aktiv
|
|
7951
|
+
*/
|
|
7952
|
+
active: boolean;
|
|
7953
|
+
|
|
7954
|
+
/**
|
|
7955
|
+
* Beschreibung
|
|
7956
|
+
*/
|
|
7957
|
+
description: string;
|
|
7958
|
+
|
|
7959
|
+
/**
|
|
7960
|
+
* Version Identifier for this Object (for PUT)
|
|
7961
|
+
*/
|
|
7962
|
+
version: number;
|
|
7963
|
+
|
|
7964
|
+
/**
|
|
7965
|
+
* Betrag in Basiswährung
|
|
7966
|
+
*/
|
|
7967
|
+
baseAmount: number;
|
|
7968
|
+
|
|
7969
|
+
/**
|
|
7970
|
+
* Basiswährung des Zahlungsplans (ISO-A3)
|
|
7971
|
+
*/
|
|
7972
|
+
baseCurrencyCode: string;
|
|
7973
|
+
|
|
7974
|
+
/**
|
|
7975
|
+
* Kurs der Währung zu Basiswährung
|
|
7976
|
+
*/
|
|
7977
|
+
exchangeRate: number;
|
|
7978
|
+
|
|
7979
|
+
/**
|
|
7980
|
+
* manuelle Buchungsvorgaben
|
|
7981
|
+
*/
|
|
7982
|
+
manualRuleEntries: Array<PaymentPlanManualRule>;
|
|
7983
|
+
|
|
7984
|
+
/**
|
|
7985
|
+
* Unique identifier of the Object
|
|
7986
|
+
*/
|
|
7987
|
+
id: number;
|
|
7988
|
+
|
|
7989
|
+
/**
|
|
7990
|
+
* Währung des Zahlungsplans (ISO-A3)
|
|
7991
|
+
*/
|
|
7992
|
+
currencyCode: string;
|
|
7993
|
+
|
|
7994
|
+
/**
|
|
7995
|
+
* Startdatum
|
|
7996
|
+
*/
|
|
7997
|
+
startDate: ScriptingDate;
|
|
7998
|
+
|
|
7999
|
+
/**
|
|
8000
|
+
* MetaInformations for this Object
|
|
8001
|
+
*/
|
|
8002
|
+
info: MetaInfo;
|
|
8003
|
+
}
|
|
8004
|
+
|
|
8005
|
+
export const enum OpenItemPaymentPlan$PaymentPlanType {
|
|
8006
|
+
RULE = 'RULE',
|
|
8007
|
+
MANUAL = 'MANUAL'
|
|
8008
|
+
}
|
|
8009
|
+
|
|
8010
|
+
export const enum OpenItemPaymentState {
|
|
8011
|
+
NO_PAYMENT = 'NO_PAYMENT',
|
|
8012
|
+
PAYMENT_CREATED = 'PAYMENT_CREATED',
|
|
8013
|
+
PAYMENT_TRANSFERRED = 'PAYMENT_TRANSFERRED',
|
|
8014
|
+
PAYMENT_COMMITTED = 'PAYMENT_COMMITTED'
|
|
8015
|
+
}
|
|
8016
|
+
|
|
8017
|
+
export interface OpenItemRecord {
|
|
8018
|
+
|
|
8019
|
+
/**
|
|
8020
|
+
* document
|
|
8021
|
+
*/
|
|
8022
|
+
document: ApiObjectReference;
|
|
8023
|
+
|
|
8024
|
+
/**
|
|
8025
|
+
* origin for this record
|
|
8026
|
+
*/
|
|
8027
|
+
origin: OpenItemRecord$RecordOrigin;
|
|
8028
|
+
|
|
8029
|
+
/**
|
|
8030
|
+
* company account bankdetails
|
|
8031
|
+
*/
|
|
8032
|
+
accountBankdetailsRef: ApiObjectReference;
|
|
8033
|
+
|
|
8034
|
+
/**
|
|
8035
|
+
* record discount amount
|
|
8036
|
+
*/
|
|
8037
|
+
discountAmount: number;
|
|
8038
|
+
|
|
8039
|
+
/**
|
|
8040
|
+
* Mahnzinsen in Basiswährung
|
|
8041
|
+
*/
|
|
8042
|
+
baseDunningInterest: number;
|
|
8043
|
+
|
|
8044
|
+
/**
|
|
8045
|
+
* record reference number
|
|
8046
|
+
*/
|
|
8047
|
+
recordReferenceNumber: string;
|
|
8048
|
+
|
|
8049
|
+
/**
|
|
8050
|
+
* ref to the financialBookingRecord
|
|
8051
|
+
*/
|
|
8052
|
+
bookingRecordId: number;
|
|
8053
|
+
|
|
8054
|
+
/**
|
|
8055
|
+
* Eine Vorgangsnummer die zur Buchung führte
|
|
8056
|
+
*/
|
|
8057
|
+
number: string;
|
|
8058
|
+
|
|
8059
|
+
/**
|
|
8060
|
+
* revertable
|
|
8061
|
+
*/
|
|
8062
|
+
revertable: boolean;
|
|
8063
|
+
|
|
8064
|
+
/**
|
|
8065
|
+
* Kurs der Währung zu Basiswährung
|
|
8066
|
+
*/
|
|
8067
|
+
exchangeRate: number;
|
|
8068
|
+
|
|
8069
|
+
/**
|
|
8070
|
+
* record discountable amount
|
|
8071
|
+
*/
|
|
8072
|
+
discountableAmount: number;
|
|
8073
|
+
|
|
8074
|
+
/**
|
|
8075
|
+
* record date
|
|
8076
|
+
*/
|
|
8077
|
+
recordDate: ScriptingDate;
|
|
8078
|
+
|
|
8079
|
+
/**
|
|
8080
|
+
* Gesamtbetrag in Basiswährung
|
|
8081
|
+
*/
|
|
8082
|
+
baseTotalAmount: number;
|
|
8083
|
+
|
|
8084
|
+
/**
|
|
8085
|
+
* Unique identifier of the Object
|
|
8086
|
+
*/
|
|
8087
|
+
id: number;
|
|
8088
|
+
|
|
8089
|
+
/**
|
|
8090
|
+
* locked
|
|
8091
|
+
*/
|
|
8092
|
+
locked: boolean;
|
|
8093
|
+
|
|
8094
|
+
/**
|
|
8095
|
+
* Skontierbarer Gesamtbetrag in Basiswährung
|
|
8096
|
+
*/
|
|
8097
|
+
baseDiscountableAmount: number;
|
|
8098
|
+
|
|
8099
|
+
/**
|
|
8100
|
+
* MetaInformations for this Object
|
|
8101
|
+
*/
|
|
8102
|
+
info: MetaInfo;
|
|
8103
|
+
|
|
8104
|
+
/**
|
|
8105
|
+
* Mahnstufe
|
|
8106
|
+
*/
|
|
8107
|
+
dunningLvl: number;
|
|
8108
|
+
|
|
8109
|
+
/**
|
|
8110
|
+
* record amount
|
|
8111
|
+
*/
|
|
8112
|
+
amount: number;
|
|
8113
|
+
|
|
8114
|
+
/**
|
|
8115
|
+
* bank transaction details
|
|
8116
|
+
*/
|
|
8117
|
+
transactionRef: ApiObjectReference;
|
|
8118
|
+
|
|
8119
|
+
/**
|
|
8120
|
+
* Konto des Umsatzes
|
|
8121
|
+
*/
|
|
8122
|
+
bankAccountRef: ApiObjectReference;
|
|
8123
|
+
|
|
8124
|
+
/**
|
|
8125
|
+
* Version Identifier for this Object (for PUT)
|
|
8126
|
+
*/
|
|
8127
|
+
version: number;
|
|
8128
|
+
|
|
8129
|
+
/**
|
|
8130
|
+
* Buchungsbetrag in Basiswährung
|
|
8131
|
+
*/
|
|
8132
|
+
baseAmount: number;
|
|
8133
|
+
|
|
8134
|
+
/**
|
|
8135
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8136
|
+
*/
|
|
8137
|
+
transactionId: number;
|
|
8138
|
+
|
|
8139
|
+
/**
|
|
8140
|
+
* Abzugsbetrag in Basiswährung
|
|
8141
|
+
*/
|
|
8142
|
+
baseDiscountAmount: number;
|
|
8143
|
+
|
|
8144
|
+
/**
|
|
8145
|
+
* Mahngebühren in Basiswährung
|
|
8146
|
+
*/
|
|
8147
|
+
baseDunningFee: number;
|
|
8148
|
+
|
|
8149
|
+
/**
|
|
8150
|
+
* record total amount
|
|
8151
|
+
*/
|
|
8152
|
+
totalAmount: number;
|
|
8153
|
+
|
|
8154
|
+
/**
|
|
8155
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8156
|
+
*/
|
|
8157
|
+
baseCurrencyCode: string;
|
|
8158
|
+
|
|
8159
|
+
/**
|
|
8160
|
+
* id des records, der diesen storniert hat
|
|
8161
|
+
*/
|
|
8162
|
+
revertedByRecordId: number;
|
|
8163
|
+
|
|
8164
|
+
/**
|
|
8165
|
+
* qualifier of open item
|
|
8166
|
+
*/
|
|
8167
|
+
qualifier: OpenItemRecord$RecordQualifier;
|
|
8168
|
+
|
|
8169
|
+
/**
|
|
8170
|
+
* payment-method
|
|
8171
|
+
*/
|
|
8172
|
+
paymentMethod: ApiObjectReference;
|
|
8173
|
+
|
|
8174
|
+
/**
|
|
8175
|
+
* Geschäftsvorfall
|
|
8176
|
+
*/
|
|
8177
|
+
businessTransaction: ApiObjectReference;
|
|
8178
|
+
|
|
8179
|
+
/**
|
|
8180
|
+
* comment
|
|
8181
|
+
*/
|
|
8182
|
+
comment: string;
|
|
8183
|
+
|
|
8184
|
+
/**
|
|
8185
|
+
* Währung des offenen Postens (ISO-A3)
|
|
8186
|
+
*/
|
|
8187
|
+
currencyCode: string;
|
|
8188
|
+
}
|
|
8189
|
+
|
|
8190
|
+
export const enum OpenItemRecord$RecordOrigin {
|
|
8191
|
+
DOCUMENT = 'DOCUMENT',
|
|
8192
|
+
PAYMENT = 'PAYMENT',
|
|
8193
|
+
PAYMENT_DISSOLVED = 'PAYMENT_DISSOLVED',
|
|
8194
|
+
REIMBURSEMENT = 'REIMBURSEMENT',
|
|
8195
|
+
REIMBURSEMENT_DISSOLVED = 'REIMBURSEMENT_DISSOLVED',
|
|
8196
|
+
MANUAL_CLOSURE = 'MANUAL_CLOSURE',
|
|
8197
|
+
MANUAL_REOPENING = 'MANUAL_REOPENING',
|
|
8198
|
+
DUNNING = 'DUNNING',
|
|
8199
|
+
DUNNING_DISSOLVED = 'DUNNING_DISSOLVED',
|
|
8200
|
+
DUNNING_INTEREST_REVERSAL = 'DUNNING_INTEREST_REVERSAL',
|
|
8201
|
+
IMPORT = 'IMPORT',
|
|
8202
|
+
PAYMENT_PLAN = 'PAYMENT_PLAN',
|
|
8203
|
+
PAYMENT_PLAN_ENTRY = 'PAYMENT_PLAN_ENTRY',
|
|
8204
|
+
PAYMENT_IMPORT = 'PAYMENT_IMPORT',
|
|
8205
|
+
CLEARING = 'CLEARING',
|
|
8206
|
+
DEPOSIT = 'DEPOSIT',
|
|
8207
|
+
CREDIT_NOTE = 'CREDIT_NOTE',
|
|
8208
|
+
BALANCE_ADJUSTMENT = 'BALANCE_ADJUSTMENT',
|
|
8209
|
+
FEE = 'FEE',
|
|
8210
|
+
DUNNING_PAYMENT = 'DUNNING_PAYMENT',
|
|
8211
|
+
DUNNING_PAYMENT_DISSOLVED = 'DUNNING_PAYMENT_DISSOLVED',
|
|
8212
|
+
POS_PAYMENT = 'POS_PAYMENT'
|
|
8213
|
+
}
|
|
8214
|
+
|
|
8215
|
+
export const enum OpenItemRecord$RecordQualifier {
|
|
8216
|
+
PAYABLE = 'PAYABLE',
|
|
8217
|
+
RECEIVABLE = 'RECEIVABLE',
|
|
8218
|
+
PAYMENT_RECEIVED = 'PAYMENT_RECEIVED',
|
|
8219
|
+
PAYMENT_SENT = 'PAYMENT_SENT',
|
|
8220
|
+
PAYMENT_RECEIVED_REVERTED = 'PAYMENT_RECEIVED_REVERTED',
|
|
8221
|
+
PAYMENT_SENT_REVERTED = 'PAYMENT_SENT_REVERTED',
|
|
8222
|
+
DUNNING_RECEIVABLE = 'DUNNING_RECEIVABLE',
|
|
8223
|
+
DUNNING_PAYABLE = 'DUNNING_PAYABLE',
|
|
8224
|
+
DUNNING_RECEIVABLE_REVERTED = 'DUNNING_RECEIVABLE_REVERTED',
|
|
8225
|
+
DUNNING_PAYABLE_REVERTED = 'DUNNING_PAYABLE_REVERTED'
|
|
8226
|
+
}
|
|
8227
|
+
|
|
8228
|
+
export const enum OrderStackProcessingType {
|
|
8229
|
+
NO_PICKING = 'NO_PICKING',
|
|
8230
|
+
ACCORDING_TO_CRITERIA = 'ACCORDING_TO_CRITERIA',
|
|
8231
|
+
ONLY_FULL_ORDER = 'ONLY_FULL_ORDER',
|
|
8232
|
+
ONLY_FULL_ORDER_LINES = 'ONLY_FULL_ORDER_LINES',
|
|
8233
|
+
AVAILABLE_QUANTITIES = 'AVAILABLE_QUANTITIES',
|
|
8234
|
+
NO_PROCESSING = 'NO_PROCESSING',
|
|
8235
|
+
FULL_ORDER_LINES_MAX_TWO_PARTIAL_DELIVERIES = 'FULL_ORDER_LINES_MAX_TWO_PARTIAL_DELIVERIES',
|
|
8236
|
+
AVAILABLE_QUANTITIES_MAX_TWO_PARTIAL_DELIVERIES = 'AVAILABLE_QUANTITIES_MAX_TWO_PARTIAL_DELIVERIES',
|
|
8237
|
+
FULL_ORDER_LINES_MAX_THREE_PARTIAL_DELIVERIES = 'FULL_ORDER_LINES_MAX_THREE_PARTIAL_DELIVERIES',
|
|
8238
|
+
AVAILABLE_QUANTITIES_MAX_THREE_PARTIAL_DELIVERIES = 'AVAILABLE_QUANTITIES_MAX_THREE_PARTIAL_DELIVERIES',
|
|
8239
|
+
AVAILABLE_QUANTITIES_FINISH_ORDER = 'AVAILABLE_QUANTITIES_FINISH_ORDER'
|
|
8240
|
+
}
|
|
8241
|
+
|
|
8242
|
+
export const enum PaymentDiscountOrigin {
|
|
8243
|
+
FROM_PAYMENT_TERM = 'FROM_PAYMENT_TERM',
|
|
8244
|
+
FROM_ACCOUNT = 'FROM_ACCOUNT',
|
|
8245
|
+
USER_DEFINED = 'USER_DEFINED'
|
|
8246
|
+
}
|
|
8247
|
+
|
|
8248
|
+
export interface PaymentMethod {
|
|
8249
|
+
|
|
8250
|
+
/**
|
|
8251
|
+
* Verbindlichkeiten-OP abschließen?
|
|
8252
|
+
*/
|
|
8253
|
+
closePayable: boolean;
|
|
8254
|
+
|
|
8255
|
+
/**
|
|
8256
|
+
* +Tage für Erstlastschrift
|
|
8257
|
+
*/
|
|
8258
|
+
daysToAddForDirectDebit: number;
|
|
8259
|
+
|
|
8260
|
+
/**
|
|
8261
|
+
* printDescription
|
|
8262
|
+
*/
|
|
8263
|
+
printDescription: string;
|
|
8264
|
+
|
|
8265
|
+
/**
|
|
8266
|
+
* Aktiv?
|
|
8267
|
+
*/
|
|
8268
|
+
active: boolean;
|
|
8269
|
+
|
|
8270
|
+
/**
|
|
8271
|
+
* description
|
|
8272
|
+
*/
|
|
8273
|
+
description: string;
|
|
8274
|
+
|
|
8275
|
+
/**
|
|
8276
|
+
* label for this payment method
|
|
8277
|
+
*/
|
|
8278
|
+
label: string;
|
|
8279
|
+
|
|
8280
|
+
/**
|
|
8281
|
+
* Version Identifier for this Object (for PUT)
|
|
8282
|
+
*/
|
|
8283
|
+
version: number;
|
|
8284
|
+
|
|
8285
|
+
/**
|
|
8286
|
+
* Payment Type
|
|
8287
|
+
*/
|
|
8288
|
+
paymentType: BankPaymentType;
|
|
8289
|
+
|
|
8290
|
+
/**
|
|
8291
|
+
* dunnable
|
|
8292
|
+
*/
|
|
8293
|
+
dunnable: boolean;
|
|
8294
|
+
|
|
8295
|
+
/**
|
|
8296
|
+
* Debitoren-OP abschließen?
|
|
8297
|
+
*/
|
|
8298
|
+
closeCustomerAccountType: boolean;
|
|
8299
|
+
|
|
8300
|
+
/**
|
|
8301
|
+
* translations
|
|
8302
|
+
*/
|
|
8303
|
+
translations: Array<DocumentTypeTerm>;
|
|
8304
|
+
|
|
8305
|
+
/**
|
|
8306
|
+
* +Tage für Folgelastschrift
|
|
8307
|
+
*/
|
|
8308
|
+
daysToAddForFollowup: number;
|
|
8309
|
+
|
|
8310
|
+
/**
|
|
8311
|
+
* external Payment Id
|
|
8312
|
+
*/
|
|
8313
|
+
externalPaymentId: string;
|
|
8314
|
+
|
|
8315
|
+
/**
|
|
8316
|
+
* Die Business Transaction
|
|
8317
|
+
*/
|
|
8318
|
+
businessTransaction: ApiObjectReference;
|
|
8319
|
+
|
|
8320
|
+
/**
|
|
8321
|
+
* Unique identifier of the Object
|
|
8322
|
+
*/
|
|
8323
|
+
id: number;
|
|
8324
|
+
|
|
8325
|
+
/**
|
|
8326
|
+
* Kreditoren-OP abschließen?
|
|
8327
|
+
*/
|
|
8328
|
+
closeSupplierAccountType: boolean;
|
|
8329
|
+
|
|
8330
|
+
/**
|
|
8331
|
+
* Forderungs-OP abschließen?
|
|
8332
|
+
*/
|
|
8333
|
+
closeReceivable: boolean;
|
|
8334
|
+
|
|
8335
|
+
/**
|
|
8336
|
+
* MetaInformations for this Object
|
|
8337
|
+
*/
|
|
8338
|
+
info: MetaInfo;
|
|
8339
|
+
}
|
|
8340
|
+
|
|
8341
|
+
export interface PaymentPlanManualRule {
|
|
8342
|
+
|
|
8343
|
+
/**
|
|
8344
|
+
* bereits verarbeitet
|
|
8345
|
+
*/
|
|
8346
|
+
processed: boolean;
|
|
8347
|
+
|
|
8348
|
+
/**
|
|
8349
|
+
* Betrag
|
|
8350
|
+
*/
|
|
8351
|
+
amount: number;
|
|
8352
|
+
|
|
8353
|
+
/**
|
|
8354
|
+
* Basiswährung (ISO-A3)
|
|
8355
|
+
*/
|
|
8356
|
+
baseCurrencyCode: string;
|
|
8357
|
+
|
|
8358
|
+
/**
|
|
8359
|
+
* Kurs der Währung zu Basiswährung
|
|
8360
|
+
*/
|
|
8361
|
+
exchangeRate: number;
|
|
8362
|
+
|
|
8363
|
+
/**
|
|
8364
|
+
* Fälligkeit
|
|
8365
|
+
*/
|
|
8366
|
+
dueDate: ScriptingDate;
|
|
8367
|
+
|
|
8368
|
+
/**
|
|
8369
|
+
* Unique identifier of the Object
|
|
8370
|
+
*/
|
|
8371
|
+
id: number;
|
|
8372
|
+
|
|
8373
|
+
/**
|
|
8374
|
+
* Währung (ISO-A3)
|
|
8375
|
+
*/
|
|
8376
|
+
currencyCode: string;
|
|
8377
|
+
|
|
8378
|
+
/**
|
|
8379
|
+
* Version Identifier for this Object (for PUT)
|
|
8380
|
+
*/
|
|
8381
|
+
version: number;
|
|
8382
|
+
|
|
8383
|
+
/**
|
|
8384
|
+
* Betrag in Basiswährung
|
|
8385
|
+
*/
|
|
8386
|
+
baseAmount: number;
|
|
8387
|
+
|
|
8388
|
+
/**
|
|
8389
|
+
* MetaInformations for this Object
|
|
8390
|
+
*/
|
|
8391
|
+
info: MetaInfo;
|
|
8392
|
+
}
|
|
8393
|
+
|
|
8394
|
+
export interface PaymentTerm {
|
|
8395
|
+
|
|
8396
|
+
/**
|
|
8397
|
+
* Percent for Discount 2
|
|
8398
|
+
*/
|
|
8399
|
+
paymentDiscount2: number;
|
|
8400
|
+
|
|
8401
|
+
/**
|
|
8402
|
+
* printDescription
|
|
8403
|
+
*/
|
|
8404
|
+
printDescription: string;
|
|
8405
|
+
|
|
8406
|
+
/**
|
|
8407
|
+
* Percent for Discount 1
|
|
8408
|
+
*/
|
|
8409
|
+
paymentDiscount1: number;
|
|
8410
|
+
|
|
8411
|
+
/**
|
|
8412
|
+
* for deposit: remaining term
|
|
8413
|
+
*/
|
|
8414
|
+
remainingTermRef: ApiObjectReference;
|
|
8415
|
+
|
|
8416
|
+
/**
|
|
8417
|
+
* Days for Discount 1
|
|
8418
|
+
*/
|
|
8419
|
+
paymentDays1: number;
|
|
8420
|
+
|
|
8421
|
+
/**
|
|
8422
|
+
* Days for Discount 2
|
|
8423
|
+
*/
|
|
8424
|
+
paymentDays2: number;
|
|
8425
|
+
|
|
8426
|
+
/**
|
|
8427
|
+
* Aktiv?
|
|
8428
|
+
*/
|
|
8429
|
+
active: boolean;
|
|
8430
|
+
|
|
8431
|
+
/**
|
|
8432
|
+
* description
|
|
8433
|
+
*/
|
|
8434
|
+
description: string;
|
|
8435
|
+
|
|
8436
|
+
/**
|
|
8437
|
+
* label for this payment term
|
|
8438
|
+
*/
|
|
8439
|
+
label: string;
|
|
8440
|
+
|
|
8441
|
+
/**
|
|
8442
|
+
* Version Identifier for this Object (for PUT)
|
|
8443
|
+
*/
|
|
8444
|
+
version: number;
|
|
8445
|
+
|
|
8446
|
+
/**
|
|
8447
|
+
* payment type
|
|
8448
|
+
*/
|
|
8449
|
+
paymentType: PaymentType;
|
|
8450
|
+
|
|
8451
|
+
/**
|
|
8452
|
+
* translations
|
|
8453
|
+
*/
|
|
8454
|
+
translations: Array<DocumentTypeTerm>;
|
|
8455
|
+
|
|
8456
|
+
/**
|
|
8457
|
+
* Für Kreditlimit berücksichtigen?
|
|
8458
|
+
*/
|
|
8459
|
+
considerForCreditLimit: boolean;
|
|
8460
|
+
|
|
8461
|
+
/**
|
|
8462
|
+
* external Payment Id
|
|
7691
8463
|
*/
|
|
7692
8464
|
externalPaymentId: string;
|
|
7693
8465
|
|
|
@@ -7765,14 +8537,14 @@ export interface PickTrolley {
|
|
|
7765
8537
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7766
8538
|
|
|
7767
8539
|
/**
|
|
7768
|
-
*
|
|
8540
|
+
* Bearbeiter der Pickliste
|
|
7769
8541
|
*/
|
|
7770
|
-
|
|
8542
|
+
processedByUserRef: ApiObjectReference;
|
|
7771
8543
|
|
|
7772
8544
|
/**
|
|
7773
|
-
*
|
|
8545
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7774
8546
|
*/
|
|
7775
|
-
|
|
8547
|
+
storageBinRef: StorageBinRef;
|
|
7776
8548
|
|
|
7777
8549
|
/**
|
|
7778
8550
|
* Beschreibung des Wagens
|
|
@@ -8045,14 +8817,14 @@ export interface PicklistLine {
|
|
|
8045
8817
|
articleNumber: string;
|
|
8046
8818
|
|
|
8047
8819
|
/**
|
|
8048
|
-
*
|
|
8820
|
+
* Lagernummer
|
|
8049
8821
|
*/
|
|
8050
|
-
|
|
8822
|
+
storageNumber: string;
|
|
8051
8823
|
|
|
8052
8824
|
/**
|
|
8053
|
-
*
|
|
8825
|
+
* Art der Position
|
|
8054
8826
|
*/
|
|
8055
|
-
|
|
8827
|
+
lineType: PicklistLineType;
|
|
8056
8828
|
|
|
8057
8829
|
/**
|
|
8058
8830
|
* ID der Ziel-Dokumentposition
|
|
@@ -8188,18 +8960,18 @@ export interface PicklistLineComponent {
|
|
|
8188
8960
|
/**
|
|
8189
8961
|
* ID der Komponente der Ziel-Dokumentposition
|
|
8190
8962
|
*/
|
|
8191
|
-
targetDocumentLineComponentId: number;
|
|
8192
|
-
|
|
8193
|
-
/**
|
|
8194
|
-
* abweichende Artikelbezeichnung
|
|
8195
|
-
*/
|
|
8196
|
-
articleAlternativeName: string;
|
|
8963
|
+
targetDocumentLineComponentId: number;
|
|
8197
8964
|
|
|
8198
8965
|
/**
|
|
8199
8966
|
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8200
8967
|
*/
|
|
8201
8968
|
quantityPerAssemblyGroup: number;
|
|
8202
8969
|
|
|
8970
|
+
/**
|
|
8971
|
+
* abweichende Artikelbezeichnung
|
|
8972
|
+
*/
|
|
8973
|
+
articleAlternativeName: string;
|
|
8974
|
+
|
|
8203
8975
|
/**
|
|
8204
8976
|
* Verpackte Menge der Position
|
|
8205
8977
|
*/
|
|
@@ -8366,26 +9138,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8366
9138
|
*/
|
|
8367
9139
|
maxArticleCountPerOrder: number;
|
|
8368
9140
|
|
|
8369
|
-
/**
|
|
8370
|
-
* Alternative Selektion in VQL
|
|
8371
|
-
*/
|
|
8372
|
-
alternativeSelectionInVql: string;
|
|
8373
|
-
|
|
8374
9141
|
/**
|
|
8375
9142
|
* Maximaler Auftragswert
|
|
8376
9143
|
*/
|
|
8377
9144
|
maxOrderValue: number;
|
|
8378
9145
|
|
|
8379
9146
|
/**
|
|
8380
|
-
*
|
|
9147
|
+
* Alternative Selektion in VQL
|
|
8381
9148
|
*/
|
|
8382
|
-
|
|
9149
|
+
alternativeSelectionInVql: string;
|
|
8383
9150
|
|
|
8384
9151
|
/**
|
|
8385
9152
|
* Selektion über den Bereich vom Lieferdatum
|
|
8386
9153
|
*/
|
|
8387
9154
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8388
9155
|
|
|
9156
|
+
/**
|
|
9157
|
+
* Nur vollständig lieferbare Positionen
|
|
9158
|
+
*/
|
|
9159
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9160
|
+
|
|
8389
9161
|
/**
|
|
8390
9162
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8391
9163
|
*/
|
|
@@ -8464,11 +9236,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8464
9236
|
*/
|
|
8465
9237
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8466
9238
|
|
|
8467
|
-
/**
|
|
8468
|
-
* Lagerplätze vorgeben
|
|
8469
|
-
*/
|
|
8470
|
-
specifyStorageBins: boolean;
|
|
8471
|
-
|
|
8472
9239
|
/**
|
|
8473
9240
|
* Der zu verwendende Pickwagen
|
|
8474
9241
|
*/
|
|
@@ -8480,15 +9247,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8480
9247
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8481
9248
|
|
|
8482
9249
|
/**
|
|
8483
|
-
*
|
|
9250
|
+
* Lagerplätze vorgeben
|
|
8484
9251
|
*/
|
|
8485
|
-
|
|
9252
|
+
specifyStorageBins: boolean;
|
|
8486
9253
|
|
|
8487
9254
|
/**
|
|
8488
9255
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8489
9256
|
*/
|
|
8490
9257
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
8491
9258
|
|
|
9259
|
+
/**
|
|
9260
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9261
|
+
*/
|
|
9262
|
+
sortByRoutePosition: boolean;
|
|
9263
|
+
|
|
8492
9264
|
/**
|
|
8493
9265
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
8494
9266
|
*/
|
|
@@ -8533,14 +9305,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8533
9305
|
alwaysShowDeliveryMethod: boolean;
|
|
8534
9306
|
|
|
8535
9307
|
/**
|
|
8536
|
-
*
|
|
9308
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8537
9309
|
*/
|
|
8538
|
-
|
|
9310
|
+
autoPrintDeliveryDocument: boolean;
|
|
8539
9311
|
|
|
8540
9312
|
/**
|
|
8541
|
-
*
|
|
9313
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8542
9314
|
*/
|
|
8543
|
-
|
|
9315
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8544
9316
|
|
|
8545
9317
|
/**
|
|
8546
9318
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8548,24 +9320,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8548
9320
|
showShippingFormOnPickingFinish: boolean;
|
|
8549
9321
|
|
|
8550
9322
|
/**
|
|
8551
|
-
*
|
|
9323
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8552
9324
|
*/
|
|
8553
|
-
|
|
9325
|
+
useDigitalPicklist: boolean;
|
|
8554
9326
|
|
|
8555
9327
|
/**
|
|
8556
|
-
*
|
|
9328
|
+
* Sammelbestätigung erlauben
|
|
8557
9329
|
*/
|
|
8558
|
-
|
|
9330
|
+
allowFullConfirmation: boolean;
|
|
8559
9331
|
|
|
8560
9332
|
/**
|
|
8561
|
-
*
|
|
9333
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8562
9334
|
*/
|
|
8563
|
-
|
|
9335
|
+
allowPickingOfServiceArticles: boolean;
|
|
8564
9336
|
|
|
8565
9337
|
/**
|
|
8566
|
-
*
|
|
9338
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8567
9339
|
*/
|
|
8568
|
-
|
|
9340
|
+
printLabelOnScan: boolean;
|
|
8569
9341
|
|
|
8570
9342
|
/**
|
|
8571
9343
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8582,26 +9354,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8582
9354
|
*/
|
|
8583
9355
|
printLabelOnCompleteOrder: boolean;
|
|
8584
9356
|
|
|
8585
|
-
/**
|
|
8586
|
-
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8587
|
-
*/
|
|
8588
|
-
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8589
|
-
|
|
8590
9357
|
/**
|
|
8591
9358
|
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8592
9359
|
*/
|
|
8593
9360
|
printLabelAfterPicking: boolean;
|
|
8594
9361
|
|
|
8595
9362
|
/**
|
|
8596
|
-
*
|
|
9363
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8597
9364
|
*/
|
|
8598
|
-
|
|
9365
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8599
9366
|
|
|
8600
9367
|
/**
|
|
8601
9368
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8602
9369
|
*/
|
|
8603
9370
|
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8604
9371
|
|
|
9372
|
+
/**
|
|
9373
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9374
|
+
*/
|
|
9375
|
+
autoDeterminationOfLots: boolean;
|
|
9376
|
+
|
|
8605
9377
|
/**
|
|
8606
9378
|
* Zielmengen in Masken verstecken?
|
|
8607
9379
|
*/
|
|
@@ -8935,14 +9707,14 @@ export interface ProductDiscount {
|
|
|
8935
9707
|
modifierValueType: ValueType;
|
|
8936
9708
|
|
|
8937
9709
|
/**
|
|
8938
|
-
*
|
|
9710
|
+
* Name des Rabatts
|
|
8939
9711
|
*/
|
|
8940
|
-
|
|
9712
|
+
modifierName: string;
|
|
8941
9713
|
|
|
8942
9714
|
/**
|
|
8943
|
-
*
|
|
9715
|
+
* Account, für den der Rabatt gültig ist
|
|
8944
9716
|
*/
|
|
8945
|
-
|
|
9717
|
+
accountRef: ApiObjectReference;
|
|
8946
9718
|
|
|
8947
9719
|
/**
|
|
8948
9720
|
* Unique identifier of the Object
|
|
@@ -9069,25 +9841,15 @@ export interface ProductPrice {
|
|
|
9069
9841
|
customerGroupRef: ApiObjectReference;
|
|
9070
9842
|
|
|
9071
9843
|
/**
|
|
9072
|
-
*
|
|
9073
|
-
*/
|
|
9074
|
-
usedTaxRate: TaxRate;
|
|
9075
|
-
|
|
9076
|
-
/**
|
|
9077
|
-
* Lieferantengruppe
|
|
9844
|
+
* Einkaufspreis zur Kalkulation
|
|
9078
9845
|
*/
|
|
9079
|
-
|
|
9846
|
+
purchasePriceSource: PurchasePriceSource;
|
|
9080
9847
|
|
|
9081
9848
|
/**
|
|
9082
9849
|
* Bestimmt ab welcher Menge dieser Preis gültig ist
|
|
9083
9850
|
*/
|
|
9084
9851
|
fromQuantity: number;
|
|
9085
9852
|
|
|
9086
|
-
/**
|
|
9087
|
-
* Produkt, für welches dieser Preis gültig ist
|
|
9088
|
-
*/
|
|
9089
|
-
articleRef: ApiObjectReference;
|
|
9090
|
-
|
|
9091
9853
|
/**
|
|
9092
9854
|
* Netto-Preis
|
|
9093
9855
|
*/
|
|
@@ -9109,14 +9871,44 @@ export interface ProductPrice {
|
|
|
9109
9871
|
productGroupRef: ApiObjectReference;
|
|
9110
9872
|
|
|
9111
9873
|
/**
|
|
9112
|
-
*
|
|
9874
|
+
* Verkaufskanal
|
|
9113
9875
|
*/
|
|
9114
|
-
|
|
9876
|
+
salesChannelRef: ApiObjectReference;
|
|
9115
9877
|
|
|
9116
9878
|
/**
|
|
9117
|
-
*
|
|
9879
|
+
* Preisgruppe
|
|
9118
9880
|
*/
|
|
9119
|
-
|
|
9881
|
+
priceGroupRef: ApiObjectReference;
|
|
9882
|
+
|
|
9883
|
+
/**
|
|
9884
|
+
* Unique identifier of the Object
|
|
9885
|
+
*/
|
|
9886
|
+
id: number;
|
|
9887
|
+
|
|
9888
|
+
/**
|
|
9889
|
+
* MetaInformations for this Object
|
|
9890
|
+
*/
|
|
9891
|
+
info: MetaInfo;
|
|
9892
|
+
|
|
9893
|
+
/**
|
|
9894
|
+
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
9895
|
+
*/
|
|
9896
|
+
usedTaxRate: TaxRate;
|
|
9897
|
+
|
|
9898
|
+
/**
|
|
9899
|
+
* Lieferantengruppe
|
|
9900
|
+
*/
|
|
9901
|
+
supplierGroupRef: ApiObjectReference;
|
|
9902
|
+
|
|
9903
|
+
/**
|
|
9904
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
9905
|
+
*/
|
|
9906
|
+
articleRef: ApiObjectReference;
|
|
9907
|
+
|
|
9908
|
+
/**
|
|
9909
|
+
* Version Identifier for this Object (for PUT)
|
|
9910
|
+
*/
|
|
9911
|
+
version: number;
|
|
9120
9912
|
|
|
9121
9913
|
/**
|
|
9122
9914
|
* Währung
|
|
@@ -9124,9 +9916,9 @@ export interface ProductPrice {
|
|
|
9124
9916
|
currencyRef: CurrencyReference;
|
|
9125
9917
|
|
|
9126
9918
|
/**
|
|
9127
|
-
*
|
|
9919
|
+
* Wert des Aufschlags bei EK-Kalkulation
|
|
9128
9920
|
*/
|
|
9129
|
-
|
|
9921
|
+
modifierValue: number;
|
|
9130
9922
|
|
|
9131
9923
|
/**
|
|
9132
9924
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufspreis handelt
|
|
@@ -9149,19 +9941,14 @@ export interface ProductPrice {
|
|
|
9149
9941
|
validUntil: ScriptingDate;
|
|
9150
9942
|
|
|
9151
9943
|
/**
|
|
9152
|
-
*
|
|
9153
|
-
*/
|
|
9154
|
-
accountRef: ApiObjectReference;
|
|
9155
|
-
|
|
9156
|
-
/**
|
|
9157
|
-
* Unique identifier of the Object
|
|
9944
|
+
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
9158
9945
|
*/
|
|
9159
|
-
|
|
9946
|
+
modifierValueType: ValueType;
|
|
9160
9947
|
|
|
9161
9948
|
/**
|
|
9162
|
-
*
|
|
9949
|
+
* Account, für den der Preis gültig ist
|
|
9163
9950
|
*/
|
|
9164
|
-
|
|
9951
|
+
accountRef: ApiObjectReference;
|
|
9165
9952
|
}
|
|
9166
9953
|
|
|
9167
9954
|
export const enum ProductPriceOrigin {
|
|
@@ -9192,6 +9979,12 @@ export const enum PublishingPolicy {
|
|
|
9192
9979
|
MANUAL = 'MANUAL'
|
|
9193
9980
|
}
|
|
9194
9981
|
|
|
9982
|
+
export const enum PurchasePriceSource {
|
|
9983
|
+
NONE = 'NONE',
|
|
9984
|
+
AVERAGE = 'AVERAGE',
|
|
9985
|
+
MOST_RECENT = 'MOST_RECENT'
|
|
9986
|
+
}
|
|
9987
|
+
|
|
9195
9988
|
export interface RecommendedRetailPrice {
|
|
9196
9989
|
|
|
9197
9990
|
/**
|
|
@@ -9263,14 +10056,14 @@ export interface RequestDocument {
|
|
|
9263
10056
|
cashDrawerId: number;
|
|
9264
10057
|
|
|
9265
10058
|
/**
|
|
9266
|
-
*
|
|
10059
|
+
* Leistungsdatum
|
|
9267
10060
|
*/
|
|
9268
|
-
|
|
10061
|
+
performanceDate: ScriptingDate;
|
|
9269
10062
|
|
|
9270
10063
|
/**
|
|
9271
|
-
*
|
|
10064
|
+
* Der Anzahlungsbetrag
|
|
9272
10065
|
*/
|
|
9273
|
-
|
|
10066
|
+
depositPaymentAmount: number;
|
|
9274
10067
|
|
|
9275
10068
|
/**
|
|
9276
10069
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9328,14 +10121,14 @@ export interface RequestDocument {
|
|
|
9328
10121
|
lines: Array<RequestDocumentLine>;
|
|
9329
10122
|
|
|
9330
10123
|
/**
|
|
9331
|
-
*
|
|
10124
|
+
* ID der Kasse (bei POS)
|
|
9332
10125
|
*/
|
|
9333
|
-
|
|
10126
|
+
posRegisterId: number;
|
|
9334
10127
|
|
|
9335
10128
|
/**
|
|
9336
|
-
*
|
|
10129
|
+
* Die Vertragsdetails
|
|
9337
10130
|
*/
|
|
9338
|
-
|
|
10131
|
+
contractDetail: DocumentContractDetail;
|
|
9339
10132
|
|
|
9340
10133
|
/**
|
|
9341
10134
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9387,6 +10180,11 @@ export interface RequestDocument {
|
|
|
9387
10180
|
*/
|
|
9388
10181
|
accountId: number;
|
|
9389
10182
|
|
|
10183
|
+
/**
|
|
10184
|
+
* Kopf-/Fußtexte des Belegs
|
|
10185
|
+
*/
|
|
10186
|
+
texts: Array<DocumentText>;
|
|
10187
|
+
|
|
9390
10188
|
/**
|
|
9391
10189
|
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
9392
10190
|
*/
|
|
@@ -9471,14 +10269,14 @@ export interface RequestDocumentLine {
|
|
|
9471
10269
|
dropShippingPolicy: DropShippingPolicy;
|
|
9472
10270
|
|
|
9473
10271
|
/**
|
|
9474
|
-
*
|
|
10272
|
+
* Positionsnummer der Artikel
|
|
9475
10273
|
*/
|
|
9476
|
-
|
|
10274
|
+
positionOfArticleLine: number;
|
|
9477
10275
|
|
|
9478
10276
|
/**
|
|
9479
|
-
*
|
|
10277
|
+
* (optional) Lager-ID
|
|
9480
10278
|
*/
|
|
9481
|
-
|
|
10279
|
+
storageId: number;
|
|
9482
10280
|
|
|
9483
10281
|
/**
|
|
9484
10282
|
* Vertragsdetails zur Belegposition
|
|
@@ -9555,6 +10353,11 @@ export interface RequestDocumentLine {
|
|
|
9555
10353
|
*/
|
|
9556
10354
|
name: string;
|
|
9557
10355
|
|
|
10356
|
+
/**
|
|
10357
|
+
* ID der Quell-Belegposition
|
|
10358
|
+
*/
|
|
10359
|
+
sourceLineId: number;
|
|
10360
|
+
|
|
9558
10361
|
/**
|
|
9559
10362
|
* Für interne Zwecke: Externe Artikelnummer
|
|
9560
10363
|
*/
|
|
@@ -9566,19 +10369,14 @@ export interface RequestDocumentLine {
|
|
|
9566
10369
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9567
10370
|
|
|
9568
10371
|
/**
|
|
9569
|
-
*
|
|
10372
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
9570
10373
|
*/
|
|
9571
|
-
|
|
10374
|
+
doLabelPrint: boolean;
|
|
9572
10375
|
|
|
9573
10376
|
/**
|
|
9574
10377
|
* (optional) Preis des Artikels dieser Position
|
|
9575
10378
|
*/
|
|
9576
10379
|
productPrice: number;
|
|
9577
|
-
|
|
9578
|
-
/**
|
|
9579
|
-
* Zu der Zeile Etikettendruck anstoßen
|
|
9580
|
-
*/
|
|
9581
|
-
doLabelPrint: boolean;
|
|
9582
10380
|
}
|
|
9583
10381
|
|
|
9584
10382
|
export interface RequestDocumentLineBooking {
|
|
@@ -9707,14 +10505,14 @@ export interface RequestDocumentText {
|
|
|
9707
10505
|
export interface RevenueCalculation {
|
|
9708
10506
|
|
|
9709
10507
|
/**
|
|
9710
|
-
*
|
|
10508
|
+
* Deckungsbeitrag (absolut)
|
|
9711
10509
|
*/
|
|
9712
|
-
|
|
10510
|
+
revenue: number;
|
|
9713
10511
|
|
|
9714
10512
|
/**
|
|
9715
|
-
*
|
|
10513
|
+
* Netto Umsatz
|
|
9716
10514
|
*/
|
|
9717
|
-
|
|
10515
|
+
salesValue: number;
|
|
9718
10516
|
|
|
9719
10517
|
/**
|
|
9720
10518
|
* Einkaufspreis
|
|
@@ -9735,14 +10533,14 @@ export interface SalesAgent {
|
|
|
9735
10533
|
note: string;
|
|
9736
10534
|
|
|
9737
10535
|
/**
|
|
9738
|
-
*
|
|
10536
|
+
* is sales agent taxable
|
|
9739
10537
|
*/
|
|
9740
|
-
|
|
10538
|
+
taxable: boolean;
|
|
9741
10539
|
|
|
9742
10540
|
/**
|
|
9743
|
-
*
|
|
10541
|
+
* reference to the delivery method
|
|
9744
10542
|
*/
|
|
9745
|
-
|
|
10543
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9746
10544
|
|
|
9747
10545
|
/**
|
|
9748
10546
|
* Freifelder
|
|
@@ -10202,14 +11000,14 @@ export interface ShelfDocument {
|
|
|
10202
11000
|
tags: Array<TagDto>;
|
|
10203
11001
|
|
|
10204
11002
|
/**
|
|
10205
|
-
*
|
|
11003
|
+
* Mehrsprachige Bezeichnungen
|
|
10206
11004
|
*/
|
|
10207
|
-
|
|
11005
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10208
11006
|
|
|
10209
11007
|
/**
|
|
10210
|
-
*
|
|
11008
|
+
* share informations
|
|
10211
11009
|
*/
|
|
10212
|
-
|
|
11010
|
+
shares: Array<ShelfShare>;
|
|
10213
11011
|
|
|
10214
11012
|
/**
|
|
10215
11013
|
* Automatische Löschung ab
|
|
@@ -10617,14 +11415,14 @@ export interface Stock {
|
|
|
10617
11415
|
storageBinId: number;
|
|
10618
11416
|
|
|
10619
11417
|
/**
|
|
10620
|
-
*
|
|
11418
|
+
* Artikel
|
|
10621
11419
|
*/
|
|
10622
|
-
|
|
11420
|
+
articleId: number;
|
|
10623
11421
|
|
|
10624
11422
|
/**
|
|
10625
|
-
*
|
|
11423
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
10626
11424
|
*/
|
|
10627
|
-
|
|
11425
|
+
reservedSerialQuantity: number;
|
|
10628
11426
|
}
|
|
10629
11427
|
|
|
10630
11428
|
export const enum StockJournalFactor {
|
|
@@ -10916,14 +11714,14 @@ export interface Supplier {
|
|
|
10916
11714
|
info: MetaInfo;
|
|
10917
11715
|
|
|
10918
11716
|
/**
|
|
10919
|
-
*
|
|
11717
|
+
* Lieferantengruppe
|
|
10920
11718
|
*/
|
|
10921
|
-
|
|
11719
|
+
supplierGroupRef: ApiObjectReference;
|
|
10922
11720
|
|
|
10923
11721
|
/**
|
|
10924
|
-
*
|
|
11722
|
+
* reference to the delivery method
|
|
10925
11723
|
*/
|
|
10926
|
-
|
|
11724
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10927
11725
|
|
|
10928
11726
|
/**
|
|
10929
11727
|
* tax able or tax free
|
|
@@ -10981,14 +11779,14 @@ export interface Supplier {
|
|
|
10981
11779
|
performanceCountryCode: string;
|
|
10982
11780
|
|
|
10983
11781
|
/**
|
|
10984
|
-
*
|
|
11782
|
+
* reference to the payment method
|
|
10985
11783
|
*/
|
|
10986
|
-
|
|
11784
|
+
paymentMethodRef: ApiObjectReference;
|
|
10987
11785
|
|
|
10988
11786
|
/**
|
|
10989
|
-
*
|
|
11787
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10990
11788
|
*/
|
|
10991
|
-
|
|
11789
|
+
defaultDeliveryTime: number;
|
|
10992
11790
|
|
|
10993
11791
|
/**
|
|
10994
11792
|
* currency code IsoAlpha3
|
|
@@ -11009,14 +11807,14 @@ export interface TagDto {
|
|
|
11009
11807
|
editColor: string;
|
|
11010
11808
|
|
|
11011
11809
|
/**
|
|
11012
|
-
* Farbe
|
|
11810
|
+
* Farbe für die Anzeige des Tags
|
|
11013
11811
|
*/
|
|
11014
|
-
|
|
11812
|
+
color: string;
|
|
11015
11813
|
|
|
11016
11814
|
/**
|
|
11017
|
-
* Farbe
|
|
11815
|
+
* Farbe in Such-GUI
|
|
11018
11816
|
*/
|
|
11019
|
-
|
|
11817
|
+
searchColor: string;
|
|
11020
11818
|
|
|
11021
11819
|
/**
|
|
11022
11820
|
* Beschriftung des Tags
|
|
@@ -11154,6 +11952,11 @@ export const enum TaxSituationOrigin {
|
|
|
11154
11952
|
FROM_TAX_ID = 'FROM_TAX_ID'
|
|
11155
11953
|
}
|
|
11156
11954
|
|
|
11955
|
+
export const enum TaxStateType {
|
|
11956
|
+
TAX_FREE = 'TAX_FREE',
|
|
11957
|
+
TAX_ABLE = 'TAX_ABLE'
|
|
11958
|
+
}
|
|
11959
|
+
|
|
11157
11960
|
export interface TextEnumCreate {
|
|
11158
11961
|
|
|
11159
11962
|
/**
|
|
@@ -11558,14 +12361,14 @@ export interface VariantValue {
|
|
|
11558
12361
|
version: number;
|
|
11559
12362
|
|
|
11560
12363
|
/**
|
|
11561
|
-
*
|
|
12364
|
+
* Mehrsprachige Bezeichnungen
|
|
11562
12365
|
*/
|
|
11563
|
-
|
|
12366
|
+
labels: Array<VariantDescription>;
|
|
11564
12367
|
|
|
11565
12368
|
/**
|
|
11566
|
-
*
|
|
12369
|
+
* Variantenattribut
|
|
11567
12370
|
*/
|
|
11568
|
-
|
|
12371
|
+
attributeRef: ApiObjectReference;
|
|
11569
12372
|
|
|
11570
12373
|
/**
|
|
11571
12374
|
* MetaInformations for this Object
|