@vario-software/types 2026.16.2 → 2026.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +1498 -1205
- package/scripting/services.d.ts +207 -27
- package/scripting/types.d.ts +666 -254
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
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
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
|
|
@@ -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
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* origin type
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Is default bank?
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
defaultBank: boolean;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
|
|
|
562
562
|
nonInvoicedDocumentLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Kreditlimit
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
maximalLoan: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
571
571
|
*/
|
|
572
|
-
|
|
572
|
+
payablesSum: number;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Überschrittener Kreditbetrag
|
|
@@ -1151,14 +1151,14 @@ export interface Article {
|
|
|
1151
1151
|
workUnitInMinutes: number;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* description custom data
|
|
1155
1155
|
*/
|
|
1156
|
-
|
|
1156
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1157
1157
|
|
|
1158
1158
|
/**
|
|
1159
|
-
*
|
|
1159
|
+
* Frei kommissionierbar
|
|
1160
1160
|
*/
|
|
1161
|
-
|
|
1161
|
+
freelyPickable: boolean;
|
|
1162
1162
|
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1221,14 +1221,14 @@ export interface Article {
|
|
|
1221
1221
|
permissibleForOrderProposal: boolean;
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* Versandlabeldruck
|
|
1225
1225
|
*/
|
|
1226
|
-
|
|
1226
|
+
shippingLabelPrinting: boolean;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
|
-
*
|
|
1229
|
+
* reference to Product
|
|
1230
1230
|
*/
|
|
1231
|
-
|
|
1231
|
+
productRef: ApiObjectReference;
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Artikel ist Gefahrgut
|
|
@@ -1236,14 +1236,14 @@ export interface Article {
|
|
|
1236
1236
|
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
1238
|
/**
|
|
1239
|
-
*
|
|
1239
|
+
* Kontingentartikel
|
|
1240
1240
|
*/
|
|
1241
|
-
|
|
1241
|
+
contingentArticleRef: ApiObjectReference;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
*
|
|
1244
|
+
* alternative name of this product
|
|
1245
1245
|
*/
|
|
1246
|
-
|
|
1246
|
+
alternativeName: string;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
1249
|
* rabattierbarer Artikel?
|
|
@@ -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 (vom System ermittelt)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
proposedLowestPriceNet: number;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1522
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
customLowestPriceNet: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* der aktuelle listing stand
|
|
@@ -1678,17 +1678,110 @@ export const enum ArticleSerialType {
|
|
|
1678
1678
|
DOUBLE_SERIAL_NUMBER = 'DOUBLE_SERIAL_NUMBER'
|
|
1679
1679
|
}
|
|
1680
1680
|
|
|
1681
|
-
export interface
|
|
1681
|
+
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* Bestand im Lager
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
quantityInStock: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
|
-
*
|
|
1689
|
+
* Nachschub ab
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
replenishmentFrom: number;
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* Aktuelle Menge in Kommissionierung
|
|
1695
|
+
*/
|
|
1696
|
+
quantityInPicking: number;
|
|
1697
|
+
|
|
1698
|
+
/**
|
|
1699
|
+
* Bestellte Menge
|
|
1700
|
+
*/
|
|
1701
|
+
orderedQuantity: number;
|
|
1702
|
+
|
|
1703
|
+
/**
|
|
1704
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1705
|
+
*/
|
|
1706
|
+
virtualStockAmount: number;
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* Nachschub auf
|
|
1710
|
+
*/
|
|
1711
|
+
replenishmentOn: number;
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* Reservierte Menge
|
|
1715
|
+
*/
|
|
1716
|
+
reservedQuantity: number;
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* Aktuelle "virtuelle" verfügbare Menge (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1720
|
+
*/
|
|
1721
|
+
virtualStockAvailable: number;
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* Das Produkt, dessen Lagerinfos hier ausgegeben werden
|
|
1725
|
+
*/
|
|
1726
|
+
articleId: number;
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* Lagerort
|
|
1730
|
+
*/
|
|
1731
|
+
storageLocation: string;
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
* Verfügbare Menge im Lager gemäß konfigurierter Verfügbarkeitsermittlung
|
|
1735
|
+
*/
|
|
1736
|
+
stockAvailable: number;
|
|
1737
|
+
|
|
1738
|
+
/**
|
|
1739
|
+
* Version Identifier for this Object (for PUT)
|
|
1740
|
+
*/
|
|
1741
|
+
version: number;
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* Hat dieses Lager Lagerplätze?
|
|
1745
|
+
*/
|
|
1746
|
+
withStorageBins: boolean;
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* Das Lager, dessen Infos hier ausgegeben werden
|
|
1750
|
+
*/
|
|
1751
|
+
storageRef: ApiObjectReference;
|
|
1752
|
+
|
|
1753
|
+
/**
|
|
1754
|
+
* Sollbestand
|
|
1755
|
+
*/
|
|
1756
|
+
targetStock: number;
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* Vorgabe-Lagerplätze
|
|
1760
|
+
*/
|
|
1761
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* Aktuelle Menge in Produktion
|
|
1765
|
+
*/
|
|
1766
|
+
quantityInFabrication: number;
|
|
1767
|
+
|
|
1768
|
+
/**
|
|
1769
|
+
* Mindestbestand
|
|
1770
|
+
*/
|
|
1771
|
+
minimumStock: number;
|
|
1772
|
+
|
|
1773
|
+
/**
|
|
1774
|
+
* MetaInformations for this Object
|
|
1775
|
+
*/
|
|
1776
|
+
info: MetaInfo;
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
export interface ArticleSupplier {
|
|
1780
|
+
|
|
1781
|
+
/**
|
|
1782
|
+
* Anzeigename des Accounts
|
|
1783
|
+
*/
|
|
1784
|
+
accountDisplayName: string;
|
|
1692
1785
|
|
|
1693
1786
|
/**
|
|
1694
1787
|
* Lieferanten-Meldebestand
|
|
@@ -1696,15 +1789,20 @@ export interface ArticleSupplier {
|
|
|
1696
1789
|
supplierReportingStock: number;
|
|
1697
1790
|
|
|
1698
1791
|
/**
|
|
1699
|
-
*
|
|
1792
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1700
1793
|
*/
|
|
1701
|
-
|
|
1794
|
+
useSupplierArticleDescription: boolean;
|
|
1702
1795
|
|
|
1703
1796
|
/**
|
|
1704
1797
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1705
1798
|
*/
|
|
1706
1799
|
useSupplierArticleIdentifier: boolean;
|
|
1707
1800
|
|
|
1801
|
+
/**
|
|
1802
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1803
|
+
*/
|
|
1804
|
+
deliveryTime: number;
|
|
1805
|
+
|
|
1708
1806
|
/**
|
|
1709
1807
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1710
1808
|
*/
|
|
@@ -1761,14 +1859,14 @@ export interface ArticleSupplier {
|
|
|
1761
1859
|
articleName: string;
|
|
1762
1860
|
|
|
1763
1861
|
/**
|
|
1764
|
-
*
|
|
1862
|
+
* Lieferanten-Preise
|
|
1765
1863
|
*/
|
|
1766
|
-
|
|
1864
|
+
productPrices: Array<ProductPrice>;
|
|
1767
1865
|
|
|
1768
1866
|
/**
|
|
1769
|
-
*
|
|
1867
|
+
* Referenced Article
|
|
1770
1868
|
*/
|
|
1771
|
-
|
|
1869
|
+
articleId: number;
|
|
1772
1870
|
|
|
1773
1871
|
/**
|
|
1774
1872
|
* Aktiv?
|
|
@@ -1854,6 +1952,37 @@ export const enum BillingType {
|
|
|
1854
1952
|
NET = 'NET'
|
|
1855
1953
|
}
|
|
1856
1954
|
|
|
1955
|
+
export interface BulkTransferRequestApi {
|
|
1956
|
+
|
|
1957
|
+
/**
|
|
1958
|
+
* Soll nach der Umbuchung ein Report dazu erstellt werden?
|
|
1959
|
+
*/
|
|
1960
|
+
createReportAfterTransfer: boolean;
|
|
1961
|
+
|
|
1962
|
+
/**
|
|
1963
|
+
* Enthält die Anweisungen für die Umbuchungen
|
|
1964
|
+
*/
|
|
1965
|
+
stockTransfers: Array<StockTransferApi>;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
export interface BulkTransferResult {
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* Das Buchungsdatum
|
|
1972
|
+
*/
|
|
1973
|
+
date: ScriptingDate;
|
|
1974
|
+
|
|
1975
|
+
/**
|
|
1976
|
+
* Falls der Report im Request angefordert wurde, wird hier die ID aus dem DMS geliefert
|
|
1977
|
+
*/
|
|
1978
|
+
reportId: number;
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* Die durch die Lagerbuchung geänderten Lagerplatz-Bestände
|
|
1982
|
+
*/
|
|
1983
|
+
stocks: Array<StockTransferResult>;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1857
1986
|
export const enum BusinessRelationType {
|
|
1858
1987
|
B2B = 'B2B',
|
|
1859
1988
|
B2C = 'B2C',
|
|
@@ -1988,14 +2117,14 @@ export interface CountryReference {
|
|
|
1988
2117
|
export interface CreateNewDocumentRequest {
|
|
1989
2118
|
|
|
1990
2119
|
/**
|
|
1991
|
-
*
|
|
2120
|
+
* Belegart
|
|
1992
2121
|
*/
|
|
1993
|
-
|
|
2122
|
+
documentTypeLabel: string;
|
|
1994
2123
|
|
|
1995
2124
|
/**
|
|
1996
|
-
* Belegart
|
|
2125
|
+
* Standard-Belegart der Kategorie verwenden
|
|
1997
2126
|
*/
|
|
1998
|
-
|
|
2127
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
1999
2128
|
|
|
2000
2129
|
/**
|
|
2001
2130
|
* Details zum Beleg
|
|
@@ -2619,14 +2748,14 @@ export interface CrmProject {
|
|
|
2619
2748
|
priorityRef: ApiObjectReference;
|
|
2620
2749
|
|
|
2621
2750
|
/**
|
|
2622
|
-
*
|
|
2751
|
+
* Projektleiter vom Auftragnehmer
|
|
2623
2752
|
*/
|
|
2624
|
-
|
|
2753
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2625
2754
|
|
|
2626
2755
|
/**
|
|
2627
|
-
*
|
|
2756
|
+
* Phase
|
|
2628
2757
|
*/
|
|
2629
|
-
|
|
2758
|
+
phaseRef: ApiObjectReference;
|
|
2630
2759
|
|
|
2631
2760
|
/**
|
|
2632
2761
|
* Aufgaben-Nummer
|
|
@@ -2821,7 +2950,7 @@ export interface CrmState {
|
|
|
2821
2950
|
/**
|
|
2822
2951
|
* Typ zu dem dieser Status gehört
|
|
2823
2952
|
*/
|
|
2824
|
-
|
|
2953
|
+
crmSubTypes: Array<CrmSubType>;
|
|
2825
2954
|
|
|
2826
2955
|
/**
|
|
2827
2956
|
* active
|
|
@@ -2930,9 +3059,9 @@ export interface CrmSubType {
|
|
|
2930
3059
|
export interface CrmTask {
|
|
2931
3060
|
|
|
2932
3061
|
/**
|
|
2933
|
-
*
|
|
3062
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
2934
3063
|
*/
|
|
2935
|
-
|
|
3064
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
2936
3065
|
|
|
2937
3066
|
/**
|
|
2938
3067
|
* Angebot
|
|
@@ -2940,9 +3069,9 @@ export interface CrmTask {
|
|
|
2940
3069
|
customerOfferRef: DocumentRef;
|
|
2941
3070
|
|
|
2942
3071
|
/**
|
|
2943
|
-
*
|
|
3072
|
+
* Liste von Erinnerungen
|
|
2944
3073
|
*/
|
|
2945
|
-
|
|
3074
|
+
reminders: Array<CrmReminder>;
|
|
2946
3075
|
|
|
2947
3076
|
/**
|
|
2948
3077
|
* Notizen
|
|
@@ -3309,14 +3438,14 @@ export interface CurrencyReference {
|
|
|
3309
3438
|
export interface Customer {
|
|
3310
3439
|
|
|
3311
3440
|
/**
|
|
3312
|
-
*
|
|
3441
|
+
* Option für die Stapelverarbeitung
|
|
3313
3442
|
*/
|
|
3314
|
-
|
|
3443
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3315
3444
|
|
|
3316
3445
|
/**
|
|
3317
|
-
*
|
|
3446
|
+
* reference to customer group
|
|
3318
3447
|
*/
|
|
3319
|
-
|
|
3448
|
+
customerGroupRef: ApiObjectReference;
|
|
3320
3449
|
|
|
3321
3450
|
/**
|
|
3322
3451
|
* Kreditlimit
|
|
@@ -3324,14 +3453,14 @@ export interface Customer {
|
|
|
3324
3453
|
maximalLoan: number;
|
|
3325
3454
|
|
|
3326
3455
|
/**
|
|
3327
|
-
*
|
|
3456
|
+
* collective billable
|
|
3328
3457
|
*/
|
|
3329
|
-
|
|
3458
|
+
collectiveBillable: boolean;
|
|
3330
3459
|
|
|
3331
3460
|
/**
|
|
3332
|
-
*
|
|
3461
|
+
* Maximal mögliche Lieferungen
|
|
3333
3462
|
*/
|
|
3334
|
-
|
|
3463
|
+
maxDeliveries: number;
|
|
3335
3464
|
|
|
3336
3465
|
/**
|
|
3337
3466
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3505,14 +3634,14 @@ export interface DeliveryMethod {
|
|
|
3505
3634
|
defaultSizeUnit: UnitTypeReference;
|
|
3506
3635
|
|
|
3507
3636
|
/**
|
|
3508
|
-
*
|
|
3637
|
+
* Quelle für Paketgewicht
|
|
3509
3638
|
*/
|
|
3510
|
-
|
|
3639
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3511
3640
|
|
|
3512
3641
|
/**
|
|
3513
|
-
*
|
|
3642
|
+
* translations
|
|
3514
3643
|
*/
|
|
3515
|
-
|
|
3644
|
+
translations: Array<DocumentTypeTerm>;
|
|
3516
3645
|
|
|
3517
3646
|
/**
|
|
3518
3647
|
* Versand-Anbieter
|
|
@@ -3602,16 +3731,16 @@ export interface DeliveryTerm {
|
|
|
3602
3731
|
*/
|
|
3603
3732
|
version: number;
|
|
3604
3733
|
|
|
3605
|
-
/**
|
|
3606
|
-
* translations
|
|
3607
|
-
*/
|
|
3608
|
-
translations: Array<DocumentTypeTerm>;
|
|
3609
|
-
|
|
3610
3734
|
/**
|
|
3611
3735
|
* information, how the shipping charges should be calculated
|
|
3612
3736
|
*/
|
|
3613
3737
|
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3614
3738
|
|
|
3739
|
+
/**
|
|
3740
|
+
* translations
|
|
3741
|
+
*/
|
|
3742
|
+
translations: Array<DocumentTypeTerm>;
|
|
3743
|
+
|
|
3615
3744
|
/**
|
|
3616
3745
|
* Lieferarten
|
|
3617
3746
|
*/
|
|
@@ -3641,14 +3770,14 @@ export interface DeliveryTerm {
|
|
|
3641
3770
|
export interface Document {
|
|
3642
3771
|
|
|
3643
3772
|
/**
|
|
3644
|
-
*
|
|
3773
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3645
3774
|
*/
|
|
3646
|
-
|
|
3775
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3647
3776
|
|
|
3648
3777
|
/**
|
|
3649
|
-
*
|
|
3778
|
+
* Referenz zum Rechnungskonto
|
|
3650
3779
|
*/
|
|
3651
|
-
|
|
3780
|
+
billingAccountRef: ApiObjectReference;
|
|
3652
3781
|
|
|
3653
3782
|
/**
|
|
3654
3783
|
* Externe Belegnummer
|
|
@@ -3728,11 +3857,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3728
3857
|
*/
|
|
3729
3858
|
deliveryQuantityPackages: number;
|
|
3730
3859
|
|
|
3731
|
-
/**
|
|
3732
|
-
* Leitweg-ID
|
|
3733
|
-
*/
|
|
3734
|
-
buyerReference: string;
|
|
3735
|
-
|
|
3736
3860
|
/**
|
|
3737
3861
|
* Bestellnummer aus Vorbeleg
|
|
3738
3862
|
*/
|
|
@@ -3743,6 +3867,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3743
3867
|
*/
|
|
3744
3868
|
taxable: boolean;
|
|
3745
3869
|
|
|
3870
|
+
/**
|
|
3871
|
+
* Leitweg-ID
|
|
3872
|
+
*/
|
|
3873
|
+
buyerReference: string;
|
|
3874
|
+
|
|
3746
3875
|
/**
|
|
3747
3876
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
3748
3877
|
*/
|
|
@@ -3906,14 +4035,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3906
4035
|
fabricationDetail: DocumentFabricationDetail;
|
|
3907
4036
|
|
|
3908
4037
|
/**
|
|
3909
|
-
*
|
|
4038
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
3910
4039
|
*/
|
|
3911
|
-
|
|
4040
|
+
accountNumber: string;
|
|
3912
4041
|
|
|
3913
4042
|
/**
|
|
3914
|
-
*
|
|
4043
|
+
* Berechnungsmodus
|
|
3915
4044
|
*/
|
|
3916
|
-
|
|
4045
|
+
calculationMode: CalculationMode;
|
|
3917
4046
|
|
|
3918
4047
|
/**
|
|
3919
4048
|
* Wird vom Workflow verarbeitet?
|
|
@@ -4136,9 +4265,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4136
4265
|
customerNumber: string;
|
|
4137
4266
|
|
|
4138
4267
|
/**
|
|
4139
|
-
*
|
|
4268
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4140
4269
|
*/
|
|
4141
|
-
|
|
4270
|
+
taxIdentificationNumber: string;
|
|
4142
4271
|
|
|
4143
4272
|
/**
|
|
4144
4273
|
* Statusinstanz des Belegs
|
|
@@ -4146,14 +4275,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4146
4275
|
documentState: DocumentTypeState;
|
|
4147
4276
|
|
|
4148
4277
|
/**
|
|
4149
|
-
*
|
|
4278
|
+
* Versandkostenpositionen
|
|
4150
4279
|
*/
|
|
4151
|
-
|
|
4280
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4152
4281
|
|
|
4153
4282
|
/**
|
|
4154
|
-
*
|
|
4283
|
+
* Rückgeld
|
|
4155
4284
|
*/
|
|
4156
|
-
|
|
4285
|
+
posReceiptChangeAmount: number;
|
|
4157
4286
|
|
|
4158
4287
|
/**
|
|
4159
4288
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4163,9 +4292,9 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4163
4292
|
posReceiptBalanced: boolean;
|
|
4164
4293
|
|
|
4165
4294
|
/**
|
|
4166
|
-
*
|
|
4295
|
+
* Referenz auf Lieferbedingung
|
|
4167
4296
|
*/
|
|
4168
|
-
|
|
4297
|
+
deliveryTermRef: ApiObjectReference;
|
|
4169
4298
|
|
|
4170
4299
|
/**
|
|
4171
4300
|
* Gesamtbruttogewicht
|
|
@@ -4187,25 +4316,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4187
4316
|
*/
|
|
4188
4317
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4189
4318
|
|
|
4190
|
-
/**
|
|
4191
|
-
* Rechnungsadresse
|
|
4192
|
-
*/
|
|
4193
|
-
billingAddress: DocumentAddress;
|
|
4194
|
-
|
|
4195
4319
|
/**
|
|
4196
4320
|
* Status der USt-ID-Prüfung
|
|
4197
4321
|
*/
|
|
4198
4322
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4199
4323
|
|
|
4200
4324
|
/**
|
|
4201
|
-
*
|
|
4325
|
+
* Rechnungsadresse
|
|
4202
4326
|
*/
|
|
4203
|
-
|
|
4327
|
+
billingAddress: DocumentAddress;
|
|
4204
4328
|
|
|
4205
4329
|
/**
|
|
4206
4330
|
* Bestellt durch Ansprechpartner
|
|
4207
4331
|
*/
|
|
4208
4332
|
orderedByPersonRef: ApiObjectReference;
|
|
4333
|
+
|
|
4334
|
+
/**
|
|
4335
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4336
|
+
*/
|
|
4337
|
+
reportGroupRef: ApiObjectReference;
|
|
4209
4338
|
}
|
|
4210
4339
|
|
|
4211
4340
|
export interface DocumentAdditionalInfo {
|
|
@@ -4356,14 +4485,14 @@ export interface DocumentAddress {
|
|
|
4356
4485
|
postOfficeBox: string;
|
|
4357
4486
|
|
|
4358
4487
|
/**
|
|
4359
|
-
*
|
|
4488
|
+
* Street
|
|
4360
4489
|
*/
|
|
4361
|
-
|
|
4490
|
+
street: string;
|
|
4362
4491
|
|
|
4363
4492
|
/**
|
|
4364
|
-
*
|
|
4493
|
+
* country code IsoAlpha3
|
|
4365
4494
|
*/
|
|
4366
|
-
|
|
4495
|
+
countryCode: string;
|
|
4367
4496
|
|
|
4368
4497
|
/**
|
|
4369
4498
|
* Unique identifier of the Object
|
|
@@ -4381,14 +4510,14 @@ export interface DocumentAddress {
|
|
|
4381
4510
|
info: MetaInfo;
|
|
4382
4511
|
|
|
4383
4512
|
/**
|
|
4384
|
-
*
|
|
4513
|
+
* GLN
|
|
4385
4514
|
*/
|
|
4386
|
-
|
|
4515
|
+
globalLocationNumber: string;
|
|
4387
4516
|
|
|
4388
4517
|
/**
|
|
4389
|
-
*
|
|
4518
|
+
* Lieferart
|
|
4390
4519
|
*/
|
|
4391
|
-
|
|
4520
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4392
4521
|
|
|
4393
4522
|
/**
|
|
4394
4523
|
* Postcode
|
|
@@ -4568,14 +4697,14 @@ export interface DocumentContractDetail {
|
|
|
4568
4697
|
runtimeToDate: ScriptingDate;
|
|
4569
4698
|
|
|
4570
4699
|
/**
|
|
4571
|
-
*
|
|
4700
|
+
* Nächste Fälligkeit
|
|
4572
4701
|
*/
|
|
4573
|
-
|
|
4702
|
+
nextDueDate: ScriptingDate;
|
|
4574
4703
|
|
|
4575
4704
|
/**
|
|
4576
|
-
*
|
|
4705
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4577
4706
|
*/
|
|
4578
|
-
|
|
4707
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4579
4708
|
|
|
4580
4709
|
/**
|
|
4581
4710
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4740,14 +4869,14 @@ export const enum DocumentImportType {
|
|
|
4740
4869
|
export interface DocumentLine {
|
|
4741
4870
|
|
|
4742
4871
|
/**
|
|
4743
|
-
*
|
|
4872
|
+
* Leistungsdatum
|
|
4744
4873
|
*/
|
|
4745
|
-
|
|
4874
|
+
performanceDate: ScriptingDate;
|
|
4746
4875
|
|
|
4747
4876
|
/**
|
|
4748
|
-
*
|
|
4877
|
+
* Zolltarifnummer
|
|
4749
4878
|
*/
|
|
4750
|
-
|
|
4879
|
+
customsTariffNumber: string;
|
|
4751
4880
|
|
|
4752
4881
|
/**
|
|
4753
4882
|
* Land der Herkunft
|
|
@@ -4755,14 +4884,14 @@ export interface DocumentLine {
|
|
|
4755
4884
|
country: CountryReference;
|
|
4756
4885
|
|
|
4757
4886
|
/**
|
|
4758
|
-
*
|
|
4887
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4759
4888
|
*/
|
|
4760
|
-
|
|
4889
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4761
4890
|
|
|
4762
4891
|
/**
|
|
4763
|
-
*
|
|
4892
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4764
4893
|
*/
|
|
4765
|
-
|
|
4894
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4766
4895
|
|
|
4767
4896
|
/**
|
|
4768
4897
|
* verarbeitete Menge
|
|
@@ -4840,14 +4969,14 @@ export interface DocumentLine {
|
|
|
4840
4969
|
baseTotalLinePrice: number;
|
|
4841
4970
|
|
|
4842
4971
|
/**
|
|
4843
|
-
*
|
|
4972
|
+
* FiBu-Buchung
|
|
4844
4973
|
*/
|
|
4845
|
-
|
|
4974
|
+
financeBooking: DocumentFinanceBooking;
|
|
4846
4975
|
|
|
4847
4976
|
/**
|
|
4848
|
-
*
|
|
4977
|
+
* Positionstyp
|
|
4849
4978
|
*/
|
|
4850
|
-
|
|
4979
|
+
lineType: DocumentLineType;
|
|
4851
4980
|
|
|
4852
4981
|
/**
|
|
4853
4982
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -4905,14 +5034,14 @@ export interface DocumentLine {
|
|
|
4905
5034
|
info: MetaInfo;
|
|
4906
5035
|
|
|
4907
5036
|
/**
|
|
4908
|
-
*
|
|
5037
|
+
* Steuerschema
|
|
4909
5038
|
*/
|
|
4910
|
-
|
|
5039
|
+
taxSchemaRef: ApiObjectReference;
|
|
4911
5040
|
|
|
4912
5041
|
/**
|
|
4913
|
-
*
|
|
5042
|
+
* Preiseinheit
|
|
4914
5043
|
*/
|
|
4915
|
-
|
|
5044
|
+
priceUnit: number;
|
|
4916
5045
|
|
|
4917
5046
|
/**
|
|
4918
5047
|
* Lieferart
|
|
@@ -5050,14 +5179,14 @@ export interface DocumentLine {
|
|
|
5050
5179
|
revenueCalculation: RevenueCalculation;
|
|
5051
5180
|
|
|
5052
5181
|
/**
|
|
5053
|
-
*
|
|
5182
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5054
5183
|
*/
|
|
5055
|
-
|
|
5184
|
+
totalLinePrice: number;
|
|
5056
5185
|
|
|
5057
5186
|
/**
|
|
5058
|
-
*
|
|
5187
|
+
* Einheitentyp
|
|
5059
5188
|
*/
|
|
5060
|
-
|
|
5189
|
+
unitType: UnitTypeReference;
|
|
5061
5190
|
|
|
5062
5191
|
/**
|
|
5063
5192
|
* Zubehör Einfügeart
|
|
@@ -5334,14 +5463,14 @@ export interface DocumentLineComponent {
|
|
|
5334
5463
|
custom: EavDocumentlinecomponent;
|
|
5335
5464
|
|
|
5336
5465
|
/**
|
|
5337
|
-
*
|
|
5466
|
+
* Gelieferte Menge
|
|
5338
5467
|
*/
|
|
5339
|
-
|
|
5468
|
+
quantityCommitted: number;
|
|
5340
5469
|
|
|
5341
5470
|
/**
|
|
5342
|
-
*
|
|
5471
|
+
* Referenz auf den Artikel der Komponente
|
|
5343
5472
|
*/
|
|
5344
|
-
|
|
5473
|
+
articleId: number;
|
|
5345
5474
|
|
|
5346
5475
|
/**
|
|
5347
5476
|
* Beschreibung des Artikels
|
|
@@ -5696,35 +5825,75 @@ export const enum DocumentLineType {
|
|
|
5696
5825
|
export interface DocumentPosDetail {
|
|
5697
5826
|
|
|
5698
5827
|
/**
|
|
5699
|
-
*
|
|
5828
|
+
* Transaktion Endzeit
|
|
5700
5829
|
*/
|
|
5701
|
-
|
|
5830
|
+
timeEnd: number;
|
|
5702
5831
|
|
|
5703
5832
|
/**
|
|
5704
|
-
*
|
|
5833
|
+
* TSS Seriennummer
|
|
5705
5834
|
*/
|
|
5706
|
-
|
|
5835
|
+
tssSerialNumber: string;
|
|
5707
5836
|
|
|
5708
5837
|
/**
|
|
5709
|
-
*
|
|
5838
|
+
* Signatur
|
|
5710
5839
|
*/
|
|
5711
|
-
|
|
5840
|
+
signature: string;
|
|
5712
5841
|
|
|
5713
5842
|
/**
|
|
5714
|
-
*
|
|
5843
|
+
* Client Seriennummer
|
|
5715
5844
|
*/
|
|
5716
|
-
|
|
5845
|
+
clientSerialNumber: string;
|
|
5717
5846
|
|
|
5718
5847
|
/**
|
|
5719
|
-
*
|
|
5848
|
+
* Transaktionsnummer
|
|
5720
5849
|
*/
|
|
5721
|
-
|
|
5850
|
+
transactionNumber: number;
|
|
5851
|
+
|
|
5852
|
+
/**
|
|
5853
|
+
* Signaturzähler
|
|
5854
|
+
*/
|
|
5855
|
+
signatureCounter: number;
|
|
5856
|
+
|
|
5857
|
+
/**
|
|
5858
|
+
* TSS Signatur
|
|
5859
|
+
*/
|
|
5860
|
+
tssSignature: TssSignature;
|
|
5722
5861
|
|
|
5723
5862
|
/**
|
|
5724
5863
|
* Version Identifier for this Object (for PUT)
|
|
5725
5864
|
*/
|
|
5726
5865
|
version: number;
|
|
5727
5866
|
|
|
5867
|
+
/**
|
|
5868
|
+
* Revision
|
|
5869
|
+
*/
|
|
5870
|
+
revision: number;
|
|
5871
|
+
|
|
5872
|
+
/**
|
|
5873
|
+
* Transaktion Startzeit
|
|
5874
|
+
*/
|
|
5875
|
+
timeStart: number;
|
|
5876
|
+
|
|
5877
|
+
/**
|
|
5878
|
+
* Kassenbuch
|
|
5879
|
+
*/
|
|
5880
|
+
cashJournalRef: ApiObjectReference;
|
|
5881
|
+
|
|
5882
|
+
/**
|
|
5883
|
+
* Kasse
|
|
5884
|
+
*/
|
|
5885
|
+
posRegisterRef: ApiObjectReference;
|
|
5886
|
+
|
|
5887
|
+
/**
|
|
5888
|
+
* Unique identifier of the Object
|
|
5889
|
+
*/
|
|
5890
|
+
id: number;
|
|
5891
|
+
|
|
5892
|
+
/**
|
|
5893
|
+
* Kassenschublade
|
|
5894
|
+
*/
|
|
5895
|
+
cashDrawerRef: ApiObjectReference;
|
|
5896
|
+
|
|
5728
5897
|
/**
|
|
5729
5898
|
* MetaInformations for this Object
|
|
5730
5899
|
*/
|
|
@@ -5733,6 +5902,11 @@ export interface DocumentPosDetail {
|
|
|
5733
5902
|
|
|
5734
5903
|
export interface DocumentPosPayment {
|
|
5735
5904
|
|
|
5905
|
+
/**
|
|
5906
|
+
* Art der Zahlungsoperation (PAYMENT, CANCEL, REFUND)
|
|
5907
|
+
*/
|
|
5908
|
+
paymentOperation: PosPaymentOperation;
|
|
5909
|
+
|
|
5736
5910
|
/**
|
|
5737
5911
|
* Betrag
|
|
5738
5912
|
*/
|
|
@@ -5743,25 +5917,45 @@ export interface DocumentPosPayment {
|
|
|
5743
5917
|
*/
|
|
5744
5918
|
depositExpenseTypeRef: ApiObjectReference;
|
|
5745
5919
|
|
|
5920
|
+
/**
|
|
5921
|
+
* Status der externen Zahlung
|
|
5922
|
+
*/
|
|
5923
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5924
|
+
|
|
5925
|
+
/**
|
|
5926
|
+
* Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
|
|
5927
|
+
*/
|
|
5928
|
+
cancelledExternalPaymentId: string;
|
|
5929
|
+
|
|
5930
|
+
/**
|
|
5931
|
+
* Version Identifier for this Object (for PUT)
|
|
5932
|
+
*/
|
|
5933
|
+
version: number;
|
|
5934
|
+
|
|
5746
5935
|
/**
|
|
5747
5936
|
* Zahlungsart
|
|
5748
5937
|
*/
|
|
5749
5938
|
posPaymentMethodRef: ApiObjectReference;
|
|
5750
5939
|
|
|
5940
|
+
/**
|
|
5941
|
+
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
5942
|
+
*/
|
|
5943
|
+
externalPaymentErrorMessage: string;
|
|
5944
|
+
|
|
5751
5945
|
/**
|
|
5752
5946
|
* Typ der Position
|
|
5753
5947
|
*/
|
|
5754
5948
|
posLineType: PosLineType;
|
|
5755
5949
|
|
|
5756
5950
|
/**
|
|
5757
|
-
*
|
|
5951
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5758
5952
|
*/
|
|
5759
|
-
|
|
5953
|
+
externalPaymentId: string;
|
|
5760
5954
|
|
|
5761
5955
|
/**
|
|
5762
|
-
*
|
|
5956
|
+
* Unique identifier of the Object
|
|
5763
5957
|
*/
|
|
5764
|
-
|
|
5958
|
+
id: number;
|
|
5765
5959
|
|
|
5766
5960
|
/**
|
|
5767
5961
|
* MetaInformations for this Object
|
|
@@ -6617,14 +6811,14 @@ export interface FabricationRevertRequest {
|
|
|
6617
6811
|
quantity: number;
|
|
6618
6812
|
|
|
6619
6813
|
/**
|
|
6620
|
-
*
|
|
6814
|
+
* ID der zu stornierenden Position
|
|
6621
6815
|
*/
|
|
6622
|
-
|
|
6816
|
+
documentLineId: number;
|
|
6623
6817
|
|
|
6624
6818
|
/**
|
|
6625
|
-
*
|
|
6819
|
+
* Material automatisch stornieren
|
|
6626
6820
|
*/
|
|
6627
|
-
|
|
6821
|
+
autoRevertComponents: boolean;
|
|
6628
6822
|
|
|
6629
6823
|
/**
|
|
6630
6824
|
* Zu stornierende Seriennummern
|
|
@@ -7617,11 +7811,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7617
7811
|
*/
|
|
7618
7812
|
alternativeSelectionInVql: string;
|
|
7619
7813
|
|
|
7620
|
-
/**
|
|
7621
|
-
* Nur vollständig lieferbare Positionen
|
|
7622
|
-
*/
|
|
7623
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
7624
|
-
|
|
7625
7814
|
/**
|
|
7626
7815
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7627
7816
|
*/
|
|
@@ -7632,6 +7821,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7632
7821
|
*/
|
|
7633
7822
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7634
7823
|
|
|
7824
|
+
/**
|
|
7825
|
+
* Nur vollständig lieferbare Positionen
|
|
7826
|
+
*/
|
|
7827
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7828
|
+
|
|
7635
7829
|
/**
|
|
7636
7830
|
* Selektion über den Bereich vom Belegdatum
|
|
7637
7831
|
*/
|
|
@@ -7700,6 +7894,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7700
7894
|
*/
|
|
7701
7895
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7702
7896
|
|
|
7897
|
+
/**
|
|
7898
|
+
* Lagerplätze vorgeben
|
|
7899
|
+
*/
|
|
7900
|
+
specifyStorageBins: boolean;
|
|
7901
|
+
|
|
7703
7902
|
/**
|
|
7704
7903
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7705
7904
|
*/
|
|
@@ -7710,11 +7909,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7710
7909
|
*/
|
|
7711
7910
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7712
7911
|
|
|
7713
|
-
/**
|
|
7714
|
-
* Lagerplätze vorgeben
|
|
7715
|
-
*/
|
|
7716
|
-
specifyStorageBins: boolean;
|
|
7717
|
-
|
|
7718
7912
|
/**
|
|
7719
7913
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7720
7914
|
*/
|
|
@@ -7769,20 +7963,25 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7769
7963
|
alwaysShowDeliveryMethod: boolean;
|
|
7770
7964
|
|
|
7771
7965
|
/**
|
|
7772
|
-
*
|
|
7966
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7773
7967
|
*/
|
|
7774
|
-
|
|
7968
|
+
autoPrintDeliveryDocument: boolean;
|
|
7775
7969
|
|
|
7776
7970
|
/**
|
|
7777
|
-
*
|
|
7971
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7778
7972
|
*/
|
|
7779
|
-
|
|
7973
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7780
7974
|
|
|
7781
7975
|
/**
|
|
7782
7976
|
* Versand-Dialog beim Abschluss zeigen
|
|
7783
7977
|
*/
|
|
7784
7978
|
showShippingFormOnPickingFinish: boolean;
|
|
7785
7979
|
|
|
7980
|
+
/**
|
|
7981
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7982
|
+
*/
|
|
7983
|
+
useDigitalPicklist: boolean;
|
|
7984
|
+
|
|
7786
7985
|
/**
|
|
7787
7986
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
7788
7987
|
*/
|
|
@@ -7794,12 +7993,7 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7794
7993
|
allowFullConfirmation: boolean;
|
|
7795
7994
|
|
|
7796
7995
|
/**
|
|
7797
|
-
*
|
|
7798
|
-
*/
|
|
7799
|
-
useDigitalPicklist: boolean;
|
|
7800
|
-
|
|
7801
|
-
/**
|
|
7802
|
-
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
7996
|
+
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
7803
7997
|
*/
|
|
7804
7998
|
scanDeliveryDocumentAndShippingLabelOnFinish: boolean;
|
|
7805
7999
|
|
|
@@ -7808,6 +8002,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7808
8002
|
*/
|
|
7809
8003
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
7810
8004
|
|
|
8005
|
+
/**
|
|
8006
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8007
|
+
*/
|
|
8008
|
+
autoDeterminationOfLots: boolean;
|
|
8009
|
+
|
|
7811
8010
|
/**
|
|
7812
8011
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
7813
8012
|
*/
|
|
@@ -8075,14 +8274,14 @@ export interface ProductDiscount {
|
|
|
8075
8274
|
validFrom: ScriptingDate;
|
|
8076
8275
|
|
|
8077
8276
|
/**
|
|
8078
|
-
*
|
|
8277
|
+
* Warengruppe
|
|
8079
8278
|
*/
|
|
8080
|
-
|
|
8279
|
+
productGroupRef: ApiObjectReference;
|
|
8081
8280
|
|
|
8082
8281
|
/**
|
|
8083
|
-
*
|
|
8282
|
+
* Bestimmt die Art des Rabatts
|
|
8084
8283
|
*/
|
|
8085
|
-
|
|
8284
|
+
modifierType: PriceModifierType;
|
|
8086
8285
|
|
|
8087
8286
|
/**
|
|
8088
8287
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8100,14 +8299,14 @@ export interface ProductDiscount {
|
|
|
8100
8299
|
currencyRef: CurrencyReference;
|
|
8101
8300
|
|
|
8102
8301
|
/**
|
|
8103
|
-
*
|
|
8302
|
+
* Preisgruppe
|
|
8104
8303
|
*/
|
|
8105
|
-
|
|
8304
|
+
priceGroupRef: ApiObjectReference;
|
|
8106
8305
|
|
|
8107
8306
|
/**
|
|
8108
|
-
*
|
|
8307
|
+
* Wert des Rabatts
|
|
8109
8308
|
*/
|
|
8110
|
-
|
|
8309
|
+
modifierValue: number;
|
|
8111
8310
|
|
|
8112
8311
|
/**
|
|
8113
8312
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -8130,14 +8329,14 @@ export interface ProductDiscount {
|
|
|
8130
8329
|
validUntil: ScriptingDate;
|
|
8131
8330
|
|
|
8132
8331
|
/**
|
|
8133
|
-
*
|
|
8332
|
+
* Account, für den der Rabatt gültig ist
|
|
8134
8333
|
*/
|
|
8135
|
-
|
|
8334
|
+
accountRef: ApiObjectReference;
|
|
8136
8335
|
|
|
8137
8336
|
/**
|
|
8138
|
-
*
|
|
8337
|
+
* Name des Rabatts
|
|
8139
8338
|
*/
|
|
8140
|
-
|
|
8339
|
+
modifierName: string;
|
|
8141
8340
|
|
|
8142
8341
|
/**
|
|
8143
8342
|
* Unique identifier of the Object
|
|
@@ -8393,19 +8592,19 @@ export interface Referenceable {
|
|
|
8393
8592
|
export interface RequestDocument {
|
|
8394
8593
|
|
|
8395
8594
|
/**
|
|
8396
|
-
*
|
|
8595
|
+
* Belegdatum
|
|
8397
8596
|
*/
|
|
8398
|
-
|
|
8597
|
+
documentDate: ScriptingDate;
|
|
8399
8598
|
|
|
8400
8599
|
/**
|
|
8401
|
-
*
|
|
8600
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8402
8601
|
*/
|
|
8403
|
-
|
|
8602
|
+
incomingGoodsStorageBinId: number;
|
|
8404
8603
|
|
|
8405
8604
|
/**
|
|
8406
|
-
*
|
|
8605
|
+
* Leistungsdatum
|
|
8407
8606
|
*/
|
|
8408
|
-
|
|
8607
|
+
performanceDate: ScriptingDate;
|
|
8409
8608
|
|
|
8410
8609
|
/**
|
|
8411
8610
|
* Der Anzahlungsbetrag
|
|
@@ -8413,9 +8612,9 @@ export interface RequestDocument {
|
|
|
8413
8612
|
depositPaymentAmount: number;
|
|
8414
8613
|
|
|
8415
8614
|
/**
|
|
8416
|
-
*
|
|
8615
|
+
* ID der Kassenschublade (bei POS)
|
|
8417
8616
|
*/
|
|
8418
|
-
|
|
8617
|
+
cashDrawerId: number;
|
|
8419
8618
|
|
|
8420
8619
|
/**
|
|
8421
8620
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8477,26 +8676,26 @@ export interface RequestDocument {
|
|
|
8477
8676
|
*/
|
|
8478
8677
|
lines: Array<RequestDocumentLine>;
|
|
8479
8678
|
|
|
8480
|
-
/**
|
|
8481
|
-
* Die Vertragsdetails
|
|
8482
|
-
*/
|
|
8483
|
-
contractDetail: DocumentContractDetail;
|
|
8484
|
-
|
|
8485
8679
|
/**
|
|
8486
8680
|
* ID der Kasse (bei POS)
|
|
8487
8681
|
*/
|
|
8488
8682
|
posRegisterId: number;
|
|
8489
8683
|
|
|
8490
8684
|
/**
|
|
8491
|
-
*
|
|
8685
|
+
* Die Vertragsdetails
|
|
8492
8686
|
*/
|
|
8493
|
-
|
|
8687
|
+
contractDetail: DocumentContractDetail;
|
|
8494
8688
|
|
|
8495
8689
|
/**
|
|
8496
8690
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8497
8691
|
*/
|
|
8498
8692
|
paymentTermId: number;
|
|
8499
8693
|
|
|
8694
|
+
/**
|
|
8695
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8696
|
+
*/
|
|
8697
|
+
supplierAccountId: number;
|
|
8698
|
+
|
|
8500
8699
|
/**
|
|
8501
8700
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8502
8701
|
*/
|
|
@@ -8606,14 +8805,14 @@ export interface RequestDocumentLine {
|
|
|
8606
8805
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8607
8806
|
|
|
8608
8807
|
/**
|
|
8609
|
-
*
|
|
8808
|
+
* FiBu-Angaben
|
|
8610
8809
|
*/
|
|
8611
|
-
|
|
8810
|
+
financeBooking: DocumentFinanceBooking;
|
|
8612
8811
|
|
|
8613
8812
|
/**
|
|
8614
|
-
*
|
|
8813
|
+
* Typ dieser Position
|
|
8615
8814
|
*/
|
|
8616
|
-
|
|
8815
|
+
lineType: DocumentLineType;
|
|
8617
8816
|
|
|
8618
8817
|
/**
|
|
8619
8818
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9210,14 +9409,14 @@ export interface SequencerConfiguration {
|
|
|
9210
9409
|
key: string;
|
|
9211
9410
|
|
|
9212
9411
|
/**
|
|
9213
|
-
*
|
|
9412
|
+
* Contains details about the sequencer configuration
|
|
9214
9413
|
*/
|
|
9215
|
-
|
|
9414
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9216
9415
|
|
|
9217
9416
|
/**
|
|
9218
|
-
*
|
|
9417
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9219
9418
|
*/
|
|
9220
|
-
|
|
9419
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9221
9420
|
|
|
9222
9421
|
/**
|
|
9223
9422
|
* MetaInformations for this Object
|
|
@@ -9329,14 +9528,14 @@ export interface ShelfDocument {
|
|
|
9329
9528
|
tags: Array<TagDto>;
|
|
9330
9529
|
|
|
9331
9530
|
/**
|
|
9332
|
-
*
|
|
9531
|
+
* share informations
|
|
9333
9532
|
*/
|
|
9334
|
-
|
|
9533
|
+
shares: Array<ShelfShare>;
|
|
9335
9534
|
|
|
9336
9535
|
/**
|
|
9337
|
-
*
|
|
9536
|
+
* Mehrsprachige Bezeichnungen
|
|
9338
9537
|
*/
|
|
9339
|
-
|
|
9538
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9340
9539
|
|
|
9341
9540
|
/**
|
|
9342
9541
|
* Automatische Löschung ab
|
|
@@ -9468,14 +9667,14 @@ export interface ShelfDocumentType {
|
|
|
9468
9667
|
active: boolean;
|
|
9469
9668
|
|
|
9470
9669
|
/**
|
|
9471
|
-
*
|
|
9670
|
+
* label of type
|
|
9472
9671
|
*/
|
|
9473
|
-
|
|
9672
|
+
label: string;
|
|
9474
9673
|
|
|
9475
9674
|
/**
|
|
9476
|
-
*
|
|
9675
|
+
* access level or reading
|
|
9477
9676
|
*/
|
|
9478
|
-
|
|
9677
|
+
accessLevelRead: number;
|
|
9479
9678
|
|
|
9480
9679
|
/**
|
|
9481
9680
|
* storage rule for revisions
|
|
@@ -9607,14 +9806,14 @@ export interface ShelfShare {
|
|
|
9607
9806
|
publishState: ShelfSharePublishState;
|
|
9608
9807
|
|
|
9609
9808
|
/**
|
|
9610
|
-
*
|
|
9809
|
+
* Freifelder
|
|
9611
9810
|
*/
|
|
9612
|
-
|
|
9811
|
+
custom: EavShelfshare;
|
|
9613
9812
|
|
|
9614
9813
|
/**
|
|
9615
|
-
*
|
|
9814
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9616
9815
|
*/
|
|
9617
|
-
|
|
9816
|
+
publicUrlDurationInMinutes: number;
|
|
9618
9817
|
|
|
9619
9818
|
/**
|
|
9620
9819
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9721,6 +9920,214 @@ export interface ShelfTranslatableText {
|
|
|
9721
9920
|
info: MetaInfo;
|
|
9722
9921
|
}
|
|
9723
9922
|
|
|
9923
|
+
export interface Stock {
|
|
9924
|
+
|
|
9925
|
+
/**
|
|
9926
|
+
* Bestand
|
|
9927
|
+
*/
|
|
9928
|
+
amount: number;
|
|
9929
|
+
|
|
9930
|
+
/**
|
|
9931
|
+
* Seriennummer
|
|
9932
|
+
*/
|
|
9933
|
+
serialNumber: ArticleSerialNumber;
|
|
9934
|
+
|
|
9935
|
+
/**
|
|
9936
|
+
* Anzeigename vom Lagerplatz
|
|
9937
|
+
*/
|
|
9938
|
+
storageBinDisplayName: string;
|
|
9939
|
+
|
|
9940
|
+
/**
|
|
9941
|
+
* Lagerplatz
|
|
9942
|
+
*/
|
|
9943
|
+
storageBinId: number;
|
|
9944
|
+
|
|
9945
|
+
/**
|
|
9946
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
9947
|
+
*/
|
|
9948
|
+
reservedSerialQuantity: number;
|
|
9949
|
+
|
|
9950
|
+
/**
|
|
9951
|
+
* Artikel
|
|
9952
|
+
*/
|
|
9953
|
+
articleId: number;
|
|
9954
|
+
}
|
|
9955
|
+
|
|
9956
|
+
export const enum StockJournalFactor {
|
|
9957
|
+
NONE = 'NONE',
|
|
9958
|
+
INCREMENT = 'INCREMENT',
|
|
9959
|
+
DECREMENT = 'DECREMENT'
|
|
9960
|
+
}
|
|
9961
|
+
|
|
9962
|
+
export interface StockMovementManualApi {
|
|
9963
|
+
|
|
9964
|
+
/**
|
|
9965
|
+
* Haltbarkeitsdatum
|
|
9966
|
+
*/
|
|
9967
|
+
expiryDate: ScriptingDate;
|
|
9968
|
+
|
|
9969
|
+
/**
|
|
9970
|
+
* Bemerkung
|
|
9971
|
+
*/
|
|
9972
|
+
note: string;
|
|
9973
|
+
|
|
9974
|
+
/**
|
|
9975
|
+
* Menge
|
|
9976
|
+
*/
|
|
9977
|
+
quantity: number;
|
|
9978
|
+
|
|
9979
|
+
/**
|
|
9980
|
+
* Seriennummer 2, welche gebucht werden soll
|
|
9981
|
+
*/
|
|
9982
|
+
serialNumber2: string;
|
|
9983
|
+
|
|
9984
|
+
/**
|
|
9985
|
+
* Seriennummer 1, welche gebucht werden soll
|
|
9986
|
+
*/
|
|
9987
|
+
serialNumber1: string;
|
|
9988
|
+
|
|
9989
|
+
/**
|
|
9990
|
+
* Lagerplatz
|
|
9991
|
+
*/
|
|
9992
|
+
storageBinId: number;
|
|
9993
|
+
|
|
9994
|
+
/**
|
|
9995
|
+
* Artikel
|
|
9996
|
+
*/
|
|
9997
|
+
articleId: number;
|
|
9998
|
+
|
|
9999
|
+
/**
|
|
10000
|
+
* Lagerort (spielt nur bei Zugängen eine Rolle)
|
|
10001
|
+
*/
|
|
10002
|
+
storageLocation: string;
|
|
10003
|
+
|
|
10004
|
+
/**
|
|
10005
|
+
* EK (spielt nur bei Zugängen eine Rolle)
|
|
10006
|
+
*/
|
|
10007
|
+
purchasePrice: number;
|
|
10008
|
+
|
|
10009
|
+
/**
|
|
10010
|
+
* Notiz zur Seriennummer
|
|
10011
|
+
*/
|
|
10012
|
+
serialNumberNote: string;
|
|
10013
|
+
|
|
10014
|
+
/**
|
|
10015
|
+
* Zugang oder Abgang
|
|
10016
|
+
*/
|
|
10017
|
+
factor: StockJournalFactor;
|
|
10018
|
+
|
|
10019
|
+
/**
|
|
10020
|
+
* Lager
|
|
10021
|
+
*/
|
|
10022
|
+
storageId: number;
|
|
10023
|
+
}
|
|
10024
|
+
|
|
10025
|
+
export interface StockTransferApi {
|
|
10026
|
+
|
|
10027
|
+
/**
|
|
10028
|
+
* Ziel-Lager
|
|
10029
|
+
*/
|
|
10030
|
+
targetStorageId: number;
|
|
10031
|
+
|
|
10032
|
+
/**
|
|
10033
|
+
* Seriennummer
|
|
10034
|
+
*/
|
|
10035
|
+
serialNumberId: number;
|
|
10036
|
+
|
|
10037
|
+
/**
|
|
10038
|
+
* Bemerkung
|
|
10039
|
+
*/
|
|
10040
|
+
note: string;
|
|
10041
|
+
|
|
10042
|
+
/**
|
|
10043
|
+
* Buchungsdatum
|
|
10044
|
+
*/
|
|
10045
|
+
bookDate: ScriptingDate;
|
|
10046
|
+
|
|
10047
|
+
/**
|
|
10048
|
+
* Quell-Lagerplatz
|
|
10049
|
+
*/
|
|
10050
|
+
sourceStorageBinId: number;
|
|
10051
|
+
|
|
10052
|
+
/**
|
|
10053
|
+
* Menge
|
|
10054
|
+
*/
|
|
10055
|
+
quantity: number;
|
|
10056
|
+
|
|
10057
|
+
/**
|
|
10058
|
+
* Quell-Lager
|
|
10059
|
+
*/
|
|
10060
|
+
sourceStorageId: number;
|
|
10061
|
+
|
|
10062
|
+
/**
|
|
10063
|
+
* Ziel-Lagerplatz
|
|
10064
|
+
*/
|
|
10065
|
+
targetStorageBinId: number;
|
|
10066
|
+
|
|
10067
|
+
/**
|
|
10068
|
+
* Artikel
|
|
10069
|
+
*/
|
|
10070
|
+
articleId: number;
|
|
10071
|
+
|
|
10072
|
+
/**
|
|
10073
|
+
* Komponente einer Picklistenposition, falls dafür die Buchung stattfindet
|
|
10074
|
+
*/
|
|
10075
|
+
picklistLineComponentId: number;
|
|
10076
|
+
}
|
|
10077
|
+
|
|
10078
|
+
export interface StockTransferResult {
|
|
10079
|
+
|
|
10080
|
+
/**
|
|
10081
|
+
* Alter Bestand Quellagerplatz
|
|
10082
|
+
*/
|
|
10083
|
+
sourceOldStock: number;
|
|
10084
|
+
|
|
10085
|
+
/**
|
|
10086
|
+
* Quellager
|
|
10087
|
+
*/
|
|
10088
|
+
sourceStorage: ApiObjectReference;
|
|
10089
|
+
|
|
10090
|
+
/**
|
|
10091
|
+
* Umgebuchte Seriennummer
|
|
10092
|
+
*/
|
|
10093
|
+
serialNumber: ApiObjectReference;
|
|
10094
|
+
|
|
10095
|
+
/**
|
|
10096
|
+
* Ziellagerplatz
|
|
10097
|
+
*/
|
|
10098
|
+
targetStorageBin: ApiObjectReference;
|
|
10099
|
+
|
|
10100
|
+
/**
|
|
10101
|
+
* Neuer Bestand Quellagerplatz
|
|
10102
|
+
*/
|
|
10103
|
+
sourceNewStock: number;
|
|
10104
|
+
|
|
10105
|
+
/**
|
|
10106
|
+
* Ziellager
|
|
10107
|
+
*/
|
|
10108
|
+
targetStorage: ApiObjectReference;
|
|
10109
|
+
|
|
10110
|
+
/**
|
|
10111
|
+
* Alter Bestand Ziellagerplatz
|
|
10112
|
+
*/
|
|
10113
|
+
targetOldStock: number;
|
|
10114
|
+
|
|
10115
|
+
/**
|
|
10116
|
+
* Neuer Bestand Ziellagerplatz
|
|
10117
|
+
*/
|
|
10118
|
+
targetNewStock: number;
|
|
10119
|
+
|
|
10120
|
+
/**
|
|
10121
|
+
* Umgebuchter Artikel
|
|
10122
|
+
*/
|
|
10123
|
+
article: ApiObjectReference;
|
|
10124
|
+
|
|
10125
|
+
/**
|
|
10126
|
+
* Quellagerplatz
|
|
10127
|
+
*/
|
|
10128
|
+
sourceStorageBin: ApiObjectReference;
|
|
10129
|
+
}
|
|
10130
|
+
|
|
9724
10131
|
export interface StorageBinRef {
|
|
9725
10132
|
|
|
9726
10133
|
/**
|
|
@@ -9835,14 +10242,14 @@ export interface Supplier {
|
|
|
9835
10242
|
info: MetaInfo;
|
|
9836
10243
|
|
|
9837
10244
|
/**
|
|
9838
|
-
*
|
|
10245
|
+
* reference to the delivery method
|
|
9839
10246
|
*/
|
|
9840
|
-
|
|
10247
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9841
10248
|
|
|
9842
10249
|
/**
|
|
9843
|
-
*
|
|
10250
|
+
* Lieferantengruppe
|
|
9844
10251
|
*/
|
|
9845
|
-
|
|
10252
|
+
supplierGroupRef: ApiObjectReference;
|
|
9846
10253
|
|
|
9847
10254
|
/**
|
|
9848
10255
|
* tax able or tax free
|
|
@@ -9900,14 +10307,14 @@ export interface Supplier {
|
|
|
9900
10307
|
performanceCountryCode: string;
|
|
9901
10308
|
|
|
9902
10309
|
/**
|
|
9903
|
-
*
|
|
10310
|
+
* Lieferzeit in (Werk-)Tagen
|
|
9904
10311
|
*/
|
|
9905
|
-
|
|
10312
|
+
defaultDeliveryTime: number;
|
|
9906
10313
|
|
|
9907
10314
|
/**
|
|
9908
|
-
*
|
|
10315
|
+
* reference to the payment method
|
|
9909
10316
|
*/
|
|
9910
|
-
|
|
10317
|
+
paymentMethodRef: ApiObjectReference;
|
|
9911
10318
|
|
|
9912
10319
|
/**
|
|
9913
10320
|
* currency code IsoAlpha3
|
|
@@ -9928,14 +10335,14 @@ export interface TagDto {
|
|
|
9928
10335
|
editColor: string;
|
|
9929
10336
|
|
|
9930
10337
|
/**
|
|
9931
|
-
* Farbe
|
|
10338
|
+
* Farbe in Such-GUI
|
|
9932
10339
|
*/
|
|
9933
|
-
|
|
10340
|
+
searchColor: string;
|
|
9934
10341
|
|
|
9935
10342
|
/**
|
|
9936
|
-
* Farbe
|
|
10343
|
+
* Farbe für die Anzeige des Tags
|
|
9937
10344
|
*/
|
|
9938
|
-
|
|
10345
|
+
color: string;
|
|
9939
10346
|
|
|
9940
10347
|
/**
|
|
9941
10348
|
* Beschriftung des Tags
|
|
@@ -10259,14 +10666,14 @@ export interface User {
|
|
|
10259
10666
|
version: number;
|
|
10260
10667
|
|
|
10261
10668
|
/**
|
|
10262
|
-
*
|
|
10669
|
+
* first-name
|
|
10263
10670
|
*/
|
|
10264
|
-
|
|
10671
|
+
firstName: string;
|
|
10265
10672
|
|
|
10266
10673
|
/**
|
|
10267
|
-
*
|
|
10674
|
+
* is the email verified
|
|
10268
10675
|
*/
|
|
10269
|
-
|
|
10676
|
+
emailVerified: boolean;
|
|
10270
10677
|
|
|
10271
10678
|
/**
|
|
10272
10679
|
* email-address
|
|
@@ -10443,6 +10850,11 @@ export interface VariantValue {
|
|
|
10443
10850
|
*/
|
|
10444
10851
|
sortOrder: number;
|
|
10445
10852
|
|
|
10853
|
+
/**
|
|
10854
|
+
* Referenz auf eine Mengeneinheit
|
|
10855
|
+
*/
|
|
10856
|
+
unitTypeRef: UnitTypeReference;
|
|
10857
|
+
|
|
10446
10858
|
/**
|
|
10447
10859
|
* Aktiv?
|
|
10448
10860
|
*/
|