@vario-software/types 2026.18.1 → 2026.18.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +26 -26
- package/scripting/types.d.ts +263 -263
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -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
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -547,14 +547,14 @@ export const enum AccountBillingType {
|
|
|
547
547
|
export interface AccountLoanValue {
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* Nicht berücksichtigter Betrag
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
unconsideredAmount: number;
|
|
553
553
|
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Account
|
|
556
556
|
*/
|
|
557
|
-
|
|
557
|
+
accountId: number;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
560
|
* Betrag aus Aufträgen
|
|
@@ -956,20 +956,25 @@ export interface Article {
|
|
|
956
956
|
customsTariffNumber: string;
|
|
957
957
|
|
|
958
958
|
/**
|
|
959
|
-
*
|
|
959
|
+
* Product custom data
|
|
960
960
|
*/
|
|
961
|
-
|
|
961
|
+
listingCustom: EavArticleListing;
|
|
962
962
|
|
|
963
963
|
/**
|
|
964
|
-
*
|
|
964
|
+
* is this product purchasable
|
|
965
965
|
*/
|
|
966
|
-
|
|
966
|
+
purchasable: boolean;
|
|
967
967
|
|
|
968
968
|
/**
|
|
969
969
|
* base capacity unit
|
|
970
970
|
*/
|
|
971
971
|
baseCapacityUnit: UnitTypeReference;
|
|
972
972
|
|
|
973
|
+
/**
|
|
974
|
+
* Durchschnittl. EKP (Startwert)
|
|
975
|
+
*/
|
|
976
|
+
initialAvgPurchasePrice: number;
|
|
977
|
+
|
|
973
978
|
/**
|
|
974
979
|
* is this product sellable without any quantity at the stock
|
|
975
980
|
*/
|
|
@@ -980,11 +985,6 @@ export interface Article {
|
|
|
980
985
|
*/
|
|
981
986
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
982
987
|
|
|
983
|
-
/**
|
|
984
|
-
* Durchschnittl. EKP (Startwert)
|
|
985
|
-
*/
|
|
986
|
-
initialAvgPurchasePrice: number;
|
|
987
|
-
|
|
988
988
|
/**
|
|
989
989
|
* gross Volume in cubic meters
|
|
990
990
|
*/
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* weight and size w.o. packaging
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
netMetric: Article$Metric;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1081,14 +1081,14 @@ export interface Article {
|
|
|
1081
1081
|
deliveryMethodRef: ApiObjectReference;
|
|
1082
1082
|
|
|
1083
1083
|
/**
|
|
1084
|
-
*
|
|
1084
|
+
* Soll-Handelsspanne
|
|
1085
1085
|
*/
|
|
1086
|
-
|
|
1086
|
+
targetTradingMargin: number;
|
|
1087
1087
|
|
|
1088
1088
|
/**
|
|
1089
|
-
*
|
|
1089
|
+
* Produktion
|
|
1090
1090
|
*/
|
|
1091
|
-
|
|
1091
|
+
fabrication: boolean;
|
|
1092
1092
|
|
|
1093
1093
|
/**
|
|
1094
1094
|
* active
|
|
@@ -1140,26 +1140,26 @@ export interface Article {
|
|
|
1140
1140
|
*/
|
|
1141
1141
|
listingStateChangeTime: ScriptingDateTime;
|
|
1142
1142
|
|
|
1143
|
-
/**
|
|
1144
|
-
* Country code
|
|
1145
|
-
*/
|
|
1146
|
-
countryOfOriginRef: CountryReference;
|
|
1147
|
-
|
|
1148
1143
|
/**
|
|
1149
1144
|
* Arbeitseinheit in Minuten
|
|
1150
1145
|
*/
|
|
1151
1146
|
workUnitInMinutes: number;
|
|
1152
1147
|
|
|
1153
1148
|
/**
|
|
1154
|
-
*
|
|
1149
|
+
* Country code
|
|
1155
1150
|
*/
|
|
1156
|
-
|
|
1151
|
+
countryOfOriginRef: CountryReference;
|
|
1157
1152
|
|
|
1158
1153
|
/**
|
|
1159
1154
|
* Frei kommissionierbar
|
|
1160
1155
|
*/
|
|
1161
1156
|
freelyPickable: boolean;
|
|
1162
1157
|
|
|
1158
|
+
/**
|
|
1159
|
+
* description custom data
|
|
1160
|
+
*/
|
|
1161
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1162
|
+
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1165
1165
|
*/
|
|
@@ -1220,6 +1220,11 @@ export interface Article {
|
|
|
1220
1220
|
*/
|
|
1221
1221
|
permissibleForOrderProposal: boolean;
|
|
1222
1222
|
|
|
1223
|
+
/**
|
|
1224
|
+
* Artikel ist Gefahrgut
|
|
1225
|
+
*/
|
|
1226
|
+
isDangerousGood: boolean;
|
|
1227
|
+
|
|
1223
1228
|
/**
|
|
1224
1229
|
* reference to Product
|
|
1225
1230
|
*/
|
|
@@ -1230,25 +1235,20 @@ export interface Article {
|
|
|
1230
1235
|
*/
|
|
1231
1236
|
shippingLabelPrinting: boolean;
|
|
1232
1237
|
|
|
1233
|
-
/**
|
|
1234
|
-
* Artikel ist Gefahrgut
|
|
1235
|
-
*/
|
|
1236
|
-
isDangerousGood: boolean;
|
|
1237
|
-
|
|
1238
1238
|
/**
|
|
1239
1239
|
* rabattierbarer Artikel?
|
|
1240
1240
|
*/
|
|
1241
1241
|
discountable: boolean;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
*
|
|
1244
|
+
* alternative name of this product
|
|
1245
1245
|
*/
|
|
1246
|
-
|
|
1246
|
+
alternativeName: string;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
|
-
*
|
|
1249
|
+
* Kontingentartikel
|
|
1250
1250
|
*/
|
|
1251
|
-
|
|
1251
|
+
contingentArticleRef: ApiObjectReference;
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
@@ -1281,14 +1281,14 @@ export interface Article {
|
|
|
1281
1281
|
custom: EavArticle;
|
|
1282
1282
|
|
|
1283
1283
|
/**
|
|
1284
|
-
*
|
|
1284
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1285
1285
|
*/
|
|
1286
|
-
|
|
1286
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1287
1287
|
|
|
1288
1288
|
/**
|
|
1289
|
-
*
|
|
1289
|
+
* Art des Haltbarkeitsdatums
|
|
1290
1290
|
*/
|
|
1291
|
-
|
|
1291
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1292
1292
|
|
|
1293
1293
|
/**
|
|
1294
1294
|
* Hersteller
|
|
@@ -1316,14 +1316,14 @@ export interface Article {
|
|
|
1316
1316
|
listed: boolean;
|
|
1317
1317
|
|
|
1318
1318
|
/**
|
|
1319
|
-
*
|
|
1319
|
+
* provisionsberechtiger Artikel?
|
|
1320
1320
|
*/
|
|
1321
|
-
|
|
1321
|
+
commissionable: boolean;
|
|
1322
1322
|
|
|
1323
1323
|
/**
|
|
1324
|
-
*
|
|
1324
|
+
* Nur manuelle Produktion
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
onlyManualFabrication: boolean;
|
|
1327
1327
|
|
|
1328
1328
|
/**
|
|
1329
1329
|
* Preisbasis
|
|
@@ -1474,14 +1474,14 @@ export interface ArticleListing {
|
|
|
1474
1474
|
proposedLowestPriceGross: number;
|
|
1475
1475
|
|
|
1476
1476
|
/**
|
|
1477
|
-
*
|
|
1477
|
+
* der Sales Channel
|
|
1478
1478
|
*/
|
|
1479
|
-
|
|
1479
|
+
salesChannelRef: ApiObjectReference;
|
|
1480
1480
|
|
|
1481
1481
|
/**
|
|
1482
|
-
* der
|
|
1482
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1483
1483
|
*/
|
|
1484
|
-
|
|
1484
|
+
customLowestPriceGross: number;
|
|
1485
1485
|
|
|
1486
1486
|
/**
|
|
1487
1487
|
* soll der Artikel gelistet werden
|
|
@@ -1783,11 +1783,6 @@ export interface ArticleStorage {
|
|
|
1783
1783
|
|
|
1784
1784
|
export interface ArticleSupplier {
|
|
1785
1785
|
|
|
1786
|
-
/**
|
|
1787
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1788
|
-
*/
|
|
1789
|
-
useSupplierArticleDescription: boolean;
|
|
1790
|
-
|
|
1791
1786
|
/**
|
|
1792
1787
|
* Anzeigename des Accounts
|
|
1793
1788
|
*/
|
|
@@ -1799,15 +1794,20 @@ export interface ArticleSupplier {
|
|
|
1799
1794
|
supplierReportingStock: number;
|
|
1800
1795
|
|
|
1801
1796
|
/**
|
|
1802
|
-
* Soll
|
|
1797
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1803
1798
|
*/
|
|
1804
|
-
|
|
1799
|
+
useSupplierArticleDescription: boolean;
|
|
1805
1800
|
|
|
1806
1801
|
/**
|
|
1807
1802
|
* Lieferzeit in (Werk-)Tagen
|
|
1808
1803
|
*/
|
|
1809
1804
|
deliveryTime: number;
|
|
1810
1805
|
|
|
1806
|
+
/**
|
|
1807
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1808
|
+
*/
|
|
1809
|
+
useSupplierArticleIdentifier: boolean;
|
|
1810
|
+
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1813
1813
|
*/
|
|
@@ -1854,14 +1854,14 @@ export interface ArticleSupplier {
|
|
|
1854
1854
|
info: MetaInfo;
|
|
1855
1855
|
|
|
1856
1856
|
/**
|
|
1857
|
-
*
|
|
1857
|
+
* Referenced Article name
|
|
1858
1858
|
*/
|
|
1859
|
-
|
|
1859
|
+
articleName: string;
|
|
1860
1860
|
|
|
1861
1861
|
/**
|
|
1862
|
-
*
|
|
1862
|
+
* Verpackungseinheit
|
|
1863
1863
|
*/
|
|
1864
|
-
|
|
1864
|
+
packagingUnit: number;
|
|
1865
1865
|
|
|
1866
1866
|
/**
|
|
1867
1867
|
* Referenced Article
|
|
@@ -1893,25 +1893,20 @@ export interface ArticleSupplier {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
dropShippingAllowed: boolean;
|
|
1895
1895
|
|
|
1896
|
-
/**
|
|
1897
|
-
* Abweichende Produktbezeichnung
|
|
1898
|
-
*/
|
|
1899
|
-
supplierArticleName: string;
|
|
1900
|
-
|
|
1901
1896
|
/**
|
|
1902
1897
|
* Abweichende Produktbeschreibung
|
|
1903
1898
|
*/
|
|
1904
1899
|
supplierArticleDescription: string;
|
|
1905
1900
|
|
|
1906
1901
|
/**
|
|
1907
|
-
*
|
|
1902
|
+
* Abweichende Produktbezeichnung
|
|
1908
1903
|
*/
|
|
1909
|
-
|
|
1904
|
+
supplierArticleName: string;
|
|
1910
1905
|
|
|
1911
1906
|
/**
|
|
1912
|
-
*
|
|
1907
|
+
* Standardpreis Netto
|
|
1913
1908
|
*/
|
|
1914
|
-
|
|
1909
|
+
defaultNetPrice: number;
|
|
1915
1910
|
|
|
1916
1911
|
/**
|
|
1917
1912
|
* Referenced Supplier-Account
|
|
@@ -1923,6 +1918,11 @@ export interface ArticleSupplier {
|
|
|
1923
1918
|
*/
|
|
1924
1919
|
purchaseUnit: number;
|
|
1925
1920
|
|
|
1921
|
+
/**
|
|
1922
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1923
|
+
*/
|
|
1924
|
+
orderOnComponentBase: boolean;
|
|
1925
|
+
|
|
1926
1926
|
/**
|
|
1927
1927
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1928
1928
|
*/
|
|
@@ -2195,14 +2195,14 @@ export interface CrmActivity {
|
|
|
2195
2195
|
info: MetaInfo;
|
|
2196
2196
|
|
|
2197
2197
|
/**
|
|
2198
|
-
*
|
|
2198
|
+
* geplante Dauer
|
|
2199
2199
|
*/
|
|
2200
|
-
|
|
2200
|
+
plannedDurationInSeconds: number;
|
|
2201
2201
|
|
|
2202
2202
|
/**
|
|
2203
|
-
*
|
|
2203
|
+
* Aktivität intern abgerechnet?
|
|
2204
2204
|
*/
|
|
2205
|
-
|
|
2205
|
+
internalBilled: boolean;
|
|
2206
2206
|
|
|
2207
2207
|
/**
|
|
2208
2208
|
* Freie Felder der CRM-Aktivität
|
|
@@ -3008,14 +3008,14 @@ export interface CrmState {
|
|
|
3008
3008
|
readyToBill: boolean;
|
|
3009
3009
|
|
|
3010
3010
|
/**
|
|
3011
|
-
*
|
|
3011
|
+
* Handelt es sich um einen Anfang-Status
|
|
3012
3012
|
*/
|
|
3013
|
-
|
|
3013
|
+
startState: boolean;
|
|
3014
3014
|
|
|
3015
3015
|
/**
|
|
3016
|
-
*
|
|
3016
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3017
3017
|
*/
|
|
3018
|
-
|
|
3018
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3019
3019
|
|
|
3020
3020
|
/**
|
|
3021
3021
|
* MetaInformations for this Object
|
|
@@ -3259,14 +3259,14 @@ export interface CrmTask {
|
|
|
3259
3259
|
assignedUserRef: ApiObjectReference;
|
|
3260
3260
|
|
|
3261
3261
|
/**
|
|
3262
|
-
*
|
|
3262
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3263
3263
|
*/
|
|
3264
|
-
|
|
3264
|
+
externalRecordedTimes: number;
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
|
-
*
|
|
3267
|
+
* Beauftragte Zeit in Sekunden
|
|
3268
3268
|
*/
|
|
3269
|
-
|
|
3269
|
+
effortCommissioned: number;
|
|
3270
3270
|
|
|
3271
3271
|
/**
|
|
3272
3272
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3443,14 +3443,14 @@ export interface CurrencyReference {
|
|
|
3443
3443
|
export interface Customer {
|
|
3444
3444
|
|
|
3445
3445
|
/**
|
|
3446
|
-
*
|
|
3446
|
+
* Option für die Stapelverarbeitung
|
|
3447
3447
|
*/
|
|
3448
|
-
|
|
3448
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3449
|
|
|
3450
3450
|
/**
|
|
3451
|
-
*
|
|
3451
|
+
* reference to customer group
|
|
3452
3452
|
*/
|
|
3453
|
-
|
|
3453
|
+
customerGroupRef: ApiObjectReference;
|
|
3454
3454
|
|
|
3455
3455
|
/**
|
|
3456
3456
|
* Kreditlimit
|
|
@@ -3638,26 +3638,26 @@ export interface DeliveryMethod {
|
|
|
3638
3638
|
*/
|
|
3639
3639
|
defaultSizeUnit: UnitTypeReference;
|
|
3640
3640
|
|
|
3641
|
-
/**
|
|
3642
|
-
* Quelle für Paketgewicht
|
|
3643
|
-
*/
|
|
3644
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3645
|
-
|
|
3646
3641
|
/**
|
|
3647
3642
|
* translations
|
|
3648
3643
|
*/
|
|
3649
3644
|
translations: Array<DocumentTypeTerm>;
|
|
3650
3645
|
|
|
3651
3646
|
/**
|
|
3652
|
-
*
|
|
3647
|
+
* Quelle für Paketgewicht
|
|
3653
3648
|
*/
|
|
3654
|
-
|
|
3649
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3655
3650
|
|
|
3656
3651
|
/**
|
|
3657
3652
|
* Versand-Anbieter
|
|
3658
3653
|
*/
|
|
3659
3654
|
vdsCarrierId: number;
|
|
3660
3655
|
|
|
3656
|
+
/**
|
|
3657
|
+
* Gültige Ländercodes
|
|
3658
|
+
*/
|
|
3659
|
+
validCountryCodes: Array<string>;
|
|
3660
|
+
|
|
3661
3661
|
/**
|
|
3662
3662
|
* Standardgewichtseinheit
|
|
3663
3663
|
*/
|
|
@@ -3923,14 +3923,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3923
3923
|
accountId: number;
|
|
3924
3924
|
|
|
3925
3925
|
/**
|
|
3926
|
-
* Länderkennzeichen
|
|
3926
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3927
3927
|
*/
|
|
3928
|
-
|
|
3928
|
+
performanceCountryCode: string;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
* Länderkennzeichen
|
|
3931
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
sourceCountryCode: string;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
3936
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4060,14 +4060,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4060
4060
|
processedByWorkflow: boolean;
|
|
4061
4061
|
|
|
4062
4062
|
/**
|
|
4063
|
-
*
|
|
4063
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4064
4064
|
*/
|
|
4065
|
-
|
|
4065
|
+
baseTotalDocumentPriceModifier: number;
|
|
4066
4066
|
|
|
4067
4067
|
/**
|
|
4068
|
-
*
|
|
4068
|
+
* Telefon an Versender übergeben
|
|
4069
4069
|
*/
|
|
4070
|
-
|
|
4070
|
+
forwardPhoneToShipper: boolean;
|
|
4071
4071
|
|
|
4072
4072
|
/**
|
|
4073
4073
|
* Liste der Belegtexte
|
|
@@ -4090,14 +4090,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4090
4090
|
defaultAddress: DocumentAddress;
|
|
4091
4091
|
|
|
4092
4092
|
/**
|
|
4093
|
-
*
|
|
4093
|
+
* Verarbeitungsoption für Stapel
|
|
4094
4094
|
*/
|
|
4095
|
-
|
|
4095
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4096
4096
|
|
|
4097
4097
|
/**
|
|
4098
|
-
*
|
|
4098
|
+
* Leistungsdatum
|
|
4099
4099
|
*/
|
|
4100
|
-
|
|
4100
|
+
performanceDate: ScriptingDate;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
4103
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4155,14 +4155,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4155
4155
|
dropShipping: boolean;
|
|
4156
4156
|
|
|
4157
4157
|
/**
|
|
4158
|
-
*
|
|
4158
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4159
4159
|
*/
|
|
4160
|
-
|
|
4160
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4161
4161
|
|
|
4162
4162
|
/**
|
|
4163
|
-
*
|
|
4163
|
+
* Gesamtpreis netto
|
|
4164
4164
|
*/
|
|
4165
|
-
|
|
4165
|
+
totalNetPrice: number;
|
|
4166
4166
|
|
|
4167
4167
|
/**
|
|
4168
4168
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4275,14 +4275,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4275
4275
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4276
4276
|
|
|
4277
4277
|
/**
|
|
4278
|
-
*
|
|
4278
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4279
4279
|
*/
|
|
4280
|
-
|
|
4280
|
+
taxIdentificationNumber: string;
|
|
4281
4281
|
|
|
4282
4282
|
/**
|
|
4283
|
-
*
|
|
4283
|
+
* Statusinstanz des Belegs
|
|
4284
4284
|
*/
|
|
4285
|
-
|
|
4285
|
+
documentState: DocumentTypeState;
|
|
4286
4286
|
|
|
4287
4287
|
/**
|
|
4288
4288
|
* Rückgeld
|
|
@@ -4350,14 +4350,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4350
4350
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
*
|
|
4353
|
+
* Herkunft der Sprache
|
|
4354
4354
|
*/
|
|
4355
|
-
|
|
4355
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
4363
|
* Herkunft der Käufer-Referenz
|
|
@@ -4490,14 +4490,14 @@ export interface DocumentAddress {
|
|
|
4490
4490
|
postOfficeBox: string;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
|
-
*
|
|
4493
|
+
* country code IsoAlpha3
|
|
4494
4494
|
*/
|
|
4495
|
-
|
|
4495
|
+
countryCode: string;
|
|
4496
4496
|
|
|
4497
4497
|
/**
|
|
4498
|
-
*
|
|
4498
|
+
* Street
|
|
4499
4499
|
*/
|
|
4500
|
-
|
|
4500
|
+
street: string;
|
|
4501
4501
|
|
|
4502
4502
|
/**
|
|
4503
4503
|
* Unique identifier of the Object
|
|
@@ -4702,14 +4702,14 @@ export interface DocumentContractDetail {
|
|
|
4702
4702
|
runtimeToDate: ScriptingDate;
|
|
4703
4703
|
|
|
4704
4704
|
/**
|
|
4705
|
-
*
|
|
4705
|
+
* Nächste Fälligkeit
|
|
4706
4706
|
*/
|
|
4707
|
-
|
|
4707
|
+
nextDueDate: ScriptingDate;
|
|
4708
4708
|
|
|
4709
4709
|
/**
|
|
4710
|
-
*
|
|
4710
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4711
4711
|
*/
|
|
4712
|
-
|
|
4712
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4713
4713
|
|
|
4714
4714
|
/**
|
|
4715
4715
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4944,14 +4944,14 @@ export interface DocumentLine {
|
|
|
4944
4944
|
number: string;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4947
|
+
* Gesamtbruttogewicht
|
|
4948
4948
|
*/
|
|
4949
|
-
|
|
4949
|
+
totalGrossWeight: number;
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
|
-
*
|
|
4952
|
+
* Referenz zur Kundenauftragszeile
|
|
4953
4953
|
*/
|
|
4954
|
-
|
|
4954
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4955
4955
|
|
|
4956
4956
|
/**
|
|
4957
4957
|
* skontierbare Position?
|
|
@@ -4969,20 +4969,25 @@ export interface DocumentLine {
|
|
|
4969
4969
|
price: number;
|
|
4970
4970
|
|
|
4971
4971
|
/**
|
|
4972
|
-
*
|
|
4972
|
+
* Gesamtpreis Position in Basiswährung
|
|
4973
4973
|
*/
|
|
4974
|
-
|
|
4974
|
+
baseTotalLinePrice: number;
|
|
4975
4975
|
|
|
4976
4976
|
/**
|
|
4977
|
-
*
|
|
4977
|
+
* FiBu-Buchung
|
|
4978
4978
|
*/
|
|
4979
|
-
|
|
4979
|
+
financeBooking: DocumentFinanceBooking;
|
|
4980
4980
|
|
|
4981
4981
|
/**
|
|
4982
4982
|
* Positionstyp
|
|
4983
4983
|
*/
|
|
4984
4984
|
lineType: DocumentLineType;
|
|
4985
4985
|
|
|
4986
|
+
/**
|
|
4987
|
+
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
4988
|
+
*/
|
|
4989
|
+
totalLinePriceModifier: number;
|
|
4990
|
+
|
|
4986
4991
|
/**
|
|
4987
4992
|
* vorgeorderte Menge in Pickvorgang
|
|
4988
4993
|
*/
|
|
@@ -4993,11 +4998,6 @@ export interface DocumentLine {
|
|
|
4993
4998
|
*/
|
|
4994
4999
|
supplierOrderLineIds: Array<number>;
|
|
4995
5000
|
|
|
4996
|
-
/**
|
|
4997
|
-
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
4998
|
-
*/
|
|
4999
|
-
totalLinePriceModifier: number;
|
|
5000
|
-
|
|
5001
5001
|
/**
|
|
5002
5002
|
* Vorgabe zu Streckengeschäft
|
|
5003
5003
|
*/
|
|
@@ -5013,6 +5013,11 @@ export interface DocumentLine {
|
|
|
5013
5013
|
*/
|
|
5014
5014
|
id: number;
|
|
5015
5015
|
|
|
5016
|
+
/**
|
|
5017
|
+
* Serientyp
|
|
5018
|
+
*/
|
|
5019
|
+
serialType: ArticleSerialType;
|
|
5020
|
+
|
|
5016
5021
|
/**
|
|
5017
5022
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5018
5023
|
*/
|
|
@@ -5028,11 +5033,6 @@ export interface DocumentLine {
|
|
|
5028
5033
|
*/
|
|
5029
5034
|
basePrice: number;
|
|
5030
5035
|
|
|
5031
|
-
/**
|
|
5032
|
-
* Serientyp
|
|
5033
|
-
*/
|
|
5034
|
-
serialType: ArticleSerialType;
|
|
5035
|
-
|
|
5036
5036
|
/**
|
|
5037
5037
|
* MetaInformations for this Object
|
|
5038
5038
|
*/
|
|
@@ -5254,14 +5254,14 @@ export interface DocumentLine {
|
|
|
5254
5254
|
deliveryText: string;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Produktionsdetails
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
fabricationDetail: DocumentLineFabricationDetail;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Vorgabewert für die Preiskalkulation
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
presetPrice: number;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
5267
|
* Freifelder
|
|
@@ -5713,14 +5713,14 @@ export interface DocumentLinePosDetail {
|
|
|
5713
5713
|
externalPaymentErrorMessage: string;
|
|
5714
5714
|
|
|
5715
5715
|
/**
|
|
5716
|
-
*
|
|
5716
|
+
* Status der externen Zahlung
|
|
5717
5717
|
*/
|
|
5718
|
-
|
|
5718
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5719
5719
|
|
|
5720
5720
|
/**
|
|
5721
|
-
*
|
|
5721
|
+
* Typ der Einlage/Ausgabe
|
|
5722
5722
|
*/
|
|
5723
|
-
|
|
5723
|
+
depositExpenseTypeId: number;
|
|
5724
5724
|
|
|
5725
5725
|
/**
|
|
5726
5726
|
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
@@ -6213,14 +6213,14 @@ export interface DocumentText {
|
|
|
6213
6213
|
transferableIntoSubsequentDocuments: boolean;
|
|
6214
6214
|
|
|
6215
6215
|
/**
|
|
6216
|
-
*
|
|
6216
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6217
6217
|
*/
|
|
6218
|
-
|
|
6218
|
+
deleted: boolean;
|
|
6219
6219
|
|
|
6220
6220
|
/**
|
|
6221
|
-
*
|
|
6221
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6222
6222
|
*/
|
|
6223
|
-
|
|
6223
|
+
textPosition: TextPosition;
|
|
6224
6224
|
|
|
6225
6225
|
/**
|
|
6226
6226
|
* textBaustein Vorlage
|
|
@@ -6816,14 +6816,14 @@ export interface FabricationRevertRequest {
|
|
|
6816
6816
|
quantity: number;
|
|
6817
6817
|
|
|
6818
6818
|
/**
|
|
6819
|
-
*
|
|
6819
|
+
* ID der zu stornierenden Position
|
|
6820
6820
|
*/
|
|
6821
|
-
|
|
6821
|
+
documentLineId: number;
|
|
6822
6822
|
|
|
6823
6823
|
/**
|
|
6824
|
-
*
|
|
6824
|
+
* Material automatisch stornieren
|
|
6825
6825
|
*/
|
|
6826
|
-
|
|
6826
|
+
autoRevertComponents: boolean;
|
|
6827
6827
|
|
|
6828
6828
|
/**
|
|
6829
6829
|
* Zu stornierende Seriennummern
|
|
@@ -7053,14 +7053,14 @@ export interface PaymentMethod {
|
|
|
7053
7053
|
daysToAddForFollowup: number;
|
|
7054
7054
|
|
|
7055
7055
|
/**
|
|
7056
|
-
*
|
|
7056
|
+
* external Payment Id
|
|
7057
7057
|
*/
|
|
7058
|
-
|
|
7058
|
+
externalPaymentId: string;
|
|
7059
7059
|
|
|
7060
7060
|
/**
|
|
7061
|
-
*
|
|
7061
|
+
* Die Business Transaction
|
|
7062
7062
|
*/
|
|
7063
|
-
|
|
7063
|
+
businessTransaction: ApiObjectReference;
|
|
7064
7064
|
|
|
7065
7065
|
/**
|
|
7066
7066
|
* Unique identifier of the Object
|
|
@@ -7427,14 +7427,14 @@ export interface Picklist {
|
|
|
7427
7427
|
export interface PicklistLine {
|
|
7428
7428
|
|
|
7429
7429
|
/**
|
|
7430
|
-
*
|
|
7430
|
+
* Gesammelte Menge der Position
|
|
7431
7431
|
*/
|
|
7432
|
-
|
|
7432
|
+
quantityCollected: number;
|
|
7433
7433
|
|
|
7434
7434
|
/**
|
|
7435
|
-
*
|
|
7435
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7436
7436
|
*/
|
|
7437
|
-
|
|
7437
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7438
7438
|
|
|
7439
7439
|
/**
|
|
7440
7440
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7472,14 +7472,14 @@ export interface PicklistLine {
|
|
|
7472
7472
|
version: number;
|
|
7473
7473
|
|
|
7474
7474
|
/**
|
|
7475
|
-
*
|
|
7475
|
+
* Lageranzeigename
|
|
7476
7476
|
*/
|
|
7477
|
-
|
|
7477
|
+
storageDisplayName: string;
|
|
7478
7478
|
|
|
7479
7479
|
/**
|
|
7480
|
-
*
|
|
7480
|
+
* ID der Quell-Dokumentposition
|
|
7481
7481
|
*/
|
|
7482
|
-
|
|
7482
|
+
sourceDocumentLineId: number;
|
|
7483
7483
|
|
|
7484
7484
|
/**
|
|
7485
7485
|
* Artikelnummer
|
|
@@ -7633,14 +7633,14 @@ export interface PicklistLineComponent {
|
|
|
7633
7633
|
targetDocumentLineComponentId: number;
|
|
7634
7634
|
|
|
7635
7635
|
/**
|
|
7636
|
-
*
|
|
7636
|
+
* abweichende Artikelbezeichnung
|
|
7637
7637
|
*/
|
|
7638
|
-
|
|
7638
|
+
articleAlternativeName: string;
|
|
7639
7639
|
|
|
7640
7640
|
/**
|
|
7641
|
-
*
|
|
7641
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7642
7642
|
*/
|
|
7643
|
-
|
|
7643
|
+
quantityPerAssemblyGroup: number;
|
|
7644
7644
|
|
|
7645
7645
|
/**
|
|
7646
7646
|
* Verpackte Menge der Position
|
|
@@ -7816,11 +7816,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7816
7816
|
*/
|
|
7817
7817
|
alternativeSelectionInVql: string;
|
|
7818
7818
|
|
|
7819
|
-
/**
|
|
7820
|
-
* Nur vollständig lieferbare Positionen
|
|
7821
|
-
*/
|
|
7822
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
7823
|
-
|
|
7824
7819
|
/**
|
|
7825
7820
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7826
7821
|
*/
|
|
@@ -7831,6 +7826,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7831
7826
|
*/
|
|
7832
7827
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7833
7828
|
|
|
7829
|
+
/**
|
|
7830
|
+
* Nur vollständig lieferbare Positionen
|
|
7831
|
+
*/
|
|
7832
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7833
|
+
|
|
7834
7834
|
/**
|
|
7835
7835
|
* Selektion über den Bereich vom Belegdatum
|
|
7836
7836
|
*/
|
|
@@ -7905,14 +7905,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7905
7905
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7906
7906
|
|
|
7907
7907
|
/**
|
|
7908
|
-
*
|
|
7908
|
+
* Der zu verwendende Pickwagen
|
|
7909
7909
|
*/
|
|
7910
|
-
|
|
7910
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7911
7911
|
|
|
7912
7912
|
/**
|
|
7913
|
-
*
|
|
7913
|
+
* Lagerplätze vorgeben
|
|
7914
7914
|
*/
|
|
7915
|
-
|
|
7915
|
+
specifyStorageBins: boolean;
|
|
7916
7916
|
|
|
7917
7917
|
/**
|
|
7918
7918
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -7983,14 +7983,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7983
7983
|
showShippingFormOnPickingFinish: boolean;
|
|
7984
7984
|
|
|
7985
7985
|
/**
|
|
7986
|
-
*
|
|
7986
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7987
7987
|
*/
|
|
7988
|
-
|
|
7988
|
+
allowPickingOfServiceArticles: boolean;
|
|
7989
7989
|
|
|
7990
7990
|
/**
|
|
7991
|
-
*
|
|
7991
|
+
* Sammelbestätigung erlauben
|
|
7992
7992
|
*/
|
|
7993
|
-
|
|
7993
|
+
allowFullConfirmation: boolean;
|
|
7994
7994
|
|
|
7995
7995
|
/**
|
|
7996
7996
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -8090,14 +8090,14 @@ export interface PriceSelectionCriteria {
|
|
|
8090
8090
|
quantity: number;
|
|
8091
8091
|
|
|
8092
8092
|
/**
|
|
8093
|
-
* Liste von
|
|
8093
|
+
* Liste von Artikel-IDs
|
|
8094
8094
|
*/
|
|
8095
|
-
|
|
8095
|
+
articleIds: Array<number>;
|
|
8096
8096
|
|
|
8097
8097
|
/**
|
|
8098
|
-
* Liste von
|
|
8098
|
+
* Liste von Account-IDs
|
|
8099
8099
|
*/
|
|
8100
|
-
|
|
8100
|
+
accountIds: Array<number>;
|
|
8101
8101
|
|
|
8102
8102
|
/**
|
|
8103
8103
|
* ein qualifier
|
|
@@ -8213,14 +8213,14 @@ export interface Product {
|
|
|
8213
8213
|
bundle: boolean;
|
|
8214
8214
|
|
|
8215
8215
|
/**
|
|
8216
|
-
*
|
|
8216
|
+
* Serientyp
|
|
8217
8217
|
*/
|
|
8218
|
-
|
|
8218
|
+
serialType: ArticleSerialType;
|
|
8219
8219
|
|
|
8220
8220
|
/**
|
|
8221
|
-
*
|
|
8221
|
+
* Variantenwerte
|
|
8222
8222
|
*/
|
|
8223
|
-
|
|
8223
|
+
variantValues: Array<VariantValueReference>;
|
|
8224
8224
|
|
|
8225
8225
|
/**
|
|
8226
8226
|
* MetaInformations for this Object
|
|
@@ -8279,14 +8279,14 @@ export interface ProductDiscount {
|
|
|
8279
8279
|
validFrom: ScriptingDate;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* Warengruppe
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
productGroupRef: ApiObjectReference;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
|
-
*
|
|
8287
|
+
* Bestimmt die Art des Rabatts
|
|
8288
8288
|
*/
|
|
8289
|
-
|
|
8289
|
+
modifierType: PriceModifierType;
|
|
8290
8290
|
|
|
8291
8291
|
/**
|
|
8292
8292
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8334,14 +8334,14 @@ export interface ProductDiscount {
|
|
|
8334
8334
|
modifierValueType: ValueType;
|
|
8335
8335
|
|
|
8336
8336
|
/**
|
|
8337
|
-
*
|
|
8337
|
+
* Account, für den der Rabatt gültig ist
|
|
8338
8338
|
*/
|
|
8339
|
-
|
|
8339
|
+
accountRef: ApiObjectReference;
|
|
8340
8340
|
|
|
8341
8341
|
/**
|
|
8342
|
-
*
|
|
8342
|
+
* Name des Rabatts
|
|
8343
8343
|
*/
|
|
8344
|
-
|
|
8344
|
+
modifierName: string;
|
|
8345
8345
|
|
|
8346
8346
|
/**
|
|
8347
8347
|
* Unique identifier of the Object
|
|
@@ -8533,14 +8533,14 @@ export interface ProductPrice {
|
|
|
8533
8533
|
qualifier: ProductPriceQualifier;
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Aktionpreis
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
specialOfferPrice: boolean;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
|
-
*
|
|
8541
|
+
* Preisbasis
|
|
8542
8542
|
*/
|
|
8543
|
-
|
|
8543
|
+
priceBase: ArticlePriceBase;
|
|
8544
8544
|
|
|
8545
8545
|
/**
|
|
8546
8546
|
* Gültig bis
|
|
@@ -8692,14 +8692,14 @@ export interface RequestDocument {
|
|
|
8692
8692
|
contractDetail: DocumentContractDetail;
|
|
8693
8693
|
|
|
8694
8694
|
/**
|
|
8695
|
-
*
|
|
8695
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8696
8696
|
*/
|
|
8697
|
-
|
|
8697
|
+
paymentTermId: number;
|
|
8698
8698
|
|
|
8699
8699
|
/**
|
|
8700
|
-
*
|
|
8700
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8701
8701
|
*/
|
|
8702
|
-
|
|
8702
|
+
supplierAccountId: number;
|
|
8703
8703
|
|
|
8704
8704
|
/**
|
|
8705
8705
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -9533,14 +9533,14 @@ export interface ShelfDocument {
|
|
|
9533
9533
|
tags: Array<TagDto>;
|
|
9534
9534
|
|
|
9535
9535
|
/**
|
|
9536
|
-
*
|
|
9536
|
+
* Mehrsprachige Bezeichnungen
|
|
9537
9537
|
*/
|
|
9538
|
-
|
|
9538
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9539
9539
|
|
|
9540
9540
|
/**
|
|
9541
|
-
*
|
|
9541
|
+
* share informations
|
|
9542
9542
|
*/
|
|
9543
|
-
|
|
9543
|
+
shares: Array<ShelfShare>;
|
|
9544
9544
|
|
|
9545
9545
|
/**
|
|
9546
9546
|
* Automatische Löschung ab
|
|
@@ -9616,14 +9616,14 @@ export interface ShelfDocumentAttribution {
|
|
|
9616
9616
|
shelfResourceId: number;
|
|
9617
9617
|
|
|
9618
9618
|
/**
|
|
9619
|
-
*
|
|
9619
|
+
* Verfügbare Transformationen zum Bild
|
|
9620
9620
|
*/
|
|
9621
|
-
|
|
9621
|
+
transformationKeys: Array<string>;
|
|
9622
9622
|
|
|
9623
9623
|
/**
|
|
9624
|
-
*
|
|
9624
|
+
* id of the referenced object
|
|
9625
9625
|
*/
|
|
9626
|
-
|
|
9626
|
+
refId: number;
|
|
9627
9627
|
|
|
9628
9628
|
/**
|
|
9629
9629
|
* Unique identifier of the Object
|
|
@@ -9672,14 +9672,14 @@ export interface ShelfDocumentType {
|
|
|
9672
9672
|
active: boolean;
|
|
9673
9673
|
|
|
9674
9674
|
/**
|
|
9675
|
-
*
|
|
9675
|
+
* access level or reading
|
|
9676
9676
|
*/
|
|
9677
|
-
|
|
9677
|
+
accessLevelRead: number;
|
|
9678
9678
|
|
|
9679
9679
|
/**
|
|
9680
|
-
*
|
|
9680
|
+
* label of type
|
|
9681
9681
|
*/
|
|
9682
|
-
|
|
9682
|
+
label: string;
|
|
9683
9683
|
|
|
9684
9684
|
/**
|
|
9685
9685
|
* storage rule for revisions
|
|
@@ -9725,14 +9725,14 @@ export interface ShelfFile {
|
|
|
9725
9725
|
subFiles: Array<SubFileInfo>;
|
|
9726
9726
|
|
|
9727
9727
|
/**
|
|
9728
|
-
*
|
|
9728
|
+
* revision number of this file
|
|
9729
9729
|
*/
|
|
9730
|
-
|
|
9730
|
+
revisionNumber: number;
|
|
9731
9731
|
|
|
9732
9732
|
/**
|
|
9733
|
-
*
|
|
9733
|
+
* fileSize
|
|
9734
9734
|
*/
|
|
9735
|
-
|
|
9735
|
+
fileSize: number;
|
|
9736
9736
|
|
|
9737
9737
|
/**
|
|
9738
9738
|
* file-extension of this entry
|
|
@@ -9811,14 +9811,14 @@ export interface ShelfShare {
|
|
|
9811
9811
|
publishState: ShelfSharePublishState;
|
|
9812
9812
|
|
|
9813
9813
|
/**
|
|
9814
|
-
*
|
|
9814
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9815
9815
|
*/
|
|
9816
|
-
|
|
9816
|
+
publicUrlDurationInMinutes: number;
|
|
9817
9817
|
|
|
9818
9818
|
/**
|
|
9819
|
-
*
|
|
9819
|
+
* Freifelder
|
|
9820
9820
|
*/
|
|
9821
|
-
|
|
9821
|
+
custom: EavShelfshare;
|
|
9822
9822
|
|
|
9823
9823
|
/**
|
|
9824
9824
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10030,14 +10030,14 @@ export interface StockMovementManualApi {
|
|
|
10030
10030
|
export interface StockTransferApi {
|
|
10031
10031
|
|
|
10032
10032
|
/**
|
|
10033
|
-
*
|
|
10033
|
+
* Seriennummer
|
|
10034
10034
|
*/
|
|
10035
|
-
|
|
10035
|
+
serialNumberId: number;
|
|
10036
10036
|
|
|
10037
10037
|
/**
|
|
10038
|
-
*
|
|
10038
|
+
* Ziel-Lager
|
|
10039
10039
|
*/
|
|
10040
|
-
|
|
10040
|
+
targetStorageId: number;
|
|
10041
10041
|
|
|
10042
10042
|
/**
|
|
10043
10043
|
* Bemerkung
|
|
@@ -10247,14 +10247,14 @@ export interface Supplier {
|
|
|
10247
10247
|
info: MetaInfo;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* reference to the delivery method
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10253
10253
|
|
|
10254
10254
|
/**
|
|
10255
|
-
*
|
|
10255
|
+
* Lieferantengruppe
|
|
10256
10256
|
*/
|
|
10257
|
-
|
|
10257
|
+
supplierGroupRef: ApiObjectReference;
|
|
10258
10258
|
|
|
10259
10259
|
/**
|
|
10260
10260
|
* tax able or tax free
|
|
@@ -10312,14 +10312,14 @@ export interface Supplier {
|
|
|
10312
10312
|
performanceCountryCode: string;
|
|
10313
10313
|
|
|
10314
10314
|
/**
|
|
10315
|
-
*
|
|
10315
|
+
* reference to the payment method
|
|
10316
10316
|
*/
|
|
10317
|
-
|
|
10317
|
+
paymentMethodRef: ApiObjectReference;
|
|
10318
10318
|
|
|
10319
10319
|
/**
|
|
10320
|
-
*
|
|
10320
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10321
10321
|
*/
|
|
10322
|
-
|
|
10322
|
+
defaultDeliveryTime: number;
|
|
10323
10323
|
|
|
10324
10324
|
/**
|
|
10325
10325
|
* currency code IsoAlpha3
|
|
@@ -10340,14 +10340,14 @@ export interface TagDto {
|
|
|
10340
10340
|
editColor: string;
|
|
10341
10341
|
|
|
10342
10342
|
/**
|
|
10343
|
-
* Farbe
|
|
10343
|
+
* Farbe für die Anzeige des Tags
|
|
10344
10344
|
*/
|
|
10345
|
-
|
|
10345
|
+
color: string;
|
|
10346
10346
|
|
|
10347
10347
|
/**
|
|
10348
|
-
* Farbe
|
|
10348
|
+
* Farbe in Such-GUI
|
|
10349
10349
|
*/
|
|
10350
|
-
|
|
10350
|
+
searchColor: string;
|
|
10351
10351
|
|
|
10352
10352
|
/**
|
|
10353
10353
|
* Beschriftung des Tags
|