@vario-software/types 2026.24.1 → 2026.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +20 -20
- package/scripting/types.d.ts +279 -279
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -163,14 +163,14 @@ export interface Account {
|
|
|
163
163
|
custom: EavAccount;
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* tax number/ Steuernummer
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
taxNumber: string;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* Is account active?
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
active: boolean;
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
176
|
* verantwortlicher Benutzer
|
|
@@ -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
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* Is default bank?
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
defaultBank: boolean;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* origin type
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* is this product purchasable
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
purchasable: boolean;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1029,14 +1029,14 @@ export interface Article {
|
|
|
1029
1029
|
sellableWithoutStock: boolean;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
|
-
*
|
|
1032
|
+
* Durchschnittl. EKP (Startwert)
|
|
1033
1033
|
*/
|
|
1034
|
-
|
|
1034
|
+
initialAvgPurchasePrice: number;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
|
-
*
|
|
1037
|
+
* Seriennummern Auszeichnungsart
|
|
1038
1038
|
*/
|
|
1039
|
-
|
|
1039
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1040
1040
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* gross sales prices
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
grossSalesPrice: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1288,26 +1288,26 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
-
/**
|
|
1292
|
-
* reference to Product
|
|
1293
|
-
*/
|
|
1294
|
-
productRef: ApiObjectReference;
|
|
1295
|
-
|
|
1296
1291
|
/**
|
|
1297
1292
|
* Versandlabeldruck
|
|
1298
1293
|
*/
|
|
1299
1294
|
shippingLabelPrinting: boolean;
|
|
1300
1295
|
|
|
1301
1296
|
/**
|
|
1302
|
-
*
|
|
1297
|
+
* reference to Product
|
|
1303
1298
|
*/
|
|
1304
|
-
|
|
1299
|
+
productRef: ApiObjectReference;
|
|
1305
1300
|
|
|
1306
1301
|
/**
|
|
1307
1302
|
* Kontingentartikel
|
|
1308
1303
|
*/
|
|
1309
1304
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1305
|
|
|
1306
|
+
/**
|
|
1307
|
+
* alternative name of this product
|
|
1308
|
+
*/
|
|
1309
|
+
alternativeName: string;
|
|
1310
|
+
|
|
1311
1311
|
/**
|
|
1312
1312
|
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
@@ -1554,14 +1554,14 @@ export interface ArticleCustomer {
|
|
|
1554
1554
|
defaultGrossPrice: number;
|
|
1555
1555
|
|
|
1556
1556
|
/**
|
|
1557
|
-
*
|
|
1557
|
+
* Art der Preisermittlung
|
|
1558
1558
|
*/
|
|
1559
|
-
|
|
1559
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1560
1560
|
|
|
1561
1561
|
/**
|
|
1562
|
-
*
|
|
1562
|
+
* Abweichende Produktnummer
|
|
1563
1563
|
*/
|
|
1564
|
-
|
|
1564
|
+
deviatingArticleNumber: string;
|
|
1565
1565
|
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Artikelnummer
|
|
@@ -1893,11 +1893,6 @@ export interface ArticleStorage {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
|
-
/**
|
|
1897
|
-
* Meldebestand
|
|
1898
|
-
*/
|
|
1899
|
-
reorderPoint: number;
|
|
1900
|
-
|
|
1901
1896
|
/**
|
|
1902
1897
|
* Aktuelle Menge in Kommissionierung
|
|
1903
1898
|
*/
|
|
@@ -1909,15 +1904,20 @@ export interface ArticleStorage {
|
|
|
1909
1904
|
orderedQuantity: number;
|
|
1910
1905
|
|
|
1911
1906
|
/**
|
|
1912
|
-
*
|
|
1907
|
+
* Meldebestand
|
|
1913
1908
|
*/
|
|
1914
|
-
|
|
1909
|
+
reorderPoint: number;
|
|
1915
1910
|
|
|
1916
1911
|
/**
|
|
1917
1912
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1913
|
*/
|
|
1919
1914
|
virtualStockAmount: number;
|
|
1920
1915
|
|
|
1916
|
+
/**
|
|
1917
|
+
* Nachschub auf
|
|
1918
|
+
*/
|
|
1919
|
+
replenishmentOn: number;
|
|
1920
|
+
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
1923
1923
|
*/
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Vorgabe-Lagerplätze
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Sollbestand
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
targetStock: number;
|
|
1970
1970
|
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1986,11 +1986,6 @@ export interface ArticleStorage {
|
|
|
1986
1986
|
|
|
1987
1987
|
export interface ArticleSupplier {
|
|
1988
1988
|
|
|
1989
|
-
/**
|
|
1990
|
-
* Lieferanten-Meldebestand
|
|
1991
|
-
*/
|
|
1992
|
-
supplierReportingStock: number;
|
|
1993
|
-
|
|
1994
1989
|
/**
|
|
1995
1990
|
* Anzeigename des Accounts
|
|
1996
1991
|
*/
|
|
@@ -2001,6 +1996,11 @@ export interface ArticleSupplier {
|
|
|
2001
1996
|
*/
|
|
2002
1997
|
useSupplierArticleDescription: boolean;
|
|
2003
1998
|
|
|
1999
|
+
/**
|
|
2000
|
+
* Lieferanten-Meldebestand
|
|
2001
|
+
*/
|
|
2002
|
+
supplierReportingStock: number;
|
|
2003
|
+
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2006
2006
|
*/
|
|
@@ -2111,6 +2111,11 @@ export interface ArticleSupplier {
|
|
|
2111
2111
|
*/
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
|
+
/**
|
|
2115
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2116
|
+
*/
|
|
2117
|
+
orderOnComponentBase: boolean;
|
|
2118
|
+
|
|
2114
2119
|
/**
|
|
2115
2120
|
* Einkaufseinheit
|
|
2116
2121
|
*/
|
|
@@ -2121,11 +2126,6 @@ export interface ArticleSupplier {
|
|
|
2121
2126
|
*/
|
|
2122
2127
|
accountId: number;
|
|
2123
2128
|
|
|
2124
|
-
/**
|
|
2125
|
-
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2126
|
-
*/
|
|
2127
|
-
orderOnComponentBase: boolean;
|
|
2128
|
-
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2131
2131
|
*/
|
|
@@ -2407,14 +2407,14 @@ export interface CrmActivity {
|
|
|
2407
2407
|
info: MetaInfo;
|
|
2408
2408
|
|
|
2409
2409
|
/**
|
|
2410
|
-
*
|
|
2410
|
+
* geplante Dauer
|
|
2411
2411
|
*/
|
|
2412
|
-
|
|
2412
|
+
plannedDurationInSeconds: number;
|
|
2413
2413
|
|
|
2414
2414
|
/**
|
|
2415
|
-
*
|
|
2415
|
+
* Aktivität intern abgerechnet?
|
|
2416
2416
|
*/
|
|
2417
|
-
|
|
2417
|
+
internalBilled: boolean;
|
|
2418
2418
|
|
|
2419
2419
|
/**
|
|
2420
2420
|
* Freie Felder der CRM-Aktivität
|
|
@@ -3025,14 +3025,14 @@ export interface CrmProject {
|
|
|
3025
3025
|
info: MetaInfo;
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
|
-
*
|
|
3028
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3029
3029
|
*/
|
|
3030
|
-
|
|
3030
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3031
3031
|
|
|
3032
3032
|
/**
|
|
3033
|
-
*
|
|
3033
|
+
* Projektleiter vom Auftraggeber
|
|
3034
3034
|
*/
|
|
3035
|
-
|
|
3035
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Übergeordnete CRM-Objekte
|
|
@@ -3275,11 +3275,6 @@ export interface CrmSubType {
|
|
|
3275
3275
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
|
-
/**
|
|
3279
|
-
* Angebot
|
|
3280
|
-
*/
|
|
3281
|
-
customerOfferRef: DocumentRef;
|
|
3282
|
-
|
|
3283
3278
|
/**
|
|
3284
3279
|
* Liste von Erinnerungen
|
|
3285
3280
|
*/
|
|
@@ -3290,6 +3285,11 @@ export interface CrmTask {
|
|
|
3290
3285
|
*/
|
|
3291
3286
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3292
3287
|
|
|
3288
|
+
/**
|
|
3289
|
+
* Angebot
|
|
3290
|
+
*/
|
|
3291
|
+
customerOfferRef: DocumentRef;
|
|
3292
|
+
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Notizen
|
|
3295
3295
|
*/
|
|
@@ -3655,14 +3655,14 @@ export interface CurrencyReference {
|
|
|
3655
3655
|
export interface Customer {
|
|
3656
3656
|
|
|
3657
3657
|
/**
|
|
3658
|
-
*
|
|
3658
|
+
* Option für die Stapelverarbeitung
|
|
3659
3659
|
*/
|
|
3660
|
-
|
|
3660
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3661
3661
|
|
|
3662
3662
|
/**
|
|
3663
|
-
*
|
|
3663
|
+
* reference to customer group
|
|
3664
3664
|
*/
|
|
3665
|
-
|
|
3665
|
+
customerGroupRef: ApiObjectReference;
|
|
3666
3666
|
|
|
3667
3667
|
/**
|
|
3668
3668
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3680,14 +3680,14 @@ export interface Customer {
|
|
|
3680
3680
|
dueDate: ScriptingDate;
|
|
3681
3681
|
|
|
3682
3682
|
/**
|
|
3683
|
-
*
|
|
3683
|
+
* Maximal mögliche Lieferungen
|
|
3684
3684
|
*/
|
|
3685
|
-
|
|
3685
|
+
maxDeliveries: number;
|
|
3686
3686
|
|
|
3687
3687
|
/**
|
|
3688
|
-
*
|
|
3688
|
+
* collective billable
|
|
3689
3689
|
*/
|
|
3690
|
-
|
|
3690
|
+
collectiveBillable: boolean;
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
3693
3693
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3740,14 +3740,14 @@ export interface Customer {
|
|
|
3740
3740
|
info: MetaInfo;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
|
-
*
|
|
3743
|
+
* tax able or tax free
|
|
3744
3744
|
*/
|
|
3745
|
-
|
|
3745
|
+
taxable: boolean;
|
|
3746
3746
|
|
|
3747
3747
|
/**
|
|
3748
|
-
*
|
|
3748
|
+
* reference to the delivery method
|
|
3749
3749
|
*/
|
|
3750
|
-
|
|
3750
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3751
3751
|
|
|
3752
3752
|
/**
|
|
3753
3753
|
* active true/false
|
|
@@ -3899,14 +3899,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3899
3899
|
export interface DeliveryMethod {
|
|
3900
3900
|
|
|
3901
3901
|
/**
|
|
3902
|
-
*
|
|
3902
|
+
* E-Mail an Versender übergeben
|
|
3903
3903
|
*/
|
|
3904
|
-
|
|
3904
|
+
forwardEmailToShipper: boolean;
|
|
3905
3905
|
|
|
3906
3906
|
/**
|
|
3907
|
-
*
|
|
3907
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3908
3908
|
*/
|
|
3909
|
-
|
|
3909
|
+
splitIntoNewDocument: boolean;
|
|
3910
3910
|
|
|
3911
3911
|
/**
|
|
3912
3912
|
* Min. Gewicht pro Paket
|
|
@@ -4057,14 +4057,14 @@ export interface DeliveryTerm {
|
|
|
4057
4057
|
version: number;
|
|
4058
4058
|
|
|
4059
4059
|
/**
|
|
4060
|
-
*
|
|
4060
|
+
* translations
|
|
4061
4061
|
*/
|
|
4062
|
-
|
|
4062
|
+
translations: Array<DocumentTypeTerm>;
|
|
4063
4063
|
|
|
4064
4064
|
/**
|
|
4065
|
-
*
|
|
4065
|
+
* information, how the shipping charges should be calculated
|
|
4066
4066
|
*/
|
|
4067
|
-
|
|
4067
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4068
4068
|
|
|
4069
4069
|
/**
|
|
4070
4070
|
* Lieferarten
|
|
@@ -4077,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4077
4077
|
id: number;
|
|
4078
4078
|
|
|
4079
4079
|
/**
|
|
4080
|
-
*
|
|
4080
|
+
* free shipping net value
|
|
4081
4081
|
*/
|
|
4082
|
-
|
|
4082
|
+
freeShippingNetValue: number;
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
|
-
*
|
|
4085
|
+
* Versandkostenartikel
|
|
4086
4086
|
*/
|
|
4087
|
-
|
|
4087
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4088
4088
|
|
|
4089
4089
|
/**
|
|
4090
4090
|
* MetaInformations for this Object
|
|
@@ -4140,14 +4140,14 @@ export interface Document {
|
|
|
4140
4140
|
totalVat: number;
|
|
4141
4141
|
|
|
4142
4142
|
/**
|
|
4143
|
-
*
|
|
4143
|
+
* Name der bestellenden Person
|
|
4144
4144
|
*/
|
|
4145
|
-
|
|
4145
|
+
orderedBy: string;
|
|
4146
4146
|
|
|
4147
4147
|
/**
|
|
4148
|
-
*
|
|
4148
|
+
* Standardlager für neue Positionen
|
|
4149
4149
|
*/
|
|
4150
|
-
|
|
4150
|
+
defaultStorageRef: ApiObjectReference;
|
|
4151
4151
|
|
|
4152
4152
|
/**
|
|
4153
4153
|
* Lieferadresse
|
|
@@ -4183,14 +4183,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4183
4183
|
deliveryQuantityPackages: number;
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
4186
|
-
*
|
|
4186
|
+
* Bestellnummer aus Vorbeleg
|
|
4187
4187
|
*/
|
|
4188
|
-
|
|
4188
|
+
referencedOrderNumber: string;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
|
-
*
|
|
4191
|
+
* Leitweg-ID
|
|
4192
4192
|
*/
|
|
4193
|
-
|
|
4193
|
+
buyerReference: string;
|
|
4194
4194
|
|
|
4195
4195
|
/**
|
|
4196
4196
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4243,14 +4243,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4243
4243
|
accountId: number;
|
|
4244
4244
|
|
|
4245
4245
|
/**
|
|
4246
|
-
* Länderkennzeichen
|
|
4246
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4247
4247
|
*/
|
|
4248
|
-
|
|
4248
|
+
sourceCountryCode: string;
|
|
4249
4249
|
|
|
4250
4250
|
/**
|
|
4251
|
-
* Länderkennzeichen
|
|
4251
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4252
4252
|
*/
|
|
4253
|
-
|
|
4253
|
+
performanceCountryCode: string;
|
|
4254
4254
|
|
|
4255
4255
|
/**
|
|
4256
4256
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4414,26 +4414,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4414
4414
|
*/
|
|
4415
4415
|
defaultAddress: DocumentAddress;
|
|
4416
4416
|
|
|
4417
|
-
/**
|
|
4418
|
-
* Leistungsdatum
|
|
4419
|
-
*/
|
|
4420
|
-
performanceDate: ScriptingDate;
|
|
4421
|
-
|
|
4422
4417
|
/**
|
|
4423
4418
|
* Verarbeitungsoption für Stapel
|
|
4424
4419
|
*/
|
|
4425
4420
|
stackProcessingType: OrderStackProcessingType;
|
|
4426
4421
|
|
|
4427
4422
|
/**
|
|
4428
|
-
*
|
|
4423
|
+
* Leistungsdatum
|
|
4429
4424
|
*/
|
|
4430
|
-
|
|
4425
|
+
performanceDate: ScriptingDate;
|
|
4431
4426
|
|
|
4432
4427
|
/**
|
|
4433
4428
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4434
4429
|
*/
|
|
4435
4430
|
dropShippingInvoiceApproved: boolean;
|
|
4436
4431
|
|
|
4432
|
+
/**
|
|
4433
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4434
|
+
*/
|
|
4435
|
+
en16931Profile: EN16931Profile;
|
|
4436
|
+
|
|
4437
4437
|
/**
|
|
4438
4438
|
* Ort der steuerlichen Leistungserbringung
|
|
4439
4439
|
*/
|
|
@@ -4595,14 +4595,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4595
4595
|
customerNumber: string;
|
|
4596
4596
|
|
|
4597
4597
|
/**
|
|
4598
|
-
*
|
|
4598
|
+
* Statusinstanz des Belegs
|
|
4599
4599
|
*/
|
|
4600
|
-
|
|
4600
|
+
documentState: DocumentTypeState;
|
|
4601
4601
|
|
|
4602
4602
|
/**
|
|
4603
|
-
*
|
|
4603
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4604
4604
|
*/
|
|
4605
|
-
|
|
4605
|
+
taxIdentificationNumber: string;
|
|
4606
4606
|
|
|
4607
4607
|
/**
|
|
4608
4608
|
* Versandkostenpositionen
|
|
@@ -4657,14 +4657,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4657
4657
|
billingAddress: DocumentAddress;
|
|
4658
4658
|
|
|
4659
4659
|
/**
|
|
4660
|
-
*
|
|
4660
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4661
4661
|
*/
|
|
4662
|
-
|
|
4662
|
+
reportGroupRef: ApiObjectReference;
|
|
4663
4663
|
|
|
4664
4664
|
/**
|
|
4665
|
-
*
|
|
4665
|
+
* Bestellt durch Ansprechpartner
|
|
4666
4666
|
*/
|
|
4667
|
-
|
|
4667
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4668
4668
|
}
|
|
4669
4669
|
|
|
4670
4670
|
export interface DocumentAdditionalInfo {
|
|
@@ -4820,14 +4820,14 @@ export interface DocumentAddress {
|
|
|
4820
4820
|
postOfficeBox: string;
|
|
4821
4821
|
|
|
4822
4822
|
/**
|
|
4823
|
-
*
|
|
4823
|
+
* Street
|
|
4824
4824
|
*/
|
|
4825
|
-
|
|
4825
|
+
street: string;
|
|
4826
4826
|
|
|
4827
4827
|
/**
|
|
4828
|
-
*
|
|
4828
|
+
* country code IsoAlpha3
|
|
4829
4829
|
*/
|
|
4830
|
-
|
|
4830
|
+
countryCode: string;
|
|
4831
4831
|
|
|
4832
4832
|
/**
|
|
4833
4833
|
* Unique identifier of the Object
|
|
@@ -5033,14 +5033,14 @@ export interface DocumentContractDetail {
|
|
|
5033
5033
|
runtimeToDate: ScriptingDate;
|
|
5034
5034
|
|
|
5035
5035
|
/**
|
|
5036
|
-
*
|
|
5036
|
+
* Nächste Fälligkeit
|
|
5037
5037
|
*/
|
|
5038
|
-
|
|
5038
|
+
nextDueDate: ScriptingDate;
|
|
5039
5039
|
|
|
5040
5040
|
/**
|
|
5041
|
-
*
|
|
5041
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5042
5042
|
*/
|
|
5043
|
-
|
|
5043
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5044
5044
|
|
|
5045
5045
|
/**
|
|
5046
5046
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5500,14 +5500,14 @@ export interface DocumentLine {
|
|
|
5500
5500
|
sourceLineRef: DocumentLineRef;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Referenz zum Lager
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
storage: ApiObjectReference;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
|
-
*
|
|
5508
|
+
* Preisherkunft
|
|
5509
5509
|
*/
|
|
5510
|
-
|
|
5510
|
+
priceOrigin: ProductPriceOrigin;
|
|
5511
5511
|
|
|
5512
5512
|
/**
|
|
5513
5513
|
* Preisermittlungskriterien
|
|
@@ -6016,14 +6016,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6016
6016
|
quantityFinished: number;
|
|
6017
6017
|
|
|
6018
6018
|
/**
|
|
6019
|
-
*
|
|
6019
|
+
* Produzierte Seriennummern
|
|
6020
6020
|
*/
|
|
6021
|
-
|
|
6021
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6022
6022
|
|
|
6023
6023
|
/**
|
|
6024
|
-
*
|
|
6024
|
+
* Menge defekt
|
|
6025
6025
|
*/
|
|
6026
|
-
|
|
6026
|
+
quantityDefective: number;
|
|
6027
6027
|
|
|
6028
6028
|
/**
|
|
6029
6029
|
* Freifeld
|
|
@@ -6122,14 +6122,14 @@ export interface DocumentLinePosDetail {
|
|
|
6122
6122
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6123
6123
|
|
|
6124
6124
|
/**
|
|
6125
|
-
*
|
|
6125
|
+
* Typ der Einlage/Ausgabe
|
|
6126
6126
|
*/
|
|
6127
|
-
|
|
6127
|
+
depositExpenseTypeId: number;
|
|
6128
6128
|
|
|
6129
6129
|
/**
|
|
6130
|
-
*
|
|
6130
|
+
* Status der externen Zahlung
|
|
6131
6131
|
*/
|
|
6132
|
-
|
|
6132
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6133
6133
|
|
|
6134
6134
|
/**
|
|
6135
6135
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6167,14 +6167,14 @@ export interface DocumentLinePosDetail {
|
|
|
6167
6167
|
balanceBeforeWithdrawal: number;
|
|
6168
6168
|
|
|
6169
6169
|
/**
|
|
6170
|
-
*
|
|
6170
|
+
* Typ der Position
|
|
6171
6171
|
*/
|
|
6172
|
-
|
|
6172
|
+
posLineType: PosLineType;
|
|
6173
6173
|
|
|
6174
6174
|
/**
|
|
6175
|
-
*
|
|
6175
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6176
6176
|
*/
|
|
6177
|
-
|
|
6177
|
+
externalPaymentId: string;
|
|
6178
6178
|
|
|
6179
6179
|
/**
|
|
6180
6180
|
* Unique identifier of the Object
|
|
@@ -6408,14 +6408,14 @@ export interface DocumentPosPayment {
|
|
|
6408
6408
|
balanceBeforeWithdrawal: number;
|
|
6409
6409
|
|
|
6410
6410
|
/**
|
|
6411
|
-
*
|
|
6411
|
+
* Typ der Position
|
|
6412
6412
|
*/
|
|
6413
|
-
|
|
6413
|
+
posLineType: PosLineType;
|
|
6414
6414
|
|
|
6415
6415
|
/**
|
|
6416
|
-
*
|
|
6416
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6417
6417
|
*/
|
|
6418
|
-
|
|
6418
|
+
externalPaymentId: string;
|
|
6419
6419
|
|
|
6420
6420
|
/**
|
|
6421
6421
|
* Unique identifier of the Object
|
|
@@ -6678,14 +6678,14 @@ export interface DocumentText {
|
|
|
6678
6678
|
transferableIntoSubsequentDocuments: boolean;
|
|
6679
6679
|
|
|
6680
6680
|
/**
|
|
6681
|
-
*
|
|
6681
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6682
6682
|
*/
|
|
6683
|
-
|
|
6683
|
+
textPosition: TextPosition;
|
|
6684
6684
|
|
|
6685
6685
|
/**
|
|
6686
|
-
*
|
|
6686
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6687
6687
|
*/
|
|
6688
|
-
|
|
6688
|
+
deleted: boolean;
|
|
6689
6689
|
|
|
6690
6690
|
/**
|
|
6691
6691
|
* textBaustein Vorlage
|
|
@@ -7003,14 +7003,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7003
7003
|
bookDate: ScriptingDate;
|
|
7004
7004
|
|
|
7005
7005
|
/**
|
|
7006
|
-
*
|
|
7006
|
+
* Die gültige Seriennummer
|
|
7007
7007
|
*/
|
|
7008
|
-
|
|
7008
|
+
targetSerialNumber: string;
|
|
7009
7009
|
|
|
7010
7010
|
/**
|
|
7011
|
-
*
|
|
7011
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7012
7012
|
*/
|
|
7013
|
-
|
|
7013
|
+
targetExpiryDate: ScriptingDate;
|
|
7014
7014
|
|
|
7015
7015
|
/**
|
|
7016
7016
|
* Quell-Lagerplatz
|
|
@@ -7370,14 +7370,14 @@ export interface FabricationRevertRequest {
|
|
|
7370
7370
|
export interface FabricationSerialNumber {
|
|
7371
7371
|
|
|
7372
7372
|
/**
|
|
7373
|
-
*
|
|
7373
|
+
* MHD / Verfallsdatum
|
|
7374
7374
|
*/
|
|
7375
|
-
|
|
7375
|
+
expiryDate: ScriptingDate;
|
|
7376
7376
|
|
|
7377
7377
|
/**
|
|
7378
|
-
*
|
|
7378
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7379
7379
|
*/
|
|
7380
|
-
|
|
7380
|
+
serialNumberId: number;
|
|
7381
7381
|
|
|
7382
7382
|
/**
|
|
7383
7383
|
* Bemerkung
|
|
@@ -7574,14 +7574,14 @@ export interface PaymentMethod {
|
|
|
7574
7574
|
dunnable: boolean;
|
|
7575
7575
|
|
|
7576
7576
|
/**
|
|
7577
|
-
*
|
|
7577
|
+
* translations
|
|
7578
7578
|
*/
|
|
7579
|
-
|
|
7579
|
+
translations: Array<DocumentTypeTerm>;
|
|
7580
7580
|
|
|
7581
7581
|
/**
|
|
7582
|
-
*
|
|
7582
|
+
* Debitoren-OP abschließen?
|
|
7583
7583
|
*/
|
|
7584
|
-
|
|
7584
|
+
closeCustomerAccountType: boolean;
|
|
7585
7585
|
|
|
7586
7586
|
/**
|
|
7587
7587
|
* +Tage für Folgelastschrift
|
|
@@ -7589,14 +7589,14 @@ export interface PaymentMethod {
|
|
|
7589
7589
|
daysToAddForFollowup: number;
|
|
7590
7590
|
|
|
7591
7591
|
/**
|
|
7592
|
-
*
|
|
7592
|
+
* Die Business Transaction
|
|
7593
7593
|
*/
|
|
7594
|
-
|
|
7594
|
+
businessTransaction: ApiObjectReference;
|
|
7595
7595
|
|
|
7596
7596
|
/**
|
|
7597
|
-
*
|
|
7597
|
+
* external Payment Id
|
|
7598
7598
|
*/
|
|
7599
|
-
|
|
7599
|
+
externalPaymentId: string;
|
|
7600
7600
|
|
|
7601
7601
|
/**
|
|
7602
7602
|
* Unique identifier of the Object
|
|
@@ -7637,14 +7637,14 @@ export interface PaymentTerm {
|
|
|
7637
7637
|
printDescription: string;
|
|
7638
7638
|
|
|
7639
7639
|
/**
|
|
7640
|
-
* for
|
|
7640
|
+
* Days for Discount 1
|
|
7641
7641
|
*/
|
|
7642
|
-
|
|
7642
|
+
paymentDays1: number;
|
|
7643
7643
|
|
|
7644
7644
|
/**
|
|
7645
|
-
*
|
|
7645
|
+
* for deposit: remaining term
|
|
7646
7646
|
*/
|
|
7647
|
-
|
|
7647
|
+
remainingTermRef: ApiObjectReference;
|
|
7648
7648
|
|
|
7649
7649
|
/**
|
|
7650
7650
|
* Days for Discount 2
|
|
@@ -7927,14 +7927,14 @@ export const enum PickingType {
|
|
|
7927
7927
|
export interface Picklist {
|
|
7928
7928
|
|
|
7929
7929
|
/**
|
|
7930
|
-
*
|
|
7930
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7931
7931
|
*/
|
|
7932
|
-
|
|
7932
|
+
usedTemplate: PicklistTemplate;
|
|
7933
7933
|
|
|
7934
7934
|
/**
|
|
7935
|
-
*
|
|
7935
|
+
* Ziellager für Nachschub
|
|
7936
7936
|
*/
|
|
7937
|
-
|
|
7937
|
+
targetStorageRef: ApiObjectReference;
|
|
7938
7938
|
|
|
7939
7939
|
/**
|
|
7940
7940
|
* Nummer der Pickliste
|
|
@@ -8045,14 +8045,14 @@ export interface PicklistLine {
|
|
|
8045
8045
|
articleNumber: string;
|
|
8046
8046
|
|
|
8047
8047
|
/**
|
|
8048
|
-
*
|
|
8048
|
+
* Lagernummer
|
|
8049
8049
|
*/
|
|
8050
|
-
|
|
8050
|
+
storageNumber: string;
|
|
8051
8051
|
|
|
8052
8052
|
/**
|
|
8053
|
-
*
|
|
8053
|
+
* Art der Position
|
|
8054
8054
|
*/
|
|
8055
|
-
|
|
8055
|
+
lineType: PicklistLineType;
|
|
8056
8056
|
|
|
8057
8057
|
/**
|
|
8058
8058
|
* ID der Ziel-Dokumentposition
|
|
@@ -8191,14 +8191,14 @@ export interface PicklistLineComponent {
|
|
|
8191
8191
|
targetDocumentLineComponentId: number;
|
|
8192
8192
|
|
|
8193
8193
|
/**
|
|
8194
|
-
*
|
|
8194
|
+
* abweichende Artikelbezeichnung
|
|
8195
8195
|
*/
|
|
8196
|
-
|
|
8196
|
+
articleAlternativeName: string;
|
|
8197
8197
|
|
|
8198
8198
|
/**
|
|
8199
|
-
*
|
|
8199
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8200
8200
|
*/
|
|
8201
|
-
|
|
8201
|
+
quantityPerAssemblyGroup: number;
|
|
8202
8202
|
|
|
8203
8203
|
/**
|
|
8204
8204
|
* Verpackte Menge der Position
|
|
@@ -8376,6 +8376,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8376
8376
|
*/
|
|
8377
8377
|
maxOrderValue: number;
|
|
8378
8378
|
|
|
8379
|
+
/**
|
|
8380
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8381
|
+
*/
|
|
8382
|
+
maxOrderCount: number;
|
|
8383
|
+
|
|
8379
8384
|
/**
|
|
8380
8385
|
* Selektion über den Bereich vom Lieferdatum
|
|
8381
8386
|
*/
|
|
@@ -8386,11 +8391,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8386
8391
|
*/
|
|
8387
8392
|
onlyFullDeliverableOrderLines: boolean;
|
|
8388
8393
|
|
|
8389
|
-
/**
|
|
8390
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8391
|
-
*/
|
|
8392
|
-
maxOrderCount: number;
|
|
8393
|
-
|
|
8394
8394
|
/**
|
|
8395
8395
|
* Selektion über den Bereich vom Belegdatum
|
|
8396
8396
|
*/
|
|
@@ -8455,19 +8455,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8455
8455
|
printPicklist: boolean;
|
|
8456
8456
|
|
|
8457
8457
|
/**
|
|
8458
|
-
*
|
|
8458
|
+
* Die zu verwendende Pickwagengruppe
|
|
8459
8459
|
*/
|
|
8460
|
-
|
|
8460
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8461
8461
|
|
|
8462
8462
|
/**
|
|
8463
|
-
*
|
|
8463
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8464
8464
|
*/
|
|
8465
|
-
|
|
8465
|
+
maxPicklistLineCount: number;
|
|
8466
8466
|
|
|
8467
8467
|
/**
|
|
8468
|
-
*
|
|
8468
|
+
* Der zu verwendende Pickwagen
|
|
8469
8469
|
*/
|
|
8470
|
-
|
|
8470
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8471
8471
|
|
|
8472
8472
|
/**
|
|
8473
8473
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -8475,9 +8475,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8475
8475
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8476
8476
|
|
|
8477
8477
|
/**
|
|
8478
|
-
*
|
|
8478
|
+
* Lagerplätze vorgeben
|
|
8479
8479
|
*/
|
|
8480
|
-
|
|
8480
|
+
specifyStorageBins: boolean;
|
|
8481
8481
|
|
|
8482
8482
|
/**
|
|
8483
8483
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8533,14 +8533,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8533
8533
|
alwaysShowDeliveryMethod: boolean;
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
|
-
*
|
|
8541
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8542
8542
|
*/
|
|
8543
|
-
|
|
8543
|
+
autoPrintDeliveryDocument: boolean;
|
|
8544
8544
|
|
|
8545
8545
|
/**
|
|
8546
8546
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8553,9 +8553,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8553
8553
|
useDigitalPicklist: boolean;
|
|
8554
8554
|
|
|
8555
8555
|
/**
|
|
8556
|
-
*
|
|
8556
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8557
8557
|
*/
|
|
8558
|
-
|
|
8558
|
+
printLabelOnScan: boolean;
|
|
8559
8559
|
|
|
8560
8560
|
/**
|
|
8561
8561
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
@@ -8563,9 +8563,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8563
8563
|
allowPickingOfServiceArticles: boolean;
|
|
8564
8564
|
|
|
8565
8565
|
/**
|
|
8566
|
-
*
|
|
8566
|
+
* Sammelbestätigung erlauben
|
|
8567
8567
|
*/
|
|
8568
|
-
|
|
8568
|
+
allowFullConfirmation: boolean;
|
|
8569
8569
|
|
|
8570
8570
|
/**
|
|
8571
8571
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8582,26 +8582,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8582
8582
|
*/
|
|
8583
8583
|
printLabelOnCompleteOrder: boolean;
|
|
8584
8584
|
|
|
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
8585
|
/**
|
|
8591
8586
|
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8592
8587
|
*/
|
|
8593
8588
|
printLabelAfterPicking: boolean;
|
|
8594
8589
|
|
|
8595
8590
|
/**
|
|
8596
|
-
*
|
|
8591
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8597
8592
|
*/
|
|
8598
|
-
|
|
8593
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8599
8594
|
|
|
8600
8595
|
/**
|
|
8601
8596
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8602
8597
|
*/
|
|
8603
8598
|
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8604
8599
|
|
|
8600
|
+
/**
|
|
8601
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8602
|
+
*/
|
|
8603
|
+
autoDeterminationOfLots: boolean;
|
|
8604
|
+
|
|
8605
8605
|
/**
|
|
8606
8606
|
* Zielmengen in Masken verstecken?
|
|
8607
8607
|
*/
|
|
@@ -8676,14 +8676,14 @@ export interface PriceSelectionCriteria {
|
|
|
8676
8676
|
quantity: number;
|
|
8677
8677
|
|
|
8678
8678
|
/**
|
|
8679
|
-
* Liste von
|
|
8679
|
+
* Liste von Account-IDs
|
|
8680
8680
|
*/
|
|
8681
|
-
|
|
8681
|
+
accountIds: Array<number>;
|
|
8682
8682
|
|
|
8683
8683
|
/**
|
|
8684
|
-
* Liste von
|
|
8684
|
+
* Liste von Artikel-IDs
|
|
8685
8685
|
*/
|
|
8686
|
-
|
|
8686
|
+
articleIds: Array<number>;
|
|
8687
8687
|
|
|
8688
8688
|
/**
|
|
8689
8689
|
* ein qualifier
|
|
@@ -9247,26 +9247,26 @@ export const enum RegulationSet {
|
|
|
9247
9247
|
|
|
9248
9248
|
export interface RequestDocument {
|
|
9249
9249
|
|
|
9250
|
-
/**
|
|
9251
|
-
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9252
|
-
*/
|
|
9253
|
-
incomingGoodsStorageBinId: number;
|
|
9254
|
-
|
|
9255
9250
|
/**
|
|
9256
9251
|
* Belegdatum
|
|
9257
9252
|
*/
|
|
9258
9253
|
documentDate: ScriptingDate;
|
|
9259
9254
|
|
|
9260
9255
|
/**
|
|
9261
|
-
*
|
|
9256
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9262
9257
|
*/
|
|
9263
|
-
|
|
9258
|
+
incomingGoodsStorageBinId: number;
|
|
9264
9259
|
|
|
9265
9260
|
/**
|
|
9266
9261
|
* Der Anzahlungsbetrag
|
|
9267
9262
|
*/
|
|
9268
9263
|
depositPaymentAmount: number;
|
|
9269
9264
|
|
|
9265
|
+
/**
|
|
9266
|
+
* Leistungsdatum
|
|
9267
|
+
*/
|
|
9268
|
+
performanceDate: ScriptingDate;
|
|
9269
|
+
|
|
9270
9270
|
/**
|
|
9271
9271
|
* ID der Kassenschublade (bei POS)
|
|
9272
9272
|
*/
|
|
@@ -9327,26 +9327,26 @@ export interface RequestDocument {
|
|
|
9327
9327
|
*/
|
|
9328
9328
|
lines: Array<RequestDocumentLine>;
|
|
9329
9329
|
|
|
9330
|
-
/**
|
|
9331
|
-
* ID der Kasse (bei POS)
|
|
9332
|
-
*/
|
|
9333
|
-
posRegisterId: number;
|
|
9334
|
-
|
|
9335
9330
|
/**
|
|
9336
9331
|
* Die Vertragsdetails
|
|
9337
9332
|
*/
|
|
9338
9333
|
contractDetail: DocumentContractDetail;
|
|
9339
9334
|
|
|
9340
9335
|
/**
|
|
9341
|
-
*
|
|
9336
|
+
* ID der Kasse (bei POS)
|
|
9342
9337
|
*/
|
|
9343
|
-
|
|
9338
|
+
posRegisterId: number;
|
|
9344
9339
|
|
|
9345
9340
|
/**
|
|
9346
9341
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9347
9342
|
*/
|
|
9348
9343
|
paymentTermId: number;
|
|
9349
9344
|
|
|
9345
|
+
/**
|
|
9346
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9347
|
+
*/
|
|
9348
|
+
supplierAccountId: number;
|
|
9349
|
+
|
|
9350
9350
|
/**
|
|
9351
9351
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
9352
9352
|
*/
|
|
@@ -9426,14 +9426,14 @@ export interface RequestDocumentLine {
|
|
|
9426
9426
|
description: string;
|
|
9427
9427
|
|
|
9428
9428
|
/**
|
|
9429
|
-
*
|
|
9429
|
+
* Quittungsdetails zur Belegposition
|
|
9430
9430
|
*/
|
|
9431
|
-
|
|
9431
|
+
posDetail: DocumentLinePosDetail;
|
|
9432
9432
|
|
|
9433
9433
|
/**
|
|
9434
|
-
*
|
|
9434
|
+
* Herkunft des Preises
|
|
9435
9435
|
*/
|
|
9436
|
-
|
|
9436
|
+
priceOrigin: ProductPriceOrigin;
|
|
9437
9437
|
|
|
9438
9438
|
/**
|
|
9439
9439
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -9571,14 +9571,14 @@ export interface RequestDocumentLine {
|
|
|
9571
9571
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9572
9572
|
|
|
9573
9573
|
/**
|
|
9574
|
-
*
|
|
9574
|
+
* (optional) Preis des Artikels dieser Position
|
|
9575
9575
|
*/
|
|
9576
|
-
|
|
9576
|
+
productPrice: number;
|
|
9577
9577
|
|
|
9578
9578
|
/**
|
|
9579
|
-
*
|
|
9579
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
9580
9580
|
*/
|
|
9581
|
-
|
|
9581
|
+
doLabelPrint: boolean;
|
|
9582
9582
|
}
|
|
9583
9583
|
|
|
9584
9584
|
export interface RequestDocumentLineBooking {
|
|
@@ -10285,14 +10285,14 @@ export interface ShelfDocumentAttribution {
|
|
|
10285
10285
|
shelfResourceId: number;
|
|
10286
10286
|
|
|
10287
10287
|
/**
|
|
10288
|
-
*
|
|
10288
|
+
* id of the referenced object
|
|
10289
10289
|
*/
|
|
10290
|
-
|
|
10290
|
+
refId: number;
|
|
10291
10291
|
|
|
10292
10292
|
/**
|
|
10293
|
-
*
|
|
10293
|
+
* Verfügbare Transformationen zum Bild
|
|
10294
10294
|
*/
|
|
10295
|
-
|
|
10295
|
+
transformationKeys: Array<string>;
|
|
10296
10296
|
|
|
10297
10297
|
/**
|
|
10298
10298
|
* Unique identifier of the Object
|
|
@@ -10429,14 +10429,14 @@ export interface ShelfFile {
|
|
|
10429
10429
|
version: number;
|
|
10430
10430
|
|
|
10431
10431
|
/**
|
|
10432
|
-
*
|
|
10432
|
+
* current reference of this file in our storage
|
|
10433
10433
|
*/
|
|
10434
|
-
|
|
10434
|
+
storageHandle: string;
|
|
10435
10435
|
|
|
10436
10436
|
/**
|
|
10437
|
-
*
|
|
10437
|
+
* meta data
|
|
10438
10438
|
*/
|
|
10439
|
-
|
|
10439
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10440
10440
|
|
|
10441
10441
|
/**
|
|
10442
10442
|
* MetaInformations for this Object
|
|
@@ -10921,14 +10921,14 @@ export interface Supplier {
|
|
|
10921
10921
|
supplierGroupRef: ApiObjectReference;
|
|
10922
10922
|
|
|
10923
10923
|
/**
|
|
10924
|
-
*
|
|
10924
|
+
* tax able or tax free
|
|
10925
10925
|
*/
|
|
10926
|
-
|
|
10926
|
+
taxable: boolean;
|
|
10927
10927
|
|
|
10928
10928
|
/**
|
|
10929
|
-
*
|
|
10929
|
+
* reference to the delivery method
|
|
10930
10930
|
*/
|
|
10931
|
-
|
|
10931
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10932
10932
|
|
|
10933
10933
|
/**
|
|
10934
10934
|
* Mahnen?
|
|
@@ -11317,6 +11317,11 @@ export interface User {
|
|
|
11317
11317
|
*/
|
|
11318
11318
|
roles: Array<ApiObjectReference>;
|
|
11319
11319
|
|
|
11320
|
+
/**
|
|
11321
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11322
|
+
*/
|
|
11323
|
+
referencedCustomerUserId: number;
|
|
11324
|
+
|
|
11320
11325
|
/**
|
|
11321
11326
|
* Gruppen
|
|
11322
11327
|
*/
|
|
@@ -11327,11 +11332,6 @@ export interface User {
|
|
|
11327
11332
|
*/
|
|
11328
11333
|
active: boolean;
|
|
11329
11334
|
|
|
11330
|
-
/**
|
|
11331
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11332
|
-
*/
|
|
11333
|
-
referencedCustomerUserId: number;
|
|
11334
|
-
|
|
11335
11335
|
/**
|
|
11336
11336
|
* App-Identifier
|
|
11337
11337
|
*/
|
|
@@ -11348,14 +11348,14 @@ export interface User {
|
|
|
11348
11348
|
version: number;
|
|
11349
11349
|
|
|
11350
11350
|
/**
|
|
11351
|
-
*
|
|
11351
|
+
* first-name
|
|
11352
11352
|
*/
|
|
11353
|
-
|
|
11353
|
+
firstName: string;
|
|
11354
11354
|
|
|
11355
11355
|
/**
|
|
11356
|
-
*
|
|
11356
|
+
* is the email verified
|
|
11357
11357
|
*/
|
|
11358
|
-
|
|
11358
|
+
emailVerified: boolean;
|
|
11359
11359
|
|
|
11360
11360
|
/**
|
|
11361
11361
|
* email-address
|
|
@@ -11368,14 +11368,14 @@ export interface User {
|
|
|
11368
11368
|
id: number;
|
|
11369
11369
|
|
|
11370
11370
|
/**
|
|
11371
|
-
*
|
|
11371
|
+
* Valid to
|
|
11372
11372
|
*/
|
|
11373
|
-
|
|
11373
|
+
validTo: ScriptingDateTime;
|
|
11374
11374
|
|
|
11375
11375
|
/**
|
|
11376
|
-
*
|
|
11376
|
+
* username
|
|
11377
11377
|
*/
|
|
11378
|
-
|
|
11378
|
+
username: string;
|
|
11379
11379
|
|
|
11380
11380
|
/**
|
|
11381
11381
|
* MetaInformations for this Object
|
|
@@ -11558,14 +11558,14 @@ export interface VariantValue {
|
|
|
11558
11558
|
version: number;
|
|
11559
11559
|
|
|
11560
11560
|
/**
|
|
11561
|
-
*
|
|
11561
|
+
* Mehrsprachige Bezeichnungen
|
|
11562
11562
|
*/
|
|
11563
|
-
|
|
11563
|
+
labels: Array<VariantDescription>;
|
|
11564
11564
|
|
|
11565
11565
|
/**
|
|
11566
|
-
*
|
|
11566
|
+
* Variantenattribut
|
|
11567
11567
|
*/
|
|
11568
|
-
|
|
11568
|
+
attributeRef: ApiObjectReference;
|
|
11569
11569
|
|
|
11570
11570
|
/**
|
|
11571
11571
|
* MetaInformations for this Object
|