@vario-software/types 2026.20.4 → 2026.21.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 +2094 -1237
- package/scripting/services.d.ts +87 -46
- package/scripting/types.d.ts +426 -264
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
|
|
@@ -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
|
|
@@ -346,14 +346,14 @@ export interface AccountAddress {
|
|
|
346
346
|
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
* Custom data
|
|
350
350
|
*/
|
|
351
|
-
|
|
351
|
+
custom: EavAccountaddress;
|
|
352
352
|
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* abweichende Zahlungsart
|
|
355
355
|
*/
|
|
356
|
-
|
|
356
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
357
357
|
|
|
358
358
|
/**
|
|
359
359
|
* Postcode
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -652,6 +652,11 @@ export interface AccountManufacturer {
|
|
|
652
652
|
*/
|
|
653
653
|
id: number;
|
|
654
654
|
|
|
655
|
+
/**
|
|
656
|
+
* Ist der UVP verpflichtend?
|
|
657
|
+
*/
|
|
658
|
+
forcedRecommendedRetailPrice: boolean;
|
|
659
|
+
|
|
655
660
|
/**
|
|
656
661
|
* Version Identifier for this Object (for PUT)
|
|
657
662
|
*/
|
|
@@ -998,25 +1003,20 @@ export interface Article {
|
|
|
998
1003
|
*/
|
|
999
1004
|
customsTariffNumber: string;
|
|
1000
1005
|
|
|
1001
|
-
/**
|
|
1002
|
-
* Product custom data
|
|
1003
|
-
*/
|
|
1004
|
-
listingCustom: EavArticleListing;
|
|
1005
|
-
|
|
1006
1006
|
/**
|
|
1007
1007
|
* is this product purchasable
|
|
1008
1008
|
*/
|
|
1009
1009
|
purchasable: boolean;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* base capacity unit
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
baseCapacityUnit: UnitTypeReference;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* is this product sellable without any quantity at the stock
|
|
@@ -1028,6 +1028,11 @@ export interface Article {
|
|
|
1028
1028
|
*/
|
|
1029
1029
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1030
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Durchschnittl. EKP (Startwert)
|
|
1033
|
+
*/
|
|
1034
|
+
initialAvgPurchasePrice: number;
|
|
1035
|
+
|
|
1031
1036
|
/**
|
|
1032
1037
|
* gross Volume in cubic meters
|
|
1033
1038
|
*/
|
|
@@ -1043,6 +1048,11 @@ export interface Article {
|
|
|
1043
1048
|
*/
|
|
1044
1049
|
productUnit: UnitTypeReference;
|
|
1045
1050
|
|
|
1051
|
+
/**
|
|
1052
|
+
* Ist der UVP verpflichtend?
|
|
1053
|
+
*/
|
|
1054
|
+
forcedRecommendedRetailPrice: boolean;
|
|
1055
|
+
|
|
1046
1056
|
/**
|
|
1047
1057
|
* Garantie in Monaten
|
|
1048
1058
|
*/
|
|
@@ -1124,14 +1134,14 @@ export interface Article {
|
|
|
1124
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1125
1135
|
|
|
1126
1136
|
/**
|
|
1127
|
-
*
|
|
1137
|
+
* Produktion
|
|
1128
1138
|
*/
|
|
1129
|
-
|
|
1139
|
+
fabrication: boolean;
|
|
1130
1140
|
|
|
1131
1141
|
/**
|
|
1132
|
-
*
|
|
1142
|
+
* Soll-Handelsspanne
|
|
1133
1143
|
*/
|
|
1134
|
-
|
|
1144
|
+
targetTradingMargin: number;
|
|
1135
1145
|
|
|
1136
1146
|
/**
|
|
1137
1147
|
* active
|
|
@@ -1188,15 +1198,20 @@ export interface Article {
|
|
|
1188
1198
|
*/
|
|
1189
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1190
1200
|
|
|
1201
|
+
/**
|
|
1202
|
+
* Country code
|
|
1203
|
+
*/
|
|
1204
|
+
countryOfOriginRef: CountryReference;
|
|
1205
|
+
|
|
1191
1206
|
/**
|
|
1192
1207
|
* Arbeitseinheit in Minuten
|
|
1193
1208
|
*/
|
|
1194
1209
|
workUnitInMinutes: number;
|
|
1195
1210
|
|
|
1196
1211
|
/**
|
|
1197
|
-
*
|
|
1212
|
+
* Frei kommissionierbar
|
|
1198
1213
|
*/
|
|
1199
|
-
|
|
1214
|
+
freelyPickable: boolean;
|
|
1200
1215
|
|
|
1201
1216
|
/**
|
|
1202
1217
|
* description custom data
|
|
@@ -1204,9 +1219,9 @@ export interface Article {
|
|
|
1204
1219
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1205
1220
|
|
|
1206
1221
|
/**
|
|
1207
|
-
*
|
|
1222
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1208
1223
|
*/
|
|
1209
|
-
|
|
1224
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1210
1225
|
|
|
1211
1226
|
/**
|
|
1212
1227
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1258,6 +1273,11 @@ export interface Article {
|
|
|
1258
1273
|
*/
|
|
1259
1274
|
grossSalesPrice: number;
|
|
1260
1275
|
|
|
1276
|
+
/**
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
|
+
*/
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
|
+
|
|
1261
1281
|
/**
|
|
1262
1282
|
* Letzter EKP (Startwert)
|
|
1263
1283
|
*/
|
|
@@ -1269,9 +1289,9 @@ export interface Article {
|
|
|
1269
1289
|
permissibleForOrderProposal: boolean;
|
|
1270
1290
|
|
|
1271
1291
|
/**
|
|
1272
|
-
*
|
|
1292
|
+
* Versandlabeldruck
|
|
1273
1293
|
*/
|
|
1274
|
-
|
|
1294
|
+
shippingLabelPrinting: boolean;
|
|
1275
1295
|
|
|
1276
1296
|
/**
|
|
1277
1297
|
* reference to Product
|
|
@@ -1279,9 +1299,14 @@ export interface Article {
|
|
|
1279
1299
|
productRef: ApiObjectReference;
|
|
1280
1300
|
|
|
1281
1301
|
/**
|
|
1282
|
-
*
|
|
1302
|
+
* Artikel ist Gefahrgut
|
|
1283
1303
|
*/
|
|
1284
|
-
|
|
1304
|
+
isDangerousGood: boolean;
|
|
1305
|
+
|
|
1306
|
+
/**
|
|
1307
|
+
* Kontingentartikel
|
|
1308
|
+
*/
|
|
1309
|
+
contingentArticleRef: ApiObjectReference;
|
|
1285
1310
|
|
|
1286
1311
|
/**
|
|
1287
1312
|
* rabattierbarer Artikel?
|
|
@@ -1293,11 +1318,6 @@ export interface Article {
|
|
|
1293
1318
|
*/
|
|
1294
1319
|
alternativeName: string;
|
|
1295
1320
|
|
|
1296
|
-
/**
|
|
1297
|
-
* Kontingentartikel
|
|
1298
|
-
*/
|
|
1299
|
-
contingentArticleRef: ApiObjectReference;
|
|
1300
|
-
|
|
1301
1321
|
/**
|
|
1302
1322
|
* base capacity
|
|
1303
1323
|
*/
|
|
@@ -1329,14 +1349,14 @@ export interface Article {
|
|
|
1329
1349
|
custom: EavArticle;
|
|
1330
1350
|
|
|
1331
1351
|
/**
|
|
1332
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1333
1353
|
*/
|
|
1334
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1335
1355
|
|
|
1336
1356
|
/**
|
|
1337
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1338
1358
|
*/
|
|
1339
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1340
1360
|
|
|
1341
1361
|
/**
|
|
1342
1362
|
* Hersteller
|
|
@@ -1373,6 +1393,11 @@ export interface Article {
|
|
|
1373
1393
|
*/
|
|
1374
1394
|
commissionable: boolean;
|
|
1375
1395
|
|
|
1396
|
+
/**
|
|
1397
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
1398
|
+
*/
|
|
1399
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
1400
|
+
|
|
1376
1401
|
/**
|
|
1377
1402
|
* Preisbasis
|
|
1378
1403
|
*/
|
|
@@ -1397,14 +1422,14 @@ export interface Article$Metric {
|
|
|
1397
1422
|
sizeX: number;
|
|
1398
1423
|
|
|
1399
1424
|
/**
|
|
1400
|
-
*
|
|
1425
|
+
* size unit
|
|
1401
1426
|
*/
|
|
1402
|
-
|
|
1427
|
+
sizeUnit: UnitTypeReference;
|
|
1403
1428
|
|
|
1404
1429
|
/**
|
|
1405
|
-
*
|
|
1430
|
+
* weight
|
|
1406
1431
|
*/
|
|
1407
|
-
|
|
1432
|
+
weight: number;
|
|
1408
1433
|
|
|
1409
1434
|
/**
|
|
1410
1435
|
* size
|
|
@@ -1458,6 +1483,11 @@ export const enum ArticleAvailabilityDetermination$Operation {
|
|
|
1458
1483
|
|
|
1459
1484
|
export interface ArticleIdentifier {
|
|
1460
1485
|
|
|
1486
|
+
/**
|
|
1487
|
+
* Standard Artikel Kennung?
|
|
1488
|
+
*/
|
|
1489
|
+
defaultArticleIdentifier: boolean;
|
|
1490
|
+
|
|
1461
1491
|
/**
|
|
1462
1492
|
* identifier type
|
|
1463
1493
|
*/
|
|
@@ -1522,14 +1552,14 @@ export interface ArticleListing {
|
|
|
1522
1552
|
proposedLowestPriceGross: number;
|
|
1523
1553
|
|
|
1524
1554
|
/**
|
|
1525
|
-
* der
|
|
1555
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1526
1556
|
*/
|
|
1527
|
-
|
|
1557
|
+
customLowestPriceGross: number;
|
|
1528
1558
|
|
|
1529
1559
|
/**
|
|
1530
|
-
*
|
|
1560
|
+
* der Sales Channel
|
|
1531
1561
|
*/
|
|
1532
|
-
|
|
1562
|
+
salesChannelRef: ApiObjectReference;
|
|
1533
1563
|
|
|
1534
1564
|
/**
|
|
1535
1565
|
* soll der Artikel gelistet werden
|
|
@@ -1723,6 +1753,7 @@ export const enum ArticleSerialType {
|
|
|
1723
1753
|
NONE = 'NONE',
|
|
1724
1754
|
SERIAL_NUMBER = 'SERIAL_NUMBER',
|
|
1725
1755
|
LOT = 'LOT',
|
|
1756
|
+
BEST_BEFORE = 'BEST_BEFORE',
|
|
1726
1757
|
DOUBLE_SERIAL_NUMBER = 'DOUBLE_SERIAL_NUMBER'
|
|
1727
1758
|
}
|
|
1728
1759
|
|
|
@@ -1738,6 +1769,11 @@ export interface ArticleStorage {
|
|
|
1738
1769
|
*/
|
|
1739
1770
|
replenishmentFrom: number;
|
|
1740
1771
|
|
|
1772
|
+
/**
|
|
1773
|
+
* Meldebestand
|
|
1774
|
+
*/
|
|
1775
|
+
reorderPoint: number;
|
|
1776
|
+
|
|
1741
1777
|
/**
|
|
1742
1778
|
* Bestellte Menge
|
|
1743
1779
|
*/
|
|
@@ -1748,11 +1784,6 @@ export interface ArticleStorage {
|
|
|
1748
1784
|
*/
|
|
1749
1785
|
quantityInPicking: number;
|
|
1750
1786
|
|
|
1751
|
-
/**
|
|
1752
|
-
* Meldebestand
|
|
1753
|
-
*/
|
|
1754
|
-
reorderPoint: number;
|
|
1755
|
-
|
|
1756
1787
|
/**
|
|
1757
1788
|
* Nachschub auf
|
|
1758
1789
|
*/
|
|
@@ -1837,14 +1868,14 @@ export interface ArticleSupplier {
|
|
|
1837
1868
|
accountDisplayName: string;
|
|
1838
1869
|
|
|
1839
1870
|
/**
|
|
1840
|
-
*
|
|
1871
|
+
* Lieferanten-Meldebestand
|
|
1841
1872
|
*/
|
|
1842
|
-
|
|
1873
|
+
supplierReportingStock: number;
|
|
1843
1874
|
|
|
1844
1875
|
/**
|
|
1845
|
-
*
|
|
1876
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1846
1877
|
*/
|
|
1847
|
-
|
|
1878
|
+
useSupplierArticleDescription: boolean;
|
|
1848
1879
|
|
|
1849
1880
|
/**
|
|
1850
1881
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1902,14 +1933,14 @@ export interface ArticleSupplier {
|
|
|
1902
1933
|
info: MetaInfo;
|
|
1903
1934
|
|
|
1904
1935
|
/**
|
|
1905
|
-
*
|
|
1936
|
+
* Verpackungseinheit
|
|
1906
1937
|
*/
|
|
1907
|
-
|
|
1938
|
+
packagingUnit: number;
|
|
1908
1939
|
|
|
1909
1940
|
/**
|
|
1910
|
-
*
|
|
1941
|
+
* Referenced Article name
|
|
1911
1942
|
*/
|
|
1912
|
-
|
|
1943
|
+
articleName: string;
|
|
1913
1944
|
|
|
1914
1945
|
/**
|
|
1915
1946
|
* Lieferanten-Preise
|
|
@@ -1942,14 +1973,14 @@ export interface ArticleSupplier {
|
|
|
1942
1973
|
dropShippingAllowed: boolean;
|
|
1943
1974
|
|
|
1944
1975
|
/**
|
|
1945
|
-
* Abweichende
|
|
1976
|
+
* Abweichende Produktbezeichnung
|
|
1946
1977
|
*/
|
|
1947
|
-
|
|
1978
|
+
supplierArticleName: string;
|
|
1948
1979
|
|
|
1949
1980
|
/**
|
|
1950
|
-
* Abweichende
|
|
1981
|
+
* Abweichende Produktbeschreibung
|
|
1951
1982
|
*/
|
|
1952
|
-
|
|
1983
|
+
supplierArticleDescription: string;
|
|
1953
1984
|
|
|
1954
1985
|
/**
|
|
1955
1986
|
* Standardpreis Netto
|
|
@@ -1957,14 +1988,14 @@ export interface ArticleSupplier {
|
|
|
1957
1988
|
defaultNetPrice: number;
|
|
1958
1989
|
|
|
1959
1990
|
/**
|
|
1960
|
-
*
|
|
1991
|
+
* Einkaufseinheit
|
|
1961
1992
|
*/
|
|
1962
|
-
|
|
1993
|
+
purchaseUnit: number;
|
|
1963
1994
|
|
|
1964
1995
|
/**
|
|
1965
|
-
*
|
|
1996
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1966
1997
|
*/
|
|
1967
|
-
|
|
1998
|
+
orderOnComponentBase: boolean;
|
|
1968
1999
|
|
|
1969
2000
|
/**
|
|
1970
2001
|
* Referenced Supplier-Account
|
|
@@ -2399,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2399
2430
|
export interface CrmChecklistItem {
|
|
2400
2431
|
|
|
2401
2432
|
/**
|
|
2402
|
-
*
|
|
2433
|
+
* Ist das Element "angehakt"?
|
|
2403
2434
|
*/
|
|
2404
|
-
|
|
2435
|
+
checked: boolean;
|
|
2405
2436
|
|
|
2406
2437
|
/**
|
|
2407
|
-
*
|
|
2438
|
+
* Text des Checklisten-Elements
|
|
2408
2439
|
*/
|
|
2409
|
-
|
|
2440
|
+
memo: string;
|
|
2410
2441
|
|
|
2411
2442
|
/**
|
|
2412
2443
|
* Unique identifier of the Object
|
|
@@ -2517,14 +2548,14 @@ export interface CrmDeal {
|
|
|
2517
2548
|
info: MetaInfo;
|
|
2518
2549
|
|
|
2519
2550
|
/**
|
|
2520
|
-
*
|
|
2551
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2521
2552
|
*/
|
|
2522
|
-
|
|
2553
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2523
2554
|
|
|
2524
2555
|
/**
|
|
2525
|
-
*
|
|
2556
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2526
2557
|
*/
|
|
2527
|
-
|
|
2558
|
+
assignedUserRef: ApiObjectReference;
|
|
2528
2559
|
|
|
2529
2560
|
/**
|
|
2530
2561
|
* Chance (in Prozent)
|
|
@@ -2823,14 +2854,14 @@ export interface CrmProject {
|
|
|
2823
2854
|
billedTimes: number;
|
|
2824
2855
|
|
|
2825
2856
|
/**
|
|
2826
|
-
*
|
|
2857
|
+
* Einkaufsbelege
|
|
2827
2858
|
*/
|
|
2828
|
-
|
|
2859
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2829
2860
|
|
|
2830
2861
|
/**
|
|
2831
|
-
*
|
|
2862
|
+
* Geplanter Projektzeitraum (von)
|
|
2832
2863
|
*/
|
|
2833
|
-
|
|
2864
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2834
2865
|
|
|
2835
2866
|
/**
|
|
2836
2867
|
* Verkaufsbelege
|
|
@@ -2858,14 +2889,14 @@ export interface CrmProject {
|
|
|
2858
2889
|
info: MetaInfo;
|
|
2859
2890
|
|
|
2860
2891
|
/**
|
|
2861
|
-
*
|
|
2892
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2862
2893
|
*/
|
|
2863
|
-
|
|
2894
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2864
2895
|
|
|
2865
2896
|
/**
|
|
2866
|
-
*
|
|
2897
|
+
* Projektleiter vom Auftraggeber
|
|
2867
2898
|
*/
|
|
2868
|
-
|
|
2899
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2869
2900
|
|
|
2870
2901
|
/**
|
|
2871
2902
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3109,14 +3140,14 @@ export interface CrmSubType {
|
|
|
3109
3140
|
export interface CrmTask {
|
|
3110
3141
|
|
|
3111
3142
|
/**
|
|
3112
|
-
*
|
|
3143
|
+
* Liste von Erinnerungen
|
|
3113
3144
|
*/
|
|
3114
|
-
|
|
3145
|
+
reminders: Array<CrmReminder>;
|
|
3115
3146
|
|
|
3116
3147
|
/**
|
|
3117
|
-
*
|
|
3148
|
+
* Angebot
|
|
3118
3149
|
*/
|
|
3119
|
-
|
|
3150
|
+
customerOfferRef: DocumentRef;
|
|
3120
3151
|
|
|
3121
3152
|
/**
|
|
3122
3153
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3304,14 +3335,14 @@ export interface CrmTask {
|
|
|
3304
3335
|
assignedUserRef: ApiObjectReference;
|
|
3305
3336
|
|
|
3306
3337
|
/**
|
|
3307
|
-
*
|
|
3338
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3308
3339
|
*/
|
|
3309
|
-
|
|
3340
|
+
externalRecordedTimes: number;
|
|
3310
3341
|
|
|
3311
3342
|
/**
|
|
3312
|
-
*
|
|
3343
|
+
* Beauftragte Zeit in Sekunden
|
|
3313
3344
|
*/
|
|
3314
|
-
|
|
3345
|
+
effortCommissioned: number;
|
|
3315
3346
|
|
|
3316
3347
|
/**
|
|
3317
3348
|
* Aufwandsschätzung in Sekunden
|
|
@@ -4033,14 +4064,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4033
4064
|
supplierNumber: string;
|
|
4034
4065
|
|
|
4035
4066
|
/**
|
|
4036
|
-
*
|
|
4067
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4037
4068
|
*/
|
|
4038
|
-
|
|
4069
|
+
deliveryApproved: boolean;
|
|
4039
4070
|
|
|
4040
4071
|
/**
|
|
4041
|
-
*
|
|
4072
|
+
* Gesamtpreis brutto
|
|
4042
4073
|
*/
|
|
4043
|
-
|
|
4074
|
+
totalGrossPrice: number;
|
|
4044
4075
|
|
|
4045
4076
|
/**
|
|
4046
4077
|
* Kassen-Zahlungspositionen
|
|
@@ -4100,14 +4131,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4100
4131
|
fabricationDetail: DocumentFabricationDetail;
|
|
4101
4132
|
|
|
4102
4133
|
/**
|
|
4103
|
-
*
|
|
4134
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4104
4135
|
*/
|
|
4105
|
-
|
|
4136
|
+
accountNumber: string;
|
|
4106
4137
|
|
|
4107
4138
|
/**
|
|
4108
|
-
*
|
|
4139
|
+
* Berechnungsmodus
|
|
4109
4140
|
*/
|
|
4110
|
-
|
|
4141
|
+
calculationMode: CalculationMode;
|
|
4111
4142
|
|
|
4112
4143
|
/**
|
|
4113
4144
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4150,14 +4181,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4150
4181
|
defaultAddress: DocumentAddress;
|
|
4151
4182
|
|
|
4152
4183
|
/**
|
|
4153
|
-
*
|
|
4184
|
+
* Leistungsdatum
|
|
4154
4185
|
*/
|
|
4155
|
-
|
|
4186
|
+
performanceDate: ScriptingDate;
|
|
4156
4187
|
|
|
4157
4188
|
/**
|
|
4158
|
-
*
|
|
4189
|
+
* Verarbeitungsoption für Stapel
|
|
4159
4190
|
*/
|
|
4160
|
-
|
|
4191
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4161
4192
|
|
|
4162
4193
|
/**
|
|
4163
4194
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4215,14 +4246,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4215
4246
|
dropShipping: boolean;
|
|
4216
4247
|
|
|
4217
4248
|
/**
|
|
4218
|
-
*
|
|
4249
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4219
4250
|
*/
|
|
4220
|
-
|
|
4251
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4221
4252
|
|
|
4222
4253
|
/**
|
|
4223
|
-
*
|
|
4254
|
+
* Gesamtpreis netto
|
|
4224
4255
|
*/
|
|
4225
|
-
|
|
4256
|
+
totalNetPrice: number;
|
|
4226
4257
|
|
|
4227
4258
|
/**
|
|
4228
4259
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4330,9 +4361,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4330
4361
|
customerNumber: string;
|
|
4331
4362
|
|
|
4332
4363
|
/**
|
|
4333
|
-
*
|
|
4364
|
+
* Statusinstanz des Belegs
|
|
4334
4365
|
*/
|
|
4335
|
-
|
|
4366
|
+
documentState: DocumentTypeState;
|
|
4336
4367
|
|
|
4337
4368
|
/**
|
|
4338
4369
|
* Umsatzsteuer-Identifikationsnummer
|
|
@@ -4340,9 +4371,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4340
4371
|
taxIdentificationNumber: string;
|
|
4341
4372
|
|
|
4342
4373
|
/**
|
|
4343
|
-
*
|
|
4374
|
+
* Versandkostenpositionen
|
|
4344
4375
|
*/
|
|
4345
|
-
|
|
4376
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
|
+
|
|
4378
|
+
/**
|
|
4379
|
+
* Rückgeld
|
|
4380
|
+
*/
|
|
4381
|
+
posReceiptChangeAmount: number;
|
|
4346
4382
|
|
|
4347
4383
|
/**
|
|
4348
4384
|
* Referenz auf Lieferbedingung
|
|
@@ -4356,11 +4392,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4356
4392
|
*/
|
|
4357
4393
|
posReceiptBalanced: boolean;
|
|
4358
4394
|
|
|
4359
|
-
/**
|
|
4360
|
-
* Rückgeld
|
|
4361
|
-
*/
|
|
4362
|
-
posReceiptChangeAmount: number;
|
|
4363
|
-
|
|
4364
4395
|
/**
|
|
4365
4396
|
* Gesamtbruttogewicht
|
|
4366
4397
|
*/
|
|
@@ -4550,14 +4581,14 @@ export interface DocumentAddress {
|
|
|
4550
4581
|
postOfficeBox: string;
|
|
4551
4582
|
|
|
4552
4583
|
/**
|
|
4553
|
-
*
|
|
4584
|
+
* country code IsoAlpha3
|
|
4554
4585
|
*/
|
|
4555
|
-
|
|
4586
|
+
countryCode: string;
|
|
4556
4587
|
|
|
4557
4588
|
/**
|
|
4558
|
-
*
|
|
4589
|
+
* Street
|
|
4559
4590
|
*/
|
|
4560
|
-
|
|
4591
|
+
street: string;
|
|
4561
4592
|
|
|
4562
4593
|
/**
|
|
4563
4594
|
* Unique identifier of the Object
|
|
@@ -4575,14 +4606,14 @@ export interface DocumentAddress {
|
|
|
4575
4606
|
info: MetaInfo;
|
|
4576
4607
|
|
|
4577
4608
|
/**
|
|
4578
|
-
*
|
|
4609
|
+
* Lieferart
|
|
4579
4610
|
*/
|
|
4580
|
-
|
|
4611
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4581
4612
|
|
|
4582
4613
|
/**
|
|
4583
|
-
*
|
|
4614
|
+
* GLN
|
|
4584
4615
|
*/
|
|
4585
|
-
|
|
4616
|
+
globalLocationNumber: string;
|
|
4586
4617
|
|
|
4587
4618
|
/**
|
|
4588
4619
|
* Postcode
|
|
@@ -5004,14 +5035,14 @@ export interface DocumentLine {
|
|
|
5004
5035
|
number: string;
|
|
5005
5036
|
|
|
5006
5037
|
/**
|
|
5007
|
-
*
|
|
5038
|
+
* Referenz zur Kundenauftragszeile
|
|
5008
5039
|
*/
|
|
5009
|
-
|
|
5040
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5010
5041
|
|
|
5011
5042
|
/**
|
|
5012
|
-
*
|
|
5043
|
+
* Gesamtbruttogewicht
|
|
5013
5044
|
*/
|
|
5014
|
-
|
|
5045
|
+
totalGrossWeight: number;
|
|
5015
5046
|
|
|
5016
5047
|
/**
|
|
5017
5048
|
* skontierbare Position?
|
|
@@ -5034,14 +5065,14 @@ export interface DocumentLine {
|
|
|
5034
5065
|
financeBooking: DocumentFinanceBooking;
|
|
5035
5066
|
|
|
5036
5067
|
/**
|
|
5037
|
-
*
|
|
5068
|
+
* Positionstyp
|
|
5038
5069
|
*/
|
|
5039
|
-
|
|
5070
|
+
lineType: DocumentLineType;
|
|
5040
5071
|
|
|
5041
5072
|
/**
|
|
5042
|
-
*
|
|
5073
|
+
* Gesamtpreis Position in Basiswährung
|
|
5043
5074
|
*/
|
|
5044
|
-
|
|
5075
|
+
baseTotalLinePrice: number;
|
|
5045
5076
|
|
|
5046
5077
|
/**
|
|
5047
5078
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5084,14 +5115,14 @@ export interface DocumentLine {
|
|
|
5084
5115
|
externalReferenceVds: string;
|
|
5085
5116
|
|
|
5086
5117
|
/**
|
|
5087
|
-
*
|
|
5118
|
+
* Preis pro Einheit in Basiswährung
|
|
5088
5119
|
*/
|
|
5089
|
-
|
|
5120
|
+
basePrice: number;
|
|
5090
5121
|
|
|
5091
5122
|
/**
|
|
5092
|
-
*
|
|
5123
|
+
* Serientyp
|
|
5093
5124
|
*/
|
|
5094
|
-
|
|
5125
|
+
serialType: ArticleSerialType;
|
|
5095
5126
|
|
|
5096
5127
|
/**
|
|
5097
5128
|
* MetaInformations for this Object
|
|
@@ -5244,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5244
5275
|
revenueCalculation: RevenueCalculation;
|
|
5245
5276
|
|
|
5246
5277
|
/**
|
|
5247
|
-
*
|
|
5278
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5248
5279
|
*/
|
|
5249
|
-
|
|
5280
|
+
totalLinePrice: number;
|
|
5250
5281
|
|
|
5251
5282
|
/**
|
|
5252
|
-
*
|
|
5283
|
+
* Einheitentyp
|
|
5253
5284
|
*/
|
|
5254
|
-
|
|
5285
|
+
unitType: UnitTypeReference;
|
|
5255
5286
|
|
|
5256
5287
|
/**
|
|
5257
5288
|
* Referenz zur Basiszeile
|
|
@@ -5294,14 +5325,14 @@ export interface DocumentLine {
|
|
|
5294
5325
|
baseSalesValueNet: number;
|
|
5295
5326
|
|
|
5296
5327
|
/**
|
|
5297
|
-
*
|
|
5328
|
+
* Einheit Nettogewicht
|
|
5298
5329
|
*/
|
|
5299
|
-
|
|
5330
|
+
netWeightUnit: UnitTypeReference;
|
|
5300
5331
|
|
|
5301
5332
|
/**
|
|
5302
|
-
*
|
|
5333
|
+
* Vertragsinformationen
|
|
5303
5334
|
*/
|
|
5304
|
-
|
|
5335
|
+
contractDetail: DocumentContractDetail;
|
|
5305
5336
|
|
|
5306
5337
|
/**
|
|
5307
5338
|
* Menge
|
|
@@ -5667,14 +5698,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5667
5698
|
quantityFinished: number;
|
|
5668
5699
|
|
|
5669
5700
|
/**
|
|
5670
|
-
*
|
|
5701
|
+
* Produzierte Seriennummern
|
|
5671
5702
|
*/
|
|
5672
|
-
|
|
5703
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5673
5704
|
|
|
5674
5705
|
/**
|
|
5675
|
-
*
|
|
5706
|
+
* Menge defekt
|
|
5676
5707
|
*/
|
|
5677
|
-
|
|
5708
|
+
quantityDefective: number;
|
|
5678
5709
|
|
|
5679
5710
|
/**
|
|
5680
5711
|
* Freifeld
|
|
@@ -6148,14 +6179,14 @@ export interface DocumentRef {
|
|
|
6148
6179
|
export interface DocumentShippingCost {
|
|
6149
6180
|
|
|
6150
6181
|
/**
|
|
6151
|
-
*
|
|
6182
|
+
* Die Versandkosten
|
|
6152
6183
|
*/
|
|
6153
|
-
|
|
6184
|
+
costs: number;
|
|
6154
6185
|
|
|
6155
6186
|
/**
|
|
6156
|
-
*
|
|
6187
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6157
6188
|
*/
|
|
6158
|
-
|
|
6189
|
+
manualCosts: boolean;
|
|
6159
6190
|
|
|
6160
6191
|
/**
|
|
6161
6192
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6578,11 +6609,74 @@ export interface DocumentTypeTerm {
|
|
|
6578
6609
|
info: MetaInfo;
|
|
6579
6610
|
}
|
|
6580
6611
|
|
|
6581
|
-
export const enum DropShippingPolicy {
|
|
6582
|
-
ANY = 'ANY',
|
|
6583
|
-
DROP_SHIPPING = 'DROP_SHIPPING',
|
|
6584
|
-
STORAGE = 'STORAGE',
|
|
6585
|
-
STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING = 'STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING'
|
|
6612
|
+
export const enum DropShippingPolicy {
|
|
6613
|
+
ANY = 'ANY',
|
|
6614
|
+
DROP_SHIPPING = 'DROP_SHIPPING',
|
|
6615
|
+
STORAGE = 'STORAGE',
|
|
6616
|
+
STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING = 'STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING'
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
export interface DummySerialNumberStockTransferApi {
|
|
6620
|
+
|
|
6621
|
+
/**
|
|
6622
|
+
* Ziel-Lager
|
|
6623
|
+
*/
|
|
6624
|
+
targetStorageId: number;
|
|
6625
|
+
|
|
6626
|
+
/**
|
|
6627
|
+
* Seriennummer
|
|
6628
|
+
*/
|
|
6629
|
+
serialNumberId: number;
|
|
6630
|
+
|
|
6631
|
+
/**
|
|
6632
|
+
* Bemerkung
|
|
6633
|
+
*/
|
|
6634
|
+
note: string;
|
|
6635
|
+
|
|
6636
|
+
/**
|
|
6637
|
+
* Buchungsdatum
|
|
6638
|
+
*/
|
|
6639
|
+
bookDate: ScriptingDate;
|
|
6640
|
+
|
|
6641
|
+
/**
|
|
6642
|
+
* Die gültige Seriennummer
|
|
6643
|
+
*/
|
|
6644
|
+
targetSerialNumber: string;
|
|
6645
|
+
|
|
6646
|
+
/**
|
|
6647
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6648
|
+
*/
|
|
6649
|
+
targetExpiryDate: ScriptingDate;
|
|
6650
|
+
|
|
6651
|
+
/**
|
|
6652
|
+
* Quell-Lagerplatz
|
|
6653
|
+
*/
|
|
6654
|
+
sourceStorageBinId: number;
|
|
6655
|
+
|
|
6656
|
+
/**
|
|
6657
|
+
* Menge
|
|
6658
|
+
*/
|
|
6659
|
+
quantity: number;
|
|
6660
|
+
|
|
6661
|
+
/**
|
|
6662
|
+
* Quell-Lager
|
|
6663
|
+
*/
|
|
6664
|
+
sourceStorageId: number;
|
|
6665
|
+
|
|
6666
|
+
/**
|
|
6667
|
+
* Ziel-Lagerplatz
|
|
6668
|
+
*/
|
|
6669
|
+
targetStorageBinId: number;
|
|
6670
|
+
|
|
6671
|
+
/**
|
|
6672
|
+
* Artikel
|
|
6673
|
+
*/
|
|
6674
|
+
articleId: number;
|
|
6675
|
+
|
|
6676
|
+
/**
|
|
6677
|
+
* Komponente einer Picklistenposition, falls dafür die Buchung stattfindet
|
|
6678
|
+
*/
|
|
6679
|
+
picklistLineComponentId: number;
|
|
6586
6680
|
}
|
|
6587
6681
|
|
|
6588
6682
|
export const enum ECrmPriorityType {
|
|
@@ -6886,14 +6980,14 @@ export interface FabricationRevertRequest {
|
|
|
6886
6980
|
quantity: number;
|
|
6887
6981
|
|
|
6888
6982
|
/**
|
|
6889
|
-
*
|
|
6983
|
+
* ID der zu stornierenden Position
|
|
6890
6984
|
*/
|
|
6891
|
-
|
|
6985
|
+
documentLineId: number;
|
|
6892
6986
|
|
|
6893
6987
|
/**
|
|
6894
|
-
*
|
|
6988
|
+
* Material automatisch stornieren
|
|
6895
6989
|
*/
|
|
6896
|
-
|
|
6990
|
+
autoRevertComponents: boolean;
|
|
6897
6991
|
|
|
6898
6992
|
/**
|
|
6899
6993
|
* Zu stornierende Seriennummern
|
|
@@ -7123,14 +7217,14 @@ export interface PaymentMethod {
|
|
|
7123
7217
|
daysToAddForFollowup: number;
|
|
7124
7218
|
|
|
7125
7219
|
/**
|
|
7126
|
-
*
|
|
7220
|
+
* Die Business Transaction
|
|
7127
7221
|
*/
|
|
7128
|
-
|
|
7222
|
+
businessTransaction: ApiObjectReference;
|
|
7129
7223
|
|
|
7130
7224
|
/**
|
|
7131
|
-
*
|
|
7225
|
+
* external Payment Id
|
|
7132
7226
|
*/
|
|
7133
|
-
|
|
7227
|
+
externalPaymentId: string;
|
|
7134
7228
|
|
|
7135
7229
|
/**
|
|
7136
7230
|
* Unique identifier of the Object
|
|
@@ -7468,6 +7562,21 @@ export interface Picklist {
|
|
|
7468
7562
|
*/
|
|
7469
7563
|
number: string;
|
|
7470
7564
|
|
|
7565
|
+
/**
|
|
7566
|
+
* Zeitpunkt, zu dem der Pickvorgang beendet wurde
|
|
7567
|
+
*/
|
|
7568
|
+
pickingFinishedAt: ScriptingDateTime;
|
|
7569
|
+
|
|
7570
|
+
/**
|
|
7571
|
+
* Benutzer, welcher den Pickvorgang durchführt
|
|
7572
|
+
*/
|
|
7573
|
+
pickingUserRef: ApiObjectReference;
|
|
7574
|
+
|
|
7575
|
+
/**
|
|
7576
|
+
* Zeitpunkt, zu dem der Pickvorgang gestartet wurde
|
|
7577
|
+
*/
|
|
7578
|
+
pickingStartedAt: ScriptingDateTime;
|
|
7579
|
+
|
|
7471
7580
|
/**
|
|
7472
7581
|
* Status der Pickliste
|
|
7473
7582
|
*/
|
|
@@ -7886,11 +7995,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7886
7995
|
*/
|
|
7887
7996
|
maxOrderValue: number;
|
|
7888
7997
|
|
|
7889
|
-
/**
|
|
7890
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7891
|
-
*/
|
|
7892
|
-
maxOrderCount: number;
|
|
7893
|
-
|
|
7894
7998
|
/**
|
|
7895
7999
|
* Selektion über den Bereich vom Lieferdatum
|
|
7896
8000
|
*/
|
|
@@ -7901,6 +8005,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7901
8005
|
*/
|
|
7902
8006
|
onlyFullDeliverableOrderLines: boolean;
|
|
7903
8007
|
|
|
8008
|
+
/**
|
|
8009
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8010
|
+
*/
|
|
8011
|
+
maxOrderCount: number;
|
|
8012
|
+
|
|
7904
8013
|
/**
|
|
7905
8014
|
* Selektion über den Bereich vom Belegdatum
|
|
7906
8015
|
*/
|
|
@@ -7970,14 +8079,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7970
8079
|
maxPicklistLineCount: number;
|
|
7971
8080
|
|
|
7972
8081
|
/**
|
|
7973
|
-
*
|
|
8082
|
+
* Der zu verwendende Pickwagen
|
|
7974
8083
|
*/
|
|
7975
|
-
|
|
8084
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7976
8085
|
|
|
7977
8086
|
/**
|
|
7978
|
-
*
|
|
8087
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7979
8088
|
*/
|
|
7980
|
-
|
|
8089
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7981
8090
|
|
|
7982
8091
|
/**
|
|
7983
8092
|
* Lagerplätze vorgeben
|
|
@@ -8038,14 +8147,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8038
8147
|
alwaysShowDeliveryMethod: boolean;
|
|
8039
8148
|
|
|
8040
8149
|
/**
|
|
8041
|
-
*
|
|
8150
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8042
8151
|
*/
|
|
8043
|
-
|
|
8152
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8044
8153
|
|
|
8045
8154
|
/**
|
|
8046
|
-
*
|
|
8155
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8047
8156
|
*/
|
|
8048
|
-
|
|
8157
|
+
autoPrintDeliveryDocument: boolean;
|
|
8049
8158
|
|
|
8050
8159
|
/**
|
|
8051
8160
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8058,14 +8167,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8058
8167
|
allowPickingOfServiceArticles: boolean;
|
|
8059
8168
|
|
|
8060
8169
|
/**
|
|
8061
|
-
*
|
|
8170
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8062
8171
|
*/
|
|
8063
|
-
|
|
8172
|
+
useDigitalPicklist: boolean;
|
|
8064
8173
|
|
|
8065
8174
|
/**
|
|
8066
|
-
*
|
|
8175
|
+
* Sammelbestätigung erlauben
|
|
8067
8176
|
*/
|
|
8068
|
-
|
|
8177
|
+
allowFullConfirmation: boolean;
|
|
8069
8178
|
|
|
8070
8179
|
/**
|
|
8071
8180
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8165,14 +8274,14 @@ export interface PriceSelectionCriteria {
|
|
|
8165
8274
|
quantity: number;
|
|
8166
8275
|
|
|
8167
8276
|
/**
|
|
8168
|
-
* Liste von
|
|
8277
|
+
* Liste von Artikel-IDs
|
|
8169
8278
|
*/
|
|
8170
|
-
|
|
8279
|
+
articleIds: Array<number>;
|
|
8171
8280
|
|
|
8172
8281
|
/**
|
|
8173
|
-
* Liste von
|
|
8282
|
+
* Liste von Account-IDs
|
|
8174
8283
|
*/
|
|
8175
|
-
|
|
8284
|
+
accountIds: Array<number>;
|
|
8176
8285
|
|
|
8177
8286
|
/**
|
|
8178
8287
|
* ein qualifier
|
|
@@ -8198,25 +8307,15 @@ export interface PriceSelectionCriteria {
|
|
|
8198
8307
|
export interface Product {
|
|
8199
8308
|
|
|
8200
8309
|
/**
|
|
8201
|
-
*
|
|
8310
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
8202
8311
|
*/
|
|
8203
|
-
|
|
8312
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
8204
8313
|
|
|
8205
8314
|
/**
|
|
8206
8315
|
* Zolltarifnummer
|
|
8207
8316
|
*/
|
|
8208
8317
|
customsTariffNumber: string;
|
|
8209
8318
|
|
|
8210
|
-
/**
|
|
8211
|
-
* Variantenschema
|
|
8212
|
-
*/
|
|
8213
|
-
variantSchemaRef: ApiObjectReference;
|
|
8214
|
-
|
|
8215
|
-
/**
|
|
8216
|
-
* Eigener Zählerkreis für Seriennummern
|
|
8217
|
-
*/
|
|
8218
|
-
serialSequencerConfiguration: SequencerConfiguration;
|
|
8219
|
-
|
|
8220
8319
|
/**
|
|
8221
8320
|
* Gebindeschema dieses Produkts
|
|
8222
8321
|
*/
|
|
@@ -8227,11 +8326,6 @@ export interface Product {
|
|
|
8227
8326
|
*/
|
|
8228
8327
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
8229
8328
|
|
|
8230
|
-
/**
|
|
8231
|
-
* Art des Haltbarkeitsdatums
|
|
8232
|
-
*/
|
|
8233
|
-
expiryDateType: ArticleSerialExpiryDateType;
|
|
8234
|
-
|
|
8235
8329
|
/**
|
|
8236
8330
|
* Ursprungsregion
|
|
8237
8331
|
*/
|
|
@@ -8243,14 +8337,14 @@ export interface Product {
|
|
|
8243
8337
|
type: ProductType;
|
|
8244
8338
|
|
|
8245
8339
|
/**
|
|
8246
|
-
*
|
|
8340
|
+
* Garantie in Monaten
|
|
8247
8341
|
*/
|
|
8248
|
-
|
|
8342
|
+
warrantyInMonths: number;
|
|
8249
8343
|
|
|
8250
8344
|
/**
|
|
8251
|
-
*
|
|
8345
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
8252
8346
|
*/
|
|
8253
|
-
|
|
8347
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
8254
8348
|
|
|
8255
8349
|
/**
|
|
8256
8350
|
* Optionen zur Berechnung der Verfügbarkeit
|
|
@@ -8272,11 +8366,6 @@ export interface Product {
|
|
|
8272
8366
|
*/
|
|
8273
8367
|
fabricationSerialNumberLabelingType: FabricationSerialNumberLabelingType;
|
|
8274
8368
|
|
|
8275
|
-
/**
|
|
8276
|
-
* Country code
|
|
8277
|
-
*/
|
|
8278
|
-
countryOfOrigin: CountryReference;
|
|
8279
|
-
|
|
8280
8369
|
/**
|
|
8281
8370
|
* Unique identifier of the Object
|
|
8282
8371
|
*/
|
|
@@ -8293,14 +8382,49 @@ export interface Product {
|
|
|
8293
8382
|
serialType: ArticleSerialType;
|
|
8294
8383
|
|
|
8295
8384
|
/**
|
|
8296
|
-
*
|
|
8385
|
+
* MetaInformations for this Object
|
|
8297
8386
|
*/
|
|
8298
|
-
|
|
8387
|
+
info: MetaInfo;
|
|
8299
8388
|
|
|
8300
8389
|
/**
|
|
8301
|
-
*
|
|
8390
|
+
* Variantenhauptartikel
|
|
8302
8391
|
*/
|
|
8303
|
-
|
|
8392
|
+
mainVariantProductRef: ApiObjectReference;
|
|
8393
|
+
|
|
8394
|
+
/**
|
|
8395
|
+
* Variantenschema
|
|
8396
|
+
*/
|
|
8397
|
+
variantSchemaRef: ApiObjectReference;
|
|
8398
|
+
|
|
8399
|
+
/**
|
|
8400
|
+
* Eigener Zählerkreis für Seriennummern
|
|
8401
|
+
*/
|
|
8402
|
+
serialSequencerConfiguration: SequencerConfiguration;
|
|
8403
|
+
|
|
8404
|
+
/**
|
|
8405
|
+
* Art des Haltbarkeitsdatums
|
|
8406
|
+
*/
|
|
8407
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
8408
|
+
|
|
8409
|
+
/**
|
|
8410
|
+
* Version Identifier for this Object (for PUT)
|
|
8411
|
+
*/
|
|
8412
|
+
version: number;
|
|
8413
|
+
|
|
8414
|
+
/**
|
|
8415
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
8416
|
+
*/
|
|
8417
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
8418
|
+
|
|
8419
|
+
/**
|
|
8420
|
+
* Country code
|
|
8421
|
+
*/
|
|
8422
|
+
countryOfOrigin: CountryReference;
|
|
8423
|
+
|
|
8424
|
+
/**
|
|
8425
|
+
* Variantenwerte
|
|
8426
|
+
*/
|
|
8427
|
+
variantValues: Array<VariantValueReference>;
|
|
8304
8428
|
}
|
|
8305
8429
|
|
|
8306
8430
|
export interface ProductArticleRef {
|
|
@@ -8379,14 +8503,14 @@ export interface ProductDiscount {
|
|
|
8379
8503
|
currencyRef: CurrencyReference;
|
|
8380
8504
|
|
|
8381
8505
|
/**
|
|
8382
|
-
*
|
|
8506
|
+
* Preisgruppe
|
|
8383
8507
|
*/
|
|
8384
|
-
|
|
8508
|
+
priceGroupRef: ApiObjectReference;
|
|
8385
8509
|
|
|
8386
8510
|
/**
|
|
8387
|
-
*
|
|
8511
|
+
* Wert des Rabatts
|
|
8388
8512
|
*/
|
|
8389
|
-
|
|
8513
|
+
modifierValue: number;
|
|
8390
8514
|
|
|
8391
8515
|
/**
|
|
8392
8516
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8666,6 +8790,44 @@ export const enum PublishingPolicy {
|
|
|
8666
8790
|
MANUAL = 'MANUAL'
|
|
8667
8791
|
}
|
|
8668
8792
|
|
|
8793
|
+
export interface RecommendedRetailPrice {
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Land (Iso-A-2)
|
|
8797
|
+
*/
|
|
8798
|
+
countryCode: CountryReference;
|
|
8799
|
+
|
|
8800
|
+
/**
|
|
8801
|
+
* Verweis auf den Artikel
|
|
8802
|
+
*/
|
|
8803
|
+
articleRef: ApiObjectReference;
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Unique identifier of the Object
|
|
8807
|
+
*/
|
|
8808
|
+
id: number;
|
|
8809
|
+
|
|
8810
|
+
/**
|
|
8811
|
+
* Preis
|
|
8812
|
+
*/
|
|
8813
|
+
value: number;
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* Währung (Iso-A-3)
|
|
8817
|
+
*/
|
|
8818
|
+
currencyCode: CurrencyReference;
|
|
8819
|
+
|
|
8820
|
+
/**
|
|
8821
|
+
* Version Identifier for this Object (for PUT)
|
|
8822
|
+
*/
|
|
8823
|
+
version: number;
|
|
8824
|
+
|
|
8825
|
+
/**
|
|
8826
|
+
* MetaInformations for this Object
|
|
8827
|
+
*/
|
|
8828
|
+
info: MetaInfo;
|
|
8829
|
+
}
|
|
8830
|
+
|
|
8669
8831
|
export interface Referenceable {
|
|
8670
8832
|
}
|
|
8671
8833
|
|
|
@@ -8687,14 +8849,14 @@ export interface RequestDocument {
|
|
|
8687
8849
|
cashDrawerId: number;
|
|
8688
8850
|
|
|
8689
8851
|
/**
|
|
8690
|
-
*
|
|
8852
|
+
* Leistungsdatum
|
|
8691
8853
|
*/
|
|
8692
|
-
|
|
8854
|
+
performanceDate: ScriptingDate;
|
|
8693
8855
|
|
|
8694
8856
|
/**
|
|
8695
|
-
*
|
|
8857
|
+
* Der Anzahlungsbetrag
|
|
8696
8858
|
*/
|
|
8697
|
-
|
|
8859
|
+
depositPaymentAmount: number;
|
|
8698
8860
|
|
|
8699
8861
|
/**
|
|
8700
8862
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8990,14 +9152,14 @@ export interface RequestDocumentLine {
|
|
|
8990
9152
|
externalArticleNumber: string;
|
|
8991
9153
|
|
|
8992
9154
|
/**
|
|
8993
|
-
*
|
|
9155
|
+
* Buchungen zu dieser Belegposition
|
|
8994
9156
|
*/
|
|
8995
|
-
|
|
9157
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
8996
9158
|
|
|
8997
9159
|
/**
|
|
8998
|
-
*
|
|
9160
|
+
* ID der Quell-Belegposition
|
|
8999
9161
|
*/
|
|
9000
|
-
|
|
9162
|
+
sourceLineId: number;
|
|
9001
9163
|
|
|
9002
9164
|
/**
|
|
9003
9165
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9113,14 +9275,14 @@ export interface RequestDocumentText {
|
|
|
9113
9275
|
export interface RevenueCalculation {
|
|
9114
9276
|
|
|
9115
9277
|
/**
|
|
9116
|
-
*
|
|
9278
|
+
* Deckungsbeitrag (absolut)
|
|
9117
9279
|
*/
|
|
9118
|
-
|
|
9280
|
+
revenue: number;
|
|
9119
9281
|
|
|
9120
9282
|
/**
|
|
9121
|
-
*
|
|
9283
|
+
* Netto Umsatz
|
|
9122
9284
|
*/
|
|
9123
|
-
|
|
9285
|
+
salesValue: number;
|
|
9124
9286
|
|
|
9125
9287
|
/**
|
|
9126
9288
|
* Einkaufspreis
|
|
@@ -9608,14 +9770,14 @@ export interface ShelfDocument {
|
|
|
9608
9770
|
tags: Array<TagDto>;
|
|
9609
9771
|
|
|
9610
9772
|
/**
|
|
9611
|
-
*
|
|
9773
|
+
* share informations
|
|
9612
9774
|
*/
|
|
9613
|
-
|
|
9775
|
+
shares: Array<ShelfShare>;
|
|
9614
9776
|
|
|
9615
9777
|
/**
|
|
9616
|
-
*
|
|
9778
|
+
* Mehrsprachige Bezeichnungen
|
|
9617
9779
|
*/
|
|
9618
|
-
|
|
9780
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9619
9781
|
|
|
9620
9782
|
/**
|
|
9621
9783
|
* Automatische Löschung ab
|
|
@@ -10105,14 +10267,14 @@ export interface StockMovementManualApi {
|
|
|
10105
10267
|
export interface StockTransferApi {
|
|
10106
10268
|
|
|
10107
10269
|
/**
|
|
10108
|
-
*
|
|
10270
|
+
* Ziel-Lager
|
|
10109
10271
|
*/
|
|
10110
|
-
|
|
10272
|
+
targetStorageId: number;
|
|
10111
10273
|
|
|
10112
10274
|
/**
|
|
10113
|
-
*
|
|
10275
|
+
* Seriennummer
|
|
10114
10276
|
*/
|
|
10115
|
-
|
|
10277
|
+
serialNumberId: number;
|
|
10116
10278
|
|
|
10117
10279
|
/**
|
|
10118
10280
|
* Bemerkung
|
|
@@ -10322,14 +10484,14 @@ export interface Supplier {
|
|
|
10322
10484
|
info: MetaInfo;
|
|
10323
10485
|
|
|
10324
10486
|
/**
|
|
10325
|
-
*
|
|
10487
|
+
* Lieferantengruppe
|
|
10326
10488
|
*/
|
|
10327
|
-
|
|
10489
|
+
supplierGroupRef: ApiObjectReference;
|
|
10328
10490
|
|
|
10329
10491
|
/**
|
|
10330
|
-
*
|
|
10492
|
+
* reference to the delivery method
|
|
10331
10493
|
*/
|
|
10332
|
-
|
|
10494
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10333
10495
|
|
|
10334
10496
|
/**
|
|
10335
10497
|
* tax able or tax free
|
|
@@ -10387,14 +10549,14 @@ export interface Supplier {
|
|
|
10387
10549
|
performanceCountryCode: string;
|
|
10388
10550
|
|
|
10389
10551
|
/**
|
|
10390
|
-
*
|
|
10552
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10391
10553
|
*/
|
|
10392
|
-
|
|
10554
|
+
defaultDeliveryTime: number;
|
|
10393
10555
|
|
|
10394
10556
|
/**
|
|
10395
|
-
*
|
|
10557
|
+
* reference to the payment method
|
|
10396
10558
|
*/
|
|
10397
|
-
|
|
10559
|
+
paymentMethodRef: ApiObjectReference;
|
|
10398
10560
|
|
|
10399
10561
|
/**
|
|
10400
10562
|
* currency code IsoAlpha3
|
|
@@ -10415,14 +10577,14 @@ export interface TagDto {
|
|
|
10415
10577
|
editColor: string;
|
|
10416
10578
|
|
|
10417
10579
|
/**
|
|
10418
|
-
* Farbe
|
|
10580
|
+
* Farbe in Such-GUI
|
|
10419
10581
|
*/
|
|
10420
|
-
|
|
10582
|
+
searchColor: string;
|
|
10421
10583
|
|
|
10422
10584
|
/**
|
|
10423
|
-
* Farbe
|
|
10585
|
+
* Farbe für die Anzeige des Tags
|
|
10424
10586
|
*/
|
|
10425
|
-
|
|
10587
|
+
color: string;
|
|
10426
10588
|
|
|
10427
10589
|
/**
|
|
10428
10590
|
* Beschriftung des Tags
|
|
@@ -10956,14 +11118,14 @@ export interface VariantValue {
|
|
|
10956
11118
|
version: number;
|
|
10957
11119
|
|
|
10958
11120
|
/**
|
|
10959
|
-
*
|
|
11121
|
+
* Mehrsprachige Bezeichnungen
|
|
10960
11122
|
*/
|
|
10961
|
-
|
|
11123
|
+
labels: Array<VariantDescription>;
|
|
10962
11124
|
|
|
10963
11125
|
/**
|
|
10964
|
-
*
|
|
11126
|
+
* Variantenattribut
|
|
10965
11127
|
*/
|
|
10966
|
-
|
|
11128
|
+
attributeRef: ApiObjectReference;
|
|
10967
11129
|
|
|
10968
11130
|
/**
|
|
10969
11131
|
* MetaInformations for this Object
|