@vario-software/types 2026.19.4 → 2026.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +36 -4
- package/scripting/eav_types.d.ts +6 -0
- package/scripting/services.d.ts +102 -37
- package/scripting/types.d.ts +318 -270
package/scripting/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EavAccount, EavAccountaddress,
|
|
3
|
-
EavArticleListing, EavArticleListingDescription, EavContact,
|
|
2
|
+
EavAccount, EavAccountaddress, EavAccountlisting, EavAccountperson,
|
|
3
|
+
EavArticle, EavArticleListing, EavArticleListingDescription, EavContact,
|
|
4
4
|
EavCrmactivity, EavCrmdeal, EavCrmproject, EavCrmtask, EavDocument,
|
|
5
5
|
EavDocumentline, EavDocumentlinecomponent, EavFabrication,
|
|
6
6
|
EavFabricationline, EavFabricationlinecomponent, EavProductgroup,
|
|
@@ -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
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* Is default bank?
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
defaultBank: boolean;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* origin type
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -544,6 +544,49 @@ export const enum AccountBillingType {
|
|
|
544
544
|
NET = 'NET'
|
|
545
545
|
}
|
|
546
546
|
|
|
547
|
+
export interface AccountListing {
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* Kunde gelistet?
|
|
551
|
+
*/
|
|
552
|
+
customerListed: boolean;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* Hersteller gelisted?
|
|
556
|
+
*/
|
|
557
|
+
manufacturerListed: boolean;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Verkaufskanal
|
|
561
|
+
*/
|
|
562
|
+
salesChannelRef: ApiObjectReference;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* Freifeld
|
|
566
|
+
*/
|
|
567
|
+
custom: EavAccountlisting;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* Adresse
|
|
571
|
+
*/
|
|
572
|
+
accountRef: ApiObjectReference;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Unique identifier of the Object
|
|
576
|
+
*/
|
|
577
|
+
id: number;
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* Version Identifier for this Object (for PUT)
|
|
581
|
+
*/
|
|
582
|
+
version: number;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* MetaInformations for this Object
|
|
586
|
+
*/
|
|
587
|
+
info: MetaInfo;
|
|
588
|
+
}
|
|
589
|
+
|
|
547
590
|
export interface AccountLoanValue {
|
|
548
591
|
|
|
549
592
|
/**
|
|
@@ -562,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
562
605
|
nonInvoicedDocumentLoan: number;
|
|
563
606
|
|
|
564
607
|
/**
|
|
565
|
-
*
|
|
608
|
+
* Kreditlimit
|
|
566
609
|
*/
|
|
567
|
-
|
|
610
|
+
maximalLoan: number;
|
|
568
611
|
|
|
569
612
|
/**
|
|
570
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
571
614
|
*/
|
|
572
|
-
|
|
615
|
+
payablesSum: number;
|
|
573
616
|
|
|
574
617
|
/**
|
|
575
618
|
* Überschrittener Kreditbetrag
|
|
@@ -976,14 +1019,14 @@ export interface Article {
|
|
|
976
1019
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
977
1020
|
|
|
978
1021
|
/**
|
|
979
|
-
*
|
|
1022
|
+
* Durchschnittl. EKP (Startwert)
|
|
980
1023
|
*/
|
|
981
|
-
|
|
1024
|
+
initialAvgPurchasePrice: number;
|
|
982
1025
|
|
|
983
1026
|
/**
|
|
984
|
-
*
|
|
1027
|
+
* is this product sellable without any quantity at the stock
|
|
985
1028
|
*/
|
|
986
|
-
|
|
1029
|
+
sellableWithoutStock: boolean;
|
|
987
1030
|
|
|
988
1031
|
/**
|
|
989
1032
|
* gross Volume in cubic meters
|
|
@@ -1006,14 +1049,14 @@ export interface Article {
|
|
|
1006
1049
|
warrantyInMonths: number;
|
|
1007
1050
|
|
|
1008
1051
|
/**
|
|
1009
|
-
*
|
|
1052
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1010
1053
|
*/
|
|
1011
|
-
|
|
1054
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1012
1055
|
|
|
1013
1056
|
/**
|
|
1014
|
-
*
|
|
1057
|
+
* weight and size w.o. packaging
|
|
1015
1058
|
*/
|
|
1016
|
-
|
|
1059
|
+
netMetric: Article$Metric;
|
|
1017
1060
|
|
|
1018
1061
|
/**
|
|
1019
1062
|
* unique product number
|
|
@@ -1081,14 +1124,14 @@ export interface Article {
|
|
|
1081
1124
|
deliveryMethodRef: ApiObjectReference;
|
|
1082
1125
|
|
|
1083
1126
|
/**
|
|
1084
|
-
*
|
|
1127
|
+
* Soll-Handelsspanne
|
|
1085
1128
|
*/
|
|
1086
|
-
|
|
1129
|
+
targetTradingMargin: number;
|
|
1087
1130
|
|
|
1088
1131
|
/**
|
|
1089
|
-
*
|
|
1132
|
+
* Produktion
|
|
1090
1133
|
*/
|
|
1091
|
-
|
|
1134
|
+
fabrication: boolean;
|
|
1092
1135
|
|
|
1093
1136
|
/**
|
|
1094
1137
|
* active
|
|
@@ -1126,14 +1169,14 @@ export interface Article {
|
|
|
1126
1169
|
solvable: boolean;
|
|
1127
1170
|
|
|
1128
1171
|
/**
|
|
1129
|
-
*
|
|
1172
|
+
* Verkaufseinheit
|
|
1130
1173
|
*/
|
|
1131
|
-
|
|
1174
|
+
salesUnit: number;
|
|
1132
1175
|
|
|
1133
1176
|
/**
|
|
1134
|
-
*
|
|
1177
|
+
* weight and size inc. packaging
|
|
1135
1178
|
*/
|
|
1136
|
-
|
|
1179
|
+
grossMetric: Article$Metric;
|
|
1137
1180
|
|
|
1138
1181
|
/**
|
|
1139
1182
|
* name of this product
|
|
@@ -1146,14 +1189,14 @@ export interface Article {
|
|
|
1146
1189
|
listingStateChangeTime: ScriptingDateTime;
|
|
1147
1190
|
|
|
1148
1191
|
/**
|
|
1149
|
-
*
|
|
1192
|
+
* Arbeitseinheit in Minuten
|
|
1150
1193
|
*/
|
|
1151
|
-
|
|
1194
|
+
workUnitInMinutes: number;
|
|
1152
1195
|
|
|
1153
1196
|
/**
|
|
1154
|
-
*
|
|
1197
|
+
* Country code
|
|
1155
1198
|
*/
|
|
1156
|
-
|
|
1199
|
+
countryOfOriginRef: CountryReference;
|
|
1157
1200
|
|
|
1158
1201
|
/**
|
|
1159
1202
|
* Frei kommissionierbar
|
|
@@ -1225,6 +1268,11 @@ export interface Article {
|
|
|
1225
1268
|
*/
|
|
1226
1269
|
permissibleForOrderProposal: boolean;
|
|
1227
1270
|
|
|
1271
|
+
/**
|
|
1272
|
+
* Artikel ist Gefahrgut
|
|
1273
|
+
*/
|
|
1274
|
+
isDangerousGood: boolean;
|
|
1275
|
+
|
|
1228
1276
|
/**
|
|
1229
1277
|
* reference to Product
|
|
1230
1278
|
*/
|
|
@@ -1235,16 +1283,6 @@ export interface Article {
|
|
|
1235
1283
|
*/
|
|
1236
1284
|
shippingLabelPrinting: boolean;
|
|
1237
1285
|
|
|
1238
|
-
/**
|
|
1239
|
-
* Artikel ist Gefahrgut
|
|
1240
|
-
*/
|
|
1241
|
-
isDangerousGood: boolean;
|
|
1242
|
-
|
|
1243
|
-
/**
|
|
1244
|
-
* Kontingentartikel
|
|
1245
|
-
*/
|
|
1246
|
-
contingentArticleRef: ApiObjectReference;
|
|
1247
|
-
|
|
1248
1286
|
/**
|
|
1249
1287
|
* rabattierbarer Artikel?
|
|
1250
1288
|
*/
|
|
@@ -1255,6 +1293,11 @@ export interface Article {
|
|
|
1255
1293
|
*/
|
|
1256
1294
|
alternativeName: string;
|
|
1257
1295
|
|
|
1296
|
+
/**
|
|
1297
|
+
* Kontingentartikel
|
|
1298
|
+
*/
|
|
1299
|
+
contingentArticleRef: ApiObjectReference;
|
|
1300
|
+
|
|
1258
1301
|
/**
|
|
1259
1302
|
* base capacity
|
|
1260
1303
|
*/
|
|
@@ -1321,14 +1364,14 @@ export interface Article {
|
|
|
1321
1364
|
listed: boolean;
|
|
1322
1365
|
|
|
1323
1366
|
/**
|
|
1324
|
-
*
|
|
1367
|
+
* provisionsberechtiger Artikel?
|
|
1325
1368
|
*/
|
|
1326
|
-
|
|
1369
|
+
commissionable: boolean;
|
|
1327
1370
|
|
|
1328
1371
|
/**
|
|
1329
|
-
*
|
|
1372
|
+
* Nur manuelle Produktion
|
|
1330
1373
|
*/
|
|
1331
|
-
|
|
1374
|
+
onlyManualFabrication: boolean;
|
|
1332
1375
|
|
|
1333
1376
|
/**
|
|
1334
1377
|
* Preisbasis
|
|
@@ -1353,30 +1396,30 @@ export interface Article$Metric {
|
|
|
1353
1396
|
*/
|
|
1354
1397
|
sizeX: number;
|
|
1355
1398
|
|
|
1356
|
-
/**
|
|
1357
|
-
* size unit
|
|
1358
|
-
*/
|
|
1359
|
-
sizeUnit: UnitTypeReference;
|
|
1360
|
-
|
|
1361
1399
|
/**
|
|
1362
1400
|
* weight
|
|
1363
1401
|
*/
|
|
1364
1402
|
weight: number;
|
|
1365
1403
|
|
|
1366
1404
|
/**
|
|
1367
|
-
* size
|
|
1405
|
+
* size unit
|
|
1368
1406
|
*/
|
|
1369
|
-
|
|
1407
|
+
sizeUnit: UnitTypeReference;
|
|
1370
1408
|
|
|
1371
1409
|
/**
|
|
1372
1410
|
* size
|
|
1373
1411
|
*/
|
|
1374
|
-
|
|
1412
|
+
sizeY: number;
|
|
1375
1413
|
|
|
1376
1414
|
/**
|
|
1377
1415
|
* weight unit
|
|
1378
1416
|
*/
|
|
1379
1417
|
weightUnit: UnitTypeReference;
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* size
|
|
1421
|
+
*/
|
|
1422
|
+
sizeZ: number;
|
|
1380
1423
|
}
|
|
1381
1424
|
|
|
1382
1425
|
export interface ArticleAvailabilityDetermination {
|
|
@@ -1519,14 +1562,14 @@ export interface ArticleListing {
|
|
|
1519
1562
|
alternativeName: WithDefaults<String>;
|
|
1520
1563
|
|
|
1521
1564
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1565
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1523
1566
|
*/
|
|
1524
|
-
|
|
1567
|
+
customLowestPriceNet: number;
|
|
1525
1568
|
|
|
1526
1569
|
/**
|
|
1527
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1570
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1528
1571
|
*/
|
|
1529
|
-
|
|
1572
|
+
proposedLowestPriceNet: number;
|
|
1530
1573
|
|
|
1531
1574
|
/**
|
|
1532
1575
|
* der aktuelle listing stand
|
|
@@ -1685,20 +1728,15 @@ export const enum ArticleSerialType {
|
|
|
1685
1728
|
|
|
1686
1729
|
export interface ArticleStorage {
|
|
1687
1730
|
|
|
1688
|
-
/**
|
|
1689
|
-
* Bestand im Lager
|
|
1690
|
-
*/
|
|
1691
|
-
quantityInStock: number;
|
|
1692
|
-
|
|
1693
1731
|
/**
|
|
1694
1732
|
* Nachschub ab
|
|
1695
1733
|
*/
|
|
1696
1734
|
replenishmentFrom: number;
|
|
1697
1735
|
|
|
1698
1736
|
/**
|
|
1699
|
-
*
|
|
1737
|
+
* Bestand im Lager
|
|
1700
1738
|
*/
|
|
1701
|
-
|
|
1739
|
+
quantityInStock: number;
|
|
1702
1740
|
|
|
1703
1741
|
/**
|
|
1704
1742
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1711,15 +1749,20 @@ export interface ArticleStorage {
|
|
|
1711
1749
|
reorderPoint: number;
|
|
1712
1750
|
|
|
1713
1751
|
/**
|
|
1714
|
-
*
|
|
1752
|
+
* Bestellte Menge
|
|
1715
1753
|
*/
|
|
1716
|
-
|
|
1754
|
+
orderedQuantity: number;
|
|
1717
1755
|
|
|
1718
1756
|
/**
|
|
1719
1757
|
* Nachschub auf
|
|
1720
1758
|
*/
|
|
1721
1759
|
replenishmentOn: number;
|
|
1722
1760
|
|
|
1761
|
+
/**
|
|
1762
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1763
|
+
*/
|
|
1764
|
+
virtualStockAmount: number;
|
|
1765
|
+
|
|
1723
1766
|
/**
|
|
1724
1767
|
* Reservierte Menge
|
|
1725
1768
|
*/
|
|
@@ -1788,6 +1831,11 @@ export interface ArticleStorage {
|
|
|
1788
1831
|
|
|
1789
1832
|
export interface ArticleSupplier {
|
|
1790
1833
|
|
|
1834
|
+
/**
|
|
1835
|
+
* Lieferanten-Meldebestand
|
|
1836
|
+
*/
|
|
1837
|
+
supplierReportingStock: number;
|
|
1838
|
+
|
|
1791
1839
|
/**
|
|
1792
1840
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1793
1841
|
*/
|
|
@@ -1798,11 +1846,6 @@ export interface ArticleSupplier {
|
|
|
1798
1846
|
*/
|
|
1799
1847
|
accountDisplayName: string;
|
|
1800
1848
|
|
|
1801
|
-
/**
|
|
1802
|
-
* Lieferanten-Meldebestand
|
|
1803
|
-
*/
|
|
1804
|
-
supplierReportingStock: number;
|
|
1805
|
-
|
|
1806
1849
|
/**
|
|
1807
1850
|
* Lieferzeit in (Werk-)Tagen
|
|
1808
1851
|
*/
|
|
@@ -1859,14 +1902,14 @@ export interface ArticleSupplier {
|
|
|
1859
1902
|
info: MetaInfo;
|
|
1860
1903
|
|
|
1861
1904
|
/**
|
|
1862
|
-
*
|
|
1905
|
+
* Verpackungseinheit
|
|
1863
1906
|
*/
|
|
1864
|
-
|
|
1907
|
+
packagingUnit: number;
|
|
1865
1908
|
|
|
1866
1909
|
/**
|
|
1867
|
-
*
|
|
1910
|
+
* Referenced Article name
|
|
1868
1911
|
*/
|
|
1869
|
-
|
|
1912
|
+
articleName: string;
|
|
1870
1913
|
|
|
1871
1914
|
/**
|
|
1872
1915
|
* Lieferanten-Preise
|
|
@@ -1914,14 +1957,14 @@ export interface ArticleSupplier {
|
|
|
1914
1957
|
defaultNetPrice: number;
|
|
1915
1958
|
|
|
1916
1959
|
/**
|
|
1917
|
-
*
|
|
1960
|
+
* Einkaufseinheit
|
|
1918
1961
|
*/
|
|
1919
|
-
|
|
1962
|
+
purchaseUnit: number;
|
|
1920
1963
|
|
|
1921
1964
|
/**
|
|
1922
|
-
*
|
|
1965
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1923
1966
|
*/
|
|
1924
|
-
|
|
1967
|
+
orderOnComponentBase: boolean;
|
|
1925
1968
|
|
|
1926
1969
|
/**
|
|
1927
1970
|
* Referenced Supplier-Account
|
|
@@ -2124,14 +2167,14 @@ export interface CountryReference {
|
|
|
2124
2167
|
export interface CreateNewDocumentRequest {
|
|
2125
2168
|
|
|
2126
2169
|
/**
|
|
2127
|
-
* Belegart
|
|
2170
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2128
2171
|
*/
|
|
2129
|
-
|
|
2172
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2130
2173
|
|
|
2131
2174
|
/**
|
|
2132
|
-
*
|
|
2175
|
+
* Belegart
|
|
2133
2176
|
*/
|
|
2134
|
-
|
|
2177
|
+
documentTypeLabel: string;
|
|
2135
2178
|
|
|
2136
2179
|
/**
|
|
2137
2180
|
* Details zum Beleg
|
|
@@ -2356,14 +2399,14 @@ export interface CrmActivityType {
|
|
|
2356
2399
|
export interface CrmChecklistItem {
|
|
2357
2400
|
|
|
2358
2401
|
/**
|
|
2359
|
-
*
|
|
2402
|
+
* Ist das Element "angehakt"?
|
|
2360
2403
|
*/
|
|
2361
|
-
|
|
2404
|
+
checked: boolean;
|
|
2362
2405
|
|
|
2363
2406
|
/**
|
|
2364
|
-
*
|
|
2407
|
+
* Text des Checklisten-Elements
|
|
2365
2408
|
*/
|
|
2366
|
-
|
|
2409
|
+
memo: string;
|
|
2367
2410
|
|
|
2368
2411
|
/**
|
|
2369
2412
|
* Unique identifier of the Object
|
|
@@ -2474,14 +2517,14 @@ export interface CrmDeal {
|
|
|
2474
2517
|
info: MetaInfo;
|
|
2475
2518
|
|
|
2476
2519
|
/**
|
|
2477
|
-
*
|
|
2520
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2478
2521
|
*/
|
|
2479
|
-
|
|
2522
|
+
assignedUserRef: ApiObjectReference;
|
|
2480
2523
|
|
|
2481
2524
|
/**
|
|
2482
|
-
*
|
|
2525
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2483
2526
|
*/
|
|
2484
|
-
|
|
2527
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2485
2528
|
|
|
2486
2529
|
/**
|
|
2487
2530
|
* Chance (in Prozent)
|
|
@@ -2780,14 +2823,14 @@ export interface CrmProject {
|
|
|
2780
2823
|
billedTimes: number;
|
|
2781
2824
|
|
|
2782
2825
|
/**
|
|
2783
|
-
*
|
|
2826
|
+
* Einkaufsbelege
|
|
2784
2827
|
*/
|
|
2785
|
-
|
|
2828
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2786
2829
|
|
|
2787
2830
|
/**
|
|
2788
|
-
*
|
|
2831
|
+
* Geplanter Projektzeitraum (von)
|
|
2789
2832
|
*/
|
|
2790
|
-
|
|
2833
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2791
2834
|
|
|
2792
2835
|
/**
|
|
2793
2836
|
* Verkaufsbelege
|
|
@@ -3470,14 +3513,14 @@ export interface Customer {
|
|
|
3470
3513
|
dueDate: ScriptingDate;
|
|
3471
3514
|
|
|
3472
3515
|
/**
|
|
3473
|
-
*
|
|
3516
|
+
* collective billable
|
|
3474
3517
|
*/
|
|
3475
|
-
|
|
3518
|
+
collectiveBillable: boolean;
|
|
3476
3519
|
|
|
3477
3520
|
/**
|
|
3478
|
-
*
|
|
3521
|
+
* Maximal mögliche Lieferungen
|
|
3479
3522
|
*/
|
|
3480
|
-
|
|
3523
|
+
maxDeliveries: number;
|
|
3481
3524
|
|
|
3482
3525
|
/**
|
|
3483
3526
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3596,14 +3639,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3596
3639
|
export interface DeliveryMethod {
|
|
3597
3640
|
|
|
3598
3641
|
/**
|
|
3599
|
-
*
|
|
3642
|
+
* E-Mail an Versender übergeben
|
|
3600
3643
|
*/
|
|
3601
|
-
|
|
3644
|
+
forwardEmailToShipper: boolean;
|
|
3602
3645
|
|
|
3603
3646
|
/**
|
|
3604
|
-
*
|
|
3647
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3605
3648
|
*/
|
|
3606
|
-
|
|
3649
|
+
splitIntoNewDocument: boolean;
|
|
3607
3650
|
|
|
3608
3651
|
/**
|
|
3609
3652
|
* Min. Gewicht pro Paket
|
|
@@ -3774,14 +3817,14 @@ export interface DeliveryTerm {
|
|
|
3774
3817
|
id: number;
|
|
3775
3818
|
|
|
3776
3819
|
/**
|
|
3777
|
-
*
|
|
3820
|
+
* free shipping net value
|
|
3778
3821
|
*/
|
|
3779
|
-
|
|
3822
|
+
freeShippingNetValue: number;
|
|
3780
3823
|
|
|
3781
3824
|
/**
|
|
3782
|
-
*
|
|
3825
|
+
* Versandkostenartikel
|
|
3783
3826
|
*/
|
|
3784
|
-
|
|
3827
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3785
3828
|
|
|
3786
3829
|
/**
|
|
3787
3830
|
* MetaInformations for this Object
|
|
@@ -3940,14 +3983,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3940
3983
|
accountId: number;
|
|
3941
3984
|
|
|
3942
3985
|
/**
|
|
3943
|
-
* Länderkennzeichen
|
|
3986
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3944
3987
|
*/
|
|
3945
|
-
|
|
3988
|
+
sourceCountryCode: string;
|
|
3946
3989
|
|
|
3947
3990
|
/**
|
|
3948
|
-
* Länderkennzeichen
|
|
3991
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3949
3992
|
*/
|
|
3950
|
-
|
|
3993
|
+
performanceCountryCode: string;
|
|
3951
3994
|
|
|
3952
3995
|
/**
|
|
3953
3996
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4077,14 +4120,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4077
4120
|
processedByWorkflow: boolean;
|
|
4078
4121
|
|
|
4079
4122
|
/**
|
|
4080
|
-
*
|
|
4123
|
+
* Telefon an Versender übergeben
|
|
4081
4124
|
*/
|
|
4082
|
-
|
|
4125
|
+
forwardPhoneToShipper: boolean;
|
|
4083
4126
|
|
|
4084
4127
|
/**
|
|
4085
|
-
*
|
|
4128
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4086
4129
|
*/
|
|
4087
|
-
|
|
4130
|
+
baseTotalDocumentPriceModifier: number;
|
|
4088
4131
|
|
|
4089
4132
|
/**
|
|
4090
4133
|
* Liste der Belegtexte
|
|
@@ -4107,14 +4150,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4107
4150
|
defaultAddress: DocumentAddress;
|
|
4108
4151
|
|
|
4109
4152
|
/**
|
|
4110
|
-
*
|
|
4153
|
+
* Verarbeitungsoption für Stapel
|
|
4111
4154
|
*/
|
|
4112
|
-
|
|
4155
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4113
4156
|
|
|
4114
4157
|
/**
|
|
4115
|
-
*
|
|
4158
|
+
* Leistungsdatum
|
|
4116
4159
|
*/
|
|
4117
|
-
|
|
4160
|
+
performanceDate: ScriptingDate;
|
|
4118
4161
|
|
|
4119
4162
|
/**
|
|
4120
4163
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4292,14 +4335,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4292
4335
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4293
4336
|
|
|
4294
4337
|
/**
|
|
4295
|
-
*
|
|
4338
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4296
4339
|
*/
|
|
4297
|
-
|
|
4340
|
+
taxIdentificationNumber: string;
|
|
4298
4341
|
|
|
4299
4342
|
/**
|
|
4300
|
-
*
|
|
4343
|
+
* Statusinstanz des Belegs
|
|
4301
4344
|
*/
|
|
4302
|
-
|
|
4345
|
+
documentState: DocumentTypeState;
|
|
4303
4346
|
|
|
4304
4347
|
/**
|
|
4305
4348
|
* Rückgeld
|
|
@@ -4349,14 +4392,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4349
4392
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4350
4393
|
|
|
4351
4394
|
/**
|
|
4352
|
-
*
|
|
4395
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4353
4396
|
*/
|
|
4354
|
-
|
|
4397
|
+
reportGroupRef: ApiObjectReference;
|
|
4355
4398
|
|
|
4356
4399
|
/**
|
|
4357
|
-
*
|
|
4400
|
+
* Bestellt durch Ansprechpartner
|
|
4358
4401
|
*/
|
|
4359
|
-
|
|
4402
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4360
4403
|
}
|
|
4361
4404
|
|
|
4362
4405
|
export interface DocumentAdditionalInfo {
|
|
@@ -4507,14 +4550,14 @@ export interface DocumentAddress {
|
|
|
4507
4550
|
postOfficeBox: string;
|
|
4508
4551
|
|
|
4509
4552
|
/**
|
|
4510
|
-
*
|
|
4553
|
+
* Street
|
|
4511
4554
|
*/
|
|
4512
|
-
|
|
4555
|
+
street: string;
|
|
4513
4556
|
|
|
4514
4557
|
/**
|
|
4515
|
-
*
|
|
4558
|
+
* country code IsoAlpha3
|
|
4516
4559
|
*/
|
|
4517
|
-
|
|
4560
|
+
countryCode: string;
|
|
4518
4561
|
|
|
4519
4562
|
/**
|
|
4520
4563
|
* Unique identifier of the Object
|
|
@@ -4529,18 +4572,18 @@ export interface DocumentAddress {
|
|
|
4529
4572
|
/**
|
|
4530
4573
|
* MetaInformations for this Object
|
|
4531
4574
|
*/
|
|
4532
|
-
info: MetaInfo;
|
|
4533
|
-
|
|
4534
|
-
/**
|
|
4535
|
-
* GLN
|
|
4536
|
-
*/
|
|
4537
|
-
globalLocationNumber: string;
|
|
4575
|
+
info: MetaInfo;
|
|
4538
4576
|
|
|
4539
4577
|
/**
|
|
4540
4578
|
* Lieferart
|
|
4541
4579
|
*/
|
|
4542
4580
|
deliveryMethodRef: ApiObjectReference;
|
|
4543
4581
|
|
|
4582
|
+
/**
|
|
4583
|
+
* GLN
|
|
4584
|
+
*/
|
|
4585
|
+
globalLocationNumber: string;
|
|
4586
|
+
|
|
4544
4587
|
/**
|
|
4545
4588
|
* Postcode
|
|
4546
4589
|
*/
|
|
@@ -4961,14 +5004,14 @@ export interface DocumentLine {
|
|
|
4961
5004
|
number: string;
|
|
4962
5005
|
|
|
4963
5006
|
/**
|
|
4964
|
-
*
|
|
5007
|
+
* Referenz zur Kundenauftragszeile
|
|
4965
5008
|
*/
|
|
4966
|
-
|
|
5009
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4967
5010
|
|
|
4968
5011
|
/**
|
|
4969
|
-
*
|
|
5012
|
+
* Gesamtbruttogewicht
|
|
4970
5013
|
*/
|
|
4971
|
-
|
|
5014
|
+
totalGrossWeight: number;
|
|
4972
5015
|
|
|
4973
5016
|
/**
|
|
4974
5017
|
* skontierbare Position?
|
|
@@ -4985,6 +5028,11 @@ export interface DocumentLine {
|
|
|
4985
5028
|
*/
|
|
4986
5029
|
price: number;
|
|
4987
5030
|
|
|
5031
|
+
/**
|
|
5032
|
+
* Positionstyp
|
|
5033
|
+
*/
|
|
5034
|
+
lineType: DocumentLineType;
|
|
5035
|
+
|
|
4988
5036
|
/**
|
|
4989
5037
|
* Gesamtpreis Position in Basiswährung
|
|
4990
5038
|
*/
|
|
@@ -4995,11 +5043,6 @@ export interface DocumentLine {
|
|
|
4995
5043
|
*/
|
|
4996
5044
|
financeBooking: DocumentFinanceBooking;
|
|
4997
5045
|
|
|
4998
|
-
/**
|
|
4999
|
-
* Positionstyp
|
|
5000
|
-
*/
|
|
5001
|
-
lineType: DocumentLineType;
|
|
5002
|
-
|
|
5003
5046
|
/**
|
|
5004
5047
|
* vorgeorderte Menge in Pickvorgang
|
|
5005
5048
|
*/
|
|
@@ -5030,6 +5073,11 @@ export interface DocumentLine {
|
|
|
5030
5073
|
*/
|
|
5031
5074
|
id: number;
|
|
5032
5075
|
|
|
5076
|
+
/**
|
|
5077
|
+
* Preis pro Einheit in Basiswährung
|
|
5078
|
+
*/
|
|
5079
|
+
basePrice: number;
|
|
5080
|
+
|
|
5033
5081
|
/**
|
|
5034
5082
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5035
5083
|
*/
|
|
@@ -5040,11 +5088,6 @@ export interface DocumentLine {
|
|
|
5040
5088
|
*/
|
|
5041
5089
|
externalReferenceVds: string;
|
|
5042
5090
|
|
|
5043
|
-
/**
|
|
5044
|
-
* Preis pro Einheit in Basiswährung
|
|
5045
|
-
*/
|
|
5046
|
-
basePrice: number;
|
|
5047
|
-
|
|
5048
5091
|
/**
|
|
5049
5092
|
* Serientyp
|
|
5050
5093
|
*/
|
|
@@ -5211,14 +5254,14 @@ export interface DocumentLine {
|
|
|
5211
5254
|
unitType: UnitTypeReference;
|
|
5212
5255
|
|
|
5213
5256
|
/**
|
|
5214
|
-
*
|
|
5257
|
+
* Referenz zur Basiszeile
|
|
5215
5258
|
*/
|
|
5216
|
-
|
|
5259
|
+
baseLineId: number;
|
|
5217
5260
|
|
|
5218
5261
|
/**
|
|
5219
|
-
*
|
|
5262
|
+
* Zubehör Einfügeart
|
|
5220
5263
|
*/
|
|
5221
|
-
|
|
5264
|
+
insertTerm: AccessoryInsertTerm;
|
|
5222
5265
|
|
|
5223
5266
|
/**
|
|
5224
5267
|
* Einheit Bruttogewicht
|
|
@@ -5485,14 +5528,14 @@ export interface DocumentLineComponent {
|
|
|
5485
5528
|
custom: EavDocumentlinecomponent;
|
|
5486
5529
|
|
|
5487
5530
|
/**
|
|
5488
|
-
*
|
|
5531
|
+
* Referenz auf den Artikel der Komponente
|
|
5489
5532
|
*/
|
|
5490
|
-
|
|
5533
|
+
articleId: number;
|
|
5491
5534
|
|
|
5492
5535
|
/**
|
|
5493
|
-
*
|
|
5536
|
+
* Gelieferte Menge
|
|
5494
5537
|
*/
|
|
5495
|
-
|
|
5538
|
+
quantityCommitted: number;
|
|
5496
5539
|
|
|
5497
5540
|
/**
|
|
5498
5541
|
* Beschreibung des Artikels
|
|
@@ -5552,6 +5595,11 @@ export interface DocumentLineComponent {
|
|
|
5552
5595
|
|
|
5553
5596
|
export interface DocumentLineComponentFabricationDetail {
|
|
5554
5597
|
|
|
5598
|
+
/**
|
|
5599
|
+
* Abweichende Herstellungskosten
|
|
5600
|
+
*/
|
|
5601
|
+
deviatingUnitPrice: number;
|
|
5602
|
+
|
|
5555
5603
|
/**
|
|
5556
5604
|
* Freifeld
|
|
5557
5605
|
*/
|
|
@@ -6100,14 +6148,14 @@ export interface DocumentRef {
|
|
|
6100
6148
|
export interface DocumentShippingCost {
|
|
6101
6149
|
|
|
6102
6150
|
/**
|
|
6103
|
-
*
|
|
6151
|
+
* Die Versandkosten
|
|
6104
6152
|
*/
|
|
6105
|
-
|
|
6153
|
+
costs: number;
|
|
6106
6154
|
|
|
6107
6155
|
/**
|
|
6108
|
-
*
|
|
6156
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6109
6157
|
*/
|
|
6110
|
-
|
|
6158
|
+
manualCosts: boolean;
|
|
6111
6159
|
|
|
6112
6160
|
/**
|
|
6113
6161
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6352,14 +6400,14 @@ export interface DocumentType {
|
|
|
6352
6400
|
labels: Array<DocumentTypeLabel>;
|
|
6353
6401
|
|
|
6354
6402
|
/**
|
|
6355
|
-
*
|
|
6403
|
+
* Zählerkreis
|
|
6356
6404
|
*/
|
|
6357
|
-
|
|
6405
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6358
6406
|
|
|
6359
6407
|
/**
|
|
6360
|
-
*
|
|
6408
|
+
* nächste Belegnummer
|
|
6361
6409
|
*/
|
|
6362
|
-
|
|
6410
|
+
nextNumber: string;
|
|
6363
6411
|
|
|
6364
6412
|
/**
|
|
6365
6413
|
* Sortierung
|
|
@@ -7509,14 +7557,14 @@ export interface PicklistLine {
|
|
|
7509
7557
|
articleNumber: string;
|
|
7510
7558
|
|
|
7511
7559
|
/**
|
|
7512
|
-
*
|
|
7560
|
+
* Lagernummer
|
|
7513
7561
|
*/
|
|
7514
|
-
|
|
7562
|
+
storageNumber: string;
|
|
7515
7563
|
|
|
7516
7564
|
/**
|
|
7517
|
-
*
|
|
7565
|
+
* Art der Position
|
|
7518
7566
|
*/
|
|
7519
|
-
|
|
7567
|
+
lineType: PicklistLineType;
|
|
7520
7568
|
|
|
7521
7569
|
/**
|
|
7522
7570
|
* ID der Ziel-Dokumentposition
|
|
@@ -7655,14 +7703,14 @@ export interface PicklistLineComponent {
|
|
|
7655
7703
|
targetDocumentLineComponentId: number;
|
|
7656
7704
|
|
|
7657
7705
|
/**
|
|
7658
|
-
*
|
|
7706
|
+
* abweichende Artikelbezeichnung
|
|
7659
7707
|
*/
|
|
7660
|
-
|
|
7708
|
+
articleAlternativeName: string;
|
|
7661
7709
|
|
|
7662
7710
|
/**
|
|
7663
|
-
*
|
|
7711
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7664
7712
|
*/
|
|
7665
|
-
|
|
7713
|
+
quantityPerAssemblyGroup: number;
|
|
7666
7714
|
|
|
7667
7715
|
/**
|
|
7668
7716
|
* Verpackte Menge der Position
|
|
@@ -7829,14 +7877,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7829
7877
|
maxArticleCountPerOrder: number;
|
|
7830
7878
|
|
|
7831
7879
|
/**
|
|
7832
|
-
*
|
|
7880
|
+
* Alternative Selektion in VQL
|
|
7833
7881
|
*/
|
|
7834
|
-
|
|
7882
|
+
alternativeSelectionInVql: string;
|
|
7835
7883
|
|
|
7836
7884
|
/**
|
|
7837
|
-
*
|
|
7885
|
+
* Maximaler Auftragswert
|
|
7838
7886
|
*/
|
|
7839
|
-
|
|
7887
|
+
maxOrderValue: number;
|
|
7840
7888
|
|
|
7841
7889
|
/**
|
|
7842
7890
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -7912,14 +7960,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7912
7960
|
printPicklist: boolean;
|
|
7913
7961
|
|
|
7914
7962
|
/**
|
|
7915
|
-
*
|
|
7963
|
+
* Die zu verwendende Pickwagengruppe
|
|
7916
7964
|
*/
|
|
7917
|
-
|
|
7965
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7918
7966
|
|
|
7919
7967
|
/**
|
|
7920
|
-
*
|
|
7968
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
7921
7969
|
*/
|
|
7922
|
-
|
|
7970
|
+
maxPicklistLineCount: number;
|
|
7923
7971
|
|
|
7924
7972
|
/**
|
|
7925
7973
|
* Der zu verwendende Pickwagen
|
|
@@ -7937,14 +7985,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7937
7985
|
specifyStorageBins: boolean;
|
|
7938
7986
|
|
|
7939
7987
|
/**
|
|
7940
|
-
*
|
|
7988
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7941
7989
|
*/
|
|
7942
|
-
|
|
7990
|
+
sortByRoutePosition: boolean;
|
|
7943
7991
|
|
|
7944
7992
|
/**
|
|
7945
|
-
*
|
|
7993
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7946
7994
|
*/
|
|
7947
|
-
|
|
7995
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7948
7996
|
|
|
7949
7997
|
/**
|
|
7950
7998
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -7990,14 +8038,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7990
8038
|
alwaysShowDeliveryMethod: boolean;
|
|
7991
8039
|
|
|
7992
8040
|
/**
|
|
7993
|
-
*
|
|
8041
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7994
8042
|
*/
|
|
7995
|
-
|
|
8043
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7996
8044
|
|
|
7997
8045
|
/**
|
|
7998
|
-
*
|
|
8046
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7999
8047
|
*/
|
|
8000
|
-
|
|
8048
|
+
autoPrintDeliveryDocument: boolean;
|
|
8001
8049
|
|
|
8002
8050
|
/**
|
|
8003
8051
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8010,14 +8058,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8010
8058
|
allowFullConfirmation: boolean;
|
|
8011
8059
|
|
|
8012
8060
|
/**
|
|
8013
|
-
*
|
|
8061
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8014
8062
|
*/
|
|
8015
|
-
|
|
8063
|
+
allowPickingOfServiceArticles: boolean;
|
|
8016
8064
|
|
|
8017
8065
|
/**
|
|
8018
|
-
*
|
|
8066
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8019
8067
|
*/
|
|
8020
|
-
|
|
8068
|
+
useDigitalPicklist: boolean;
|
|
8021
8069
|
|
|
8022
8070
|
/**
|
|
8023
8071
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8276,14 +8324,14 @@ export interface ProductArticleRef {
|
|
|
8276
8324
|
export interface ProductDiscount {
|
|
8277
8325
|
|
|
8278
8326
|
/**
|
|
8279
|
-
*
|
|
8327
|
+
* Kundengruppe
|
|
8280
8328
|
*/
|
|
8281
|
-
|
|
8329
|
+
customerGroupRef: ApiObjectReference;
|
|
8282
8330
|
|
|
8283
8331
|
/**
|
|
8284
|
-
*
|
|
8332
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8285
8333
|
*/
|
|
8286
|
-
|
|
8334
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8287
8335
|
|
|
8288
8336
|
/**
|
|
8289
8337
|
* Lieferantengruppe
|
|
@@ -8306,14 +8354,14 @@ export interface ProductDiscount {
|
|
|
8306
8354
|
validFrom: ScriptingDate;
|
|
8307
8355
|
|
|
8308
8356
|
/**
|
|
8309
|
-
*
|
|
8357
|
+
* Warengruppe
|
|
8310
8358
|
*/
|
|
8311
|
-
|
|
8359
|
+
productGroupRef: ApiObjectReference;
|
|
8312
8360
|
|
|
8313
8361
|
/**
|
|
8314
|
-
*
|
|
8362
|
+
* Bestimmt die Art des Rabatts
|
|
8315
8363
|
*/
|
|
8316
|
-
|
|
8364
|
+
modifierType: PriceModifierType;
|
|
8317
8365
|
|
|
8318
8366
|
/**
|
|
8319
8367
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8331,14 +8379,14 @@ export interface ProductDiscount {
|
|
|
8331
8379
|
currencyRef: CurrencyReference;
|
|
8332
8380
|
|
|
8333
8381
|
/**
|
|
8334
|
-
*
|
|
8382
|
+
* Wert des Rabatts
|
|
8335
8383
|
*/
|
|
8336
|
-
|
|
8384
|
+
modifierValue: number;
|
|
8337
8385
|
|
|
8338
8386
|
/**
|
|
8339
|
-
*
|
|
8387
|
+
* Preisgruppe
|
|
8340
8388
|
*/
|
|
8341
|
-
|
|
8389
|
+
priceGroupRef: ApiObjectReference;
|
|
8342
8390
|
|
|
8343
8391
|
/**
|
|
8344
8392
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8361,14 +8409,14 @@ export interface ProductDiscount {
|
|
|
8361
8409
|
modifierValueType: ValueType;
|
|
8362
8410
|
|
|
8363
8411
|
/**
|
|
8364
|
-
*
|
|
8412
|
+
* Account, für den der Rabatt gültig ist
|
|
8365
8413
|
*/
|
|
8366
|
-
|
|
8414
|
+
accountRef: ApiObjectReference;
|
|
8367
8415
|
|
|
8368
8416
|
/**
|
|
8369
|
-
*
|
|
8417
|
+
* Name des Rabatts
|
|
8370
8418
|
*/
|
|
8371
|
-
|
|
8419
|
+
modifierName: string;
|
|
8372
8420
|
|
|
8373
8421
|
/**
|
|
8374
8422
|
* Unique identifier of the Object
|
|
@@ -8399,14 +8447,14 @@ export interface ProductGroup {
|
|
|
8399
8447
|
targetTradingMargin: number;
|
|
8400
8448
|
|
|
8401
8449
|
/**
|
|
8402
|
-
*
|
|
8450
|
+
* Freifeld
|
|
8403
8451
|
*/
|
|
8404
|
-
|
|
8452
|
+
custom: EavProductgroup;
|
|
8405
8453
|
|
|
8406
8454
|
/**
|
|
8407
|
-
*
|
|
8455
|
+
* main product group
|
|
8408
8456
|
*/
|
|
8409
|
-
|
|
8457
|
+
mainGroupRef: ApiObjectReference;
|
|
8410
8458
|
|
|
8411
8459
|
/**
|
|
8412
8460
|
* warengruppe aktiv ja/nein
|
|
@@ -8485,14 +8533,14 @@ export interface ProductMainGroup {
|
|
|
8485
8533
|
export interface ProductPrice {
|
|
8486
8534
|
|
|
8487
8535
|
/**
|
|
8488
|
-
*
|
|
8536
|
+
* Kundengruppe
|
|
8489
8537
|
*/
|
|
8490
|
-
|
|
8538
|
+
customerGroupRef: ApiObjectReference;
|
|
8491
8539
|
|
|
8492
8540
|
/**
|
|
8493
|
-
*
|
|
8541
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8494
8542
|
*/
|
|
8495
|
-
|
|
8543
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8496
8544
|
|
|
8497
8545
|
/**
|
|
8498
8546
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8639,14 +8687,14 @@ export interface RequestDocument {
|
|
|
8639
8687
|
cashDrawerId: number;
|
|
8640
8688
|
|
|
8641
8689
|
/**
|
|
8642
|
-
*
|
|
8690
|
+
* Der Anzahlungsbetrag
|
|
8643
8691
|
*/
|
|
8644
|
-
|
|
8692
|
+
depositPaymentAmount: number;
|
|
8645
8693
|
|
|
8646
8694
|
/**
|
|
8647
|
-
*
|
|
8695
|
+
* Leistungsdatum
|
|
8648
8696
|
*/
|
|
8649
|
-
|
|
8697
|
+
performanceDate: ScriptingDate;
|
|
8650
8698
|
|
|
8651
8699
|
/**
|
|
8652
8700
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8709,14 +8757,14 @@ export interface RequestDocument {
|
|
|
8709
8757
|
lines: Array<RequestDocumentLine>;
|
|
8710
8758
|
|
|
8711
8759
|
/**
|
|
8712
|
-
*
|
|
8760
|
+
* Die Vertragsdetails
|
|
8713
8761
|
*/
|
|
8714
|
-
|
|
8762
|
+
contractDetail: DocumentContractDetail;
|
|
8715
8763
|
|
|
8716
8764
|
/**
|
|
8717
|
-
*
|
|
8765
|
+
* ID der Kasse (bei POS)
|
|
8718
8766
|
*/
|
|
8719
|
-
|
|
8767
|
+
posRegisterId: number;
|
|
8720
8768
|
|
|
8721
8769
|
/**
|
|
8722
8770
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -8837,14 +8885,14 @@ export interface RequestDocumentLine {
|
|
|
8837
8885
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8838
8886
|
|
|
8839
8887
|
/**
|
|
8840
|
-
*
|
|
8888
|
+
* Typ dieser Position
|
|
8841
8889
|
*/
|
|
8842
|
-
|
|
8890
|
+
lineType: DocumentLineType;
|
|
8843
8891
|
|
|
8844
8892
|
/**
|
|
8845
|
-
*
|
|
8893
|
+
* FiBu-Angaben
|
|
8846
8894
|
*/
|
|
8847
|
-
|
|
8895
|
+
financeBooking: DocumentFinanceBooking;
|
|
8848
8896
|
|
|
8849
8897
|
/**
|
|
8850
8898
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8936,11 +8984,6 @@ export interface RequestDocumentLine {
|
|
|
8936
8984
|
*/
|
|
8937
8985
|
name: string;
|
|
8938
8986
|
|
|
8939
|
-
/**
|
|
8940
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
8941
|
-
*/
|
|
8942
|
-
externalArticleNumber: string;
|
|
8943
|
-
|
|
8944
8987
|
/**
|
|
8945
8988
|
* ID der Quell-Belegposition
|
|
8946
8989
|
*/
|
|
@@ -8951,6 +8994,11 @@ export interface RequestDocumentLine {
|
|
|
8951
8994
|
*/
|
|
8952
8995
|
bookings: Array<RequestDocumentLineBooking>;
|
|
8953
8996
|
|
|
8997
|
+
/**
|
|
8998
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8999
|
+
*/
|
|
9000
|
+
externalArticleNumber: string;
|
|
9001
|
+
|
|
8954
9002
|
/**
|
|
8955
9003
|
* (optional) Preis des Artikels dieser Position
|
|
8956
9004
|
*/
|
|
@@ -9344,14 +9392,14 @@ export interface ScenarioDimensionValue {
|
|
|
9344
9392
|
export interface ScenarioFactDef {
|
|
9345
9393
|
|
|
9346
9394
|
/**
|
|
9347
|
-
* Attribut
|
|
9395
|
+
* Attribut Typ
|
|
9348
9396
|
*/
|
|
9349
|
-
|
|
9397
|
+
attributeType: ScenarioFactDef$FactType;
|
|
9350
9398
|
|
|
9351
9399
|
/**
|
|
9352
|
-
* Attribut
|
|
9400
|
+
* Attribut Name
|
|
9353
9401
|
*/
|
|
9354
|
-
|
|
9402
|
+
factAttribute: string;
|
|
9355
9403
|
|
|
9356
9404
|
/**
|
|
9357
9405
|
* Unique identifier of the Object
|
|
@@ -9838,14 +9886,14 @@ export interface ShelfShare {
|
|
|
9838
9886
|
publishState: ShelfSharePublishState;
|
|
9839
9887
|
|
|
9840
9888
|
/**
|
|
9841
|
-
*
|
|
9889
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9842
9890
|
*/
|
|
9843
|
-
|
|
9891
|
+
publicUrlDurationInMinutes: number;
|
|
9844
9892
|
|
|
9845
9893
|
/**
|
|
9846
|
-
*
|
|
9894
|
+
* Freifelder
|
|
9847
9895
|
*/
|
|
9848
|
-
|
|
9896
|
+
custom: EavShelfshare;
|
|
9849
9897
|
|
|
9850
9898
|
/**
|
|
9851
9899
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10057,14 +10105,14 @@ export interface StockMovementManualApi {
|
|
|
10057
10105
|
export interface StockTransferApi {
|
|
10058
10106
|
|
|
10059
10107
|
/**
|
|
10060
|
-
*
|
|
10108
|
+
* Ziel-Lager
|
|
10061
10109
|
*/
|
|
10062
|
-
|
|
10110
|
+
targetStorageId: number;
|
|
10063
10111
|
|
|
10064
10112
|
/**
|
|
10065
|
-
*
|
|
10113
|
+
* Seriennummer
|
|
10066
10114
|
*/
|
|
10067
|
-
|
|
10115
|
+
serialNumberId: number;
|
|
10068
10116
|
|
|
10069
10117
|
/**
|
|
10070
10118
|
* Bemerkung
|
|
@@ -10339,14 +10387,14 @@ export interface Supplier {
|
|
|
10339
10387
|
performanceCountryCode: string;
|
|
10340
10388
|
|
|
10341
10389
|
/**
|
|
10342
|
-
*
|
|
10390
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10343
10391
|
*/
|
|
10344
|
-
|
|
10392
|
+
defaultDeliveryTime: number;
|
|
10345
10393
|
|
|
10346
10394
|
/**
|
|
10347
|
-
*
|
|
10395
|
+
* reference to the payment method
|
|
10348
10396
|
*/
|
|
10349
|
-
|
|
10397
|
+
paymentMethodRef: ApiObjectReference;
|
|
10350
10398
|
|
|
10351
10399
|
/**
|
|
10352
10400
|
* currency code IsoAlpha3
|
|
@@ -10698,14 +10746,14 @@ export interface User {
|
|
|
10698
10746
|
version: number;
|
|
10699
10747
|
|
|
10700
10748
|
/**
|
|
10701
|
-
*
|
|
10749
|
+
* first-name
|
|
10702
10750
|
*/
|
|
10703
|
-
|
|
10751
|
+
firstName: string;
|
|
10704
10752
|
|
|
10705
10753
|
/**
|
|
10706
|
-
*
|
|
10754
|
+
* is the email verified
|
|
10707
10755
|
*/
|
|
10708
|
-
|
|
10756
|
+
emailVerified: boolean;
|
|
10709
10757
|
|
|
10710
10758
|
/**
|
|
10711
10759
|
* email-address
|
|
@@ -10779,14 +10827,14 @@ export interface VariantAttributeListing {
|
|
|
10779
10827
|
salesChannelRef: ApiObjectReference;
|
|
10780
10828
|
|
|
10781
10829
|
/**
|
|
10782
|
-
*
|
|
10830
|
+
* Variantenattribut
|
|
10783
10831
|
*/
|
|
10784
|
-
|
|
10832
|
+
variantAttributeRef: ApiObjectReference;
|
|
10785
10833
|
|
|
10786
10834
|
/**
|
|
10787
|
-
*
|
|
10835
|
+
* Freifelder
|
|
10788
10836
|
*/
|
|
10789
|
-
|
|
10837
|
+
custom: EavVariantattributelisting;
|
|
10790
10838
|
|
|
10791
10839
|
/**
|
|
10792
10840
|
* Unique identifier of the Object
|