@vario-software/types 2026.21.2 → 2026.21.3
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 +23 -23
- package/scripting/types.d.ts +316 -316
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Street
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* origin type
|
|
508
503
|
*/
|
|
509
504
|
originType: AccountBankdetail$OriginType;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* Is default bank?
|
|
508
|
+
*/
|
|
509
|
+
defaultBank: boolean;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -1004,14 +1004,14 @@ export interface Article {
|
|
|
1004
1004
|
customsTariffNumber: string;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* is this product purchasable
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
purchasable: boolean;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
1017
|
* base capacity unit
|
|
@@ -1019,14 +1019,14 @@ export interface Article {
|
|
|
1019
1019
|
baseCapacityUnit: UnitTypeReference;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* Seriennummern Auszeichnungsart
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* is this product sellable without any quantity at the stock
|
|
1028
1028
|
*/
|
|
1029
|
-
|
|
1029
|
+
sellableWithoutStock: boolean;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
1032
|
* Durchschnittl. EKP (Startwert)
|
|
@@ -1059,14 +1059,14 @@ export interface Article {
|
|
|
1059
1059
|
warrantyInMonths: number;
|
|
1060
1060
|
|
|
1061
1061
|
/**
|
|
1062
|
-
*
|
|
1062
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1063
1063
|
*/
|
|
1064
|
-
|
|
1064
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
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
|
* unique product number
|
|
@@ -1224,14 +1224,14 @@ export interface Article {
|
|
|
1224
1224
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
taxLiabilityReversed: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
|
-
*
|
|
1232
|
+
* Notiz
|
|
1233
1233
|
*/
|
|
1234
|
-
|
|
1234
|
+
note: string;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1304,9 +1304,9 @@ export interface Article {
|
|
|
1304
1304
|
isDangerousGood: boolean;
|
|
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?
|
|
@@ -1314,9 +1314,9 @@ export interface Article {
|
|
|
1314
1314
|
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
|
-
*
|
|
1317
|
+
* Kontingentartikel
|
|
1318
1318
|
*/
|
|
1319
|
-
|
|
1319
|
+
contingentArticleRef: ApiObjectReference;
|
|
1320
1320
|
|
|
1321
1321
|
/**
|
|
1322
1322
|
* base capacity
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
commissionable: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* Nur manuelle Produktion
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
onlyManualFabrication: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1769,11 +1769,6 @@ export interface ArticleStorage {
|
|
|
1769
1769
|
*/
|
|
1770
1770
|
replenishmentFrom: number;
|
|
1771
1771
|
|
|
1772
|
-
/**
|
|
1773
|
-
* Meldebestand
|
|
1774
|
-
*/
|
|
1775
|
-
reorderPoint: number;
|
|
1776
|
-
|
|
1777
1772
|
/**
|
|
1778
1773
|
* Bestellte Menge
|
|
1779
1774
|
*/
|
|
@@ -1784,6 +1779,11 @@ export interface ArticleStorage {
|
|
|
1784
1779
|
*/
|
|
1785
1780
|
quantityInPicking: number;
|
|
1786
1781
|
|
|
1782
|
+
/**
|
|
1783
|
+
* Meldebestand
|
|
1784
|
+
*/
|
|
1785
|
+
reorderPoint: number;
|
|
1786
|
+
|
|
1787
1787
|
/**
|
|
1788
1788
|
* Nachschub auf
|
|
1789
1789
|
*/
|
|
@@ -1868,14 +1868,14 @@ export interface ArticleSupplier {
|
|
|
1868
1868
|
useSupplierArticleDescription: boolean;
|
|
1869
1869
|
|
|
1870
1870
|
/**
|
|
1871
|
-
*
|
|
1871
|
+
* Lieferanten-Meldebestand
|
|
1872
1872
|
*/
|
|
1873
|
-
|
|
1873
|
+
supplierReportingStock: number;
|
|
1874
1874
|
|
|
1875
1875
|
/**
|
|
1876
|
-
*
|
|
1876
|
+
* Anzeigename des Accounts
|
|
1877
1877
|
*/
|
|
1878
|
-
|
|
1878
|
+
accountDisplayName: string;
|
|
1879
1879
|
|
|
1880
1880
|
/**
|
|
1881
1881
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1933,14 +1933,14 @@ export interface ArticleSupplier {
|
|
|
1933
1933
|
info: MetaInfo;
|
|
1934
1934
|
|
|
1935
1935
|
/**
|
|
1936
|
-
*
|
|
1936
|
+
* Referenced Article name
|
|
1937
1937
|
*/
|
|
1938
|
-
|
|
1938
|
+
articleName: string;
|
|
1939
1939
|
|
|
1940
1940
|
/**
|
|
1941
|
-
*
|
|
1941
|
+
* Verpackungseinheit
|
|
1942
1942
|
*/
|
|
1943
|
-
|
|
1943
|
+
packagingUnit: number;
|
|
1944
1944
|
|
|
1945
1945
|
/**
|
|
1946
1946
|
* Lieferanten-Preise
|
|
@@ -2271,14 +2271,14 @@ export interface CrmActivity {
|
|
|
2271
2271
|
info: MetaInfo;
|
|
2272
2272
|
|
|
2273
2273
|
/**
|
|
2274
|
-
*
|
|
2274
|
+
* Aktivität intern abgerechnet?
|
|
2275
2275
|
*/
|
|
2276
|
-
|
|
2276
|
+
internalBilled: boolean;
|
|
2277
2277
|
|
|
2278
2278
|
/**
|
|
2279
|
-
*
|
|
2279
|
+
* geplante Dauer
|
|
2280
2280
|
*/
|
|
2281
|
-
|
|
2281
|
+
plannedDurationInSeconds: number;
|
|
2282
2282
|
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2430,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2430
2430
|
export interface CrmChecklistItem {
|
|
2431
2431
|
|
|
2432
2432
|
/**
|
|
2433
|
-
*
|
|
2433
|
+
* Ist das Element "angehakt"?
|
|
2434
2434
|
*/
|
|
2435
|
-
|
|
2435
|
+
checked: boolean;
|
|
2436
2436
|
|
|
2437
2437
|
/**
|
|
2438
|
-
*
|
|
2438
|
+
* Text des Checklisten-Elements
|
|
2439
2439
|
*/
|
|
2440
|
-
|
|
2440
|
+
memo: string;
|
|
2441
2441
|
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Unique identifier of the Object
|
|
@@ -2548,14 +2548,14 @@ export interface CrmDeal {
|
|
|
2548
2548
|
info: MetaInfo;
|
|
2549
2549
|
|
|
2550
2550
|
/**
|
|
2551
|
-
*
|
|
2551
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2552
2552
|
*/
|
|
2553
|
-
|
|
2553
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2554
2554
|
|
|
2555
2555
|
/**
|
|
2556
|
-
*
|
|
2556
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2557
2557
|
*/
|
|
2558
|
-
|
|
2558
|
+
assignedUserRef: ApiObjectReference;
|
|
2559
2559
|
|
|
2560
2560
|
/**
|
|
2561
2561
|
* Chance (in Prozent)
|
|
@@ -2854,14 +2854,14 @@ export interface CrmProject {
|
|
|
2854
2854
|
billedTimes: number;
|
|
2855
2855
|
|
|
2856
2856
|
/**
|
|
2857
|
-
*
|
|
2857
|
+
* Einkaufsbelege
|
|
2858
2858
|
*/
|
|
2859
|
-
|
|
2859
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
*
|
|
2862
|
+
* Geplanter Projektzeitraum (von)
|
|
2863
2863
|
*/
|
|
2864
|
-
|
|
2864
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
2867
|
* Verkaufsbelege
|
|
@@ -2889,14 +2889,14 @@ export interface CrmProject {
|
|
|
2889
2889
|
info: MetaInfo;
|
|
2890
2890
|
|
|
2891
2891
|
/**
|
|
2892
|
-
*
|
|
2892
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2893
2893
|
*/
|
|
2894
|
-
|
|
2894
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2895
2895
|
|
|
2896
2896
|
/**
|
|
2897
|
-
*
|
|
2897
|
+
* Projektleiter vom Auftraggeber
|
|
2898
2898
|
*/
|
|
2899
|
-
|
|
2899
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2900
2900
|
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3140,14 +3140,14 @@ export interface CrmSubType {
|
|
|
3140
3140
|
export interface CrmTask {
|
|
3141
3141
|
|
|
3142
3142
|
/**
|
|
3143
|
-
*
|
|
3143
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3144
3144
|
*/
|
|
3145
|
-
|
|
3145
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3146
3146
|
|
|
3147
3147
|
/**
|
|
3148
|
-
*
|
|
3148
|
+
* Angebot
|
|
3149
3149
|
*/
|
|
3150
|
-
|
|
3150
|
+
customerOfferRef: DocumentRef;
|
|
3151
3151
|
|
|
3152
3152
|
/**
|
|
3153
3153
|
* Liste von Erinnerungen
|
|
@@ -3335,14 +3335,14 @@ export interface CrmTask {
|
|
|
3335
3335
|
assignedUserRef: ApiObjectReference;
|
|
3336
3336
|
|
|
3337
3337
|
/**
|
|
3338
|
-
*
|
|
3338
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3339
3339
|
*/
|
|
3340
|
-
|
|
3340
|
+
externalRecordedTimes: number;
|
|
3341
3341
|
|
|
3342
3342
|
/**
|
|
3343
|
-
*
|
|
3343
|
+
* Beauftragte Zeit in Sekunden
|
|
3344
3344
|
*/
|
|
3345
|
-
|
|
3345
|
+
effortCommissioned: number;
|
|
3346
3346
|
|
|
3347
3347
|
/**
|
|
3348
3348
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3519,14 +3519,14 @@ export interface CurrencyReference {
|
|
|
3519
3519
|
export interface Customer {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* reference to customer group
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
customerGroupRef: ApiObjectReference;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* Option für die Stapelverarbeitung
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3730,14 +3730,14 @@ export interface DeliveryMethod {
|
|
|
3730
3730
|
defaultSizeUnit: UnitTypeReference;
|
|
3731
3731
|
|
|
3732
3732
|
/**
|
|
3733
|
-
*
|
|
3733
|
+
* translations
|
|
3734
3734
|
*/
|
|
3735
|
-
|
|
3735
|
+
translations: Array<DocumentTypeTerm>;
|
|
3736
3736
|
|
|
3737
3737
|
/**
|
|
3738
|
-
*
|
|
3738
|
+
* Quelle für Paketgewicht
|
|
3739
3739
|
*/
|
|
3740
|
-
|
|
3740
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
3743
|
* Versand-Anbieter
|
|
@@ -3828,14 +3828,14 @@ export interface DeliveryTerm {
|
|
|
3828
3828
|
version: number;
|
|
3829
3829
|
|
|
3830
3830
|
/**
|
|
3831
|
-
*
|
|
3831
|
+
* translations
|
|
3832
3832
|
*/
|
|
3833
|
-
|
|
3833
|
+
translations: Array<DocumentTypeTerm>;
|
|
3834
3834
|
|
|
3835
3835
|
/**
|
|
3836
|
-
*
|
|
3836
|
+
* information, how the shipping charges should be calculated
|
|
3837
3837
|
*/
|
|
3838
|
-
|
|
3838
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3839
3839
|
|
|
3840
3840
|
/**
|
|
3841
3841
|
* Lieferarten
|
|
@@ -3953,6 +3953,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3953
3953
|
*/
|
|
3954
3954
|
deliveryQuantityPackages: number;
|
|
3955
3955
|
|
|
3956
|
+
/**
|
|
3957
|
+
* Steuerpflichtig oder steuerfrei
|
|
3958
|
+
*/
|
|
3959
|
+
taxable: boolean;
|
|
3960
|
+
|
|
3956
3961
|
/**
|
|
3957
3962
|
* Leitweg-ID
|
|
3958
3963
|
*/
|
|
@@ -3963,11 +3968,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3963
3968
|
*/
|
|
3964
3969
|
referencedOrderNumber: string;
|
|
3965
3970
|
|
|
3966
|
-
/**
|
|
3967
|
-
* Steuerpflichtig oder steuerfrei
|
|
3968
|
-
*/
|
|
3969
|
-
taxable: boolean;
|
|
3970
|
-
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
3973
3973
|
*/
|
|
@@ -4130,20 +4130,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4130
4130
|
*/
|
|
4131
4131
|
fabricationDetail: DocumentFabricationDetail;
|
|
4132
4132
|
|
|
4133
|
-
/**
|
|
4134
|
-
* Berechnungsmodus
|
|
4135
|
-
*/
|
|
4136
|
-
calculationMode: CalculationMode;
|
|
4137
|
-
|
|
4138
4133
|
/**
|
|
4139
4134
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
4140
4135
|
*/
|
|
4141
4136
|
accountNumber: string;
|
|
4142
4137
|
|
|
4143
4138
|
/**
|
|
4144
|
-
*
|
|
4139
|
+
* Berechnungsmodus
|
|
4145
4140
|
*/
|
|
4146
|
-
|
|
4141
|
+
calculationMode: CalculationMode;
|
|
4147
4142
|
|
|
4148
4143
|
/**
|
|
4149
4144
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4151,15 +4146,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4151
4146
|
paymentTermRef: PaymentTermRef;
|
|
4152
4147
|
|
|
4153
4148
|
/**
|
|
4154
|
-
*
|
|
4149
|
+
* Wird vom Workflow verarbeitet?
|
|
4155
4150
|
*/
|
|
4156
|
-
|
|
4151
|
+
processedByWorkflow: boolean;
|
|
4157
4152
|
|
|
4158
4153
|
/**
|
|
4159
4154
|
* Preisanpassungen - Beleg Basiswährung
|
|
4160
4155
|
*/
|
|
4161
4156
|
baseTotalDocumentPriceModifier: number;
|
|
4162
4157
|
|
|
4158
|
+
/**
|
|
4159
|
+
* Telefon an Versender übergeben
|
|
4160
|
+
*/
|
|
4161
|
+
forwardPhoneToShipper: boolean;
|
|
4162
|
+
|
|
4163
4163
|
/**
|
|
4164
4164
|
* Liste der Belegtexte
|
|
4165
4165
|
*/
|
|
@@ -4181,14 +4181,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4181
4181
|
defaultAddress: DocumentAddress;
|
|
4182
4182
|
|
|
4183
4183
|
/**
|
|
4184
|
-
*
|
|
4184
|
+
* Verarbeitungsoption für Stapel
|
|
4185
4185
|
*/
|
|
4186
|
-
|
|
4186
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4187
4187
|
|
|
4188
4188
|
/**
|
|
4189
|
-
*
|
|
4189
|
+
* Leistungsdatum
|
|
4190
4190
|
*/
|
|
4191
|
-
|
|
4191
|
+
performanceDate: ScriptingDate;
|
|
4192
4192
|
|
|
4193
4193
|
/**
|
|
4194
4194
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4216,14 +4216,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4216
4216
|
additionalInfo: DocumentAdditionalInfo;
|
|
4217
4217
|
|
|
4218
4218
|
/**
|
|
4219
|
-
*
|
|
4219
|
+
* Bestelldatum
|
|
4220
4220
|
*/
|
|
4221
|
-
|
|
4221
|
+
orderedOn: ScriptingDate;
|
|
4222
4222
|
|
|
4223
4223
|
/**
|
|
4224
|
-
*
|
|
4224
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4225
4225
|
*/
|
|
4226
|
-
|
|
4226
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4227
4227
|
|
|
4228
4228
|
/**
|
|
4229
4229
|
* MetaInformations for this Object
|
|
@@ -4376,11 +4376,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4376
4376
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
4377
|
|
|
4378
4378
|
/**
|
|
4379
|
-
*
|
|
4380
|
-
true wenn die Quittung ausbalanciert ist
|
|
4381
|
-
|
|
4379
|
+
* Rückgeld
|
|
4382
4380
|
*/
|
|
4383
|
-
|
|
4381
|
+
posReceiptChangeAmount: number;
|
|
4384
4382
|
|
|
4385
4383
|
/**
|
|
4386
4384
|
* Referenz auf Lieferbedingung
|
|
@@ -4388,9 +4386,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4388
4386
|
deliveryTermRef: ApiObjectReference;
|
|
4389
4387
|
|
|
4390
4388
|
/**
|
|
4391
|
-
* Rückgeld
|
|
4389
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4390
|
+
true wenn die Quittung ausbalanciert ist
|
|
4391
|
+
|
|
4392
4392
|
*/
|
|
4393
|
-
|
|
4393
|
+
posReceiptBalanced: boolean;
|
|
4394
4394
|
|
|
4395
4395
|
/**
|
|
4396
4396
|
* Gesamtbruttogewicht
|
|
@@ -4423,14 +4423,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4423
4423
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4424
4424
|
|
|
4425
4425
|
/**
|
|
4426
|
-
*
|
|
4426
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4427
4427
|
*/
|
|
4428
|
-
|
|
4428
|
+
reportGroupRef: ApiObjectReference;
|
|
4429
4429
|
|
|
4430
4430
|
/**
|
|
4431
|
-
*
|
|
4431
|
+
* Bestellt durch Ansprechpartner
|
|
4432
4432
|
*/
|
|
4433
|
-
|
|
4433
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4434
4434
|
}
|
|
4435
4435
|
|
|
4436
4436
|
export interface DocumentAdditionalInfo {
|
|
@@ -4441,14 +4441,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4441
4441
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4442
4442
|
|
|
4443
4443
|
/**
|
|
4444
|
-
*
|
|
4444
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4445
4445
|
*/
|
|
4446
|
-
|
|
4446
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4447
4447
|
|
|
4448
4448
|
/**
|
|
4449
|
-
*
|
|
4449
|
+
* Herkunft der Sprache
|
|
4450
4450
|
*/
|
|
4451
|
-
|
|
4451
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4452
4452
|
|
|
4453
4453
|
/**
|
|
4454
4454
|
* Herkunft der Käufer-Referenz
|
|
@@ -4456,14 +4456,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4456
4456
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4457
4457
|
|
|
4458
4458
|
/**
|
|
4459
|
-
*
|
|
4459
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4460
4460
|
*/
|
|
4461
|
-
|
|
4461
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4462
4462
|
|
|
4463
4463
|
/**
|
|
4464
|
-
*
|
|
4464
|
+
* Herkunft des Berechnungsmodus
|
|
4465
4465
|
*/
|
|
4466
|
-
|
|
4466
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4467
4467
|
|
|
4468
4468
|
/**
|
|
4469
4469
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4793,14 +4793,14 @@ export interface DocumentContractDetail {
|
|
|
4793
4793
|
runtimeToDate: ScriptingDate;
|
|
4794
4794
|
|
|
4795
4795
|
/**
|
|
4796
|
-
*
|
|
4796
|
+
* Nächste Fälligkeit
|
|
4797
4797
|
*/
|
|
4798
|
-
|
|
4798
|
+
nextDueDate: ScriptingDate;
|
|
4799
4799
|
|
|
4800
4800
|
/**
|
|
4801
|
-
*
|
|
4801
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4802
4802
|
*/
|
|
4803
|
-
|
|
4803
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4804
4804
|
|
|
4805
4805
|
/**
|
|
4806
4806
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4965,14 +4965,14 @@ export const enum DocumentImportType {
|
|
|
4965
4965
|
export interface DocumentLine {
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Zolltarifnummer
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
customsTariffNumber: string;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
|
-
*
|
|
4973
|
+
* Leistungsdatum
|
|
4974
4974
|
*/
|
|
4975
|
-
|
|
4975
|
+
performanceDate: ScriptingDate;
|
|
4976
4976
|
|
|
4977
4977
|
/**
|
|
4978
4978
|
* Land der Herkunft
|
|
@@ -5035,14 +5035,14 @@ export interface DocumentLine {
|
|
|
5035
5035
|
number: string;
|
|
5036
5036
|
|
|
5037
5037
|
/**
|
|
5038
|
-
*
|
|
5038
|
+
* Gesamtbruttogewicht
|
|
5039
5039
|
*/
|
|
5040
|
-
|
|
5040
|
+
totalGrossWeight: number;
|
|
5041
5041
|
|
|
5042
5042
|
/**
|
|
5043
|
-
*
|
|
5043
|
+
* Referenz zur Kundenauftragszeile
|
|
5044
5044
|
*/
|
|
5045
|
-
|
|
5045
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5046
5046
|
|
|
5047
5047
|
/**
|
|
5048
5048
|
* skontierbare Position?
|
|
@@ -5059,11 +5059,6 @@ export interface DocumentLine {
|
|
|
5059
5059
|
*/
|
|
5060
5060
|
price: number;
|
|
5061
5061
|
|
|
5062
|
-
/**
|
|
5063
|
-
* Gesamtpreis Position in Basiswährung
|
|
5064
|
-
*/
|
|
5065
|
-
baseTotalLinePrice: number;
|
|
5066
|
-
|
|
5067
5062
|
/**
|
|
5068
5063
|
* FiBu-Buchung
|
|
5069
5064
|
*/
|
|
@@ -5074,6 +5069,11 @@ export interface DocumentLine {
|
|
|
5074
5069
|
*/
|
|
5075
5070
|
lineType: DocumentLineType;
|
|
5076
5071
|
|
|
5072
|
+
/**
|
|
5073
|
+
* Gesamtpreis Position in Basiswährung
|
|
5074
|
+
*/
|
|
5075
|
+
baseTotalLinePrice: number;
|
|
5076
|
+
|
|
5077
5077
|
/**
|
|
5078
5078
|
* vorgeorderte Menge in Pickvorgang
|
|
5079
5079
|
*/
|
|
@@ -5104,11 +5104,6 @@ export interface DocumentLine {
|
|
|
5104
5104
|
*/
|
|
5105
5105
|
id: number;
|
|
5106
5106
|
|
|
5107
|
-
/**
|
|
5108
|
-
* Externe Referenz zum VDS-Paket
|
|
5109
|
-
*/
|
|
5110
|
-
externalReferenceVds: string;
|
|
5111
|
-
|
|
5112
5107
|
/**
|
|
5113
5108
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5114
5109
|
*/
|
|
@@ -5119,6 +5114,11 @@ export interface DocumentLine {
|
|
|
5119
5114
|
*/
|
|
5120
5115
|
basePrice: number;
|
|
5121
5116
|
|
|
5117
|
+
/**
|
|
5118
|
+
* Externe Referenz zum VDS-Paket
|
|
5119
|
+
*/
|
|
5120
|
+
externalReferenceVds: string;
|
|
5121
|
+
|
|
5122
5122
|
/**
|
|
5123
5123
|
* Serientyp
|
|
5124
5124
|
*/
|
|
@@ -5319,11 +5319,6 @@ export interface DocumentLine {
|
|
|
5319
5319
|
*/
|
|
5320
5320
|
productType: ProductType;
|
|
5321
5321
|
|
|
5322
|
-
/**
|
|
5323
|
-
* Vertragsinformationen
|
|
5324
|
-
*/
|
|
5325
|
-
contractDetail: DocumentContractDetail;
|
|
5326
|
-
|
|
5327
5322
|
/**
|
|
5328
5323
|
* Nettoverkaufswert der Position in Basiswährung
|
|
5329
5324
|
*/
|
|
@@ -5334,6 +5329,11 @@ export interface DocumentLine {
|
|
|
5334
5329
|
*/
|
|
5335
5330
|
netWeightUnit: UnitTypeReference;
|
|
5336
5331
|
|
|
5332
|
+
/**
|
|
5333
|
+
* Vertragsinformationen
|
|
5334
|
+
*/
|
|
5335
|
+
contractDetail: DocumentContractDetail;
|
|
5336
|
+
|
|
5337
5337
|
/**
|
|
5338
5338
|
* Menge
|
|
5339
5339
|
*/
|
|
@@ -5746,14 +5746,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
5746
5746
|
quantityFinished: number;
|
|
5747
5747
|
|
|
5748
5748
|
/**
|
|
5749
|
-
* Produzierte
|
|
5749
|
+
* Produzierte Seriennummer
|
|
5750
5750
|
*/
|
|
5751
|
-
|
|
5751
|
+
serialNumber: ArticleSerialNumber;
|
|
5752
5752
|
|
|
5753
5753
|
/**
|
|
5754
|
-
* Produzierte
|
|
5754
|
+
* Produzierte/geplante Menge
|
|
5755
5755
|
*/
|
|
5756
|
-
|
|
5756
|
+
quantity: number;
|
|
5757
5757
|
|
|
5758
5758
|
/**
|
|
5759
5759
|
* Gebuchte Komponenten
|
|
@@ -5862,14 +5862,14 @@ export interface DocumentLineRef {
|
|
|
5862
5862
|
quantity: number;
|
|
5863
5863
|
|
|
5864
5864
|
/**
|
|
5865
|
-
*
|
|
5865
|
+
* Artikelnummer
|
|
5866
5866
|
*/
|
|
5867
|
-
|
|
5867
|
+
articleNumber: string;
|
|
5868
5868
|
|
|
5869
5869
|
/**
|
|
5870
|
-
*
|
|
5870
|
+
* Belegart
|
|
5871
5871
|
*/
|
|
5872
|
-
|
|
5872
|
+
documentType: string;
|
|
5873
5873
|
|
|
5874
5874
|
/**
|
|
5875
5875
|
* price per quantity [GROSS, NET]
|
|
@@ -6179,14 +6179,14 @@ export interface DocumentRef {
|
|
|
6179
6179
|
export interface DocumentShippingCost {
|
|
6180
6180
|
|
|
6181
6181
|
/**
|
|
6182
|
-
*
|
|
6182
|
+
* Die Versandkosten
|
|
6183
6183
|
*/
|
|
6184
|
-
|
|
6184
|
+
costs: number;
|
|
6185
6185
|
|
|
6186
6186
|
/**
|
|
6187
|
-
*
|
|
6187
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6188
6188
|
*/
|
|
6189
|
-
|
|
6189
|
+
manualCosts: boolean;
|
|
6190
6190
|
|
|
6191
6191
|
/**
|
|
6192
6192
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6619,14 +6619,14 @@ export const enum DropShippingPolicy {
|
|
|
6619
6619
|
export interface DummySerialNumberStockTransferApi {
|
|
6620
6620
|
|
|
6621
6621
|
/**
|
|
6622
|
-
*
|
|
6622
|
+
* Seriennummer
|
|
6623
6623
|
*/
|
|
6624
|
-
|
|
6624
|
+
serialNumberId: number;
|
|
6625
6625
|
|
|
6626
6626
|
/**
|
|
6627
|
-
*
|
|
6627
|
+
* Ziel-Lager
|
|
6628
6628
|
*/
|
|
6629
|
-
|
|
6629
|
+
targetStorageId: number;
|
|
6630
6630
|
|
|
6631
6631
|
/**
|
|
6632
6632
|
* Bemerkung
|
|
@@ -7388,14 +7388,14 @@ export interface PickTrolley {
|
|
|
7388
7388
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7389
7389
|
|
|
7390
7390
|
/**
|
|
7391
|
-
*
|
|
7391
|
+
* Bearbeiter der Pickliste
|
|
7392
7392
|
*/
|
|
7393
|
-
|
|
7393
|
+
processedByUserRef: ApiObjectReference;
|
|
7394
7394
|
|
|
7395
7395
|
/**
|
|
7396
|
-
*
|
|
7396
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7397
7397
|
*/
|
|
7398
|
-
|
|
7398
|
+
storageBinRef: StorageBinRef;
|
|
7399
7399
|
|
|
7400
7400
|
/**
|
|
7401
7401
|
* Beschreibung des Wagens
|
|
@@ -7548,14 +7548,14 @@ export const enum PickingType {
|
|
|
7548
7548
|
export interface Picklist {
|
|
7549
7549
|
|
|
7550
7550
|
/**
|
|
7551
|
-
*
|
|
7551
|
+
* Ziellager für Nachschub
|
|
7552
7552
|
*/
|
|
7553
|
-
|
|
7553
|
+
targetStorageRef: ApiObjectReference;
|
|
7554
7554
|
|
|
7555
7555
|
/**
|
|
7556
|
-
*
|
|
7556
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7557
7557
|
*/
|
|
7558
|
-
|
|
7558
|
+
usedTemplate: PicklistTemplate;
|
|
7559
7559
|
|
|
7560
7560
|
/**
|
|
7561
7561
|
* Nummer der Pickliste
|
|
@@ -7606,14 +7606,14 @@ export interface Picklist {
|
|
|
7606
7606
|
export interface PicklistLine {
|
|
7607
7607
|
|
|
7608
7608
|
/**
|
|
7609
|
-
*
|
|
7609
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7610
7610
|
*/
|
|
7611
|
-
|
|
7611
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7612
7612
|
|
|
7613
7613
|
/**
|
|
7614
|
-
*
|
|
7614
|
+
* Gesammelte Menge der Position
|
|
7615
7615
|
*/
|
|
7616
|
-
|
|
7616
|
+
quantityCollected: number;
|
|
7617
7617
|
|
|
7618
7618
|
/**
|
|
7619
7619
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7724,14 +7724,14 @@ export interface PicklistLine {
|
|
|
7724
7724
|
export interface PicklistLineBooking {
|
|
7725
7725
|
|
|
7726
7726
|
/**
|
|
7727
|
-
*
|
|
7727
|
+
* Seriennummer
|
|
7728
7728
|
*/
|
|
7729
|
-
|
|
7729
|
+
serialNumber: ArticleSerialNumber;
|
|
7730
7730
|
|
|
7731
7731
|
/**
|
|
7732
|
-
*
|
|
7732
|
+
* Zu buchende Menge (gesammelt)
|
|
7733
7733
|
*/
|
|
7734
|
-
|
|
7734
|
+
quantity: number;
|
|
7735
7735
|
|
|
7736
7736
|
/**
|
|
7737
7737
|
* Anzeigename vom Lagerplatz
|
|
@@ -8001,14 +8001,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8001
8001
|
onlyFullDeliverableOrderLines: boolean;
|
|
8002
8002
|
|
|
8003
8003
|
/**
|
|
8004
|
-
*
|
|
8004
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8005
8005
|
*/
|
|
8006
|
-
|
|
8006
|
+
maxOrderCount: number;
|
|
8007
8007
|
|
|
8008
8008
|
/**
|
|
8009
|
-
*
|
|
8009
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8010
8010
|
*/
|
|
8011
|
-
|
|
8011
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8012
8012
|
|
|
8013
8013
|
/**
|
|
8014
8014
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -8079,14 +8079,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8079
8079
|
maxPicklistLineCount: number;
|
|
8080
8080
|
|
|
8081
8081
|
/**
|
|
8082
|
-
*
|
|
8082
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8083
8083
|
*/
|
|
8084
|
-
|
|
8084
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8085
8085
|
|
|
8086
8086
|
/**
|
|
8087
|
-
*
|
|
8087
|
+
* Der zu verwendende Pickwagen
|
|
8088
8088
|
*/
|
|
8089
|
-
|
|
8089
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8090
8090
|
|
|
8091
8091
|
/**
|
|
8092
8092
|
* Lagerplätze vorgeben
|
|
@@ -8094,14 +8094,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8094
8094
|
specifyStorageBins: boolean;
|
|
8095
8095
|
|
|
8096
8096
|
/**
|
|
8097
|
-
*
|
|
8097
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8098
8098
|
*/
|
|
8099
|
-
|
|
8099
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8100
8100
|
|
|
8101
8101
|
/**
|
|
8102
|
-
*
|
|
8102
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8103
8103
|
*/
|
|
8104
|
-
|
|
8104
|
+
sortByRoutePosition: boolean;
|
|
8105
8105
|
|
|
8106
8106
|
/**
|
|
8107
8107
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8167,14 +8167,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8167
8167
|
allowPickingOfServiceArticles: boolean;
|
|
8168
8168
|
|
|
8169
8169
|
/**
|
|
8170
|
-
*
|
|
8170
|
+
* Sammelbestätigung erlauben
|
|
8171
8171
|
*/
|
|
8172
|
-
|
|
8172
|
+
allowFullConfirmation: boolean;
|
|
8173
8173
|
|
|
8174
8174
|
/**
|
|
8175
|
-
*
|
|
8175
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8176
8176
|
*/
|
|
8177
|
-
|
|
8177
|
+
useDigitalPicklist: boolean;
|
|
8178
8178
|
|
|
8179
8179
|
/**
|
|
8180
8180
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8448,14 +8448,14 @@ export interface ProductArticleRef {
|
|
|
8448
8448
|
export interface ProductDiscount {
|
|
8449
8449
|
|
|
8450
8450
|
/**
|
|
8451
|
-
*
|
|
8451
|
+
* Kundengruppe
|
|
8452
8452
|
*/
|
|
8453
|
-
|
|
8453
|
+
customerGroupRef: ApiObjectReference;
|
|
8454
8454
|
|
|
8455
8455
|
/**
|
|
8456
|
-
*
|
|
8456
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8457
8457
|
*/
|
|
8458
|
-
|
|
8458
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8459
8459
|
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Lieferantengruppe
|
|
@@ -8478,14 +8478,14 @@ export interface ProductDiscount {
|
|
|
8478
8478
|
validFrom: ScriptingDate;
|
|
8479
8479
|
|
|
8480
8480
|
/**
|
|
8481
|
-
*
|
|
8481
|
+
* Bestimmt die Art des Rabatts
|
|
8482
8482
|
*/
|
|
8483
|
-
|
|
8483
|
+
modifierType: PriceModifierType;
|
|
8484
8484
|
|
|
8485
8485
|
/**
|
|
8486
|
-
*
|
|
8486
|
+
* Warengruppe
|
|
8487
8487
|
*/
|
|
8488
|
-
|
|
8488
|
+
productGroupRef: ApiObjectReference;
|
|
8489
8489
|
|
|
8490
8490
|
/**
|
|
8491
8491
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8503,14 +8503,14 @@ export interface ProductDiscount {
|
|
|
8503
8503
|
currencyRef: CurrencyReference;
|
|
8504
8504
|
|
|
8505
8505
|
/**
|
|
8506
|
-
*
|
|
8506
|
+
* Wert des Rabatts
|
|
8507
8507
|
*/
|
|
8508
|
-
|
|
8508
|
+
modifierValue: number;
|
|
8509
8509
|
|
|
8510
8510
|
/**
|
|
8511
|
-
*
|
|
8511
|
+
* Preisgruppe
|
|
8512
8512
|
*/
|
|
8513
|
-
|
|
8513
|
+
priceGroupRef: ApiObjectReference;
|
|
8514
8514
|
|
|
8515
8515
|
/**
|
|
8516
8516
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8657,14 +8657,14 @@ export interface ProductMainGroup {
|
|
|
8657
8657
|
export interface ProductPrice {
|
|
8658
8658
|
|
|
8659
8659
|
/**
|
|
8660
|
-
*
|
|
8660
|
+
* Kundengruppe
|
|
8661
8661
|
*/
|
|
8662
|
-
|
|
8662
|
+
customerGroupRef: ApiObjectReference;
|
|
8663
8663
|
|
|
8664
8664
|
/**
|
|
8665
|
-
*
|
|
8665
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8666
8666
|
*/
|
|
8667
|
-
|
|
8667
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8668
8668
|
|
|
8669
8669
|
/**
|
|
8670
8670
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8849,14 +8849,14 @@ export interface RequestDocument {
|
|
|
8849
8849
|
cashDrawerId: number;
|
|
8850
8850
|
|
|
8851
8851
|
/**
|
|
8852
|
-
*
|
|
8852
|
+
* Der Anzahlungsbetrag
|
|
8853
8853
|
*/
|
|
8854
|
-
|
|
8854
|
+
depositPaymentAmount: number;
|
|
8855
8855
|
|
|
8856
8856
|
/**
|
|
8857
|
-
*
|
|
8857
|
+
* Leistungsdatum
|
|
8858
8858
|
*/
|
|
8859
|
-
|
|
8859
|
+
performanceDate: ScriptingDate;
|
|
8860
8860
|
|
|
8861
8861
|
/**
|
|
8862
8862
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8918,26 +8918,26 @@ export interface RequestDocument {
|
|
|
8918
8918
|
*/
|
|
8919
8919
|
lines: Array<RequestDocumentLine>;
|
|
8920
8920
|
|
|
8921
|
-
/**
|
|
8922
|
-
* Die Vertragsdetails
|
|
8923
|
-
*/
|
|
8924
|
-
contractDetail: DocumentContractDetail;
|
|
8925
|
-
|
|
8926
8921
|
/**
|
|
8927
8922
|
* ID der Kasse (bei POS)
|
|
8928
8923
|
*/
|
|
8929
8924
|
posRegisterId: number;
|
|
8930
8925
|
|
|
8931
8926
|
/**
|
|
8932
|
-
*
|
|
8927
|
+
* Die Vertragsdetails
|
|
8933
8928
|
*/
|
|
8934
|
-
|
|
8929
|
+
contractDetail: DocumentContractDetail;
|
|
8935
8930
|
|
|
8936
8931
|
/**
|
|
8937
8932
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8938
8933
|
*/
|
|
8939
8934
|
paymentTermId: number;
|
|
8940
8935
|
|
|
8936
|
+
/**
|
|
8937
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8938
|
+
*/
|
|
8939
|
+
supplierAccountId: number;
|
|
8940
|
+
|
|
8941
8941
|
/**
|
|
8942
8942
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8943
8943
|
*/
|
|
@@ -8979,14 +8979,14 @@ export interface RequestDocument {
|
|
|
8979
8979
|
accountId: number;
|
|
8980
8980
|
|
|
8981
8981
|
/**
|
|
8982
|
-
*
|
|
8982
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8983
8983
|
*/
|
|
8984
|
-
|
|
8984
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8985
8985
|
|
|
8986
8986
|
/**
|
|
8987
|
-
*
|
|
8987
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8988
8988
|
*/
|
|
8989
|
-
|
|
8989
|
+
processedByPicklistProcessing: boolean;
|
|
8990
8990
|
|
|
8991
8991
|
/**
|
|
8992
8992
|
* Die Rabatte des Beleges
|
|
@@ -9146,11 +9146,6 @@ export interface RequestDocumentLine {
|
|
|
9146
9146
|
*/
|
|
9147
9147
|
name: string;
|
|
9148
9148
|
|
|
9149
|
-
/**
|
|
9150
|
-
* Buchungen zu dieser Belegposition
|
|
9151
|
-
*/
|
|
9152
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
9153
|
-
|
|
9154
9149
|
/**
|
|
9155
9150
|
* ID der Quell-Belegposition
|
|
9156
9151
|
*/
|
|
@@ -9161,6 +9156,11 @@ export interface RequestDocumentLine {
|
|
|
9161
9156
|
*/
|
|
9162
9157
|
externalArticleNumber: string;
|
|
9163
9158
|
|
|
9159
|
+
/**
|
|
9160
|
+
* Buchungen zu dieser Belegposition
|
|
9161
|
+
*/
|
|
9162
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9163
|
+
|
|
9164
9164
|
/**
|
|
9165
9165
|
* (optional) Preis des Artikels dieser Position
|
|
9166
9166
|
*/
|
|
@@ -9275,14 +9275,14 @@ export interface RequestDocumentText {
|
|
|
9275
9275
|
export interface RevenueCalculation {
|
|
9276
9276
|
|
|
9277
9277
|
/**
|
|
9278
|
-
*
|
|
9278
|
+
* Deckungsbeitrag (absolut)
|
|
9279
9279
|
*/
|
|
9280
|
-
|
|
9280
|
+
revenue: number;
|
|
9281
9281
|
|
|
9282
9282
|
/**
|
|
9283
|
-
*
|
|
9283
|
+
* Netto Umsatz
|
|
9284
9284
|
*/
|
|
9285
|
-
|
|
9285
|
+
salesValue: number;
|
|
9286
9286
|
|
|
9287
9287
|
/**
|
|
9288
9288
|
* Einkaufspreis
|
|
@@ -9303,14 +9303,14 @@ export interface SalesAgent {
|
|
|
9303
9303
|
note: string;
|
|
9304
9304
|
|
|
9305
9305
|
/**
|
|
9306
|
-
*
|
|
9306
|
+
* is sales agent taxable
|
|
9307
9307
|
*/
|
|
9308
|
-
|
|
9308
|
+
taxable: boolean;
|
|
9309
9309
|
|
|
9310
9310
|
/**
|
|
9311
|
-
*
|
|
9311
|
+
* reference to the delivery method
|
|
9312
9312
|
*/
|
|
9313
|
-
|
|
9313
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9314
9314
|
|
|
9315
9315
|
/**
|
|
9316
9316
|
* Freifelder
|
|
@@ -9712,14 +9712,14 @@ export interface SequencerConfigurationDetail {
|
|
|
9712
9712
|
export interface SerialNumberWithQuantityApi {
|
|
9713
9713
|
|
|
9714
9714
|
/**
|
|
9715
|
-
*
|
|
9715
|
+
* Seriennummer
|
|
9716
9716
|
*/
|
|
9717
|
-
|
|
9717
|
+
serialNumber: ArticleSerialNumber;
|
|
9718
9718
|
|
|
9719
9719
|
/**
|
|
9720
|
-
*
|
|
9720
|
+
* Menge
|
|
9721
9721
|
*/
|
|
9722
|
-
|
|
9722
|
+
quantity: number;
|
|
9723
9723
|
}
|
|
9724
9724
|
|
|
9725
9725
|
export interface ShelfDocument {
|
|
@@ -9770,14 +9770,14 @@ export interface ShelfDocument {
|
|
|
9770
9770
|
tags: Array<TagDto>;
|
|
9771
9771
|
|
|
9772
9772
|
/**
|
|
9773
|
-
*
|
|
9773
|
+
* share informations
|
|
9774
9774
|
*/
|
|
9775
|
-
|
|
9775
|
+
shares: Array<ShelfShare>;
|
|
9776
9776
|
|
|
9777
9777
|
/**
|
|
9778
|
-
*
|
|
9778
|
+
* Mehrsprachige Bezeichnungen
|
|
9779
9779
|
*/
|
|
9780
|
-
|
|
9780
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9781
9781
|
|
|
9782
9782
|
/**
|
|
9783
9783
|
* Automatische Löschung ab
|
|
@@ -9909,14 +9909,14 @@ export interface ShelfDocumentType {
|
|
|
9909
9909
|
active: boolean;
|
|
9910
9910
|
|
|
9911
9911
|
/**
|
|
9912
|
-
*
|
|
9912
|
+
* label of type
|
|
9913
9913
|
*/
|
|
9914
|
-
|
|
9914
|
+
label: string;
|
|
9915
9915
|
|
|
9916
9916
|
/**
|
|
9917
|
-
*
|
|
9917
|
+
* access level or reading
|
|
9918
9918
|
*/
|
|
9919
|
-
|
|
9919
|
+
accessLevelRead: number;
|
|
9920
9920
|
|
|
9921
9921
|
/**
|
|
9922
9922
|
* storage rule for revisions
|
|
@@ -9962,14 +9962,14 @@ export interface ShelfFile {
|
|
|
9962
9962
|
subFiles: Array<SubFileInfo>;
|
|
9963
9963
|
|
|
9964
9964
|
/**
|
|
9965
|
-
*
|
|
9965
|
+
* fileSize
|
|
9966
9966
|
*/
|
|
9967
|
-
|
|
9967
|
+
fileSize: number;
|
|
9968
9968
|
|
|
9969
9969
|
/**
|
|
9970
|
-
*
|
|
9970
|
+
* revision number of this file
|
|
9971
9971
|
*/
|
|
9972
|
-
|
|
9972
|
+
revisionNumber: number;
|
|
9973
9973
|
|
|
9974
9974
|
/**
|
|
9975
9975
|
* file-extension of this entry
|
|
@@ -10048,14 +10048,14 @@ export interface ShelfShare {
|
|
|
10048
10048
|
publishState: ShelfSharePublishState;
|
|
10049
10049
|
|
|
10050
10050
|
/**
|
|
10051
|
-
*
|
|
10051
|
+
* Freifelder
|
|
10052
10052
|
*/
|
|
10053
|
-
|
|
10053
|
+
custom: EavShelfshare;
|
|
10054
10054
|
|
|
10055
10055
|
/**
|
|
10056
|
-
*
|
|
10056
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
10057
10057
|
*/
|
|
10058
|
-
|
|
10058
|
+
publicUrlDurationInMinutes: number;
|
|
10059
10059
|
|
|
10060
10060
|
/**
|
|
10061
10061
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10267,14 +10267,14 @@ export interface StockMovementManualApi {
|
|
|
10267
10267
|
export interface StockTransferApi {
|
|
10268
10268
|
|
|
10269
10269
|
/**
|
|
10270
|
-
*
|
|
10270
|
+
* Seriennummer
|
|
10271
10271
|
*/
|
|
10272
|
-
|
|
10272
|
+
serialNumberId: number;
|
|
10273
10273
|
|
|
10274
10274
|
/**
|
|
10275
|
-
*
|
|
10275
|
+
* Ziel-Lager
|
|
10276
10276
|
*/
|
|
10277
|
-
|
|
10277
|
+
targetStorageId: number;
|
|
10278
10278
|
|
|
10279
10279
|
/**
|
|
10280
10280
|
* Bemerkung
|
|
@@ -10484,14 +10484,14 @@ export interface Supplier {
|
|
|
10484
10484
|
info: MetaInfo;
|
|
10485
10485
|
|
|
10486
10486
|
/**
|
|
10487
|
-
*
|
|
10487
|
+
* Lieferantengruppe
|
|
10488
10488
|
*/
|
|
10489
|
-
|
|
10489
|
+
supplierGroupRef: ApiObjectReference;
|
|
10490
10490
|
|
|
10491
10491
|
/**
|
|
10492
|
-
*
|
|
10492
|
+
* reference to the delivery method
|
|
10493
10493
|
*/
|
|
10494
|
-
|
|
10494
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10495
10495
|
|
|
10496
10496
|
/**
|
|
10497
10497
|
* tax able or tax free
|
|
@@ -10549,14 +10549,14 @@ export interface Supplier {
|
|
|
10549
10549
|
performanceCountryCode: string;
|
|
10550
10550
|
|
|
10551
10551
|
/**
|
|
10552
|
-
*
|
|
10552
|
+
* reference to the payment method
|
|
10553
10553
|
*/
|
|
10554
|
-
|
|
10554
|
+
paymentMethodRef: ApiObjectReference;
|
|
10555
10555
|
|
|
10556
10556
|
/**
|
|
10557
|
-
*
|
|
10557
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10558
10558
|
*/
|
|
10559
|
-
|
|
10559
|
+
defaultDeliveryTime: number;
|
|
10560
10560
|
|
|
10561
10561
|
/**
|
|
10562
10562
|
* currency code IsoAlpha3
|
|
@@ -10577,14 +10577,14 @@ export interface TagDto {
|
|
|
10577
10577
|
editColor: string;
|
|
10578
10578
|
|
|
10579
10579
|
/**
|
|
10580
|
-
* Farbe
|
|
10580
|
+
* Farbe für die Anzeige des Tags
|
|
10581
10581
|
*/
|
|
10582
|
-
|
|
10582
|
+
color: string;
|
|
10583
10583
|
|
|
10584
10584
|
/**
|
|
10585
|
-
* Farbe
|
|
10585
|
+
* Farbe in Such-GUI
|
|
10586
10586
|
*/
|
|
10587
|
-
|
|
10587
|
+
searchColor: string;
|
|
10588
10588
|
|
|
10589
10589
|
/**
|
|
10590
10590
|
* Beschriftung des Tags
|
|
@@ -10628,14 +10628,14 @@ export const enum TagType {
|
|
|
10628
10628
|
export interface TaxIdForeignCountry {
|
|
10629
10629
|
|
|
10630
10630
|
/**
|
|
10631
|
-
*
|
|
10631
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10632
10632
|
*/
|
|
10633
|
-
|
|
10633
|
+
countryCode: string;
|
|
10634
10634
|
|
|
10635
10635
|
/**
|
|
10636
|
-
*
|
|
10636
|
+
* Tax ID of the company in the associated country
|
|
10637
10637
|
*/
|
|
10638
|
-
|
|
10638
|
+
taxId: string;
|
|
10639
10639
|
|
|
10640
10640
|
/**
|
|
10641
10641
|
* Unique identifier of the Object
|
|
@@ -10877,11 +10877,6 @@ export interface User {
|
|
|
10877
10877
|
*/
|
|
10878
10878
|
roles: Array<ApiObjectReference>;
|
|
10879
10879
|
|
|
10880
|
-
/**
|
|
10881
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10882
|
-
*/
|
|
10883
|
-
referencedCustomerUserId: number;
|
|
10884
|
-
|
|
10885
10880
|
/**
|
|
10886
10881
|
* Gruppen
|
|
10887
10882
|
*/
|
|
@@ -10892,6 +10887,11 @@ export interface User {
|
|
|
10892
10887
|
*/
|
|
10893
10888
|
active: boolean;
|
|
10894
10889
|
|
|
10890
|
+
/**
|
|
10891
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10892
|
+
*/
|
|
10893
|
+
referencedCustomerUserId: number;
|
|
10894
|
+
|
|
10895
10895
|
/**
|
|
10896
10896
|
* App-Identifier
|
|
10897
10897
|
*/
|
|
@@ -10908,14 +10908,14 @@ export interface User {
|
|
|
10908
10908
|
version: number;
|
|
10909
10909
|
|
|
10910
10910
|
/**
|
|
10911
|
-
*
|
|
10911
|
+
* is the email verified
|
|
10912
10912
|
*/
|
|
10913
|
-
|
|
10913
|
+
emailVerified: boolean;
|
|
10914
10914
|
|
|
10915
10915
|
/**
|
|
10916
|
-
*
|
|
10916
|
+
* first-name
|
|
10917
10917
|
*/
|
|
10918
|
-
|
|
10918
|
+
firstName: string;
|
|
10919
10919
|
|
|
10920
10920
|
/**
|
|
10921
10921
|
* email-address
|
|
@@ -10928,14 +10928,14 @@ export interface User {
|
|
|
10928
10928
|
id: number;
|
|
10929
10929
|
|
|
10930
10930
|
/**
|
|
10931
|
-
*
|
|
10931
|
+
* username
|
|
10932
10932
|
*/
|
|
10933
|
-
|
|
10933
|
+
username: string;
|
|
10934
10934
|
|
|
10935
10935
|
/**
|
|
10936
|
-
*
|
|
10936
|
+
* Valid to
|
|
10937
10937
|
*/
|
|
10938
|
-
|
|
10938
|
+
validTo: ScriptingDateTime;
|
|
10939
10939
|
|
|
10940
10940
|
/**
|
|
10941
10941
|
* MetaInformations for this Object
|
|
@@ -11118,14 +11118,14 @@ export interface VariantValue {
|
|
|
11118
11118
|
version: number;
|
|
11119
11119
|
|
|
11120
11120
|
/**
|
|
11121
|
-
*
|
|
11121
|
+
* Variantenattribut
|
|
11122
11122
|
*/
|
|
11123
|
-
|
|
11123
|
+
attributeRef: ApiObjectReference;
|
|
11124
11124
|
|
|
11125
11125
|
/**
|
|
11126
|
-
*
|
|
11126
|
+
* Mehrsprachige Bezeichnungen
|
|
11127
11127
|
*/
|
|
11128
|
-
|
|
11128
|
+
labels: Array<VariantDescription>;
|
|
11129
11129
|
|
|
11130
11130
|
/**
|
|
11131
11131
|
* MetaInformations for this Object
|