@vario-software/types 2026.17.0 → 2026.17.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/scripting/services.d.ts +29 -29
- package/scripting/types.d.ts +244 -244
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -1424,20 +1424,20 @@ export interface DocumentScriptingService {
|
|
|
1424
1424
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1425
1425
|
*
|
|
1426
1426
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1427
|
-
* @param {string}
|
|
1427
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1428
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1428
1429
|
* @return {Document} Der kopierte Beleg
|
|
1429
1430
|
*/
|
|
1430
|
-
copy(documentId: number,
|
|
1431
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1431
1432
|
|
|
1432
1433
|
/**
|
|
1433
1434
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1434
1435
|
*
|
|
1435
1436
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1436
|
-
* @param {string}
|
|
1437
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1437
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1438
1438
|
* @return {Document} Der kopierte Beleg
|
|
1439
1439
|
*/
|
|
1440
|
-
copy(documentId: number,
|
|
1440
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1441
1441
|
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Erstellt einen neuen Beleg
|
|
@@ -1451,18 +1451,18 @@ export interface DocumentScriptingService {
|
|
|
1451
1451
|
* Löst einen Beleg auf
|
|
1452
1452
|
*
|
|
1453
1453
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1454
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1454
1455
|
* @return {Document} Der aufgelöste Beleg
|
|
1455
1456
|
*/
|
|
1456
|
-
dissolve(documentId: number): Document;
|
|
1457
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1457
1458
|
|
|
1458
1459
|
/**
|
|
1459
1460
|
* Löst einen Beleg auf
|
|
1460
1461
|
*
|
|
1461
1462
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1462
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1463
1463
|
* @return {Document} Der aufgelöste Beleg
|
|
1464
1464
|
*/
|
|
1465
|
-
dissolve(documentId: number
|
|
1465
|
+
dissolve(documentId: number): Document;
|
|
1466
1466
|
|
|
1467
1467
|
/**
|
|
1468
1468
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -1582,16 +1582,16 @@ export interface DocumentScriptingService {
|
|
|
1582
1582
|
* Versendet einen Beleg per Mail
|
|
1583
1583
|
*
|
|
1584
1584
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1585
|
+
* @param {string} reportGroupIdentifier -
|
|
1585
1586
|
*/
|
|
1586
|
-
sendViaMail(documentId: number): void;
|
|
1587
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1587
1588
|
|
|
1588
1589
|
/**
|
|
1589
1590
|
* Versendet einen Beleg per Mail
|
|
1590
1591
|
*
|
|
1591
1592
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1592
|
-
* @param {string} reportGroupIdentifier -
|
|
1593
1593
|
*/
|
|
1594
|
-
sendViaMail(documentId: number
|
|
1594
|
+
sendViaMail(documentId: number): void;
|
|
1595
1595
|
|
|
1596
1596
|
/**
|
|
1597
1597
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2458,26 +2458,26 @@ export interface ScriptingServiceList {
|
|
|
2458
2458
|
*/
|
|
2459
2459
|
crmTaskService: CrmTaskScriptingService;
|
|
2460
2460
|
|
|
2461
|
-
/**
|
|
2462
|
-
* Service zur Verarbeitung von Shelf-Documents
|
|
2463
|
-
*/
|
|
2464
|
-
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2465
|
-
|
|
2466
2461
|
/**
|
|
2467
2462
|
* Service zur Verarbeitung von Accounts
|
|
2468
2463
|
*/
|
|
2469
2464
|
accountService: AccountScriptingService;
|
|
2470
2465
|
|
|
2471
2466
|
/**
|
|
2472
|
-
*
|
|
2467
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2473
2468
|
*/
|
|
2474
|
-
|
|
2469
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2475
2470
|
|
|
2476
2471
|
/**
|
|
2477
2472
|
* Verwaltung von Versandarten
|
|
2478
2473
|
*/
|
|
2479
2474
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2480
2475
|
|
|
2476
|
+
/**
|
|
2477
|
+
* Logging im Scripting
|
|
2478
|
+
*/
|
|
2479
|
+
logger: LoggingScriptingService;
|
|
2480
|
+
|
|
2481
2481
|
/**
|
|
2482
2482
|
* Service zur Verarbeitung von Deals
|
|
2483
2483
|
*/
|
|
@@ -2494,14 +2494,14 @@ export interface ScriptingServiceList {
|
|
|
2494
2494
|
productGroupService: ProductGroupScriptingService;
|
|
2495
2495
|
|
|
2496
2496
|
/**
|
|
2497
|
-
*
|
|
2497
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2498
2498
|
*/
|
|
2499
|
-
|
|
2499
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2500
2500
|
|
|
2501
2501
|
/**
|
|
2502
|
-
*
|
|
2502
|
+
* Ausgabe-Support Methoden
|
|
2503
2503
|
*/
|
|
2504
|
-
|
|
2504
|
+
outputHelper: ScriptOutputHelperService;
|
|
2505
2505
|
|
|
2506
2506
|
/**
|
|
2507
2507
|
* Erstellt DTOs zur Verwendung im Skript
|
|
@@ -2549,14 +2549,14 @@ export interface ScriptingServiceList {
|
|
|
2549
2549
|
articleStorageService: ArticleStorageScriptingService;
|
|
2550
2550
|
|
|
2551
2551
|
/**
|
|
2552
|
-
*
|
|
2552
|
+
* Verwaltung von Zahlungsarten
|
|
2553
2553
|
*/
|
|
2554
|
-
|
|
2554
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2555
2555
|
|
|
2556
2556
|
/**
|
|
2557
|
-
*
|
|
2557
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2558
2558
|
*/
|
|
2559
|
-
|
|
2559
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2560
2560
|
|
|
2561
2561
|
/**
|
|
2562
2562
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
|
@@ -2666,18 +2666,18 @@ export interface ScriptingUtilities {
|
|
|
2666
2666
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2667
2667
|
*
|
|
2668
2668
|
* @param {object} value - Der Quell-Wert
|
|
2669
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2670
2669
|
* @return {number} Ein BigDecimal-Wert
|
|
2671
2670
|
*/
|
|
2672
|
-
newBigDecimal(value: object
|
|
2671
|
+
newBigDecimal(value: object): number;
|
|
2673
2672
|
|
|
2674
2673
|
/**
|
|
2675
2674
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2676
2675
|
*
|
|
2677
2676
|
* @param {object} value - Der Quell-Wert
|
|
2677
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2678
2678
|
* @return {number} Ein BigDecimal-Wert
|
|
2679
2679
|
*/
|
|
2680
|
-
newBigDecimal(value: object): number;
|
|
2680
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2681
2681
|
|
|
2682
2682
|
/**
|
|
2683
2683
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
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
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
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
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
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
|
|
@@ -547,14 +547,14 @@ export const enum AccountBillingType {
|
|
|
547
547
|
export interface AccountLoanValue {
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* Account
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
accountId: number;
|
|
553
553
|
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Nicht berücksichtigter Betrag
|
|
556
556
|
*/
|
|
557
|
-
|
|
557
|
+
unconsideredAmount: number;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
560
|
* Betrag aus Aufträgen
|
|
@@ -1151,14 +1151,14 @@ export interface Article {
|
|
|
1151
1151
|
workUnitInMinutes: number;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* Frei kommissionierbar
|
|
1155
1155
|
*/
|
|
1156
|
-
|
|
1156
|
+
freelyPickable: boolean;
|
|
1157
1157
|
|
|
1158
1158
|
/**
|
|
1159
|
-
*
|
|
1159
|
+
* description custom data
|
|
1160
1160
|
*/
|
|
1161
|
-
|
|
1161
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1162
1162
|
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1241,14 +1241,14 @@ export interface Article {
|
|
|
1241
1241
|
contingentArticleRef: ApiObjectReference;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
*
|
|
1244
|
+
* rabattierbarer Artikel?
|
|
1245
1245
|
*/
|
|
1246
|
-
|
|
1246
|
+
discountable: boolean;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
|
-
*
|
|
1249
|
+
* alternative name of this product
|
|
1250
1250
|
*/
|
|
1251
|
-
|
|
1251
|
+
alternativeName: string;
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
@@ -1316,14 +1316,14 @@ export interface Article {
|
|
|
1316
1316
|
listed: boolean;
|
|
1317
1317
|
|
|
1318
1318
|
/**
|
|
1319
|
-
*
|
|
1319
|
+
* provisionsberechtiger Artikel?
|
|
1320
1320
|
*/
|
|
1321
|
-
|
|
1321
|
+
commissionable: boolean;
|
|
1322
1322
|
|
|
1323
1323
|
/**
|
|
1324
|
-
*
|
|
1324
|
+
* Nur manuelle Produktion
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
onlyManualFabrication: boolean;
|
|
1327
1327
|
|
|
1328
1328
|
/**
|
|
1329
1329
|
* Preisbasis
|
|
@@ -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
|
|
@@ -1680,20 +1680,15 @@ export const enum ArticleSerialType {
|
|
|
1680
1680
|
|
|
1681
1681
|
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
|
-
/**
|
|
1684
|
-
* Bestand im Lager
|
|
1685
|
-
*/
|
|
1686
|
-
quantityInStock: number;
|
|
1687
|
-
|
|
1688
1683
|
/**
|
|
1689
1684
|
* Nachschub ab
|
|
1690
1685
|
*/
|
|
1691
1686
|
replenishmentFrom: number;
|
|
1692
1687
|
|
|
1693
1688
|
/**
|
|
1694
|
-
*
|
|
1689
|
+
* Bestand im Lager
|
|
1695
1690
|
*/
|
|
1696
|
-
|
|
1691
|
+
quantityInStock: number;
|
|
1697
1692
|
|
|
1698
1693
|
/**
|
|
1699
1694
|
* Bestellte Menge
|
|
@@ -1701,15 +1696,20 @@ export interface ArticleStorage {
|
|
|
1701
1696
|
orderedQuantity: number;
|
|
1702
1697
|
|
|
1703
1698
|
/**
|
|
1704
|
-
*
|
|
1699
|
+
* Aktuelle Menge in Kommissionierung
|
|
1705
1700
|
*/
|
|
1706
|
-
|
|
1701
|
+
quantityInPicking: number;
|
|
1707
1702
|
|
|
1708
1703
|
/**
|
|
1709
1704
|
* Nachschub auf
|
|
1710
1705
|
*/
|
|
1711
1706
|
replenishmentOn: number;
|
|
1712
1707
|
|
|
1708
|
+
/**
|
|
1709
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1710
|
+
*/
|
|
1711
|
+
virtualStockAmount: number;
|
|
1712
|
+
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Reservierte Menge
|
|
1715
1715
|
*/
|
|
@@ -1751,14 +1751,14 @@ export interface ArticleStorage {
|
|
|
1751
1751
|
storageRef: ApiObjectReference;
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
|
-
*
|
|
1754
|
+
* Vorgabe-Lagerplätze
|
|
1755
1755
|
*/
|
|
1756
|
-
|
|
1756
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1757
1757
|
|
|
1758
1758
|
/**
|
|
1759
|
-
*
|
|
1759
|
+
* Sollbestand
|
|
1760
1760
|
*/
|
|
1761
|
-
|
|
1761
|
+
targetStock: number;
|
|
1762
1762
|
|
|
1763
1763
|
/**
|
|
1764
1764
|
* Aktuelle Menge in Produktion
|
|
@@ -1784,14 +1784,14 @@ export interface ArticleSupplier {
|
|
|
1784
1784
|
accountDisplayName: string;
|
|
1785
1785
|
|
|
1786
1786
|
/**
|
|
1787
|
-
*
|
|
1787
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1788
1788
|
*/
|
|
1789
|
-
|
|
1789
|
+
useSupplierArticleDescription: boolean;
|
|
1790
1790
|
|
|
1791
1791
|
/**
|
|
1792
|
-
*
|
|
1792
|
+
* Lieferanten-Meldebestand
|
|
1793
1793
|
*/
|
|
1794
|
-
|
|
1794
|
+
supplierReportingStock: number;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
1797
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1859,14 +1859,14 @@ export interface ArticleSupplier {
|
|
|
1859
1859
|
articleName: string;
|
|
1860
1860
|
|
|
1861
1861
|
/**
|
|
1862
|
-
*
|
|
1862
|
+
* Referenced Article
|
|
1863
1863
|
*/
|
|
1864
|
-
|
|
1864
|
+
articleId: number;
|
|
1865
1865
|
|
|
1866
1866
|
/**
|
|
1867
|
-
*
|
|
1867
|
+
* Lieferanten-Preise
|
|
1868
1868
|
*/
|
|
1869
|
-
|
|
1869
|
+
productPrices: Array<ProductPrice>;
|
|
1870
1870
|
|
|
1871
1871
|
/**
|
|
1872
1872
|
* Aktiv?
|
|
@@ -1889,14 +1889,14 @@ export interface ArticleSupplier {
|
|
|
1889
1889
|
dropShippingAllowed: boolean;
|
|
1890
1890
|
|
|
1891
1891
|
/**
|
|
1892
|
-
* Abweichende
|
|
1892
|
+
* Abweichende Produktbezeichnung
|
|
1893
1893
|
*/
|
|
1894
|
-
|
|
1894
|
+
supplierArticleName: string;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
* Abweichende
|
|
1897
|
+
* Abweichende Produktbeschreibung
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
supplierArticleDescription: string;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Standardpreis Netto
|
|
@@ -1904,14 +1904,14 @@ export interface ArticleSupplier {
|
|
|
1904
1904
|
defaultNetPrice: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
orderOnComponentBase: boolean;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Einkaufseinheit
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
purchaseUnit: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
1917
|
* Referenced Supplier-Account
|
|
@@ -2117,14 +2117,14 @@ export interface CountryReference {
|
|
|
2117
2117
|
export interface CreateNewDocumentRequest {
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
* Belegart
|
|
2120
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
|
-
*
|
|
2125
|
+
* Belegart
|
|
2126
2126
|
*/
|
|
2127
|
-
|
|
2127
|
+
documentTypeLabel: string;
|
|
2128
2128
|
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Details zum Beleg
|
|
@@ -2190,14 +2190,14 @@ export interface CrmActivity {
|
|
|
2190
2190
|
info: MetaInfo;
|
|
2191
2191
|
|
|
2192
2192
|
/**
|
|
2193
|
-
*
|
|
2193
|
+
* Aktivität intern abgerechnet?
|
|
2194
2194
|
*/
|
|
2195
|
-
|
|
2195
|
+
internalBilled: boolean;
|
|
2196
2196
|
|
|
2197
2197
|
/**
|
|
2198
|
-
*
|
|
2198
|
+
* geplante Dauer
|
|
2199
2199
|
*/
|
|
2200
|
-
|
|
2200
|
+
plannedDurationInSeconds: number;
|
|
2201
2201
|
|
|
2202
2202
|
/**
|
|
2203
2203
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2235,14 +2235,14 @@ export interface CrmActivity {
|
|
|
2235
2235
|
userRef: ApiObjectReference;
|
|
2236
2236
|
|
|
2237
2237
|
/**
|
|
2238
|
-
*
|
|
2238
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2239
2239
|
*/
|
|
2240
|
-
|
|
2240
|
+
system: boolean;
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
|
-
*
|
|
2243
|
+
* tatsächliche Startzeit
|
|
2244
2244
|
*/
|
|
2245
|
-
|
|
2245
|
+
startDateTime: ScriptingDateTime;
|
|
2246
2246
|
|
|
2247
2247
|
/**
|
|
2248
2248
|
* Inhalt dieser Aktivität
|
|
@@ -2349,14 +2349,14 @@ export interface CrmActivityType {
|
|
|
2349
2349
|
export interface CrmChecklistItem {
|
|
2350
2350
|
|
|
2351
2351
|
/**
|
|
2352
|
-
*
|
|
2352
|
+
* Ist das Element "angehakt"?
|
|
2353
2353
|
*/
|
|
2354
|
-
|
|
2354
|
+
checked: boolean;
|
|
2355
2355
|
|
|
2356
2356
|
/**
|
|
2357
|
-
*
|
|
2357
|
+
* Text des Checklisten-Elements
|
|
2358
2358
|
*/
|
|
2359
|
-
|
|
2359
|
+
memo: string;
|
|
2360
2360
|
|
|
2361
2361
|
/**
|
|
2362
2362
|
* Unique identifier of the Object
|
|
@@ -2467,14 +2467,14 @@ export interface CrmDeal {
|
|
|
2467
2467
|
info: MetaInfo;
|
|
2468
2468
|
|
|
2469
2469
|
/**
|
|
2470
|
-
*
|
|
2470
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2471
2471
|
*/
|
|
2472
|
-
|
|
2472
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2473
2473
|
|
|
2474
2474
|
/**
|
|
2475
|
-
*
|
|
2475
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2476
2476
|
*/
|
|
2477
|
-
|
|
2477
|
+
assignedUserRef: ApiObjectReference;
|
|
2478
2478
|
|
|
2479
2479
|
/**
|
|
2480
2480
|
* Chance (in Prozent)
|
|
@@ -2773,14 +2773,14 @@ export interface CrmProject {
|
|
|
2773
2773
|
billedTimes: number;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
|
-
*
|
|
2776
|
+
* Geplanter Projektzeitraum (von)
|
|
2777
2777
|
*/
|
|
2778
|
-
|
|
2778
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
|
-
*
|
|
2781
|
+
* Einkaufsbelege
|
|
2782
2782
|
*/
|
|
2783
|
-
|
|
2783
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2784
2784
|
|
|
2785
2785
|
/**
|
|
2786
2786
|
* Verkaufsbelege
|
|
@@ -3059,14 +3059,14 @@ export interface CrmSubType {
|
|
|
3059
3059
|
export interface CrmTask {
|
|
3060
3060
|
|
|
3061
3061
|
/**
|
|
3062
|
-
*
|
|
3062
|
+
* Angebot
|
|
3063
3063
|
*/
|
|
3064
|
-
|
|
3064
|
+
customerOfferRef: DocumentRef;
|
|
3065
3065
|
|
|
3066
3066
|
/**
|
|
3067
|
-
*
|
|
3067
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3068
3068
|
*/
|
|
3069
|
-
|
|
3069
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3070
3070
|
|
|
3071
3071
|
/**
|
|
3072
3072
|
* Liste von Erinnerungen
|
|
@@ -3438,14 +3438,14 @@ export interface CurrencyReference {
|
|
|
3438
3438
|
export interface Customer {
|
|
3439
3439
|
|
|
3440
3440
|
/**
|
|
3441
|
-
*
|
|
3441
|
+
* reference to customer group
|
|
3442
3442
|
*/
|
|
3443
|
-
|
|
3443
|
+
customerGroupRef: ApiObjectReference;
|
|
3444
3444
|
|
|
3445
3445
|
/**
|
|
3446
|
-
*
|
|
3446
|
+
* Option für die Stapelverarbeitung
|
|
3447
3447
|
*/
|
|
3448
|
-
|
|
3448
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3449
|
|
|
3450
3450
|
/**
|
|
3451
3451
|
* Kreditlimit
|
|
@@ -3770,14 +3770,14 @@ export interface DeliveryTerm {
|
|
|
3770
3770
|
export interface Document {
|
|
3771
3771
|
|
|
3772
3772
|
/**
|
|
3773
|
-
*
|
|
3773
|
+
* Referenz zum Rechnungskonto
|
|
3774
3774
|
*/
|
|
3775
|
-
|
|
3775
|
+
billingAccountRef: ApiObjectReference;
|
|
3776
3776
|
|
|
3777
3777
|
/**
|
|
3778
|
-
*
|
|
3778
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3779
3779
|
*/
|
|
3780
|
-
|
|
3780
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3781
3781
|
|
|
3782
3782
|
/**
|
|
3783
3783
|
* Externe Belegnummer
|
|
@@ -3863,14 +3863,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3863
3863
|
referencedOrderNumber: string;
|
|
3864
3864
|
|
|
3865
3865
|
/**
|
|
3866
|
-
*
|
|
3866
|
+
* Leitweg-ID
|
|
3867
3867
|
*/
|
|
3868
|
-
|
|
3868
|
+
buyerReference: string;
|
|
3869
3869
|
|
|
3870
3870
|
/**
|
|
3871
|
-
*
|
|
3871
|
+
* Steuerpflichtig oder steuerfrei
|
|
3872
3872
|
*/
|
|
3873
|
-
|
|
3873
|
+
taxable: boolean;
|
|
3874
3874
|
|
|
3875
3875
|
/**
|
|
3876
3876
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4045,14 +4045,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4045
4045
|
calculationMode: CalculationMode;
|
|
4046
4046
|
|
|
4047
4047
|
/**
|
|
4048
|
-
*
|
|
4048
|
+
* Referenz auf Zahlungsbedingung
|
|
4049
4049
|
*/
|
|
4050
|
-
|
|
4050
|
+
paymentTermRef: PaymentTermRef;
|
|
4051
4051
|
|
|
4052
4052
|
/**
|
|
4053
|
-
*
|
|
4053
|
+
* Wird vom Workflow verarbeitet?
|
|
4054
4054
|
*/
|
|
4055
|
-
|
|
4055
|
+
processedByWorkflow: boolean;
|
|
4056
4056
|
|
|
4057
4057
|
/**
|
|
4058
4058
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4265,9 +4265,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4265
4265
|
customerNumber: string;
|
|
4266
4266
|
|
|
4267
4267
|
/**
|
|
4268
|
-
*
|
|
4268
|
+
* Versandkostenpositionen
|
|
4269
4269
|
*/
|
|
4270
|
-
|
|
4270
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4271
4271
|
|
|
4272
4272
|
/**
|
|
4273
4273
|
* Statusinstanz des Belegs
|
|
@@ -4275,15 +4275,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4275
4275
|
documentState: DocumentTypeState;
|
|
4276
4276
|
|
|
4277
4277
|
/**
|
|
4278
|
-
*
|
|
4278
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4279
4279
|
*/
|
|
4280
|
-
|
|
4280
|
+
taxIdentificationNumber: string;
|
|
4281
4281
|
|
|
4282
4282
|
/**
|
|
4283
4283
|
* Rückgeld
|
|
4284
4284
|
*/
|
|
4285
4285
|
posReceiptChangeAmount: number;
|
|
4286
4286
|
|
|
4287
|
+
/**
|
|
4288
|
+
* Referenz auf Lieferbedingung
|
|
4289
|
+
*/
|
|
4290
|
+
deliveryTermRef: ApiObjectReference;
|
|
4291
|
+
|
|
4287
4292
|
/**
|
|
4288
4293
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4289
4294
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4291,11 +4296,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4291
4296
|
*/
|
|
4292
4297
|
posReceiptBalanced: boolean;
|
|
4293
4298
|
|
|
4294
|
-
/**
|
|
4295
|
-
* Referenz auf Lieferbedingung
|
|
4296
|
-
*/
|
|
4297
|
-
deliveryTermRef: ApiObjectReference;
|
|
4298
|
-
|
|
4299
4299
|
/**
|
|
4300
4300
|
* Gesamtbruttogewicht
|
|
4301
4301
|
*/
|
|
@@ -4317,14 +4317,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4317
4317
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4318
4318
|
|
|
4319
4319
|
/**
|
|
4320
|
-
*
|
|
4320
|
+
* Rechnungsadresse
|
|
4321
4321
|
*/
|
|
4322
|
-
|
|
4322
|
+
billingAddress: DocumentAddress;
|
|
4323
4323
|
|
|
4324
4324
|
/**
|
|
4325
|
-
*
|
|
4325
|
+
* Status der USt-ID-Prüfung
|
|
4326
4326
|
*/
|
|
4327
|
-
|
|
4327
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4328
4328
|
|
|
4329
4329
|
/**
|
|
4330
4330
|
* Bestellt durch Ansprechpartner
|
|
@@ -4485,14 +4485,14 @@ export interface DocumentAddress {
|
|
|
4485
4485
|
postOfficeBox: string;
|
|
4486
4486
|
|
|
4487
4487
|
/**
|
|
4488
|
-
*
|
|
4488
|
+
* country code IsoAlpha3
|
|
4489
4489
|
*/
|
|
4490
|
-
|
|
4490
|
+
countryCode: string;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
|
-
*
|
|
4493
|
+
* Street
|
|
4494
4494
|
*/
|
|
4495
|
-
|
|
4495
|
+
street: string;
|
|
4496
4496
|
|
|
4497
4497
|
/**
|
|
4498
4498
|
* Unique identifier of the Object
|
|
@@ -4697,14 +4697,14 @@ export interface DocumentContractDetail {
|
|
|
4697
4697
|
runtimeToDate: ScriptingDate;
|
|
4698
4698
|
|
|
4699
4699
|
/**
|
|
4700
|
-
*
|
|
4700
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4701
4701
|
*/
|
|
4702
|
-
|
|
4702
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4703
4703
|
|
|
4704
4704
|
/**
|
|
4705
|
-
*
|
|
4705
|
+
* Nächste Fälligkeit
|
|
4706
4706
|
*/
|
|
4707
|
-
|
|
4707
|
+
nextDueDate: ScriptingDate;
|
|
4708
4708
|
|
|
4709
4709
|
/**
|
|
4710
4710
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4869,14 +4869,14 @@ export const enum DocumentImportType {
|
|
|
4869
4869
|
export interface DocumentLine {
|
|
4870
4870
|
|
|
4871
4871
|
/**
|
|
4872
|
-
*
|
|
4872
|
+
* Zolltarifnummer
|
|
4873
4873
|
*/
|
|
4874
|
-
|
|
4874
|
+
customsTariffNumber: string;
|
|
4875
4875
|
|
|
4876
4876
|
/**
|
|
4877
|
-
*
|
|
4877
|
+
* Leistungsdatum
|
|
4878
4878
|
*/
|
|
4879
|
-
|
|
4879
|
+
performanceDate: ScriptingDate;
|
|
4880
4880
|
|
|
4881
4881
|
/**
|
|
4882
4882
|
* Land der Herkunft
|
|
@@ -4884,14 +4884,14 @@ export interface DocumentLine {
|
|
|
4884
4884
|
country: CountryReference;
|
|
4885
4885
|
|
|
4886
4886
|
/**
|
|
4887
|
-
*
|
|
4887
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4888
4888
|
*/
|
|
4889
|
-
|
|
4889
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4890
4890
|
|
|
4891
4891
|
/**
|
|
4892
|
-
*
|
|
4892
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4893
4893
|
*/
|
|
4894
|
-
|
|
4894
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4895
4895
|
|
|
4896
4896
|
/**
|
|
4897
4897
|
* verarbeitete Menge
|
|
@@ -4939,14 +4939,14 @@ export interface DocumentLine {
|
|
|
4939
4939
|
number: string;
|
|
4940
4940
|
|
|
4941
4941
|
/**
|
|
4942
|
-
*
|
|
4942
|
+
* Referenz zur Kundenauftragszeile
|
|
4943
4943
|
*/
|
|
4944
|
-
|
|
4944
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4947
|
+
* Gesamtbruttogewicht
|
|
4948
4948
|
*/
|
|
4949
|
-
|
|
4949
|
+
totalGrossWeight: number;
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
4952
|
* skontierbare Position?
|
|
@@ -4969,14 +4969,14 @@ export interface DocumentLine {
|
|
|
4969
4969
|
baseTotalLinePrice: number;
|
|
4970
4970
|
|
|
4971
4971
|
/**
|
|
4972
|
-
*
|
|
4972
|
+
* Positionstyp
|
|
4973
4973
|
*/
|
|
4974
|
-
|
|
4974
|
+
lineType: DocumentLineType;
|
|
4975
4975
|
|
|
4976
4976
|
/**
|
|
4977
|
-
*
|
|
4977
|
+
* FiBu-Buchung
|
|
4978
4978
|
*/
|
|
4979
|
-
|
|
4979
|
+
financeBooking: DocumentFinanceBooking;
|
|
4980
4980
|
|
|
4981
4981
|
/**
|
|
4982
4982
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5189,14 +5189,14 @@ export interface DocumentLine {
|
|
|
5189
5189
|
unitType: UnitTypeReference;
|
|
5190
5190
|
|
|
5191
5191
|
/**
|
|
5192
|
-
*
|
|
5192
|
+
* Referenz zur Basiszeile
|
|
5193
5193
|
*/
|
|
5194
|
-
|
|
5194
|
+
baseLineId: number;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* Zubehör Einfügeart
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
insertTerm: AccessoryInsertTerm;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
5202
|
* Einheit Bruttogewicht
|
|
@@ -5718,14 +5718,14 @@ export interface DocumentLinePosDetail {
|
|
|
5718
5718
|
externalPaymentStatus: PosPaymentStatus;
|
|
5719
5719
|
|
|
5720
5720
|
/**
|
|
5721
|
-
*
|
|
5721
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5722
5722
|
*/
|
|
5723
|
-
|
|
5723
|
+
externalPaymentId: string;
|
|
5724
5724
|
|
|
5725
5725
|
/**
|
|
5726
|
-
*
|
|
5726
|
+
* Typ der Position
|
|
5727
5727
|
*/
|
|
5728
|
-
|
|
5728
|
+
posLineType: PosLineType;
|
|
5729
5729
|
|
|
5730
5730
|
/**
|
|
5731
5731
|
* Unique identifier of the Object
|
|
@@ -5943,14 +5943,14 @@ export interface DocumentPosPayment {
|
|
|
5943
5943
|
externalPaymentErrorMessage: string;
|
|
5944
5944
|
|
|
5945
5945
|
/**
|
|
5946
|
-
*
|
|
5946
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5947
5947
|
*/
|
|
5948
|
-
|
|
5948
|
+
externalPaymentId: string;
|
|
5949
5949
|
|
|
5950
5950
|
/**
|
|
5951
|
-
*
|
|
5951
|
+
* Typ der Position
|
|
5952
5952
|
*/
|
|
5953
|
-
|
|
5953
|
+
posLineType: PosLineType;
|
|
5954
5954
|
|
|
5955
5955
|
/**
|
|
5956
5956
|
* Unique identifier of the Object
|
|
@@ -6073,14 +6073,14 @@ export interface DocumentRef {
|
|
|
6073
6073
|
export interface DocumentShippingCost {
|
|
6074
6074
|
|
|
6075
6075
|
/**
|
|
6076
|
-
*
|
|
6076
|
+
* Die Versandkosten
|
|
6077
6077
|
*/
|
|
6078
|
-
|
|
6078
|
+
costs: number;
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
manualCosts: boolean;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
6086
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6811,14 +6811,14 @@ export interface FabricationRevertRequest {
|
|
|
6811
6811
|
quantity: number;
|
|
6812
6812
|
|
|
6813
6813
|
/**
|
|
6814
|
-
*
|
|
6814
|
+
* Material automatisch stornieren
|
|
6815
6815
|
*/
|
|
6816
|
-
|
|
6816
|
+
autoRevertComponents: boolean;
|
|
6817
6817
|
|
|
6818
6818
|
/**
|
|
6819
|
-
*
|
|
6819
|
+
* ID der zu stornierenden Position
|
|
6820
6820
|
*/
|
|
6821
|
-
|
|
6821
|
+
documentLineId: number;
|
|
6822
6822
|
|
|
6823
6823
|
/**
|
|
6824
6824
|
* Zu stornierende Seriennummern
|
|
@@ -7048,14 +7048,14 @@ export interface PaymentMethod {
|
|
|
7048
7048
|
daysToAddForFollowup: number;
|
|
7049
7049
|
|
|
7050
7050
|
/**
|
|
7051
|
-
*
|
|
7051
|
+
* external Payment Id
|
|
7052
7052
|
*/
|
|
7053
|
-
|
|
7053
|
+
externalPaymentId: string;
|
|
7054
7054
|
|
|
7055
7055
|
/**
|
|
7056
|
-
*
|
|
7056
|
+
* Die Business Transaction
|
|
7057
7057
|
*/
|
|
7058
|
-
|
|
7058
|
+
businessTransaction: ApiObjectReference;
|
|
7059
7059
|
|
|
7060
7060
|
/**
|
|
7061
7061
|
* Unique identifier of the Object
|
|
@@ -7080,26 +7080,26 @@ export interface PaymentTerm {
|
|
|
7080
7080
|
*/
|
|
7081
7081
|
paymentDiscount2: number;
|
|
7082
7082
|
|
|
7083
|
-
/**
|
|
7084
|
-
* printDescription
|
|
7085
|
-
*/
|
|
7086
|
-
printDescription: string;
|
|
7087
|
-
|
|
7088
7083
|
/**
|
|
7089
7084
|
* Percent for Discount 1
|
|
7090
7085
|
*/
|
|
7091
7086
|
paymentDiscount1: number;
|
|
7092
7087
|
|
|
7093
7088
|
/**
|
|
7094
|
-
*
|
|
7089
|
+
* printDescription
|
|
7095
7090
|
*/
|
|
7096
|
-
|
|
7091
|
+
printDescription: string;
|
|
7097
7092
|
|
|
7098
7093
|
/**
|
|
7099
7094
|
* Days for Discount 1
|
|
7100
7095
|
*/
|
|
7101
7096
|
paymentDays1: number;
|
|
7102
7097
|
|
|
7098
|
+
/**
|
|
7099
|
+
* for deposit: remaining term
|
|
7100
|
+
*/
|
|
7101
|
+
remainingTermRef: ApiObjectReference;
|
|
7102
|
+
|
|
7103
7103
|
/**
|
|
7104
7104
|
* Days for Discount 2
|
|
7105
7105
|
*/
|
|
@@ -7812,9 +7812,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7812
7812
|
alternativeSelectionInVql: string;
|
|
7813
7813
|
|
|
7814
7814
|
/**
|
|
7815
|
-
* Nur
|
|
7815
|
+
* Nur vollständig lieferbare Positionen
|
|
7816
7816
|
*/
|
|
7817
|
-
|
|
7817
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7818
7818
|
|
|
7819
7819
|
/**
|
|
7820
7820
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -7822,9 +7822,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7822
7822
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7823
7823
|
|
|
7824
7824
|
/**
|
|
7825
|
-
* Nur
|
|
7825
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7826
7826
|
*/
|
|
7827
|
-
|
|
7827
|
+
maxOrderCount: number;
|
|
7828
7828
|
|
|
7829
7829
|
/**
|
|
7830
7830
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7899,26 +7899,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7899
7899
|
*/
|
|
7900
7900
|
specifyStorageBins: boolean;
|
|
7901
7901
|
|
|
7902
|
-
/**
|
|
7903
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7904
|
-
*/
|
|
7905
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7906
|
-
|
|
7907
7902
|
/**
|
|
7908
7903
|
* Der zu verwendende Pickwagen
|
|
7909
7904
|
*/
|
|
7910
7905
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7911
7906
|
|
|
7912
7907
|
/**
|
|
7913
|
-
*
|
|
7908
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7914
7909
|
*/
|
|
7915
|
-
|
|
7910
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7916
7911
|
|
|
7917
7912
|
/**
|
|
7918
7913
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7919
7914
|
*/
|
|
7920
7915
|
sortByRoutePosition: boolean;
|
|
7921
7916
|
|
|
7917
|
+
/**
|
|
7918
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7919
|
+
*/
|
|
7920
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7921
|
+
|
|
7922
7922
|
/**
|
|
7923
7923
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
7924
7924
|
*/
|
|
@@ -8274,14 +8274,14 @@ export interface ProductDiscount {
|
|
|
8274
8274
|
validFrom: ScriptingDate;
|
|
8275
8275
|
|
|
8276
8276
|
/**
|
|
8277
|
-
*
|
|
8277
|
+
* Bestimmt die Art des Rabatts
|
|
8278
8278
|
*/
|
|
8279
|
-
|
|
8279
|
+
modifierType: PriceModifierType;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* Warengruppe
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
productGroupRef: ApiObjectReference;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
8287
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8329,14 +8329,14 @@ export interface ProductDiscount {
|
|
|
8329
8329
|
validUntil: ScriptingDate;
|
|
8330
8330
|
|
|
8331
8331
|
/**
|
|
8332
|
-
*
|
|
8332
|
+
* Name des Rabatts
|
|
8333
8333
|
*/
|
|
8334
|
-
|
|
8334
|
+
modifierName: string;
|
|
8335
8335
|
|
|
8336
8336
|
/**
|
|
8337
|
-
*
|
|
8337
|
+
* Account, für den der Rabatt gültig ist
|
|
8338
8338
|
*/
|
|
8339
|
-
|
|
8339
|
+
accountRef: ApiObjectReference;
|
|
8340
8340
|
|
|
8341
8341
|
/**
|
|
8342
8342
|
* Unique identifier of the Object
|
|
@@ -8528,14 +8528,14 @@ export interface ProductPrice {
|
|
|
8528
8528
|
qualifier: ProductPriceQualifier;
|
|
8529
8529
|
|
|
8530
8530
|
/**
|
|
8531
|
-
*
|
|
8531
|
+
* Preisbasis
|
|
8532
8532
|
*/
|
|
8533
|
-
|
|
8533
|
+
priceBase: ArticlePriceBase;
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Aktionpreis
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
specialOfferPrice: boolean;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
8541
|
* Gültig bis
|
|
@@ -8592,19 +8592,19 @@ export interface Referenceable {
|
|
|
8592
8592
|
export interface RequestDocument {
|
|
8593
8593
|
|
|
8594
8594
|
/**
|
|
8595
|
-
*
|
|
8595
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8596
8596
|
*/
|
|
8597
|
-
|
|
8597
|
+
incomingGoodsStorageBinId: number;
|
|
8598
8598
|
|
|
8599
8599
|
/**
|
|
8600
|
-
*
|
|
8600
|
+
* Belegdatum
|
|
8601
8601
|
*/
|
|
8602
|
-
|
|
8602
|
+
documentDate: ScriptingDate;
|
|
8603
8603
|
|
|
8604
8604
|
/**
|
|
8605
|
-
*
|
|
8605
|
+
* ID der Kassenschublade (bei POS)
|
|
8606
8606
|
*/
|
|
8607
|
-
|
|
8607
|
+
cashDrawerId: number;
|
|
8608
8608
|
|
|
8609
8609
|
/**
|
|
8610
8610
|
* Der Anzahlungsbetrag
|
|
@@ -8612,9 +8612,9 @@ export interface RequestDocument {
|
|
|
8612
8612
|
depositPaymentAmount: number;
|
|
8613
8613
|
|
|
8614
8614
|
/**
|
|
8615
|
-
*
|
|
8615
|
+
* Leistungsdatum
|
|
8616
8616
|
*/
|
|
8617
|
-
|
|
8617
|
+
performanceDate: ScriptingDate;
|
|
8618
8618
|
|
|
8619
8619
|
/**
|
|
8620
8620
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8687,14 +8687,14 @@ export interface RequestDocument {
|
|
|
8687
8687
|
contractDetail: DocumentContractDetail;
|
|
8688
8688
|
|
|
8689
8689
|
/**
|
|
8690
|
-
*
|
|
8690
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8691
8691
|
*/
|
|
8692
|
-
|
|
8692
|
+
supplierAccountId: number;
|
|
8693
8693
|
|
|
8694
8694
|
/**
|
|
8695
|
-
*
|
|
8695
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8696
8696
|
*/
|
|
8697
|
-
|
|
8697
|
+
paymentTermId: number;
|
|
8698
8698
|
|
|
8699
8699
|
/**
|
|
8700
8700
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -8805,14 +8805,14 @@ export interface RequestDocumentLine {
|
|
|
8805
8805
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8806
8806
|
|
|
8807
8807
|
/**
|
|
8808
|
-
*
|
|
8808
|
+
* Typ dieser Position
|
|
8809
8809
|
*/
|
|
8810
|
-
|
|
8810
|
+
lineType: DocumentLineType;
|
|
8811
8811
|
|
|
8812
8812
|
/**
|
|
8813
|
-
*
|
|
8813
|
+
* FiBu-Angaben
|
|
8814
8814
|
*/
|
|
8815
|
-
|
|
8815
|
+
financeBooking: DocumentFinanceBooking;
|
|
8816
8816
|
|
|
8817
8817
|
/**
|
|
8818
8818
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9409,14 +9409,14 @@ export interface SequencerConfiguration {
|
|
|
9409
9409
|
key: string;
|
|
9410
9410
|
|
|
9411
9411
|
/**
|
|
9412
|
-
*
|
|
9412
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9413
9413
|
*/
|
|
9414
|
-
|
|
9414
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9415
9415
|
|
|
9416
9416
|
/**
|
|
9417
|
-
*
|
|
9417
|
+
* Contains details about the sequencer configuration
|
|
9418
9418
|
*/
|
|
9419
|
-
|
|
9419
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9420
9420
|
|
|
9421
9421
|
/**
|
|
9422
9422
|
* MetaInformations for this Object
|
|
@@ -9528,14 +9528,14 @@ export interface ShelfDocument {
|
|
|
9528
9528
|
tags: Array<TagDto>;
|
|
9529
9529
|
|
|
9530
9530
|
/**
|
|
9531
|
-
*
|
|
9531
|
+
* Mehrsprachige Bezeichnungen
|
|
9532
9532
|
*/
|
|
9533
|
-
|
|
9533
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9534
9534
|
|
|
9535
9535
|
/**
|
|
9536
|
-
*
|
|
9536
|
+
* share informations
|
|
9537
9537
|
*/
|
|
9538
|
-
|
|
9538
|
+
shares: Array<ShelfShare>;
|
|
9539
9539
|
|
|
9540
9540
|
/**
|
|
9541
9541
|
* Automatische Löschung ab
|
|
@@ -9667,14 +9667,14 @@ export interface ShelfDocumentType {
|
|
|
9667
9667
|
active: boolean;
|
|
9668
9668
|
|
|
9669
9669
|
/**
|
|
9670
|
-
*
|
|
9670
|
+
* access level or reading
|
|
9671
9671
|
*/
|
|
9672
|
-
|
|
9672
|
+
accessLevelRead: number;
|
|
9673
9673
|
|
|
9674
9674
|
/**
|
|
9675
|
-
*
|
|
9675
|
+
* label of type
|
|
9676
9676
|
*/
|
|
9677
|
-
|
|
9677
|
+
label: string;
|
|
9678
9678
|
|
|
9679
9679
|
/**
|
|
9680
9680
|
* storage rule for revisions
|
|
@@ -9755,14 +9755,14 @@ export interface ShelfFile {
|
|
|
9755
9755
|
version: number;
|
|
9756
9756
|
|
|
9757
9757
|
/**
|
|
9758
|
-
*
|
|
9758
|
+
* current reference of this file in our storage
|
|
9759
9759
|
*/
|
|
9760
|
-
|
|
9760
|
+
storageHandle: string;
|
|
9761
9761
|
|
|
9762
9762
|
/**
|
|
9763
|
-
*
|
|
9763
|
+
* meta data
|
|
9764
9764
|
*/
|
|
9765
|
-
|
|
9765
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9766
9766
|
|
|
9767
9767
|
/**
|
|
9768
9768
|
* MetaInformations for this Object
|
|
@@ -9806,14 +9806,14 @@ export interface ShelfShare {
|
|
|
9806
9806
|
publishState: ShelfSharePublishState;
|
|
9807
9807
|
|
|
9808
9808
|
/**
|
|
9809
|
-
*
|
|
9809
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9810
9810
|
*/
|
|
9811
|
-
|
|
9811
|
+
publicUrlDurationInMinutes: number;
|
|
9812
9812
|
|
|
9813
9813
|
/**
|
|
9814
|
-
*
|
|
9814
|
+
* Freifelder
|
|
9815
9815
|
*/
|
|
9816
|
-
|
|
9816
|
+
custom: EavShelfshare;
|
|
9817
9817
|
|
|
9818
9818
|
/**
|
|
9819
9819
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10666,14 +10666,14 @@ export interface User {
|
|
|
10666
10666
|
version: number;
|
|
10667
10667
|
|
|
10668
10668
|
/**
|
|
10669
|
-
*
|
|
10669
|
+
* is the email verified
|
|
10670
10670
|
*/
|
|
10671
|
-
|
|
10671
|
+
emailVerified: boolean;
|
|
10672
10672
|
|
|
10673
10673
|
/**
|
|
10674
|
-
*
|
|
10674
|
+
* first-name
|
|
10675
10675
|
*/
|
|
10676
|
-
|
|
10676
|
+
firstName: string;
|
|
10677
10677
|
|
|
10678
10678
|
/**
|
|
10679
10679
|
* email-address
|