@vario-software/types 2026.17.3 → 2026.18.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 +49 -7
- package/scripting/services.d.ts +59 -16
- package/scripting/types.d.ts +317 -312
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -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
|
|
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
|
|
|
469
469
|
active: boolean;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
*
|
|
472
|
+
* post-code of the bank
|
|
473
473
|
*/
|
|
474
|
-
|
|
474
|
+
bankPostCode: string;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* name of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankName: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* account from, if differs from account-address
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* origin type
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Is default bank?
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
defaultBank: boolean;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
|
|
|
562
562
|
nonInvoicedDocumentLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Kreditlimit
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
maximalLoan: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
571
571
|
*/
|
|
572
|
-
|
|
572
|
+
payablesSum: number;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Überschrittener Kreditbetrag
|
|
@@ -970,6 +970,11 @@ export interface Article {
|
|
|
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
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -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
|
|
@@ -1141,14 +1141,14 @@ export interface Article {
|
|
|
1141
1141
|
listingStateChangeTime: ScriptingDateTime;
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
|
-
*
|
|
1144
|
+
* Arbeitseinheit in Minuten
|
|
1145
1145
|
*/
|
|
1146
|
-
|
|
1146
|
+
workUnitInMinutes: number;
|
|
1147
1147
|
|
|
1148
1148
|
/**
|
|
1149
|
-
*
|
|
1149
|
+
* Country code
|
|
1150
1150
|
*/
|
|
1151
|
-
|
|
1151
|
+
countryOfOriginRef: CountryReference;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
1154
|
* description custom data
|
|
@@ -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
|
* Versandlabeldruck
|
|
1225
1230
|
*/
|
|
@@ -1231,9 +1236,9 @@ export interface Article {
|
|
|
1231
1236
|
productRef: ApiObjectReference;
|
|
1232
1237
|
|
|
1233
1238
|
/**
|
|
1234
|
-
* Artikel
|
|
1239
|
+
* rabattierbarer Artikel?
|
|
1235
1240
|
*/
|
|
1236
|
-
|
|
1241
|
+
discountable: boolean;
|
|
1237
1242
|
|
|
1238
1243
|
/**
|
|
1239
1244
|
* Kontingentartikel
|
|
@@ -1245,11 +1250,6 @@ export interface Article {
|
|
|
1245
1250
|
*/
|
|
1246
1251
|
alternativeName: string;
|
|
1247
1252
|
|
|
1248
|
-
/**
|
|
1249
|
-
* rabattierbarer Artikel?
|
|
1250
|
-
*/
|
|
1251
|
-
discountable: boolean;
|
|
1252
|
-
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
1255
1255
|
*/
|
|
@@ -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
|
|
@@ -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
|
|
@@ -1514,14 +1514,14 @@ export interface ArticleListing {
|
|
|
1514
1514
|
alternativeName: WithDefaults<String>;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1517
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
customLowestPriceNet: number;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1522
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
proposedLowestPriceNet: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* der aktuelle listing stand
|
|
@@ -1681,25 +1681,30 @@ export const enum ArticleSerialType {
|
|
|
1681
1681
|
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* Nachschub ab
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
replenishmentFrom: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
|
-
*
|
|
1689
|
+
* Bestand im Lager
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
quantityInStock: number;
|
|
1692
1692
|
|
|
1693
1693
|
/**
|
|
1694
|
-
*
|
|
1694
|
+
* Meldebestand
|
|
1695
1695
|
*/
|
|
1696
|
-
|
|
1696
|
+
reorderPoint: number;
|
|
1697
1697
|
|
|
1698
1698
|
/**
|
|
1699
1699
|
* Bestellte Menge
|
|
1700
1700
|
*/
|
|
1701
1701
|
orderedQuantity: number;
|
|
1702
1702
|
|
|
1703
|
+
/**
|
|
1704
|
+
* Aktuelle Menge in Kommissionierung
|
|
1705
|
+
*/
|
|
1706
|
+
quantityInPicking: number;
|
|
1707
|
+
|
|
1703
1708
|
/**
|
|
1704
1709
|
* Nachschub auf
|
|
1705
1710
|
*/
|
|
@@ -1751,14 +1756,14 @@ export interface ArticleStorage {
|
|
|
1751
1756
|
storageRef: ApiObjectReference;
|
|
1752
1757
|
|
|
1753
1758
|
/**
|
|
1754
|
-
*
|
|
1759
|
+
* Sollbestand
|
|
1755
1760
|
*/
|
|
1756
|
-
|
|
1761
|
+
targetStock: number;
|
|
1757
1762
|
|
|
1758
1763
|
/**
|
|
1759
|
-
*
|
|
1764
|
+
* Vorgabe-Lagerplätze
|
|
1760
1765
|
*/
|
|
1761
|
-
|
|
1766
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1762
1767
|
|
|
1763
1768
|
/**
|
|
1764
1769
|
* Aktuelle Menge in Produktion
|
|
@@ -1783,26 +1788,26 @@ export interface ArticleSupplier {
|
|
|
1783
1788
|
*/
|
|
1784
1789
|
supplierReportingStock: number;
|
|
1785
1790
|
|
|
1786
|
-
/**
|
|
1787
|
-
* Anzeigename des Accounts
|
|
1788
|
-
*/
|
|
1789
|
-
accountDisplayName: string;
|
|
1790
|
-
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1793
1793
|
*/
|
|
1794
1794
|
useSupplierArticleDescription: boolean;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
|
-
*
|
|
1797
|
+
* Anzeigename des Accounts
|
|
1798
1798
|
*/
|
|
1799
|
-
|
|
1799
|
+
accountDisplayName: string;
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
1802
1802
|
* Lieferzeit in (Werk-)Tagen
|
|
1803
1803
|
*/
|
|
1804
1804
|
deliveryTime: number;
|
|
1805
1805
|
|
|
1806
|
+
/**
|
|
1807
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1808
|
+
*/
|
|
1809
|
+
useSupplierArticleIdentifier: boolean;
|
|
1810
|
+
|
|
1806
1811
|
/**
|
|
1807
1812
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1808
1813
|
*/
|
|
@@ -1848,26 +1853,26 @@ export interface ArticleSupplier {
|
|
|
1848
1853
|
*/
|
|
1849
1854
|
info: MetaInfo;
|
|
1850
1855
|
|
|
1851
|
-
/**
|
|
1852
|
-
* Verpackungseinheit
|
|
1853
|
-
*/
|
|
1854
|
-
packagingUnit: number;
|
|
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
|
|
1868
1868
|
*/
|
|
1869
1869
|
articleId: number;
|
|
1870
1870
|
|
|
1871
|
+
/**
|
|
1872
|
+
* Lieferanten-Preise
|
|
1873
|
+
*/
|
|
1874
|
+
productPrices: Array<ProductPrice>;
|
|
1875
|
+
|
|
1871
1876
|
/**
|
|
1872
1877
|
* Aktiv?
|
|
1873
1878
|
*/
|
|
@@ -1903,6 +1908,11 @@ export interface ArticleSupplier {
|
|
|
1903
1908
|
*/
|
|
1904
1909
|
defaultNetPrice: number;
|
|
1905
1910
|
|
|
1911
|
+
/**
|
|
1912
|
+
* Referenced Supplier-Account
|
|
1913
|
+
*/
|
|
1914
|
+
accountId: number;
|
|
1915
|
+
|
|
1906
1916
|
/**
|
|
1907
1917
|
* Einkaufseinheit
|
|
1908
1918
|
*/
|
|
@@ -1913,11 +1923,6 @@ export interface ArticleSupplier {
|
|
|
1913
1923
|
*/
|
|
1914
1924
|
orderOnComponentBase: boolean;
|
|
1915
1925
|
|
|
1916
|
-
/**
|
|
1917
|
-
* Referenced Supplier-Account
|
|
1918
|
-
*/
|
|
1919
|
-
accountId: number;
|
|
1920
|
-
|
|
1921
1926
|
/**
|
|
1922
1927
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1923
1928
|
*/
|
|
@@ -2117,14 +2122,14 @@ export interface CountryReference {
|
|
|
2117
2122
|
export interface CreateNewDocumentRequest {
|
|
2118
2123
|
|
|
2119
2124
|
/**
|
|
2120
|
-
* Belegart
|
|
2125
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2121
2126
|
*/
|
|
2122
|
-
|
|
2127
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2123
2128
|
|
|
2124
2129
|
/**
|
|
2125
|
-
*
|
|
2130
|
+
* Belegart
|
|
2126
2131
|
*/
|
|
2127
|
-
|
|
2132
|
+
documentTypeLabel: string;
|
|
2128
2133
|
|
|
2129
2134
|
/**
|
|
2130
2135
|
* Details zum Beleg
|
|
@@ -2467,14 +2472,14 @@ export interface CrmDeal {
|
|
|
2467
2472
|
info: MetaInfo;
|
|
2468
2473
|
|
|
2469
2474
|
/**
|
|
2470
|
-
*
|
|
2475
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2471
2476
|
*/
|
|
2472
|
-
|
|
2477
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2473
2478
|
|
|
2474
2479
|
/**
|
|
2475
|
-
*
|
|
2480
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2476
2481
|
*/
|
|
2477
|
-
|
|
2482
|
+
assignedUserRef: ApiObjectReference;
|
|
2478
2483
|
|
|
2479
2484
|
/**
|
|
2480
2485
|
* Chance (in Prozent)
|
|
@@ -3254,14 +3259,14 @@ export interface CrmTask {
|
|
|
3254
3259
|
assignedUserRef: ApiObjectReference;
|
|
3255
3260
|
|
|
3256
3261
|
/**
|
|
3257
|
-
*
|
|
3262
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3258
3263
|
*/
|
|
3259
|
-
|
|
3264
|
+
externalRecordedTimes: number;
|
|
3260
3265
|
|
|
3261
3266
|
/**
|
|
3262
|
-
*
|
|
3267
|
+
* Beauftragte Zeit in Sekunden
|
|
3263
3268
|
*/
|
|
3264
|
-
|
|
3269
|
+
effortCommissioned: number;
|
|
3265
3270
|
|
|
3266
3271
|
/**
|
|
3267
3272
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3438,14 +3443,14 @@ export interface CurrencyReference {
|
|
|
3438
3443
|
export interface Customer {
|
|
3439
3444
|
|
|
3440
3445
|
/**
|
|
3441
|
-
*
|
|
3446
|
+
* reference to customer group
|
|
3442
3447
|
*/
|
|
3443
|
-
|
|
3448
|
+
customerGroupRef: ApiObjectReference;
|
|
3444
3449
|
|
|
3445
3450
|
/**
|
|
3446
|
-
*
|
|
3451
|
+
* Option für die Stapelverarbeitung
|
|
3447
3452
|
*/
|
|
3448
|
-
|
|
3453
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3454
|
|
|
3450
3455
|
/**
|
|
3451
3456
|
* Kreditlimit
|
|
@@ -3453,14 +3458,14 @@ export interface Customer {
|
|
|
3453
3458
|
maximalLoan: number;
|
|
3454
3459
|
|
|
3455
3460
|
/**
|
|
3456
|
-
*
|
|
3461
|
+
* collective billable
|
|
3457
3462
|
*/
|
|
3458
|
-
|
|
3463
|
+
collectiveBillable: boolean;
|
|
3459
3464
|
|
|
3460
3465
|
/**
|
|
3461
|
-
*
|
|
3466
|
+
* Maximal mögliche Lieferungen
|
|
3462
3467
|
*/
|
|
3463
|
-
|
|
3468
|
+
maxDeliveries: number;
|
|
3464
3469
|
|
|
3465
3470
|
/**
|
|
3466
3471
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3503,14 +3508,14 @@ export interface Customer {
|
|
|
3503
3508
|
info: MetaInfo;
|
|
3504
3509
|
|
|
3505
3510
|
/**
|
|
3506
|
-
*
|
|
3511
|
+
* reference to the delivery method
|
|
3507
3512
|
*/
|
|
3508
|
-
|
|
3513
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3509
3514
|
|
|
3510
3515
|
/**
|
|
3511
|
-
*
|
|
3516
|
+
* tax able or tax free
|
|
3512
3517
|
*/
|
|
3513
|
-
|
|
3518
|
+
taxable: boolean;
|
|
3514
3519
|
|
|
3515
3520
|
/**
|
|
3516
3521
|
* active true/false
|
|
@@ -3644,14 +3649,14 @@ export interface DeliveryMethod {
|
|
|
3644
3649
|
translations: Array<DocumentTypeTerm>;
|
|
3645
3650
|
|
|
3646
3651
|
/**
|
|
3647
|
-
*
|
|
3652
|
+
* Gültige Ländercodes
|
|
3648
3653
|
*/
|
|
3649
|
-
|
|
3654
|
+
validCountryCodes: Array<string>;
|
|
3650
3655
|
|
|
3651
3656
|
/**
|
|
3652
|
-
*
|
|
3657
|
+
* Versand-Anbieter
|
|
3653
3658
|
*/
|
|
3654
|
-
|
|
3659
|
+
vdsCarrierId: number;
|
|
3655
3660
|
|
|
3656
3661
|
/**
|
|
3657
3662
|
* Standardgewichtseinheit
|
|
@@ -3815,14 +3820,14 @@ export interface Document {
|
|
|
3815
3820
|
totalVat: number;
|
|
3816
3821
|
|
|
3817
3822
|
/**
|
|
3818
|
-
*
|
|
3823
|
+
* Standardlager für neue Positionen
|
|
3819
3824
|
*/
|
|
3820
|
-
|
|
3825
|
+
defaultStorageRef: ApiObjectReference;
|
|
3821
3826
|
|
|
3822
3827
|
/**
|
|
3823
|
-
*
|
|
3828
|
+
* Name der bestellenden Person
|
|
3824
3829
|
*/
|
|
3825
|
-
|
|
3830
|
+
orderedBy: string;
|
|
3826
3831
|
|
|
3827
3832
|
/**
|
|
3828
3833
|
* Lieferadresse
|
|
@@ -3858,9 +3863,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3858
3863
|
deliveryQuantityPackages: number;
|
|
3859
3864
|
|
|
3860
3865
|
/**
|
|
3861
|
-
*
|
|
3866
|
+
* Bestellnummer aus Vorbeleg
|
|
3862
3867
|
*/
|
|
3863
|
-
|
|
3868
|
+
referencedOrderNumber: string;
|
|
3864
3869
|
|
|
3865
3870
|
/**
|
|
3866
3871
|
* Leitweg-ID
|
|
@@ -3868,9 +3873,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3868
3873
|
buyerReference: string;
|
|
3869
3874
|
|
|
3870
3875
|
/**
|
|
3871
|
-
*
|
|
3876
|
+
* Steuerpflichtig oder steuerfrei
|
|
3872
3877
|
*/
|
|
3873
|
-
|
|
3878
|
+
taxable: boolean;
|
|
3874
3879
|
|
|
3875
3880
|
/**
|
|
3876
3881
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4044,26 +4049,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4044
4049
|
*/
|
|
4045
4050
|
calculationMode: CalculationMode;
|
|
4046
4051
|
|
|
4047
|
-
/**
|
|
4048
|
-
* Wird vom Workflow verarbeitet?
|
|
4049
|
-
*/
|
|
4050
|
-
processedByWorkflow: boolean;
|
|
4051
|
-
|
|
4052
4052
|
/**
|
|
4053
4053
|
* Referenz auf Zahlungsbedingung
|
|
4054
4054
|
*/
|
|
4055
4055
|
paymentTermRef: PaymentTermRef;
|
|
4056
4056
|
|
|
4057
4057
|
/**
|
|
4058
|
-
*
|
|
4058
|
+
* Wird vom Workflow verarbeitet?
|
|
4059
4059
|
*/
|
|
4060
|
-
|
|
4060
|
+
processedByWorkflow: boolean;
|
|
4061
4061
|
|
|
4062
4062
|
/**
|
|
4063
4063
|
* Telefon an Versender übergeben
|
|
4064
4064
|
*/
|
|
4065
4065
|
forwardPhoneToShipper: boolean;
|
|
4066
4066
|
|
|
4067
|
+
/**
|
|
4068
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4069
|
+
*/
|
|
4070
|
+
baseTotalDocumentPriceModifier: number;
|
|
4071
|
+
|
|
4067
4072
|
/**
|
|
4068
4073
|
* Liste der Belegtexte
|
|
4069
4074
|
*/
|
|
@@ -4085,14 +4090,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4085
4090
|
defaultAddress: DocumentAddress;
|
|
4086
4091
|
|
|
4087
4092
|
/**
|
|
4088
|
-
*
|
|
4093
|
+
* Leistungsdatum
|
|
4089
4094
|
*/
|
|
4090
|
-
|
|
4095
|
+
performanceDate: ScriptingDate;
|
|
4091
4096
|
|
|
4092
4097
|
/**
|
|
4093
|
-
*
|
|
4098
|
+
* Verarbeitungsoption für Stapel
|
|
4094
4099
|
*/
|
|
4095
|
-
|
|
4100
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4096
4101
|
|
|
4097
4102
|
/**
|
|
4098
4103
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4120,14 +4125,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4120
4125
|
additionalInfo: DocumentAdditionalInfo;
|
|
4121
4126
|
|
|
4122
4127
|
/**
|
|
4123
|
-
*
|
|
4128
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4124
4129
|
*/
|
|
4125
|
-
|
|
4130
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4126
4131
|
|
|
4127
4132
|
/**
|
|
4128
|
-
*
|
|
4133
|
+
* Bestelldatum
|
|
4129
4134
|
*/
|
|
4130
|
-
|
|
4135
|
+
orderedOn: ScriptingDate;
|
|
4131
4136
|
|
|
4132
4137
|
/**
|
|
4133
4138
|
* MetaInformations for this Object
|
|
@@ -4269,22 +4274,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4269
4274
|
*/
|
|
4270
4275
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4271
4276
|
|
|
4272
|
-
/**
|
|
4273
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4274
|
-
*/
|
|
4275
|
-
taxIdentificationNumber: string;
|
|
4276
|
-
|
|
4277
4277
|
/**
|
|
4278
4278
|
* Statusinstanz des Belegs
|
|
4279
4279
|
*/
|
|
4280
4280
|
documentState: DocumentTypeState;
|
|
4281
4281
|
|
|
4282
4282
|
/**
|
|
4283
|
-
*
|
|
4284
|
-
true wenn die Quittung ausbalanciert ist
|
|
4285
|
-
|
|
4283
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4286
4284
|
*/
|
|
4287
|
-
|
|
4285
|
+
taxIdentificationNumber: string;
|
|
4288
4286
|
|
|
4289
4287
|
/**
|
|
4290
4288
|
* Rückgeld
|
|
@@ -4296,6 +4294,13 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4296
4294
|
*/
|
|
4297
4295
|
deliveryTermRef: ApiObjectReference;
|
|
4298
4296
|
|
|
4297
|
+
/**
|
|
4298
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4299
|
+
true wenn die Quittung ausbalanciert ist
|
|
4300
|
+
|
|
4301
|
+
*/
|
|
4302
|
+
posReceiptBalanced: boolean;
|
|
4303
|
+
|
|
4299
4304
|
/**
|
|
4300
4305
|
* Gesamtbruttogewicht
|
|
4301
4306
|
*/
|
|
@@ -4485,14 +4490,14 @@ export interface DocumentAddress {
|
|
|
4485
4490
|
postOfficeBox: string;
|
|
4486
4491
|
|
|
4487
4492
|
/**
|
|
4488
|
-
*
|
|
4493
|
+
* Street
|
|
4489
4494
|
*/
|
|
4490
|
-
|
|
4495
|
+
street: string;
|
|
4491
4496
|
|
|
4492
4497
|
/**
|
|
4493
|
-
*
|
|
4498
|
+
* country code IsoAlpha3
|
|
4494
4499
|
*/
|
|
4495
|
-
|
|
4500
|
+
countryCode: string;
|
|
4496
4501
|
|
|
4497
4502
|
/**
|
|
4498
4503
|
* Unique identifier of the Object
|
|
@@ -4697,14 +4702,14 @@ export interface DocumentContractDetail {
|
|
|
4697
4702
|
runtimeToDate: ScriptingDate;
|
|
4698
4703
|
|
|
4699
4704
|
/**
|
|
4700
|
-
*
|
|
4705
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4701
4706
|
*/
|
|
4702
|
-
|
|
4707
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4703
4708
|
|
|
4704
4709
|
/**
|
|
4705
|
-
*
|
|
4710
|
+
* Nächste Fälligkeit
|
|
4706
4711
|
*/
|
|
4707
|
-
|
|
4712
|
+
nextDueDate: ScriptingDate;
|
|
4708
4713
|
|
|
4709
4714
|
/**
|
|
4710
4715
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4963,6 +4968,11 @@ export interface DocumentLine {
|
|
|
4963
4968
|
*/
|
|
4964
4969
|
price: number;
|
|
4965
4970
|
|
|
4971
|
+
/**
|
|
4972
|
+
* Gesamtpreis Position in Basiswährung
|
|
4973
|
+
*/
|
|
4974
|
+
baseTotalLinePrice: number;
|
|
4975
|
+
|
|
4966
4976
|
/**
|
|
4967
4977
|
* FiBu-Buchung
|
|
4968
4978
|
*/
|
|
@@ -4973,11 +4983,6 @@ export interface DocumentLine {
|
|
|
4973
4983
|
*/
|
|
4974
4984
|
lineType: DocumentLineType;
|
|
4975
4985
|
|
|
4976
|
-
/**
|
|
4977
|
-
* Gesamtpreis Position in Basiswährung
|
|
4978
|
-
*/
|
|
4979
|
-
baseTotalLinePrice: number;
|
|
4980
|
-
|
|
4981
4986
|
/**
|
|
4982
4987
|
* vorgeorderte Menge in Pickvorgang
|
|
4983
4988
|
*/
|
|
@@ -5159,14 +5164,14 @@ export interface DocumentLine {
|
|
|
5159
5164
|
sourceLineRef: DocumentLineRef;
|
|
5160
5165
|
|
|
5161
5166
|
/**
|
|
5162
|
-
*
|
|
5167
|
+
* Preisherkunft
|
|
5163
5168
|
*/
|
|
5164
|
-
|
|
5169
|
+
priceOrigin: ProductPriceOrigin;
|
|
5165
5170
|
|
|
5166
5171
|
/**
|
|
5167
|
-
*
|
|
5172
|
+
* Referenz zum Lager
|
|
5168
5173
|
*/
|
|
5169
|
-
|
|
5174
|
+
storage: ApiObjectReference;
|
|
5170
5175
|
|
|
5171
5176
|
/**
|
|
5172
5177
|
* Preisermittlungskriterien
|
|
@@ -5188,16 +5193,16 @@ export interface DocumentLine {
|
|
|
5188
5193
|
*/
|
|
5189
5194
|
unitType: UnitTypeReference;
|
|
5190
5195
|
|
|
5191
|
-
/**
|
|
5192
|
-
* Zubehör Einfügeart
|
|
5193
|
-
*/
|
|
5194
|
-
insertTerm: AccessoryInsertTerm;
|
|
5195
|
-
|
|
5196
5196
|
/**
|
|
5197
5197
|
* Referenz zur Basiszeile
|
|
5198
5198
|
*/
|
|
5199
5199
|
baseLineId: number;
|
|
5200
5200
|
|
|
5201
|
+
/**
|
|
5202
|
+
* Zubehör Einfügeart
|
|
5203
|
+
*/
|
|
5204
|
+
insertTerm: AccessoryInsertTerm;
|
|
5205
|
+
|
|
5201
5206
|
/**
|
|
5202
5207
|
* Einheit Bruttogewicht
|
|
5203
5208
|
*/
|
|
@@ -5224,14 +5229,14 @@ export interface DocumentLine {
|
|
|
5224
5229
|
productType: ProductType;
|
|
5225
5230
|
|
|
5226
5231
|
/**
|
|
5227
|
-
*
|
|
5232
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5228
5233
|
*/
|
|
5229
|
-
|
|
5234
|
+
baseSalesValueNet: number;
|
|
5230
5235
|
|
|
5231
5236
|
/**
|
|
5232
|
-
*
|
|
5237
|
+
* Vertragsinformationen
|
|
5233
5238
|
*/
|
|
5234
|
-
|
|
5239
|
+
contractDetail: DocumentContractDetail;
|
|
5235
5240
|
|
|
5236
5241
|
/**
|
|
5237
5242
|
* Einheit Nettogewicht
|
|
@@ -5463,14 +5468,14 @@ export interface DocumentLineComponent {
|
|
|
5463
5468
|
custom: EavDocumentlinecomponent;
|
|
5464
5469
|
|
|
5465
5470
|
/**
|
|
5466
|
-
*
|
|
5471
|
+
* Gelieferte Menge
|
|
5467
5472
|
*/
|
|
5468
|
-
|
|
5473
|
+
quantityCommitted: number;
|
|
5469
5474
|
|
|
5470
5475
|
/**
|
|
5471
|
-
*
|
|
5476
|
+
* Referenz auf den Artikel der Komponente
|
|
5472
5477
|
*/
|
|
5473
|
-
|
|
5478
|
+
articleId: number;
|
|
5474
5479
|
|
|
5475
5480
|
/**
|
|
5476
5481
|
* Beschreibung des Artikels
|
|
@@ -5718,14 +5723,14 @@ export interface DocumentLinePosDetail {
|
|
|
5718
5723
|
externalPaymentStatus: PosPaymentStatus;
|
|
5719
5724
|
|
|
5720
5725
|
/**
|
|
5721
|
-
*
|
|
5726
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5722
5727
|
*/
|
|
5723
|
-
|
|
5728
|
+
externalPaymentId: string;
|
|
5724
5729
|
|
|
5725
5730
|
/**
|
|
5726
|
-
*
|
|
5731
|
+
* Typ der Position
|
|
5727
5732
|
*/
|
|
5728
|
-
|
|
5733
|
+
posLineType: PosLineType;
|
|
5729
5734
|
|
|
5730
5735
|
/**
|
|
5731
5736
|
* Unique identifier of the Object
|
|
@@ -5943,14 +5948,14 @@ export interface DocumentPosPayment {
|
|
|
5943
5948
|
externalPaymentErrorMessage: string;
|
|
5944
5949
|
|
|
5945
5950
|
/**
|
|
5946
|
-
*
|
|
5951
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5947
5952
|
*/
|
|
5948
|
-
|
|
5953
|
+
externalPaymentId: string;
|
|
5949
5954
|
|
|
5950
5955
|
/**
|
|
5951
|
-
*
|
|
5956
|
+
* Typ der Position
|
|
5952
5957
|
*/
|
|
5953
|
-
|
|
5958
|
+
posLineType: PosLineType;
|
|
5954
5959
|
|
|
5955
5960
|
/**
|
|
5956
5961
|
* Unique identifier of the Object
|
|
@@ -7080,26 +7085,26 @@ export interface PaymentTerm {
|
|
|
7080
7085
|
*/
|
|
7081
7086
|
paymentDiscount2: number;
|
|
7082
7087
|
|
|
7083
|
-
/**
|
|
7084
|
-
* Percent for Discount 1
|
|
7085
|
-
*/
|
|
7086
|
-
paymentDiscount1: number;
|
|
7087
|
-
|
|
7088
7088
|
/**
|
|
7089
7089
|
* printDescription
|
|
7090
7090
|
*/
|
|
7091
7091
|
printDescription: string;
|
|
7092
7092
|
|
|
7093
7093
|
/**
|
|
7094
|
-
*
|
|
7094
|
+
* Percent for Discount 1
|
|
7095
7095
|
*/
|
|
7096
|
-
|
|
7096
|
+
paymentDiscount1: number;
|
|
7097
7097
|
|
|
7098
7098
|
/**
|
|
7099
7099
|
* for deposit: remaining term
|
|
7100
7100
|
*/
|
|
7101
7101
|
remainingTermRef: ApiObjectReference;
|
|
7102
7102
|
|
|
7103
|
+
/**
|
|
7104
|
+
* Days for Discount 1
|
|
7105
|
+
*/
|
|
7106
|
+
paymentDays1: number;
|
|
7107
|
+
|
|
7103
7108
|
/**
|
|
7104
7109
|
* Days for Discount 2
|
|
7105
7110
|
*/
|
|
@@ -7422,14 +7427,14 @@ export interface Picklist {
|
|
|
7422
7427
|
export interface PicklistLine {
|
|
7423
7428
|
|
|
7424
7429
|
/**
|
|
7425
|
-
*
|
|
7430
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7426
7431
|
*/
|
|
7427
|
-
|
|
7432
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7428
7433
|
|
|
7429
7434
|
/**
|
|
7430
|
-
*
|
|
7435
|
+
* Gesammelte Menge der Position
|
|
7431
7436
|
*/
|
|
7432
|
-
|
|
7437
|
+
quantityCollected: number;
|
|
7433
7438
|
|
|
7434
7439
|
/**
|
|
7435
7440
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7467,14 +7472,14 @@ export interface PicklistLine {
|
|
|
7467
7472
|
version: number;
|
|
7468
7473
|
|
|
7469
7474
|
/**
|
|
7470
|
-
*
|
|
7475
|
+
* ID der Quell-Dokumentposition
|
|
7471
7476
|
*/
|
|
7472
|
-
|
|
7477
|
+
sourceDocumentLineId: number;
|
|
7473
7478
|
|
|
7474
7479
|
/**
|
|
7475
|
-
*
|
|
7480
|
+
* Lageranzeigename
|
|
7476
7481
|
*/
|
|
7477
|
-
|
|
7482
|
+
storageDisplayName: string;
|
|
7478
7483
|
|
|
7479
7484
|
/**
|
|
7480
7485
|
* Artikelnummer
|
|
@@ -7812,14 +7817,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7812
7817
|
maxOrderValue: number;
|
|
7813
7818
|
|
|
7814
7819
|
/**
|
|
7815
|
-
* Nur
|
|
7820
|
+
* Nur vollständig lieferbare Positionen
|
|
7816
7821
|
*/
|
|
7817
|
-
|
|
7822
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7818
7823
|
|
|
7819
7824
|
/**
|
|
7820
|
-
* Nur
|
|
7825
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7821
7826
|
*/
|
|
7822
|
-
|
|
7827
|
+
maxOrderCount: number;
|
|
7823
7828
|
|
|
7824
7829
|
/**
|
|
7825
7830
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -7895,9 +7900,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7895
7900
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7896
7901
|
|
|
7897
7902
|
/**
|
|
7898
|
-
*
|
|
7903
|
+
* Lagerplätze vorgeben
|
|
7899
7904
|
*/
|
|
7900
|
-
|
|
7905
|
+
specifyStorageBins: boolean;
|
|
7901
7906
|
|
|
7902
7907
|
/**
|
|
7903
7908
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -7905,9 +7910,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7905
7910
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7906
7911
|
|
|
7907
7912
|
/**
|
|
7908
|
-
*
|
|
7913
|
+
* Der zu verwendende Pickwagen
|
|
7909
7914
|
*/
|
|
7910
|
-
|
|
7915
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7911
7916
|
|
|
7912
7917
|
/**
|
|
7913
7918
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -7977,11 +7982,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7977
7982
|
*/
|
|
7978
7983
|
showShippingFormOnPickingFinish: boolean;
|
|
7979
7984
|
|
|
7980
|
-
/**
|
|
7981
|
-
* Sammelbestätigung erlauben
|
|
7982
|
-
*/
|
|
7983
|
-
allowFullConfirmation: boolean;
|
|
7984
|
-
|
|
7985
7985
|
/**
|
|
7986
7986
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7987
7987
|
*/
|
|
@@ -7992,6 +7992,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7992
7992
|
*/
|
|
7993
7993
|
allowPickingOfServiceArticles: boolean;
|
|
7994
7994
|
|
|
7995
|
+
/**
|
|
7996
|
+
* Sammelbestätigung erlauben
|
|
7997
|
+
*/
|
|
7998
|
+
allowFullConfirmation: boolean;
|
|
7999
|
+
|
|
7995
8000
|
/**
|
|
7996
8001
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
7997
8002
|
*/
|
|
@@ -8003,14 +8008,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8003
8008
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8004
8009
|
|
|
8005
8010
|
/**
|
|
8006
|
-
*
|
|
8011
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8007
8012
|
*/
|
|
8008
|
-
|
|
8013
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8009
8014
|
|
|
8010
8015
|
/**
|
|
8011
|
-
*
|
|
8016
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8012
8017
|
*/
|
|
8013
|
-
|
|
8018
|
+
autoDeterminationOfLots: boolean;
|
|
8014
8019
|
|
|
8015
8020
|
/**
|
|
8016
8021
|
* Zielmengen in Masken verstecken?
|
|
@@ -8208,14 +8213,14 @@ export interface Product {
|
|
|
8208
8213
|
bundle: boolean;
|
|
8209
8214
|
|
|
8210
8215
|
/**
|
|
8211
|
-
*
|
|
8216
|
+
* Serientyp
|
|
8212
8217
|
*/
|
|
8213
|
-
|
|
8218
|
+
serialType: ArticleSerialType;
|
|
8214
8219
|
|
|
8215
8220
|
/**
|
|
8216
|
-
*
|
|
8221
|
+
* Variantenwerte
|
|
8217
8222
|
*/
|
|
8218
|
-
|
|
8223
|
+
variantValues: Array<VariantValueReference>;
|
|
8219
8224
|
|
|
8220
8225
|
/**
|
|
8221
8226
|
* MetaInformations for this Object
|
|
@@ -8298,20 +8303,15 @@ export interface ProductDiscount {
|
|
|
8298
8303
|
*/
|
|
8299
8304
|
currencyRef: CurrencyReference;
|
|
8300
8305
|
|
|
8301
|
-
/**
|
|
8302
|
-
* Preisgruppe
|
|
8303
|
-
*/
|
|
8304
|
-
priceGroupRef: ApiObjectReference;
|
|
8305
|
-
|
|
8306
8306
|
/**
|
|
8307
8307
|
* Wert des Rabatts
|
|
8308
8308
|
*/
|
|
8309
8309
|
modifierValue: number;
|
|
8310
8310
|
|
|
8311
8311
|
/**
|
|
8312
|
-
*
|
|
8312
|
+
* Preisgruppe
|
|
8313
8313
|
*/
|
|
8314
|
-
|
|
8314
|
+
priceGroupRef: ApiObjectReference;
|
|
8315
8315
|
|
|
8316
8316
|
/**
|
|
8317
8317
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8328,6 +8328,11 @@ export interface ProductDiscount {
|
|
|
8328
8328
|
*/
|
|
8329
8329
|
validUntil: ScriptingDate;
|
|
8330
8330
|
|
|
8331
|
+
/**
|
|
8332
|
+
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
8333
|
+
*/
|
|
8334
|
+
modifierValueType: ValueType;
|
|
8335
|
+
|
|
8331
8336
|
/**
|
|
8332
8337
|
* Name des Rabatts
|
|
8333
8338
|
*/
|
|
@@ -8591,26 +8596,26 @@ export interface Referenceable {
|
|
|
8591
8596
|
|
|
8592
8597
|
export interface RequestDocument {
|
|
8593
8598
|
|
|
8594
|
-
/**
|
|
8595
|
-
* Belegdatum
|
|
8596
|
-
*/
|
|
8597
|
-
documentDate: ScriptingDate;
|
|
8598
|
-
|
|
8599
8599
|
/**
|
|
8600
8600
|
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8601
8601
|
*/
|
|
8602
8602
|
incomingGoodsStorageBinId: number;
|
|
8603
8603
|
|
|
8604
8604
|
/**
|
|
8605
|
-
*
|
|
8605
|
+
* Belegdatum
|
|
8606
8606
|
*/
|
|
8607
|
-
|
|
8607
|
+
documentDate: ScriptingDate;
|
|
8608
8608
|
|
|
8609
8609
|
/**
|
|
8610
8610
|
* ID der Kassenschublade (bei POS)
|
|
8611
8611
|
*/
|
|
8612
8612
|
cashDrawerId: number;
|
|
8613
8613
|
|
|
8614
|
+
/**
|
|
8615
|
+
* Der Anzahlungsbetrag
|
|
8616
|
+
*/
|
|
8617
|
+
depositPaymentAmount: number;
|
|
8618
|
+
|
|
8614
8619
|
/**
|
|
8615
8620
|
* Leistungsdatum
|
|
8616
8621
|
*/
|
|
@@ -8676,26 +8681,26 @@ export interface RequestDocument {
|
|
|
8676
8681
|
*/
|
|
8677
8682
|
lines: Array<RequestDocumentLine>;
|
|
8678
8683
|
|
|
8679
|
-
/**
|
|
8680
|
-
* Die Vertragsdetails
|
|
8681
|
-
*/
|
|
8682
|
-
contractDetail: DocumentContractDetail;
|
|
8683
|
-
|
|
8684
8684
|
/**
|
|
8685
8685
|
* ID der Kasse (bei POS)
|
|
8686
8686
|
*/
|
|
8687
8687
|
posRegisterId: number;
|
|
8688
8688
|
|
|
8689
8689
|
/**
|
|
8690
|
-
*
|
|
8690
|
+
* Die Vertragsdetails
|
|
8691
8691
|
*/
|
|
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
|
+
/**
|
|
8700
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8701
|
+
*/
|
|
8702
|
+
supplierAccountId: number;
|
|
8703
|
+
|
|
8699
8704
|
/**
|
|
8700
8705
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8701
8706
|
*/
|
|
@@ -8825,14 +8830,14 @@ export interface RequestDocumentLine {
|
|
|
8825
8830
|
dropShippingPolicy: DropShippingPolicy;
|
|
8826
8831
|
|
|
8827
8832
|
/**
|
|
8828
|
-
*
|
|
8833
|
+
* Positionsnummer der Artikel
|
|
8829
8834
|
*/
|
|
8830
|
-
|
|
8835
|
+
positionOfArticleLine: number;
|
|
8831
8836
|
|
|
8832
8837
|
/**
|
|
8833
|
-
*
|
|
8838
|
+
* (optional) Lager-ID
|
|
8834
8839
|
*/
|
|
8835
|
-
|
|
8840
|
+
storageId: number;
|
|
8836
8841
|
|
|
8837
8842
|
/**
|
|
8838
8843
|
* Vertragsdetails zur Belegposition
|
|
@@ -9033,14 +9038,14 @@ export interface RequestDocumentText {
|
|
|
9033
9038
|
export interface RevenueCalculation {
|
|
9034
9039
|
|
|
9035
9040
|
/**
|
|
9036
|
-
*
|
|
9041
|
+
* Netto Umsatz
|
|
9037
9042
|
*/
|
|
9038
|
-
|
|
9043
|
+
salesValue: number;
|
|
9039
9044
|
|
|
9040
9045
|
/**
|
|
9041
|
-
*
|
|
9046
|
+
* Deckungsbeitrag (absolut)
|
|
9042
9047
|
*/
|
|
9043
|
-
|
|
9048
|
+
revenue: number;
|
|
9044
9049
|
|
|
9045
9050
|
/**
|
|
9046
9051
|
* Einkaufspreis
|
|
@@ -9061,14 +9066,14 @@ export interface SalesAgent {
|
|
|
9061
9066
|
note: string;
|
|
9062
9067
|
|
|
9063
9068
|
/**
|
|
9064
|
-
*
|
|
9069
|
+
* is sales agent taxable
|
|
9065
9070
|
*/
|
|
9066
|
-
|
|
9071
|
+
taxable: boolean;
|
|
9067
9072
|
|
|
9068
9073
|
/**
|
|
9069
|
-
*
|
|
9074
|
+
* reference to the delivery method
|
|
9070
9075
|
*/
|
|
9071
|
-
|
|
9076
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9072
9077
|
|
|
9073
9078
|
/**
|
|
9074
9079
|
* Freifelder
|
|
@@ -9528,14 +9533,14 @@ export interface ShelfDocument {
|
|
|
9528
9533
|
tags: Array<TagDto>;
|
|
9529
9534
|
|
|
9530
9535
|
/**
|
|
9531
|
-
*
|
|
9536
|
+
* share informations
|
|
9532
9537
|
*/
|
|
9533
|
-
|
|
9538
|
+
shares: Array<ShelfShare>;
|
|
9534
9539
|
|
|
9535
9540
|
/**
|
|
9536
|
-
*
|
|
9541
|
+
* Mehrsprachige Bezeichnungen
|
|
9537
9542
|
*/
|
|
9538
|
-
|
|
9543
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9539
9544
|
|
|
9540
9545
|
/**
|
|
9541
9546
|
* Automatische Löschung ab
|
|
@@ -9667,14 +9672,14 @@ export interface ShelfDocumentType {
|
|
|
9667
9672
|
active: boolean;
|
|
9668
9673
|
|
|
9669
9674
|
/**
|
|
9670
|
-
*
|
|
9675
|
+
* label of type
|
|
9671
9676
|
*/
|
|
9672
|
-
|
|
9677
|
+
label: string;
|
|
9673
9678
|
|
|
9674
9679
|
/**
|
|
9675
|
-
*
|
|
9680
|
+
* access level or reading
|
|
9676
9681
|
*/
|
|
9677
|
-
|
|
9682
|
+
accessLevelRead: number;
|
|
9678
9683
|
|
|
9679
9684
|
/**
|
|
9680
9685
|
* storage rule for revisions
|
|
@@ -9720,14 +9725,14 @@ export interface ShelfFile {
|
|
|
9720
9725
|
subFiles: Array<SubFileInfo>;
|
|
9721
9726
|
|
|
9722
9727
|
/**
|
|
9723
|
-
*
|
|
9728
|
+
* fileSize
|
|
9724
9729
|
*/
|
|
9725
|
-
|
|
9730
|
+
fileSize: number;
|
|
9726
9731
|
|
|
9727
9732
|
/**
|
|
9728
|
-
*
|
|
9733
|
+
* revision number of this file
|
|
9729
9734
|
*/
|
|
9730
|
-
|
|
9735
|
+
revisionNumber: number;
|
|
9731
9736
|
|
|
9732
9737
|
/**
|
|
9733
9738
|
* file-extension of this entry
|
|
@@ -9755,14 +9760,14 @@ export interface ShelfFile {
|
|
|
9755
9760
|
version: number;
|
|
9756
9761
|
|
|
9757
9762
|
/**
|
|
9758
|
-
*
|
|
9763
|
+
* current reference of this file in our storage
|
|
9759
9764
|
*/
|
|
9760
|
-
|
|
9765
|
+
storageHandle: string;
|
|
9761
9766
|
|
|
9762
9767
|
/**
|
|
9763
|
-
*
|
|
9768
|
+
* meta data
|
|
9764
9769
|
*/
|
|
9765
|
-
|
|
9770
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9766
9771
|
|
|
9767
9772
|
/**
|
|
9768
9773
|
* MetaInformations for this Object
|
|
@@ -9806,14 +9811,14 @@ export interface ShelfShare {
|
|
|
9806
9811
|
publishState: ShelfSharePublishState;
|
|
9807
9812
|
|
|
9808
9813
|
/**
|
|
9809
|
-
*
|
|
9814
|
+
* Freifelder
|
|
9810
9815
|
*/
|
|
9811
|
-
|
|
9816
|
+
custom: EavShelfshare;
|
|
9812
9817
|
|
|
9813
9818
|
/**
|
|
9814
|
-
*
|
|
9819
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9815
9820
|
*/
|
|
9816
|
-
|
|
9821
|
+
publicUrlDurationInMinutes: number;
|
|
9817
9822
|
|
|
9818
9823
|
/**
|
|
9819
9824
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10025,14 +10030,14 @@ export interface StockMovementManualApi {
|
|
|
10025
10030
|
export interface StockTransferApi {
|
|
10026
10031
|
|
|
10027
10032
|
/**
|
|
10028
|
-
*
|
|
10033
|
+
* Seriennummer
|
|
10029
10034
|
*/
|
|
10030
|
-
|
|
10035
|
+
serialNumberId: number;
|
|
10031
10036
|
|
|
10032
10037
|
/**
|
|
10033
|
-
*
|
|
10038
|
+
* Ziel-Lager
|
|
10034
10039
|
*/
|
|
10035
|
-
|
|
10040
|
+
targetStorageId: number;
|
|
10036
10041
|
|
|
10037
10042
|
/**
|
|
10038
10043
|
* Bemerkung
|
|
@@ -10241,11 +10246,6 @@ export interface Supplier {
|
|
|
10241
10246
|
*/
|
|
10242
10247
|
info: MetaInfo;
|
|
10243
10248
|
|
|
10244
|
-
/**
|
|
10245
|
-
* tax able or tax free
|
|
10246
|
-
*/
|
|
10247
|
-
taxable: boolean;
|
|
10248
|
-
|
|
10249
10249
|
/**
|
|
10250
10250
|
* reference to the delivery method
|
|
10251
10251
|
*/
|
|
@@ -10256,6 +10256,11 @@ export interface Supplier {
|
|
|
10256
10256
|
*/
|
|
10257
10257
|
supplierGroupRef: ApiObjectReference;
|
|
10258
10258
|
|
|
10259
|
+
/**
|
|
10260
|
+
* tax able or tax free
|
|
10261
|
+
*/
|
|
10262
|
+
taxable: boolean;
|
|
10263
|
+
|
|
10259
10264
|
/**
|
|
10260
10265
|
* Mahnen?
|
|
10261
10266
|
*/
|
|
@@ -10636,14 +10641,14 @@ export interface User {
|
|
|
10636
10641
|
roles: Array<ApiObjectReference>;
|
|
10637
10642
|
|
|
10638
10643
|
/**
|
|
10639
|
-
*
|
|
10644
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10640
10645
|
*/
|
|
10641
|
-
|
|
10646
|
+
referencedCustomerUserId: number;
|
|
10642
10647
|
|
|
10643
10648
|
/**
|
|
10644
|
-
*
|
|
10649
|
+
* Gruppen
|
|
10645
10650
|
*/
|
|
10646
|
-
|
|
10651
|
+
groups: Array<ApiObjectReference>;
|
|
10647
10652
|
|
|
10648
10653
|
/**
|
|
10649
10654
|
* Is the user active?
|
|
@@ -10666,14 +10671,14 @@ export interface User {
|
|
|
10666
10671
|
version: number;
|
|
10667
10672
|
|
|
10668
10673
|
/**
|
|
10669
|
-
*
|
|
10674
|
+
* is the email verified
|
|
10670
10675
|
*/
|
|
10671
|
-
|
|
10676
|
+
emailVerified: boolean;
|
|
10672
10677
|
|
|
10673
10678
|
/**
|
|
10674
|
-
*
|
|
10679
|
+
* first-name
|
|
10675
10680
|
*/
|
|
10676
|
-
|
|
10681
|
+
firstName: string;
|
|
10677
10682
|
|
|
10678
10683
|
/**
|
|
10679
10684
|
* email-address
|
|
@@ -10747,14 +10752,14 @@ export interface VariantAttributeListing {
|
|
|
10747
10752
|
salesChannelRef: ApiObjectReference;
|
|
10748
10753
|
|
|
10749
10754
|
/**
|
|
10750
|
-
*
|
|
10755
|
+
* Variantenattribut
|
|
10751
10756
|
*/
|
|
10752
|
-
|
|
10757
|
+
variantAttributeRef: ApiObjectReference;
|
|
10753
10758
|
|
|
10754
10759
|
/**
|
|
10755
|
-
*
|
|
10760
|
+
* Freifelder
|
|
10756
10761
|
*/
|
|
10757
|
-
|
|
10762
|
+
custom: EavVariantattributelisting;
|
|
10758
10763
|
|
|
10759
10764
|
/**
|
|
10760
10765
|
* Unique identifier of the Object
|