@vario-software/types 2026.17.4 → 2026.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +49 -7
- package/scripting/services.d.ts +57 -14
- package/scripting/types.d.ts +334 -329
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
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -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
|
|
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
|
|
|
469
469
|
active: boolean;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
*
|
|
472
|
+
* post-code of the bank
|
|
473
473
|
*/
|
|
474
|
-
|
|
474
|
+
bankPostCode: string;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* name of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankName: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* account from, if differs from account-address
|
|
@@ -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
|
*/
|
|
@@ -547,14 +547,14 @@ export const enum AccountBillingType {
|
|
|
547
547
|
export interface AccountLoanValue {
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* Account
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
accountId: number;
|
|
553
553
|
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Nicht berücksichtigter Betrag
|
|
556
556
|
*/
|
|
557
|
-
|
|
557
|
+
unconsideredAmount: number;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
560
|
* Betrag aus Aufträgen
|
|
@@ -956,14 +956,14 @@ export interface Article {
|
|
|
956
956
|
customsTariffNumber: string;
|
|
957
957
|
|
|
958
958
|
/**
|
|
959
|
-
*
|
|
959
|
+
* is this product purchasable
|
|
960
960
|
*/
|
|
961
|
-
|
|
961
|
+
purchasable: boolean;
|
|
962
962
|
|
|
963
963
|
/**
|
|
964
|
-
*
|
|
964
|
+
* Product custom data
|
|
965
965
|
*/
|
|
966
|
-
|
|
966
|
+
listingCustom: EavArticleListing;
|
|
967
967
|
|
|
968
968
|
/**
|
|
969
969
|
* base capacity unit
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1221,20 +1221,25 @@ export interface Article {
|
|
|
1221
1221
|
permissibleForOrderProposal: boolean;
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* reference to Product
|
|
1225
1225
|
*/
|
|
1226
|
-
|
|
1226
|
+
productRef: ApiObjectReference;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
|
-
*
|
|
1229
|
+
* Versandlabeldruck
|
|
1230
1230
|
*/
|
|
1231
|
-
|
|
1231
|
+
shippingLabelPrinting: boolean;
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Artikel ist Gefahrgut
|
|
1235
1235
|
*/
|
|
1236
1236
|
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
|
+
/**
|
|
1239
|
+
* rabattierbarer Artikel?
|
|
1240
|
+
*/
|
|
1241
|
+
discountable: boolean;
|
|
1242
|
+
|
|
1238
1243
|
/**
|
|
1239
1244
|
* Kontingentartikel
|
|
1240
1245
|
*/
|
|
@@ -1245,11 +1250,6 @@ export interface Article {
|
|
|
1245
1250
|
*/
|
|
1246
1251
|
alternativeName: string;
|
|
1247
1252
|
|
|
1248
|
-
/**
|
|
1249
|
-
* rabattierbarer Artikel?
|
|
1250
|
-
*/
|
|
1251
|
-
discountable: boolean;
|
|
1252
|
-
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
1255
1255
|
*/
|
|
@@ -1514,14 +1514,14 @@ export interface ArticleListing {
|
|
|
1514
1514
|
alternativeName: WithDefaults<String>;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1517
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
customLowestPriceNet: number;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1522
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
proposedLowestPriceNet: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* der aktuelle listing stand
|
|
@@ -1681,25 +1681,30 @@ export const enum ArticleSerialType {
|
|
|
1681
1681
|
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* Nachschub ab
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
replenishmentFrom: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
|
-
*
|
|
1689
|
+
* Bestand im Lager
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
quantityInStock: number;
|
|
1692
1692
|
|
|
1693
1693
|
/**
|
|
1694
|
-
*
|
|
1694
|
+
* Meldebestand
|
|
1695
1695
|
*/
|
|
1696
|
-
|
|
1696
|
+
reorderPoint: number;
|
|
1697
1697
|
|
|
1698
1698
|
/**
|
|
1699
1699
|
* Bestellte Menge
|
|
1700
1700
|
*/
|
|
1701
1701
|
orderedQuantity: number;
|
|
1702
1702
|
|
|
1703
|
+
/**
|
|
1704
|
+
* Aktuelle Menge in Kommissionierung
|
|
1705
|
+
*/
|
|
1706
|
+
quantityInPicking: number;
|
|
1707
|
+
|
|
1703
1708
|
/**
|
|
1704
1709
|
* Nachschub auf
|
|
1705
1710
|
*/
|
|
@@ -1779,9 +1784,9 @@ export interface ArticleStorage {
|
|
|
1779
1784
|
export interface ArticleSupplier {
|
|
1780
1785
|
|
|
1781
1786
|
/**
|
|
1782
|
-
*
|
|
1787
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1783
1788
|
*/
|
|
1784
|
-
|
|
1789
|
+
useSupplierArticleDescription: boolean;
|
|
1785
1790
|
|
|
1786
1791
|
/**
|
|
1787
1792
|
* Anzeigename des Accounts
|
|
@@ -1789,9 +1794,9 @@ export interface ArticleSupplier {
|
|
|
1789
1794
|
accountDisplayName: string;
|
|
1790
1795
|
|
|
1791
1796
|
/**
|
|
1792
|
-
*
|
|
1797
|
+
* Lieferanten-Meldebestand
|
|
1793
1798
|
*/
|
|
1794
|
-
|
|
1799
|
+
supplierReportingStock: number;
|
|
1795
1800
|
|
|
1796
1801
|
/**
|
|
1797
1802
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1859,14 +1864,14 @@ export interface ArticleSupplier {
|
|
|
1859
1864
|
articleName: string;
|
|
1860
1865
|
|
|
1861
1866
|
/**
|
|
1862
|
-
*
|
|
1867
|
+
* Referenced Article
|
|
1863
1868
|
*/
|
|
1864
|
-
|
|
1869
|
+
articleId: number;
|
|
1865
1870
|
|
|
1866
1871
|
/**
|
|
1867
|
-
*
|
|
1872
|
+
* Lieferanten-Preise
|
|
1868
1873
|
*/
|
|
1869
|
-
|
|
1874
|
+
productPrices: Array<ProductPrice>;
|
|
1870
1875
|
|
|
1871
1876
|
/**
|
|
1872
1877
|
* Aktiv?
|
|
@@ -1903,11 +1908,6 @@ export interface ArticleSupplier {
|
|
|
1903
1908
|
*/
|
|
1904
1909
|
defaultNetPrice: number;
|
|
1905
1910
|
|
|
1906
|
-
/**
|
|
1907
|
-
* Einkaufseinheit
|
|
1908
|
-
*/
|
|
1909
|
-
purchaseUnit: number;
|
|
1910
|
-
|
|
1911
1911
|
/**
|
|
1912
1912
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1913
1913
|
*/
|
|
@@ -1918,6 +1918,11 @@ export interface ArticleSupplier {
|
|
|
1918
1918
|
*/
|
|
1919
1919
|
accountId: number;
|
|
1920
1920
|
|
|
1921
|
+
/**
|
|
1922
|
+
* Einkaufseinheit
|
|
1923
|
+
*/
|
|
1924
|
+
purchaseUnit: number;
|
|
1925
|
+
|
|
1921
1926
|
/**
|
|
1922
1927
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1923
1928
|
*/
|
|
@@ -2117,14 +2122,14 @@ export interface CountryReference {
|
|
|
2117
2122
|
export interface CreateNewDocumentRequest {
|
|
2118
2123
|
|
|
2119
2124
|
/**
|
|
2120
|
-
* Belegart
|
|
2125
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2121
2126
|
*/
|
|
2122
|
-
|
|
2127
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2123
2128
|
|
|
2124
2129
|
/**
|
|
2125
|
-
*
|
|
2130
|
+
* Belegart
|
|
2126
2131
|
*/
|
|
2127
|
-
|
|
2132
|
+
documentTypeLabel: string;
|
|
2128
2133
|
|
|
2129
2134
|
/**
|
|
2130
2135
|
* Details zum Beleg
|
|
@@ -2190,14 +2195,14 @@ export interface CrmActivity {
|
|
|
2190
2195
|
info: MetaInfo;
|
|
2191
2196
|
|
|
2192
2197
|
/**
|
|
2193
|
-
*
|
|
2198
|
+
* Aktivität intern abgerechnet?
|
|
2194
2199
|
*/
|
|
2195
|
-
|
|
2200
|
+
internalBilled: boolean;
|
|
2196
2201
|
|
|
2197
2202
|
/**
|
|
2198
|
-
*
|
|
2203
|
+
* geplante Dauer
|
|
2199
2204
|
*/
|
|
2200
|
-
|
|
2205
|
+
plannedDurationInSeconds: number;
|
|
2201
2206
|
|
|
2202
2207
|
/**
|
|
2203
2208
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2467,14 +2472,14 @@ export interface CrmDeal {
|
|
|
2467
2472
|
info: MetaInfo;
|
|
2468
2473
|
|
|
2469
2474
|
/**
|
|
2470
|
-
*
|
|
2475
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2471
2476
|
*/
|
|
2472
|
-
|
|
2477
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2473
2478
|
|
|
2474
2479
|
/**
|
|
2475
|
-
*
|
|
2480
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2476
2481
|
*/
|
|
2477
|
-
|
|
2482
|
+
assignedUserRef: ApiObjectReference;
|
|
2478
2483
|
|
|
2479
2484
|
/**
|
|
2480
2485
|
* Chance (in Prozent)
|
|
@@ -2748,14 +2753,14 @@ export interface CrmProject {
|
|
|
2748
2753
|
priorityRef: ApiObjectReference;
|
|
2749
2754
|
|
|
2750
2755
|
/**
|
|
2751
|
-
*
|
|
2756
|
+
* Phase
|
|
2752
2757
|
*/
|
|
2753
|
-
|
|
2758
|
+
phaseRef: ApiObjectReference;
|
|
2754
2759
|
|
|
2755
2760
|
/**
|
|
2756
|
-
*
|
|
2761
|
+
* Projektleiter vom Auftragnehmer
|
|
2757
2762
|
*/
|
|
2758
|
-
|
|
2763
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2759
2764
|
|
|
2760
2765
|
/**
|
|
2761
2766
|
* Aufgaben-Nummer
|
|
@@ -2808,14 +2813,14 @@ export interface CrmProject {
|
|
|
2808
2813
|
info: MetaInfo;
|
|
2809
2814
|
|
|
2810
2815
|
/**
|
|
2811
|
-
*
|
|
2816
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2812
2817
|
*/
|
|
2813
|
-
|
|
2818
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2814
2819
|
|
|
2815
2820
|
/**
|
|
2816
|
-
*
|
|
2821
|
+
* Projektleiter vom Auftraggeber
|
|
2817
2822
|
*/
|
|
2818
|
-
|
|
2823
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2819
2824
|
|
|
2820
2825
|
/**
|
|
2821
2826
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3059,9 +3064,9 @@ export interface CrmSubType {
|
|
|
3059
3064
|
export interface CrmTask {
|
|
3060
3065
|
|
|
3061
3066
|
/**
|
|
3062
|
-
*
|
|
3067
|
+
* Liste von Erinnerungen
|
|
3063
3068
|
*/
|
|
3064
|
-
|
|
3069
|
+
reminders: Array<CrmReminder>;
|
|
3065
3070
|
|
|
3066
3071
|
/**
|
|
3067
3072
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3069,9 +3074,9 @@ export interface CrmTask {
|
|
|
3069
3074
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3070
3075
|
|
|
3071
3076
|
/**
|
|
3072
|
-
*
|
|
3077
|
+
* Angebot
|
|
3073
3078
|
*/
|
|
3074
|
-
|
|
3079
|
+
customerOfferRef: DocumentRef;
|
|
3075
3080
|
|
|
3076
3081
|
/**
|
|
3077
3082
|
* Notizen
|
|
@@ -3438,14 +3443,14 @@ export interface CurrencyReference {
|
|
|
3438
3443
|
export interface Customer {
|
|
3439
3444
|
|
|
3440
3445
|
/**
|
|
3441
|
-
*
|
|
3446
|
+
* reference to customer group
|
|
3442
3447
|
*/
|
|
3443
|
-
|
|
3448
|
+
customerGroupRef: ApiObjectReference;
|
|
3444
3449
|
|
|
3445
3450
|
/**
|
|
3446
|
-
*
|
|
3451
|
+
* Option für die Stapelverarbeitung
|
|
3447
3452
|
*/
|
|
3448
|
-
|
|
3453
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3454
|
|
|
3450
3455
|
/**
|
|
3451
3456
|
* Kreditlimit
|
|
@@ -3453,14 +3458,14 @@ export interface Customer {
|
|
|
3453
3458
|
maximalLoan: number;
|
|
3454
3459
|
|
|
3455
3460
|
/**
|
|
3456
|
-
*
|
|
3461
|
+
* collective billable
|
|
3457
3462
|
*/
|
|
3458
|
-
|
|
3463
|
+
collectiveBillable: boolean;
|
|
3459
3464
|
|
|
3460
3465
|
/**
|
|
3461
|
-
*
|
|
3466
|
+
* Maximal mögliche Lieferungen
|
|
3462
3467
|
*/
|
|
3463
|
-
|
|
3468
|
+
maxDeliveries: number;
|
|
3464
3469
|
|
|
3465
3470
|
/**
|
|
3466
3471
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3503,14 +3508,14 @@ export interface Customer {
|
|
|
3503
3508
|
info: MetaInfo;
|
|
3504
3509
|
|
|
3505
3510
|
/**
|
|
3506
|
-
*
|
|
3511
|
+
* reference to the delivery method
|
|
3507
3512
|
*/
|
|
3508
|
-
|
|
3513
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3509
3514
|
|
|
3510
3515
|
/**
|
|
3511
|
-
*
|
|
3516
|
+
* tax able or tax free
|
|
3512
3517
|
*/
|
|
3513
|
-
|
|
3518
|
+
taxable: boolean;
|
|
3514
3519
|
|
|
3515
3520
|
/**
|
|
3516
3521
|
* active true/false
|
|
@@ -3644,14 +3649,14 @@ export interface DeliveryMethod {
|
|
|
3644
3649
|
translations: Array<DocumentTypeTerm>;
|
|
3645
3650
|
|
|
3646
3651
|
/**
|
|
3647
|
-
*
|
|
3652
|
+
* Gültige Ländercodes
|
|
3648
3653
|
*/
|
|
3649
|
-
|
|
3654
|
+
validCountryCodes: Array<string>;
|
|
3650
3655
|
|
|
3651
3656
|
/**
|
|
3652
|
-
*
|
|
3657
|
+
* Versand-Anbieter
|
|
3653
3658
|
*/
|
|
3654
|
-
|
|
3659
|
+
vdsCarrierId: number;
|
|
3655
3660
|
|
|
3656
3661
|
/**
|
|
3657
3662
|
* Standardgewichtseinheit
|
|
@@ -3732,14 +3737,14 @@ export interface DeliveryTerm {
|
|
|
3732
3737
|
version: number;
|
|
3733
3738
|
|
|
3734
3739
|
/**
|
|
3735
|
-
*
|
|
3740
|
+
* translations
|
|
3736
3741
|
*/
|
|
3737
|
-
|
|
3742
|
+
translations: Array<DocumentTypeTerm>;
|
|
3738
3743
|
|
|
3739
3744
|
/**
|
|
3740
|
-
*
|
|
3745
|
+
* information, how the shipping charges should be calculated
|
|
3741
3746
|
*/
|
|
3742
|
-
|
|
3747
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3743
3748
|
|
|
3744
3749
|
/**
|
|
3745
3750
|
* Lieferarten
|
|
@@ -3752,14 +3757,14 @@ export interface DeliveryTerm {
|
|
|
3752
3757
|
id: number;
|
|
3753
3758
|
|
|
3754
3759
|
/**
|
|
3755
|
-
*
|
|
3760
|
+
* free shipping net value
|
|
3756
3761
|
*/
|
|
3757
|
-
|
|
3762
|
+
freeShippingNetValue: number;
|
|
3758
3763
|
|
|
3759
3764
|
/**
|
|
3760
|
-
*
|
|
3765
|
+
* Versandkostenartikel
|
|
3761
3766
|
*/
|
|
3762
|
-
|
|
3767
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3763
3768
|
|
|
3764
3769
|
/**
|
|
3765
3770
|
* MetaInformations for this Object
|
|
@@ -3815,14 +3820,14 @@ export interface Document {
|
|
|
3815
3820
|
totalVat: number;
|
|
3816
3821
|
|
|
3817
3822
|
/**
|
|
3818
|
-
*
|
|
3823
|
+
* Standardlager für neue Positionen
|
|
3819
3824
|
*/
|
|
3820
|
-
|
|
3825
|
+
defaultStorageRef: ApiObjectReference;
|
|
3821
3826
|
|
|
3822
3827
|
/**
|
|
3823
|
-
*
|
|
3828
|
+
* Name der bestellenden Person
|
|
3824
3829
|
*/
|
|
3825
|
-
|
|
3830
|
+
orderedBy: string;
|
|
3826
3831
|
|
|
3827
3832
|
/**
|
|
3828
3833
|
* Lieferadresse
|
|
@@ -3858,9 +3863,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3858
3863
|
deliveryQuantityPackages: number;
|
|
3859
3864
|
|
|
3860
3865
|
/**
|
|
3861
|
-
*
|
|
3866
|
+
* Bestellnummer aus Vorbeleg
|
|
3862
3867
|
*/
|
|
3863
|
-
|
|
3868
|
+
referencedOrderNumber: string;
|
|
3864
3869
|
|
|
3865
3870
|
/**
|
|
3866
3871
|
* Leitweg-ID
|
|
@@ -3868,9 +3873,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3868
3873
|
buyerReference: string;
|
|
3869
3874
|
|
|
3870
3875
|
/**
|
|
3871
|
-
*
|
|
3876
|
+
* Steuerpflichtig oder steuerfrei
|
|
3872
3877
|
*/
|
|
3873
|
-
|
|
3878
|
+
taxable: boolean;
|
|
3874
3879
|
|
|
3875
3880
|
/**
|
|
3876
3881
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4044,26 +4049,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4044
4049
|
*/
|
|
4045
4050
|
calculationMode: CalculationMode;
|
|
4046
4051
|
|
|
4047
|
-
/**
|
|
4048
|
-
* Wird vom Workflow verarbeitet?
|
|
4049
|
-
*/
|
|
4050
|
-
processedByWorkflow: boolean;
|
|
4051
|
-
|
|
4052
4052
|
/**
|
|
4053
4053
|
* Referenz auf Zahlungsbedingung
|
|
4054
4054
|
*/
|
|
4055
4055
|
paymentTermRef: PaymentTermRef;
|
|
4056
4056
|
|
|
4057
4057
|
/**
|
|
4058
|
-
*
|
|
4058
|
+
* Wird vom Workflow verarbeitet?
|
|
4059
4059
|
*/
|
|
4060
|
-
|
|
4060
|
+
processedByWorkflow: boolean;
|
|
4061
4061
|
|
|
4062
4062
|
/**
|
|
4063
4063
|
* Telefon an Versender übergeben
|
|
4064
4064
|
*/
|
|
4065
4065
|
forwardPhoneToShipper: boolean;
|
|
4066
4066
|
|
|
4067
|
+
/**
|
|
4068
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4069
|
+
*/
|
|
4070
|
+
baseTotalDocumentPriceModifier: number;
|
|
4071
|
+
|
|
4067
4072
|
/**
|
|
4068
4073
|
* Liste der Belegtexte
|
|
4069
4074
|
*/
|
|
@@ -4085,14 +4090,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4085
4090
|
defaultAddress: DocumentAddress;
|
|
4086
4091
|
|
|
4087
4092
|
/**
|
|
4088
|
-
*
|
|
4093
|
+
* Leistungsdatum
|
|
4089
4094
|
*/
|
|
4090
|
-
|
|
4095
|
+
performanceDate: ScriptingDate;
|
|
4091
4096
|
|
|
4092
4097
|
/**
|
|
4093
|
-
*
|
|
4098
|
+
* Verarbeitungsoption für Stapel
|
|
4094
4099
|
*/
|
|
4095
|
-
|
|
4100
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4096
4101
|
|
|
4097
4102
|
/**
|
|
4098
4103
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4120,14 +4125,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4120
4125
|
additionalInfo: DocumentAdditionalInfo;
|
|
4121
4126
|
|
|
4122
4127
|
/**
|
|
4123
|
-
*
|
|
4128
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4124
4129
|
*/
|
|
4125
|
-
|
|
4130
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4126
4131
|
|
|
4127
4132
|
/**
|
|
4128
|
-
*
|
|
4133
|
+
* Bestelldatum
|
|
4129
4134
|
*/
|
|
4130
|
-
|
|
4135
|
+
orderedOn: ScriptingDate;
|
|
4131
4136
|
|
|
4132
4137
|
/**
|
|
4133
4138
|
* MetaInformations for this Object
|
|
@@ -4269,22 +4274,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4269
4274
|
*/
|
|
4270
4275
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4271
4276
|
|
|
4272
|
-
/**
|
|
4273
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4274
|
-
*/
|
|
4275
|
-
taxIdentificationNumber: string;
|
|
4276
|
-
|
|
4277
4277
|
/**
|
|
4278
4278
|
* Statusinstanz des Belegs
|
|
4279
4279
|
*/
|
|
4280
4280
|
documentState: DocumentTypeState;
|
|
4281
4281
|
|
|
4282
4282
|
/**
|
|
4283
|
-
*
|
|
4284
|
-
true wenn die Quittung ausbalanciert ist
|
|
4285
|
-
|
|
4283
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4286
4284
|
*/
|
|
4287
|
-
|
|
4285
|
+
taxIdentificationNumber: string;
|
|
4288
4286
|
|
|
4289
4287
|
/**
|
|
4290
4288
|
* Rückgeld
|
|
@@ -4296,6 +4294,13 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4296
4294
|
*/
|
|
4297
4295
|
deliveryTermRef: ApiObjectReference;
|
|
4298
4296
|
|
|
4297
|
+
/**
|
|
4298
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4299
|
+
true wenn die Quittung ausbalanciert ist
|
|
4300
|
+
|
|
4301
|
+
*/
|
|
4302
|
+
posReceiptBalanced: boolean;
|
|
4303
|
+
|
|
4299
4304
|
/**
|
|
4300
4305
|
* Gesamtbruttogewicht
|
|
4301
4306
|
*/
|
|
@@ -4345,14 +4350,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4345
4350
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4346
4351
|
|
|
4347
4352
|
/**
|
|
4348
|
-
*
|
|
4353
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4349
4354
|
*/
|
|
4350
|
-
|
|
4355
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4351
4356
|
|
|
4352
4357
|
/**
|
|
4353
|
-
*
|
|
4358
|
+
* Herkunft der Sprache
|
|
4354
4359
|
*/
|
|
4355
|
-
|
|
4360
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4356
4361
|
|
|
4357
4362
|
/**
|
|
4358
4363
|
* Herkunft der Käufer-Referenz
|
|
@@ -4485,14 +4490,14 @@ export interface DocumentAddress {
|
|
|
4485
4490
|
postOfficeBox: string;
|
|
4486
4491
|
|
|
4487
4492
|
/**
|
|
4488
|
-
*
|
|
4493
|
+
* Street
|
|
4489
4494
|
*/
|
|
4490
|
-
|
|
4495
|
+
street: string;
|
|
4491
4496
|
|
|
4492
4497
|
/**
|
|
4493
|
-
*
|
|
4498
|
+
* country code IsoAlpha3
|
|
4494
4499
|
*/
|
|
4495
|
-
|
|
4500
|
+
countryCode: string;
|
|
4496
4501
|
|
|
4497
4502
|
/**
|
|
4498
4503
|
* Unique identifier of the Object
|
|
@@ -4697,14 +4702,14 @@ export interface DocumentContractDetail {
|
|
|
4697
4702
|
runtimeToDate: ScriptingDate;
|
|
4698
4703
|
|
|
4699
4704
|
/**
|
|
4700
|
-
*
|
|
4705
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4701
4706
|
*/
|
|
4702
|
-
|
|
4707
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4703
4708
|
|
|
4704
4709
|
/**
|
|
4705
|
-
*
|
|
4710
|
+
* Nächste Fälligkeit
|
|
4706
4711
|
*/
|
|
4707
|
-
|
|
4712
|
+
nextDueDate: ScriptingDate;
|
|
4708
4713
|
|
|
4709
4714
|
/**
|
|
4710
4715
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4939,14 +4944,14 @@ export interface DocumentLine {
|
|
|
4939
4944
|
number: string;
|
|
4940
4945
|
|
|
4941
4946
|
/**
|
|
4942
|
-
*
|
|
4947
|
+
* Referenz zur Kundenauftragszeile
|
|
4943
4948
|
*/
|
|
4944
|
-
|
|
4949
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4945
4950
|
|
|
4946
4951
|
/**
|
|
4947
|
-
*
|
|
4952
|
+
* Gesamtbruttogewicht
|
|
4948
4953
|
*/
|
|
4949
|
-
|
|
4954
|
+
totalGrossWeight: number;
|
|
4950
4955
|
|
|
4951
4956
|
/**
|
|
4952
4957
|
* skontierbare Position?
|
|
@@ -4969,14 +4974,14 @@ export interface DocumentLine {
|
|
|
4969
4974
|
financeBooking: DocumentFinanceBooking;
|
|
4970
4975
|
|
|
4971
4976
|
/**
|
|
4972
|
-
*
|
|
4977
|
+
* Gesamtpreis Position in Basiswährung
|
|
4973
4978
|
*/
|
|
4974
|
-
|
|
4979
|
+
baseTotalLinePrice: number;
|
|
4975
4980
|
|
|
4976
4981
|
/**
|
|
4977
|
-
*
|
|
4982
|
+
* Positionstyp
|
|
4978
4983
|
*/
|
|
4979
|
-
|
|
4984
|
+
lineType: DocumentLineType;
|
|
4980
4985
|
|
|
4981
4986
|
/**
|
|
4982
4987
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5019,14 +5024,14 @@ export interface DocumentLine {
|
|
|
5019
5024
|
externalReferenceVds: string;
|
|
5020
5025
|
|
|
5021
5026
|
/**
|
|
5022
|
-
*
|
|
5027
|
+
* Preis pro Einheit in Basiswährung
|
|
5023
5028
|
*/
|
|
5024
|
-
|
|
5029
|
+
basePrice: number;
|
|
5025
5030
|
|
|
5026
5031
|
/**
|
|
5027
|
-
*
|
|
5032
|
+
* Serientyp
|
|
5028
5033
|
*/
|
|
5029
|
-
|
|
5034
|
+
serialType: ArticleSerialType;
|
|
5030
5035
|
|
|
5031
5036
|
/**
|
|
5032
5037
|
* MetaInformations for this Object
|
|
@@ -5159,14 +5164,14 @@ export interface DocumentLine {
|
|
|
5159
5164
|
sourceLineRef: DocumentLineRef;
|
|
5160
5165
|
|
|
5161
5166
|
/**
|
|
5162
|
-
*
|
|
5167
|
+
* Preisherkunft
|
|
5163
5168
|
*/
|
|
5164
|
-
|
|
5169
|
+
priceOrigin: ProductPriceOrigin;
|
|
5165
5170
|
|
|
5166
5171
|
/**
|
|
5167
|
-
*
|
|
5172
|
+
* Referenz zum Lager
|
|
5168
5173
|
*/
|
|
5169
|
-
|
|
5174
|
+
storage: ApiObjectReference;
|
|
5170
5175
|
|
|
5171
5176
|
/**
|
|
5172
5177
|
* Preisermittlungskriterien
|
|
@@ -5189,14 +5194,14 @@ export interface DocumentLine {
|
|
|
5189
5194
|
unitType: UnitTypeReference;
|
|
5190
5195
|
|
|
5191
5196
|
/**
|
|
5192
|
-
*
|
|
5197
|
+
* Referenz zur Basiszeile
|
|
5193
5198
|
*/
|
|
5194
|
-
|
|
5199
|
+
baseLineId: number;
|
|
5195
5200
|
|
|
5196
5201
|
/**
|
|
5197
|
-
*
|
|
5202
|
+
* Zubehör Einfügeart
|
|
5198
5203
|
*/
|
|
5199
|
-
|
|
5204
|
+
insertTerm: AccessoryInsertTerm;
|
|
5200
5205
|
|
|
5201
5206
|
/**
|
|
5202
5207
|
* Einheit Bruttogewicht
|
|
@@ -5224,14 +5229,14 @@ export interface DocumentLine {
|
|
|
5224
5229
|
productType: ProductType;
|
|
5225
5230
|
|
|
5226
5231
|
/**
|
|
5227
|
-
*
|
|
5232
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5228
5233
|
*/
|
|
5229
|
-
|
|
5234
|
+
baseSalesValueNet: number;
|
|
5230
5235
|
|
|
5231
5236
|
/**
|
|
5232
|
-
*
|
|
5237
|
+
* Vertragsinformationen
|
|
5233
5238
|
*/
|
|
5234
|
-
|
|
5239
|
+
contractDetail: DocumentContractDetail;
|
|
5235
5240
|
|
|
5236
5241
|
/**
|
|
5237
5242
|
* Einheit Nettogewicht
|
|
@@ -5463,14 +5468,14 @@ export interface DocumentLineComponent {
|
|
|
5463
5468
|
custom: EavDocumentlinecomponent;
|
|
5464
5469
|
|
|
5465
5470
|
/**
|
|
5466
|
-
*
|
|
5471
|
+
* Gelieferte Menge
|
|
5467
5472
|
*/
|
|
5468
|
-
|
|
5473
|
+
quantityCommitted: number;
|
|
5469
5474
|
|
|
5470
5475
|
/**
|
|
5471
|
-
*
|
|
5476
|
+
* Referenz auf den Artikel der Komponente
|
|
5472
5477
|
*/
|
|
5473
|
-
|
|
5478
|
+
articleId: number;
|
|
5474
5479
|
|
|
5475
5480
|
/**
|
|
5476
5481
|
* Beschreibung des Artikels
|
|
@@ -5715,18 +5720,18 @@ export interface DocumentLinePosDetail {
|
|
|
5715
5720
|
/**
|
|
5716
5721
|
* Status der externen Zahlung
|
|
5717
5722
|
*/
|
|
5718
|
-
externalPaymentStatus: PosPaymentStatus;
|
|
5719
|
-
|
|
5720
|
-
/**
|
|
5721
|
-
* Typ der Position
|
|
5722
|
-
*/
|
|
5723
|
-
posLineType: PosLineType;
|
|
5723
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5724
5724
|
|
|
5725
5725
|
/**
|
|
5726
5726
|
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5727
5727
|
*/
|
|
5728
5728
|
externalPaymentId: string;
|
|
5729
5729
|
|
|
5730
|
+
/**
|
|
5731
|
+
* Typ der Position
|
|
5732
|
+
*/
|
|
5733
|
+
posLineType: PosLineType;
|
|
5734
|
+
|
|
5730
5735
|
/**
|
|
5731
5736
|
* Unique identifier of the Object
|
|
5732
5737
|
*/
|
|
@@ -5943,14 +5948,14 @@ export interface DocumentPosPayment {
|
|
|
5943
5948
|
externalPaymentErrorMessage: string;
|
|
5944
5949
|
|
|
5945
5950
|
/**
|
|
5946
|
-
*
|
|
5951
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5947
5952
|
*/
|
|
5948
|
-
|
|
5953
|
+
externalPaymentId: string;
|
|
5949
5954
|
|
|
5950
5955
|
/**
|
|
5951
|
-
*
|
|
5956
|
+
* Typ der Position
|
|
5952
5957
|
*/
|
|
5953
|
-
|
|
5958
|
+
posLineType: PosLineType;
|
|
5954
5959
|
|
|
5955
5960
|
/**
|
|
5956
5961
|
* Unique identifier of the Object
|
|
@@ -6208,14 +6213,14 @@ export interface DocumentText {
|
|
|
6208
6213
|
transferableIntoSubsequentDocuments: boolean;
|
|
6209
6214
|
|
|
6210
6215
|
/**
|
|
6211
|
-
*
|
|
6216
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6212
6217
|
*/
|
|
6213
|
-
|
|
6218
|
+
textPosition: TextPosition;
|
|
6214
6219
|
|
|
6215
6220
|
/**
|
|
6216
|
-
*
|
|
6221
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6217
6222
|
*/
|
|
6218
|
-
|
|
6223
|
+
deleted: boolean;
|
|
6219
6224
|
|
|
6220
6225
|
/**
|
|
6221
6226
|
* textBaustein Vorlage
|
|
@@ -7080,26 +7085,26 @@ export interface PaymentTerm {
|
|
|
7080
7085
|
*/
|
|
7081
7086
|
paymentDiscount2: number;
|
|
7082
7087
|
|
|
7083
|
-
/**
|
|
7084
|
-
* Percent for Discount 1
|
|
7085
|
-
*/
|
|
7086
|
-
paymentDiscount1: number;
|
|
7087
|
-
|
|
7088
7088
|
/**
|
|
7089
7089
|
* printDescription
|
|
7090
7090
|
*/
|
|
7091
7091
|
printDescription: string;
|
|
7092
7092
|
|
|
7093
7093
|
/**
|
|
7094
|
-
*
|
|
7094
|
+
* Percent for Discount 1
|
|
7095
7095
|
*/
|
|
7096
|
-
|
|
7096
|
+
paymentDiscount1: number;
|
|
7097
7097
|
|
|
7098
7098
|
/**
|
|
7099
7099
|
* for deposit: remaining term
|
|
7100
7100
|
*/
|
|
7101
7101
|
remainingTermRef: ApiObjectReference;
|
|
7102
7102
|
|
|
7103
|
+
/**
|
|
7104
|
+
* Days for Discount 1
|
|
7105
|
+
*/
|
|
7106
|
+
paymentDays1: number;
|
|
7107
|
+
|
|
7103
7108
|
/**
|
|
7104
7109
|
* Days for Discount 2
|
|
7105
7110
|
*/
|
|
@@ -7422,14 +7427,14 @@ export interface Picklist {
|
|
|
7422
7427
|
export interface PicklistLine {
|
|
7423
7428
|
|
|
7424
7429
|
/**
|
|
7425
|
-
*
|
|
7430
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7426
7431
|
*/
|
|
7427
|
-
|
|
7432
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7428
7433
|
|
|
7429
7434
|
/**
|
|
7430
|
-
*
|
|
7435
|
+
* Gesammelte Menge der Position
|
|
7431
7436
|
*/
|
|
7432
|
-
|
|
7437
|
+
quantityCollected: number;
|
|
7433
7438
|
|
|
7434
7439
|
/**
|
|
7435
7440
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7467,14 +7472,14 @@ export interface PicklistLine {
|
|
|
7467
7472
|
version: number;
|
|
7468
7473
|
|
|
7469
7474
|
/**
|
|
7470
|
-
*
|
|
7475
|
+
* ID der Quell-Dokumentposition
|
|
7471
7476
|
*/
|
|
7472
|
-
|
|
7477
|
+
sourceDocumentLineId: number;
|
|
7473
7478
|
|
|
7474
7479
|
/**
|
|
7475
|
-
*
|
|
7480
|
+
* Lageranzeigename
|
|
7476
7481
|
*/
|
|
7477
|
-
|
|
7482
|
+
storageDisplayName: string;
|
|
7478
7483
|
|
|
7479
7484
|
/**
|
|
7480
7485
|
* Artikelnummer
|
|
@@ -7628,14 +7633,14 @@ export interface PicklistLineComponent {
|
|
|
7628
7633
|
targetDocumentLineComponentId: number;
|
|
7629
7634
|
|
|
7630
7635
|
/**
|
|
7631
|
-
*
|
|
7636
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7632
7637
|
*/
|
|
7633
|
-
|
|
7638
|
+
quantityPerAssemblyGroup: number;
|
|
7634
7639
|
|
|
7635
7640
|
/**
|
|
7636
|
-
*
|
|
7641
|
+
* abweichende Artikelbezeichnung
|
|
7637
7642
|
*/
|
|
7638
|
-
|
|
7643
|
+
articleAlternativeName: string;
|
|
7639
7644
|
|
|
7640
7645
|
/**
|
|
7641
7646
|
* Verpackte Menge der Position
|
|
@@ -7801,26 +7806,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7801
7806
|
*/
|
|
7802
7807
|
maxArticleCountPerOrder: number;
|
|
7803
7808
|
|
|
7804
|
-
/**
|
|
7805
|
-
* Alternative Selektion in VQL
|
|
7806
|
-
*/
|
|
7807
|
-
alternativeSelectionInVql: string;
|
|
7808
|
-
|
|
7809
7809
|
/**
|
|
7810
7810
|
* Maximaler Auftragswert
|
|
7811
7811
|
*/
|
|
7812
7812
|
maxOrderValue: number;
|
|
7813
7813
|
|
|
7814
7814
|
/**
|
|
7815
|
-
*
|
|
7815
|
+
* Alternative Selektion in VQL
|
|
7816
7816
|
*/
|
|
7817
|
-
|
|
7817
|
+
alternativeSelectionInVql: string;
|
|
7818
7818
|
|
|
7819
7819
|
/**
|
|
7820
7820
|
* Nur vollständig lieferbare Positionen
|
|
7821
7821
|
*/
|
|
7822
7822
|
onlyFullDeliverableOrderLines: boolean;
|
|
7823
7823
|
|
|
7824
|
+
/**
|
|
7825
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7826
|
+
*/
|
|
7827
|
+
maxOrderCount: number;
|
|
7828
|
+
|
|
7824
7829
|
/**
|
|
7825
7830
|
* Selektion über den Bereich vom Lieferdatum
|
|
7826
7831
|
*/
|
|
@@ -7894,11 +7899,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7894
7899
|
*/
|
|
7895
7900
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7896
7901
|
|
|
7897
|
-
/**
|
|
7898
|
-
* Der zu verwendende Pickwagen
|
|
7899
|
-
*/
|
|
7900
|
-
orderPickingTrolleyRef: ApiObjectReference;
|
|
7901
|
-
|
|
7902
7902
|
/**
|
|
7903
7903
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7904
7904
|
*/
|
|
@@ -7910,15 +7910,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7910
7910
|
specifyStorageBins: boolean;
|
|
7911
7911
|
|
|
7912
7912
|
/**
|
|
7913
|
-
*
|
|
7913
|
+
* Der zu verwendende Pickwagen
|
|
7914
7914
|
*/
|
|
7915
|
-
|
|
7915
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7916
7916
|
|
|
7917
7917
|
/**
|
|
7918
7918
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7919
7919
|
*/
|
|
7920
7920
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
7921
7921
|
|
|
7922
|
+
/**
|
|
7923
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7924
|
+
*/
|
|
7925
|
+
sortByRoutePosition: boolean;
|
|
7926
|
+
|
|
7922
7927
|
/**
|
|
7923
7928
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
7924
7929
|
*/
|
|
@@ -7983,14 +7988,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7983
7988
|
allowFullConfirmation: boolean;
|
|
7984
7989
|
|
|
7985
7990
|
/**
|
|
7986
|
-
*
|
|
7991
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7987
7992
|
*/
|
|
7988
|
-
|
|
7993
|
+
allowPickingOfServiceArticles: boolean;
|
|
7989
7994
|
|
|
7990
7995
|
/**
|
|
7991
|
-
*
|
|
7996
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7992
7997
|
*/
|
|
7993
|
-
|
|
7998
|
+
useDigitalPicklist: boolean;
|
|
7994
7999
|
|
|
7995
8000
|
/**
|
|
7996
8001
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -8003,14 +8008,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8003
8008
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8004
8009
|
|
|
8005
8010
|
/**
|
|
8006
|
-
*
|
|
8011
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8007
8012
|
*/
|
|
8008
|
-
|
|
8013
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8009
8014
|
|
|
8010
8015
|
/**
|
|
8011
|
-
*
|
|
8016
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8012
8017
|
*/
|
|
8013
|
-
|
|
8018
|
+
autoDeterminationOfLots: boolean;
|
|
8014
8019
|
|
|
8015
8020
|
/**
|
|
8016
8021
|
* Zielmengen in Masken verstecken?
|
|
@@ -8085,14 +8090,14 @@ export interface PriceSelectionCriteria {
|
|
|
8085
8090
|
quantity: number;
|
|
8086
8091
|
|
|
8087
8092
|
/**
|
|
8088
|
-
* Liste von
|
|
8093
|
+
* Liste von Account-IDs
|
|
8089
8094
|
*/
|
|
8090
|
-
|
|
8095
|
+
accountIds: Array<number>;
|
|
8091
8096
|
|
|
8092
8097
|
/**
|
|
8093
|
-
* Liste von
|
|
8098
|
+
* Liste von Artikel-IDs
|
|
8094
8099
|
*/
|
|
8095
|
-
|
|
8100
|
+
articleIds: Array<number>;
|
|
8096
8101
|
|
|
8097
8102
|
/**
|
|
8098
8103
|
* ein qualifier
|
|
@@ -8274,14 +8279,14 @@ export interface ProductDiscount {
|
|
|
8274
8279
|
validFrom: ScriptingDate;
|
|
8275
8280
|
|
|
8276
8281
|
/**
|
|
8277
|
-
*
|
|
8282
|
+
* Bestimmt die Art des Rabatts
|
|
8278
8283
|
*/
|
|
8279
|
-
|
|
8284
|
+
modifierType: PriceModifierType;
|
|
8280
8285
|
|
|
8281
8286
|
/**
|
|
8282
|
-
*
|
|
8287
|
+
* Warengruppe
|
|
8283
8288
|
*/
|
|
8284
|
-
|
|
8289
|
+
productGroupRef: ApiObjectReference;
|
|
8285
8290
|
|
|
8286
8291
|
/**
|
|
8287
8292
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8308,11 +8313,6 @@ export interface ProductDiscount {
|
|
|
8308
8313
|
*/
|
|
8309
8314
|
modifierValue: number;
|
|
8310
8315
|
|
|
8311
|
-
/**
|
|
8312
|
-
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
8313
|
-
*/
|
|
8314
|
-
valueType: ValueType;
|
|
8315
|
-
|
|
8316
8316
|
/**
|
|
8317
8317
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
8318
8318
|
*/
|
|
@@ -8328,6 +8328,11 @@ export interface ProductDiscount {
|
|
|
8328
8328
|
*/
|
|
8329
8329
|
validUntil: ScriptingDate;
|
|
8330
8330
|
|
|
8331
|
+
/**
|
|
8332
|
+
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
8333
|
+
*/
|
|
8334
|
+
modifierValueType: ValueType;
|
|
8335
|
+
|
|
8331
8336
|
/**
|
|
8332
8337
|
* Name des Rabatts
|
|
8333
8338
|
*/
|
|
@@ -8528,14 +8533,14 @@ export interface ProductPrice {
|
|
|
8528
8533
|
qualifier: ProductPriceQualifier;
|
|
8529
8534
|
|
|
8530
8535
|
/**
|
|
8531
|
-
*
|
|
8536
|
+
* Preisbasis
|
|
8532
8537
|
*/
|
|
8533
|
-
|
|
8538
|
+
priceBase: ArticlePriceBase;
|
|
8534
8539
|
|
|
8535
8540
|
/**
|
|
8536
|
-
*
|
|
8541
|
+
* Aktionpreis
|
|
8537
8542
|
*/
|
|
8538
|
-
|
|
8543
|
+
specialOfferPrice: boolean;
|
|
8539
8544
|
|
|
8540
8545
|
/**
|
|
8541
8546
|
* Gültig bis
|
|
@@ -8591,26 +8596,26 @@ export interface Referenceable {
|
|
|
8591
8596
|
|
|
8592
8597
|
export interface RequestDocument {
|
|
8593
8598
|
|
|
8594
|
-
/**
|
|
8595
|
-
* Belegdatum
|
|
8596
|
-
*/
|
|
8597
|
-
documentDate: ScriptingDate;
|
|
8598
|
-
|
|
8599
8599
|
/**
|
|
8600
8600
|
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8601
8601
|
*/
|
|
8602
8602
|
incomingGoodsStorageBinId: number;
|
|
8603
8603
|
|
|
8604
8604
|
/**
|
|
8605
|
-
*
|
|
8605
|
+
* Belegdatum
|
|
8606
8606
|
*/
|
|
8607
|
-
|
|
8607
|
+
documentDate: ScriptingDate;
|
|
8608
8608
|
|
|
8609
8609
|
/**
|
|
8610
8610
|
* ID der Kassenschublade (bei POS)
|
|
8611
8611
|
*/
|
|
8612
8612
|
cashDrawerId: number;
|
|
8613
8613
|
|
|
8614
|
+
/**
|
|
8615
|
+
* Der Anzahlungsbetrag
|
|
8616
|
+
*/
|
|
8617
|
+
depositPaymentAmount: number;
|
|
8618
|
+
|
|
8614
8619
|
/**
|
|
8615
8620
|
* Leistungsdatum
|
|
8616
8621
|
*/
|
|
@@ -8677,14 +8682,14 @@ export interface RequestDocument {
|
|
|
8677
8682
|
lines: Array<RequestDocumentLine>;
|
|
8678
8683
|
|
|
8679
8684
|
/**
|
|
8680
|
-
*
|
|
8685
|
+
* ID der Kasse (bei POS)
|
|
8681
8686
|
*/
|
|
8682
|
-
|
|
8687
|
+
posRegisterId: number;
|
|
8683
8688
|
|
|
8684
8689
|
/**
|
|
8685
|
-
*
|
|
8690
|
+
* Die Vertragsdetails
|
|
8686
8691
|
*/
|
|
8687
|
-
|
|
8692
|
+
contractDetail: DocumentContractDetail;
|
|
8688
8693
|
|
|
8689
8694
|
/**
|
|
8690
8695
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -8825,14 +8830,14 @@ export interface RequestDocumentLine {
|
|
|
8825
8830
|
dropShippingPolicy: DropShippingPolicy;
|
|
8826
8831
|
|
|
8827
8832
|
/**
|
|
8828
|
-
*
|
|
8833
|
+
* Positionsnummer der Artikel
|
|
8829
8834
|
*/
|
|
8830
|
-
|
|
8835
|
+
positionOfArticleLine: number;
|
|
8831
8836
|
|
|
8832
8837
|
/**
|
|
8833
|
-
*
|
|
8838
|
+
* (optional) Lager-ID
|
|
8834
8839
|
*/
|
|
8835
|
-
|
|
8840
|
+
storageId: number;
|
|
8836
8841
|
|
|
8837
8842
|
/**
|
|
8838
8843
|
* Vertragsdetails zur Belegposition
|
|
@@ -9033,14 +9038,14 @@ export interface RequestDocumentText {
|
|
|
9033
9038
|
export interface RevenueCalculation {
|
|
9034
9039
|
|
|
9035
9040
|
/**
|
|
9036
|
-
*
|
|
9041
|
+
* Netto Umsatz
|
|
9037
9042
|
*/
|
|
9038
|
-
|
|
9043
|
+
salesValue: number;
|
|
9039
9044
|
|
|
9040
9045
|
/**
|
|
9041
|
-
*
|
|
9046
|
+
* Deckungsbeitrag (absolut)
|
|
9042
9047
|
*/
|
|
9043
|
-
|
|
9048
|
+
revenue: number;
|
|
9044
9049
|
|
|
9045
9050
|
/**
|
|
9046
9051
|
* Einkaufspreis
|
|
@@ -9061,14 +9066,14 @@ export interface SalesAgent {
|
|
|
9061
9066
|
note: string;
|
|
9062
9067
|
|
|
9063
9068
|
/**
|
|
9064
|
-
*
|
|
9069
|
+
* is sales agent taxable
|
|
9065
9070
|
*/
|
|
9066
|
-
|
|
9071
|
+
taxable: boolean;
|
|
9067
9072
|
|
|
9068
9073
|
/**
|
|
9069
|
-
*
|
|
9074
|
+
* reference to the delivery method
|
|
9070
9075
|
*/
|
|
9071
|
-
|
|
9076
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9072
9077
|
|
|
9073
9078
|
/**
|
|
9074
9079
|
* Freifelder
|
|
@@ -9528,14 +9533,14 @@ export interface ShelfDocument {
|
|
|
9528
9533
|
tags: Array<TagDto>;
|
|
9529
9534
|
|
|
9530
9535
|
/**
|
|
9531
|
-
*
|
|
9536
|
+
* share informations
|
|
9532
9537
|
*/
|
|
9533
|
-
|
|
9538
|
+
shares: Array<ShelfShare>;
|
|
9534
9539
|
|
|
9535
9540
|
/**
|
|
9536
|
-
*
|
|
9541
|
+
* Mehrsprachige Bezeichnungen
|
|
9537
9542
|
*/
|
|
9538
|
-
|
|
9543
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9539
9544
|
|
|
9540
9545
|
/**
|
|
9541
9546
|
* Automatische Löschung ab
|
|
@@ -9611,14 +9616,14 @@ export interface ShelfDocumentAttribution {
|
|
|
9611
9616
|
shelfResourceId: number;
|
|
9612
9617
|
|
|
9613
9618
|
/**
|
|
9614
|
-
*
|
|
9619
|
+
* id of the referenced object
|
|
9615
9620
|
*/
|
|
9616
|
-
|
|
9621
|
+
refId: number;
|
|
9617
9622
|
|
|
9618
9623
|
/**
|
|
9619
|
-
*
|
|
9624
|
+
* Verfügbare Transformationen zum Bild
|
|
9620
9625
|
*/
|
|
9621
|
-
|
|
9626
|
+
transformationKeys: Array<string>;
|
|
9622
9627
|
|
|
9623
9628
|
/**
|
|
9624
9629
|
* Unique identifier of the Object
|
|
@@ -9667,14 +9672,14 @@ export interface ShelfDocumentType {
|
|
|
9667
9672
|
active: boolean;
|
|
9668
9673
|
|
|
9669
9674
|
/**
|
|
9670
|
-
*
|
|
9675
|
+
* label of type
|
|
9671
9676
|
*/
|
|
9672
|
-
|
|
9677
|
+
label: string;
|
|
9673
9678
|
|
|
9674
9679
|
/**
|
|
9675
|
-
*
|
|
9680
|
+
* access level or reading
|
|
9676
9681
|
*/
|
|
9677
|
-
|
|
9682
|
+
accessLevelRead: number;
|
|
9678
9683
|
|
|
9679
9684
|
/**
|
|
9680
9685
|
* storage rule for revisions
|
|
@@ -9720,14 +9725,14 @@ export interface ShelfFile {
|
|
|
9720
9725
|
subFiles: Array<SubFileInfo>;
|
|
9721
9726
|
|
|
9722
9727
|
/**
|
|
9723
|
-
*
|
|
9728
|
+
* fileSize
|
|
9724
9729
|
*/
|
|
9725
|
-
|
|
9730
|
+
fileSize: number;
|
|
9726
9731
|
|
|
9727
9732
|
/**
|
|
9728
|
-
*
|
|
9733
|
+
* revision number of this file
|
|
9729
9734
|
*/
|
|
9730
|
-
|
|
9735
|
+
revisionNumber: number;
|
|
9731
9736
|
|
|
9732
9737
|
/**
|
|
9733
9738
|
* file-extension of this entry
|
|
@@ -9755,14 +9760,14 @@ export interface ShelfFile {
|
|
|
9755
9760
|
version: number;
|
|
9756
9761
|
|
|
9757
9762
|
/**
|
|
9758
|
-
*
|
|
9763
|
+
* current reference of this file in our storage
|
|
9759
9764
|
*/
|
|
9760
|
-
|
|
9765
|
+
storageHandle: string;
|
|
9761
9766
|
|
|
9762
9767
|
/**
|
|
9763
|
-
*
|
|
9768
|
+
* meta data
|
|
9764
9769
|
*/
|
|
9765
|
-
|
|
9770
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9766
9771
|
|
|
9767
9772
|
/**
|
|
9768
9773
|
* MetaInformations for this Object
|
|
@@ -9806,14 +9811,14 @@ export interface ShelfShare {
|
|
|
9806
9811
|
publishState: ShelfSharePublishState;
|
|
9807
9812
|
|
|
9808
9813
|
/**
|
|
9809
|
-
*
|
|
9814
|
+
* Freifelder
|
|
9810
9815
|
*/
|
|
9811
|
-
|
|
9816
|
+
custom: EavShelfshare;
|
|
9812
9817
|
|
|
9813
9818
|
/**
|
|
9814
|
-
*
|
|
9819
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9815
9820
|
*/
|
|
9816
|
-
|
|
9821
|
+
publicUrlDurationInMinutes: number;
|
|
9817
9822
|
|
|
9818
9823
|
/**
|
|
9819
9824
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10242,9 +10247,9 @@ export interface Supplier {
|
|
|
10242
10247
|
info: MetaInfo;
|
|
10243
10248
|
|
|
10244
10249
|
/**
|
|
10245
|
-
*
|
|
10250
|
+
* Lieferantengruppe
|
|
10246
10251
|
*/
|
|
10247
|
-
|
|
10252
|
+
supplierGroupRef: ApiObjectReference;
|
|
10248
10253
|
|
|
10249
10254
|
/**
|
|
10250
10255
|
* reference to the delivery method
|
|
@@ -10252,9 +10257,9 @@ export interface Supplier {
|
|
|
10252
10257
|
deliveryMethodRef: ApiObjectReference;
|
|
10253
10258
|
|
|
10254
10259
|
/**
|
|
10255
|
-
*
|
|
10260
|
+
* tax able or tax free
|
|
10256
10261
|
*/
|
|
10257
|
-
|
|
10262
|
+
taxable: boolean;
|
|
10258
10263
|
|
|
10259
10264
|
/**
|
|
10260
10265
|
* Mahnen?
|
|
@@ -10636,14 +10641,14 @@ export interface User {
|
|
|
10636
10641
|
roles: Array<ApiObjectReference>;
|
|
10637
10642
|
|
|
10638
10643
|
/**
|
|
10639
|
-
*
|
|
10644
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10640
10645
|
*/
|
|
10641
|
-
|
|
10646
|
+
referencedCustomerUserId: number;
|
|
10642
10647
|
|
|
10643
10648
|
/**
|
|
10644
|
-
*
|
|
10649
|
+
* Gruppen
|
|
10645
10650
|
*/
|
|
10646
|
-
|
|
10651
|
+
groups: Array<ApiObjectReference>;
|
|
10647
10652
|
|
|
10648
10653
|
/**
|
|
10649
10654
|
* Is the user active?
|
|
@@ -10747,14 +10752,14 @@ export interface VariantAttributeListing {
|
|
|
10747
10752
|
salesChannelRef: ApiObjectReference;
|
|
10748
10753
|
|
|
10749
10754
|
/**
|
|
10750
|
-
*
|
|
10755
|
+
* Variantenattribut
|
|
10751
10756
|
*/
|
|
10752
|
-
|
|
10757
|
+
variantAttributeRef: ApiObjectReference;
|
|
10753
10758
|
|
|
10754
10759
|
/**
|
|
10755
|
-
*
|
|
10760
|
+
* Freifelder
|
|
10756
10761
|
*/
|
|
10757
|
-
|
|
10762
|
+
custom: EavVariantattributelisting;
|
|
10758
10763
|
|
|
10759
10764
|
/**
|
|
10760
10765
|
* Unique identifier of the Object
|