@vario-software/types 2026.19.0 → 2026.19.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 +24 -24
- package/scripting/types.d.ts +184 -184
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -1494,18 +1494,18 @@ export interface DocumentScriptingService {
|
|
|
1494
1494
|
* Löst einen Beleg auf
|
|
1495
1495
|
*
|
|
1496
1496
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1497
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1497
1498
|
* @return {Document} Der aufgelöste Beleg
|
|
1498
1499
|
*/
|
|
1499
|
-
dissolve(documentId: number): Document;
|
|
1500
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1500
1501
|
|
|
1501
1502
|
/**
|
|
1502
1503
|
* Löst einen Beleg auf
|
|
1503
1504
|
*
|
|
1504
1505
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1505
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1506
1506
|
* @return {Document} Der aufgelöste Beleg
|
|
1507
1507
|
*/
|
|
1508
|
-
dissolve(documentId: number
|
|
1508
|
+
dissolve(documentId: number): Document;
|
|
1509
1509
|
|
|
1510
1510
|
/**
|
|
1511
1511
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -1625,16 +1625,16 @@ export interface DocumentScriptingService {
|
|
|
1625
1625
|
* Versendet einen Beleg per Mail
|
|
1626
1626
|
*
|
|
1627
1627
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1628
|
+
* @param {string} reportGroupIdentifier -
|
|
1628
1629
|
*/
|
|
1629
|
-
sendViaMail(documentId: number): void;
|
|
1630
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1630
1631
|
|
|
1631
1632
|
/**
|
|
1632
1633
|
* Versendet einen Beleg per Mail
|
|
1633
1634
|
*
|
|
1634
1635
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1635
|
-
* @param {string} reportGroupIdentifier -
|
|
1636
1636
|
*/
|
|
1637
|
-
sendViaMail(documentId: number
|
|
1637
|
+
sendViaMail(documentId: number): void;
|
|
1638
1638
|
|
|
1639
1639
|
/**
|
|
1640
1640
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2501,26 +2501,26 @@ export interface ScriptingServiceList {
|
|
|
2501
2501
|
*/
|
|
2502
2502
|
crmTaskService: CrmTaskScriptingService;
|
|
2503
2503
|
|
|
2504
|
-
/**
|
|
2505
|
-
* Service zur Verarbeitung von Accounts
|
|
2506
|
-
*/
|
|
2507
|
-
accountService: AccountScriptingService;
|
|
2508
|
-
|
|
2509
2504
|
/**
|
|
2510
2505
|
* Service zur Verarbeitung von Shelf-Documents
|
|
2511
2506
|
*/
|
|
2512
2507
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2513
2508
|
|
|
2514
2509
|
/**
|
|
2515
|
-
*
|
|
2510
|
+
* Service zur Verarbeitung von Accounts
|
|
2516
2511
|
*/
|
|
2517
|
-
|
|
2512
|
+
accountService: AccountScriptingService;
|
|
2518
2513
|
|
|
2519
2514
|
/**
|
|
2520
2515
|
* Logging im Scripting
|
|
2521
2516
|
*/
|
|
2522
2517
|
logger: LoggingScriptingService;
|
|
2523
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* Verwaltung von Versandarten
|
|
2521
|
+
*/
|
|
2522
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2523
|
+
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Service zur Verarbeitung von Deals
|
|
2526
2526
|
*/
|
|
@@ -2537,14 +2537,14 @@ export interface ScriptingServiceList {
|
|
|
2537
2537
|
productGroupService: ProductGroupScriptingService;
|
|
2538
2538
|
|
|
2539
2539
|
/**
|
|
2540
|
-
*
|
|
2540
|
+
* Ausgabe-Support Methoden
|
|
2541
2541
|
*/
|
|
2542
|
-
|
|
2542
|
+
outputHelper: ScriptOutputHelperService;
|
|
2543
2543
|
|
|
2544
2544
|
/**
|
|
2545
|
-
*
|
|
2545
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2546
2546
|
*/
|
|
2547
|
-
|
|
2547
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2548
2548
|
|
|
2549
2549
|
/**
|
|
2550
2550
|
* Erstellt DTOs zur Verwendung im Skript
|
|
@@ -2592,14 +2592,14 @@ export interface ScriptingServiceList {
|
|
|
2592
2592
|
articleStorageService: ArticleStorageScriptingService;
|
|
2593
2593
|
|
|
2594
2594
|
/**
|
|
2595
|
-
*
|
|
2595
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2596
2596
|
*/
|
|
2597
|
-
|
|
2597
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2598
2598
|
|
|
2599
2599
|
/**
|
|
2600
|
-
*
|
|
2600
|
+
* Verwaltung von Zahlungsarten
|
|
2601
2601
|
*/
|
|
2602
|
-
|
|
2602
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2603
2603
|
|
|
2604
2604
|
/**
|
|
2605
2605
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
|
@@ -2709,18 +2709,18 @@ export interface ScriptingUtilities {
|
|
|
2709
2709
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2710
2710
|
*
|
|
2711
2711
|
* @param {object} value - Der Quell-Wert
|
|
2712
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2712
2713
|
* @return {number} Ein BigDecimal-Wert
|
|
2713
2714
|
*/
|
|
2714
|
-
newBigDecimal(value: object): number;
|
|
2715
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2715
2716
|
|
|
2716
2717
|
/**
|
|
2717
2718
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2718
2719
|
*
|
|
2719
2720
|
* @param {object} value - Der Quell-Wert
|
|
2720
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2721
2721
|
* @return {number} Ein BigDecimal-Wert
|
|
2722
2722
|
*/
|
|
2723
|
-
newBigDecimal(value: object
|
|
2723
|
+
newBigDecimal(value: object): number;
|
|
2724
2724
|
|
|
2725
2725
|
/**
|
|
2726
2726
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Country code
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* city of the bank
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
bankCity: string;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
|
|
|
562
562
|
nonInvoicedDocumentLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
payablesSum: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* Kreditlimit
|
|
571
571
|
*/
|
|
572
|
-
|
|
572
|
+
maximalLoan: number;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Überschrittener Kreditbetrag
|
|
@@ -1246,14 +1246,14 @@ export interface Article {
|
|
|
1246
1246
|
contingentArticleRef: ApiObjectReference;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
|
-
*
|
|
1249
|
+
* alternative name of this product
|
|
1250
1250
|
*/
|
|
1251
|
-
|
|
1251
|
+
alternativeName: string;
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
|
-
*
|
|
1254
|
+
* rabattierbarer Artikel?
|
|
1255
1255
|
*/
|
|
1256
|
-
|
|
1256
|
+
discountable: boolean;
|
|
1257
1257
|
|
|
1258
1258
|
/**
|
|
1259
1259
|
* base capacity
|
|
@@ -1519,14 +1519,14 @@ export interface ArticleListing {
|
|
|
1519
1519
|
alternativeName: WithDefaults<String>;
|
|
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
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1527
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1528
1528
|
*/
|
|
1529
|
-
|
|
1529
|
+
customLowestPriceNet: number;
|
|
1530
1530
|
|
|
1531
1531
|
/**
|
|
1532
1532
|
* der aktuelle listing stand
|
|
@@ -1685,26 +1685,26 @@ export const enum ArticleSerialType {
|
|
|
1685
1685
|
|
|
1686
1686
|
export interface ArticleStorage {
|
|
1687
1687
|
|
|
1688
|
-
/**
|
|
1689
|
-
* Nachschub ab
|
|
1690
|
-
*/
|
|
1691
|
-
replenishmentFrom: number;
|
|
1692
|
-
|
|
1693
1688
|
/**
|
|
1694
1689
|
* Bestand im Lager
|
|
1695
1690
|
*/
|
|
1696
1691
|
quantityInStock: number;
|
|
1697
1692
|
|
|
1698
1693
|
/**
|
|
1699
|
-
*
|
|
1694
|
+
* Nachschub ab
|
|
1700
1695
|
*/
|
|
1701
|
-
|
|
1696
|
+
replenishmentFrom: number;
|
|
1702
1697
|
|
|
1703
1698
|
/**
|
|
1704
1699
|
* Bestellte Menge
|
|
1705
1700
|
*/
|
|
1706
1701
|
orderedQuantity: number;
|
|
1707
1702
|
|
|
1703
|
+
/**
|
|
1704
|
+
* Aktuelle Menge in Kommissionierung
|
|
1705
|
+
*/
|
|
1706
|
+
quantityInPicking: number;
|
|
1707
|
+
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Meldebestand
|
|
1710
1710
|
*/
|
|
@@ -1761,14 +1761,14 @@ export interface ArticleStorage {
|
|
|
1761
1761
|
storageRef: ApiObjectReference;
|
|
1762
1762
|
|
|
1763
1763
|
/**
|
|
1764
|
-
*
|
|
1764
|
+
* Sollbestand
|
|
1765
1765
|
*/
|
|
1766
|
-
|
|
1766
|
+
targetStock: number;
|
|
1767
1767
|
|
|
1768
1768
|
/**
|
|
1769
|
-
*
|
|
1769
|
+
* Vorgabe-Lagerplätze
|
|
1770
1770
|
*/
|
|
1771
|
-
|
|
1771
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1772
1772
|
|
|
1773
1773
|
/**
|
|
1774
1774
|
* Aktuelle Menge in Produktion
|
|
@@ -1794,14 +1794,14 @@ export interface ArticleSupplier {
|
|
|
1794
1794
|
accountDisplayName: string;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
|
-
*
|
|
1797
|
+
* Lieferanten-Meldebestand
|
|
1798
1798
|
*/
|
|
1799
|
-
|
|
1799
|
+
supplierReportingStock: number;
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
1802
|
-
*
|
|
1802
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1803
1803
|
*/
|
|
1804
|
-
|
|
1804
|
+
useSupplierArticleDescription: boolean;
|
|
1805
1805
|
|
|
1806
1806
|
/**
|
|
1807
1807
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1869,14 +1869,14 @@ export interface ArticleSupplier {
|
|
|
1869
1869
|
articleName: string;
|
|
1870
1870
|
|
|
1871
1871
|
/**
|
|
1872
|
-
*
|
|
1872
|
+
* Lieferanten-Preise
|
|
1873
1873
|
*/
|
|
1874
|
-
|
|
1874
|
+
productPrices: Array<ProductPrice>;
|
|
1875
1875
|
|
|
1876
1876
|
/**
|
|
1877
|
-
*
|
|
1877
|
+
* Referenced Article
|
|
1878
1878
|
*/
|
|
1879
|
-
|
|
1879
|
+
articleId: number;
|
|
1880
1880
|
|
|
1881
1881
|
/**
|
|
1882
1882
|
* Aktiv?
|
|
@@ -1914,14 +1914,14 @@ export interface ArticleSupplier {
|
|
|
1914
1914
|
defaultNetPrice: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Einkaufseinheit
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
purchaseUnit: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
|
-
*
|
|
1922
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1923
1923
|
*/
|
|
1924
|
-
|
|
1924
|
+
orderOnComponentBase: boolean;
|
|
1925
1925
|
|
|
1926
1926
|
/**
|
|
1927
1927
|
* Referenced Supplier-Account
|
|
@@ -2124,14 +2124,14 @@ export interface CountryReference {
|
|
|
2124
2124
|
export interface CreateNewDocumentRequest {
|
|
2125
2125
|
|
|
2126
2126
|
/**
|
|
2127
|
-
* Belegart
|
|
2127
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2128
2128
|
*/
|
|
2129
|
-
|
|
2129
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2130
2130
|
|
|
2131
2131
|
/**
|
|
2132
|
-
*
|
|
2132
|
+
* Belegart
|
|
2133
2133
|
*/
|
|
2134
|
-
|
|
2134
|
+
documentTypeLabel: string;
|
|
2135
2135
|
|
|
2136
2136
|
/**
|
|
2137
2137
|
* Details zum Beleg
|
|
@@ -2197,14 +2197,14 @@ export interface CrmActivity {
|
|
|
2197
2197
|
info: MetaInfo;
|
|
2198
2198
|
|
|
2199
2199
|
/**
|
|
2200
|
-
*
|
|
2200
|
+
* geplante Dauer
|
|
2201
2201
|
*/
|
|
2202
|
-
|
|
2202
|
+
plannedDurationInSeconds: number;
|
|
2203
2203
|
|
|
2204
2204
|
/**
|
|
2205
|
-
*
|
|
2205
|
+
* Aktivität intern abgerechnet?
|
|
2206
2206
|
*/
|
|
2207
|
-
|
|
2207
|
+
internalBilled: boolean;
|
|
2208
2208
|
|
|
2209
2209
|
/**
|
|
2210
2210
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2474,14 +2474,14 @@ export interface CrmDeal {
|
|
|
2474
2474
|
info: MetaInfo;
|
|
2475
2475
|
|
|
2476
2476
|
/**
|
|
2477
|
-
*
|
|
2477
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2478
2478
|
*/
|
|
2479
|
-
|
|
2479
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2480
2480
|
|
|
2481
2481
|
/**
|
|
2482
|
-
*
|
|
2482
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2483
2483
|
*/
|
|
2484
|
-
|
|
2484
|
+
assignedUserRef: ApiObjectReference;
|
|
2485
2485
|
|
|
2486
2486
|
/**
|
|
2487
2487
|
* Chance (in Prozent)
|
|
@@ -3505,14 +3505,14 @@ export interface Customer {
|
|
|
3505
3505
|
stackProcessingPriority: number;
|
|
3506
3506
|
|
|
3507
3507
|
/**
|
|
3508
|
-
*
|
|
3508
|
+
* reference to product price group
|
|
3509
3509
|
*/
|
|
3510
|
-
|
|
3510
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3511
3511
|
|
|
3512
3512
|
/**
|
|
3513
|
-
*
|
|
3513
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3514
3514
|
*/
|
|
3515
|
-
|
|
3515
|
+
collectiveInvoiceManually: boolean;
|
|
3516
3516
|
|
|
3517
3517
|
/**
|
|
3518
3518
|
* Unique identifier of the Object
|
|
@@ -3666,14 +3666,14 @@ export interface DeliveryMethod {
|
|
|
3666
3666
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3667
3667
|
|
|
3668
3668
|
/**
|
|
3669
|
-
*
|
|
3669
|
+
* Gültige Ländercodes
|
|
3670
3670
|
*/
|
|
3671
|
-
|
|
3671
|
+
validCountryCodes: Array<string>;
|
|
3672
3672
|
|
|
3673
3673
|
/**
|
|
3674
|
-
*
|
|
3674
|
+
* Versand-Anbieter
|
|
3675
3675
|
*/
|
|
3676
|
-
|
|
3676
|
+
vdsCarrierId: number;
|
|
3677
3677
|
|
|
3678
3678
|
/**
|
|
3679
3679
|
* Standardgewichtseinheit
|
|
@@ -3754,14 +3754,14 @@ export interface DeliveryTerm {
|
|
|
3754
3754
|
version: number;
|
|
3755
3755
|
|
|
3756
3756
|
/**
|
|
3757
|
-
*
|
|
3757
|
+
* information, how the shipping charges should be calculated
|
|
3758
3758
|
*/
|
|
3759
|
-
|
|
3759
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3760
3760
|
|
|
3761
3761
|
/**
|
|
3762
|
-
*
|
|
3762
|
+
* translations
|
|
3763
3763
|
*/
|
|
3764
|
-
|
|
3764
|
+
translations: Array<DocumentTypeTerm>;
|
|
3765
3765
|
|
|
3766
3766
|
/**
|
|
3767
3767
|
* Lieferarten
|
|
@@ -4107,14 +4107,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4107
4107
|
defaultAddress: DocumentAddress;
|
|
4108
4108
|
|
|
4109
4109
|
/**
|
|
4110
|
-
*
|
|
4110
|
+
* Verarbeitungsoption für Stapel
|
|
4111
4111
|
*/
|
|
4112
|
-
|
|
4112
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4113
4113
|
|
|
4114
4114
|
/**
|
|
4115
|
-
*
|
|
4115
|
+
* Leistungsdatum
|
|
4116
4116
|
*/
|
|
4117
|
-
|
|
4117
|
+
performanceDate: ScriptingDate;
|
|
4118
4118
|
|
|
4119
4119
|
/**
|
|
4120
4120
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4292,14 +4292,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4292
4292
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4293
4293
|
|
|
4294
4294
|
/**
|
|
4295
|
-
*
|
|
4295
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4296
4296
|
*/
|
|
4297
|
-
|
|
4297
|
+
taxIdentificationNumber: string;
|
|
4298
4298
|
|
|
4299
4299
|
/**
|
|
4300
|
-
*
|
|
4300
|
+
* Statusinstanz des Belegs
|
|
4301
4301
|
*/
|
|
4302
|
-
|
|
4302
|
+
documentState: DocumentTypeState;
|
|
4303
4303
|
|
|
4304
4304
|
/**
|
|
4305
4305
|
* Rückgeld
|
|
@@ -4349,14 +4349,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4349
4349
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4350
4350
|
|
|
4351
4351
|
/**
|
|
4352
|
-
*
|
|
4352
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4353
4353
|
*/
|
|
4354
|
-
|
|
4354
|
+
reportGroupRef: ApiObjectReference;
|
|
4355
4355
|
|
|
4356
4356
|
/**
|
|
4357
|
-
*
|
|
4357
|
+
* Bestellt durch Ansprechpartner
|
|
4358
4358
|
*/
|
|
4359
|
-
|
|
4359
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4360
4360
|
}
|
|
4361
4361
|
|
|
4362
4362
|
export interface DocumentAdditionalInfo {
|
|
@@ -4367,14 +4367,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4367
4367
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4368
4368
|
|
|
4369
4369
|
/**
|
|
4370
|
-
*
|
|
4370
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4371
4371
|
*/
|
|
4372
|
-
|
|
4372
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4373
4373
|
|
|
4374
4374
|
/**
|
|
4375
|
-
*
|
|
4375
|
+
* Herkunft der Sprache
|
|
4376
4376
|
*/
|
|
4377
|
-
|
|
4377
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4378
4378
|
|
|
4379
4379
|
/**
|
|
4380
4380
|
* Herkunft der Käufer-Referenz
|
|
@@ -4382,14 +4382,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4382
4382
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4383
4383
|
|
|
4384
4384
|
/**
|
|
4385
|
-
*
|
|
4385
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4386
4386
|
*/
|
|
4387
|
-
|
|
4387
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4388
4388
|
|
|
4389
4389
|
/**
|
|
4390
|
-
*
|
|
4390
|
+
* Herkunft des Berechnungsmodus
|
|
4391
4391
|
*/
|
|
4392
|
-
|
|
4392
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4393
4393
|
|
|
4394
4394
|
/**
|
|
4395
4395
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4719,14 +4719,14 @@ export interface DocumentContractDetail {
|
|
|
4719
4719
|
runtimeToDate: ScriptingDate;
|
|
4720
4720
|
|
|
4721
4721
|
/**
|
|
4722
|
-
*
|
|
4722
|
+
* Nächste Fälligkeit
|
|
4723
4723
|
*/
|
|
4724
|
-
|
|
4724
|
+
nextDueDate: ScriptingDate;
|
|
4725
4725
|
|
|
4726
4726
|
/**
|
|
4727
|
-
*
|
|
4727
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4728
4728
|
*/
|
|
4729
|
-
|
|
4729
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4730
4730
|
|
|
4731
4731
|
/**
|
|
4732
4732
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4961,14 +4961,14 @@ export interface DocumentLine {
|
|
|
4961
4961
|
number: string;
|
|
4962
4962
|
|
|
4963
4963
|
/**
|
|
4964
|
-
*
|
|
4964
|
+
* Referenz zur Kundenauftragszeile
|
|
4965
4965
|
*/
|
|
4966
|
-
|
|
4966
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4967
4967
|
|
|
4968
4968
|
/**
|
|
4969
|
-
*
|
|
4969
|
+
* Gesamtbruttogewicht
|
|
4970
4970
|
*/
|
|
4971
|
-
|
|
4971
|
+
totalGrossWeight: number;
|
|
4972
4972
|
|
|
4973
4973
|
/**
|
|
4974
4974
|
* skontierbare Position?
|
|
@@ -4985,11 +4985,6 @@ export interface DocumentLine {
|
|
|
4985
4985
|
*/
|
|
4986
4986
|
price: number;
|
|
4987
4987
|
|
|
4988
|
-
/**
|
|
4989
|
-
* Gesamtpreis Position in Basiswährung
|
|
4990
|
-
*/
|
|
4991
|
-
baseTotalLinePrice: number;
|
|
4992
|
-
|
|
4993
4988
|
/**
|
|
4994
4989
|
* Positionstyp
|
|
4995
4990
|
*/
|
|
@@ -5000,6 +4995,11 @@ export interface DocumentLine {
|
|
|
5000
4995
|
*/
|
|
5001
4996
|
financeBooking: DocumentFinanceBooking;
|
|
5002
4997
|
|
|
4998
|
+
/**
|
|
4999
|
+
* Gesamtpreis Position in Basiswährung
|
|
5000
|
+
*/
|
|
5001
|
+
baseTotalLinePrice: number;
|
|
5002
|
+
|
|
5003
5003
|
/**
|
|
5004
5004
|
* vorgeorderte Menge in Pickvorgang
|
|
5005
5005
|
*/
|
|
@@ -5485,14 +5485,14 @@ export interface DocumentLineComponent {
|
|
|
5485
5485
|
custom: EavDocumentlinecomponent;
|
|
5486
5486
|
|
|
5487
5487
|
/**
|
|
5488
|
-
*
|
|
5488
|
+
* Referenz auf den Artikel der Komponente
|
|
5489
5489
|
*/
|
|
5490
|
-
|
|
5490
|
+
articleId: number;
|
|
5491
5491
|
|
|
5492
5492
|
/**
|
|
5493
|
-
*
|
|
5493
|
+
* Gelieferte Menge
|
|
5494
5494
|
*/
|
|
5495
|
-
|
|
5495
|
+
quantityCommitted: number;
|
|
5496
5496
|
|
|
5497
5497
|
/**
|
|
5498
5498
|
* Beschreibung des Artikels
|
|
@@ -5813,14 +5813,14 @@ export interface DocumentLineRef {
|
|
|
5813
5813
|
documentId: number;
|
|
5814
5814
|
|
|
5815
5815
|
/**
|
|
5816
|
-
*
|
|
5816
|
+
* Id der Dokumentzeile
|
|
5817
5817
|
*/
|
|
5818
|
-
|
|
5818
|
+
id: number;
|
|
5819
5819
|
|
|
5820
5820
|
/**
|
|
5821
|
-
*
|
|
5821
|
+
* Positions-Nummer
|
|
5822
5822
|
*/
|
|
5823
|
-
|
|
5823
|
+
position: number;
|
|
5824
5824
|
|
|
5825
5825
|
/**
|
|
5826
5826
|
* Belegtyp
|
|
@@ -6100,14 +6100,14 @@ export interface DocumentRef {
|
|
|
6100
6100
|
export interface DocumentShippingCost {
|
|
6101
6101
|
|
|
6102
6102
|
/**
|
|
6103
|
-
*
|
|
6103
|
+
* Die Versandkosten
|
|
6104
6104
|
*/
|
|
6105
|
-
|
|
6105
|
+
costs: number;
|
|
6106
6106
|
|
|
6107
6107
|
/**
|
|
6108
|
-
*
|
|
6108
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6109
6109
|
*/
|
|
6110
|
-
|
|
6110
|
+
manualCosts: boolean;
|
|
6111
6111
|
|
|
6112
6112
|
/**
|
|
6113
6113
|
* Keine Versandkosten (freier Versand)
|
|
@@ -7246,14 +7246,14 @@ export interface PickTrolley {
|
|
|
7246
7246
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7247
7247
|
|
|
7248
7248
|
/**
|
|
7249
|
-
*
|
|
7249
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7250
7250
|
*/
|
|
7251
|
-
|
|
7251
|
+
storageBinRef: StorageBinRef;
|
|
7252
7252
|
|
|
7253
7253
|
/**
|
|
7254
|
-
*
|
|
7254
|
+
* Bearbeiter der Pickliste
|
|
7255
7255
|
*/
|
|
7256
|
-
|
|
7256
|
+
processedByUserRef: ApiObjectReference;
|
|
7257
7257
|
|
|
7258
7258
|
/**
|
|
7259
7259
|
* Beschreibung des Wagens
|
|
@@ -7509,14 +7509,14 @@ export interface PicklistLine {
|
|
|
7509
7509
|
articleNumber: string;
|
|
7510
7510
|
|
|
7511
7511
|
/**
|
|
7512
|
-
*
|
|
7512
|
+
* Art der Position
|
|
7513
7513
|
*/
|
|
7514
|
-
|
|
7514
|
+
lineType: PicklistLineType;
|
|
7515
7515
|
|
|
7516
7516
|
/**
|
|
7517
|
-
*
|
|
7517
|
+
* Lagernummer
|
|
7518
7518
|
*/
|
|
7519
|
-
|
|
7519
|
+
storageNumber: string;
|
|
7520
7520
|
|
|
7521
7521
|
/**
|
|
7522
7522
|
* ID der Ziel-Dokumentposition
|
|
@@ -7655,14 +7655,14 @@ export interface PicklistLineComponent {
|
|
|
7655
7655
|
targetDocumentLineComponentId: number;
|
|
7656
7656
|
|
|
7657
7657
|
/**
|
|
7658
|
-
*
|
|
7658
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7659
7659
|
*/
|
|
7660
|
-
|
|
7660
|
+
quantityPerAssemblyGroup: number;
|
|
7661
7661
|
|
|
7662
7662
|
/**
|
|
7663
|
-
*
|
|
7663
|
+
* abweichende Artikelbezeichnung
|
|
7664
7664
|
*/
|
|
7665
|
-
|
|
7665
|
+
articleAlternativeName: string;
|
|
7666
7666
|
|
|
7667
7667
|
/**
|
|
7668
7668
|
* Verpackte Menge der Position
|
|
@@ -7829,14 +7829,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7829
7829
|
maxArticleCountPerOrder: number;
|
|
7830
7830
|
|
|
7831
7831
|
/**
|
|
7832
|
-
*
|
|
7832
|
+
* Alternative Selektion in VQL
|
|
7833
7833
|
*/
|
|
7834
|
-
|
|
7834
|
+
alternativeSelectionInVql: string;
|
|
7835
7835
|
|
|
7836
7836
|
/**
|
|
7837
|
-
*
|
|
7837
|
+
* Maximaler Auftragswert
|
|
7838
7838
|
*/
|
|
7839
|
-
|
|
7839
|
+
maxOrderValue: number;
|
|
7840
7840
|
|
|
7841
7841
|
/**
|
|
7842
7842
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -7844,14 +7844,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7844
7844
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7845
7845
|
|
|
7846
7846
|
/**
|
|
7847
|
-
* Nur
|
|
7847
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7848
7848
|
*/
|
|
7849
|
-
|
|
7849
|
+
maxOrderCount: number;
|
|
7850
7850
|
|
|
7851
7851
|
/**
|
|
7852
|
-
* Nur
|
|
7852
|
+
* Nur vollständig lieferbare Positionen
|
|
7853
7853
|
*/
|
|
7854
|
-
|
|
7854
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7855
7855
|
|
|
7856
7856
|
/**
|
|
7857
7857
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7937,14 +7937,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7937
7937
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7938
7938
|
|
|
7939
7939
|
/**
|
|
7940
|
-
*
|
|
7940
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7941
7941
|
*/
|
|
7942
|
-
|
|
7942
|
+
sortByRoutePosition: boolean;
|
|
7943
7943
|
|
|
7944
7944
|
/**
|
|
7945
|
-
*
|
|
7945
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7946
7946
|
*/
|
|
7947
|
-
|
|
7947
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7948
7948
|
|
|
7949
7949
|
/**
|
|
7950
7950
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8708,26 +8708,26 @@ export interface RequestDocument {
|
|
|
8708
8708
|
*/
|
|
8709
8709
|
lines: Array<RequestDocumentLine>;
|
|
8710
8710
|
|
|
8711
|
-
/**
|
|
8712
|
-
* Die Vertragsdetails
|
|
8713
|
-
*/
|
|
8714
|
-
contractDetail: DocumentContractDetail;
|
|
8715
|
-
|
|
8716
8711
|
/**
|
|
8717
8712
|
* ID der Kasse (bei POS)
|
|
8718
8713
|
*/
|
|
8719
8714
|
posRegisterId: number;
|
|
8720
8715
|
|
|
8721
8716
|
/**
|
|
8722
|
-
*
|
|
8717
|
+
* Die Vertragsdetails
|
|
8723
8718
|
*/
|
|
8724
|
-
|
|
8719
|
+
contractDetail: DocumentContractDetail;
|
|
8725
8720
|
|
|
8726
8721
|
/**
|
|
8727
8722
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8728
8723
|
*/
|
|
8729
8724
|
paymentTermId: number;
|
|
8730
8725
|
|
|
8726
|
+
/**
|
|
8727
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8728
|
+
*/
|
|
8729
|
+
supplierAccountId: number;
|
|
8730
|
+
|
|
8731
8731
|
/**
|
|
8732
8732
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8733
8733
|
*/
|
|
@@ -8857,14 +8857,14 @@ export interface RequestDocumentLine {
|
|
|
8857
8857
|
dropShippingPolicy: DropShippingPolicy;
|
|
8858
8858
|
|
|
8859
8859
|
/**
|
|
8860
|
-
*
|
|
8860
|
+
* (optional) Lager-ID
|
|
8861
8861
|
*/
|
|
8862
|
-
|
|
8862
|
+
storageId: number;
|
|
8863
8863
|
|
|
8864
8864
|
/**
|
|
8865
|
-
*
|
|
8865
|
+
* Positionsnummer der Artikel
|
|
8866
8866
|
*/
|
|
8867
|
-
|
|
8867
|
+
positionOfArticleLine: number;
|
|
8868
8868
|
|
|
8869
8869
|
/**
|
|
8870
8870
|
* Vertragsdetails zur Belegposition
|
|
@@ -8936,6 +8936,11 @@ export interface RequestDocumentLine {
|
|
|
8936
8936
|
*/
|
|
8937
8937
|
name: string;
|
|
8938
8938
|
|
|
8939
|
+
/**
|
|
8940
|
+
* Buchungen zu dieser Belegposition
|
|
8941
|
+
*/
|
|
8942
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
8943
|
+
|
|
8939
8944
|
/**
|
|
8940
8945
|
* Für interne Zwecke: Externe Artikelnummer
|
|
8941
8946
|
*/
|
|
@@ -8946,11 +8951,6 @@ export interface RequestDocumentLine {
|
|
|
8946
8951
|
*/
|
|
8947
8952
|
sourceLineId: number;
|
|
8948
8953
|
|
|
8949
|
-
/**
|
|
8950
|
-
* Buchungen zu dieser Belegposition
|
|
8951
|
-
*/
|
|
8952
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
8953
|
-
|
|
8954
8954
|
/**
|
|
8955
8955
|
* (optional) Preis des Artikels dieser Position
|
|
8956
8956
|
*/
|
|
@@ -9093,14 +9093,14 @@ export interface SalesAgent {
|
|
|
9093
9093
|
note: string;
|
|
9094
9094
|
|
|
9095
9095
|
/**
|
|
9096
|
-
*
|
|
9096
|
+
* is sales agent taxable
|
|
9097
9097
|
*/
|
|
9098
|
-
|
|
9098
|
+
taxable: boolean;
|
|
9099
9099
|
|
|
9100
9100
|
/**
|
|
9101
|
-
*
|
|
9101
|
+
* reference to the delivery method
|
|
9102
9102
|
*/
|
|
9103
|
-
|
|
9103
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9104
9104
|
|
|
9105
9105
|
/**
|
|
9106
9106
|
* Freifelder
|
|
@@ -9560,14 +9560,14 @@ export interface ShelfDocument {
|
|
|
9560
9560
|
tags: Array<TagDto>;
|
|
9561
9561
|
|
|
9562
9562
|
/**
|
|
9563
|
-
*
|
|
9563
|
+
* Mehrsprachige Bezeichnungen
|
|
9564
9564
|
*/
|
|
9565
|
-
|
|
9565
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9566
9566
|
|
|
9567
9567
|
/**
|
|
9568
|
-
*
|
|
9568
|
+
* share informations
|
|
9569
9569
|
*/
|
|
9570
|
-
|
|
9570
|
+
shares: Array<ShelfShare>;
|
|
9571
9571
|
|
|
9572
9572
|
/**
|
|
9573
9573
|
* Automatische Löschung ab
|
|
@@ -9699,14 +9699,14 @@ export interface ShelfDocumentType {
|
|
|
9699
9699
|
active: boolean;
|
|
9700
9700
|
|
|
9701
9701
|
/**
|
|
9702
|
-
*
|
|
9702
|
+
* access level or reading
|
|
9703
9703
|
*/
|
|
9704
|
-
|
|
9704
|
+
accessLevelRead: number;
|
|
9705
9705
|
|
|
9706
9706
|
/**
|
|
9707
|
-
*
|
|
9707
|
+
* label of type
|
|
9708
9708
|
*/
|
|
9709
|
-
|
|
9709
|
+
label: string;
|
|
9710
9710
|
|
|
9711
9711
|
/**
|
|
9712
9712
|
* storage rule for revisions
|
|
@@ -9752,14 +9752,14 @@ export interface ShelfFile {
|
|
|
9752
9752
|
subFiles: Array<SubFileInfo>;
|
|
9753
9753
|
|
|
9754
9754
|
/**
|
|
9755
|
-
*
|
|
9755
|
+
* revision number of this file
|
|
9756
9756
|
*/
|
|
9757
|
-
|
|
9757
|
+
revisionNumber: number;
|
|
9758
9758
|
|
|
9759
9759
|
/**
|
|
9760
|
-
*
|
|
9760
|
+
* fileSize
|
|
9761
9761
|
*/
|
|
9762
|
-
|
|
9762
|
+
fileSize: number;
|
|
9763
9763
|
|
|
9764
9764
|
/**
|
|
9765
9765
|
* file-extension of this entry
|
|
@@ -9787,14 +9787,14 @@ export interface ShelfFile {
|
|
|
9787
9787
|
version: number;
|
|
9788
9788
|
|
|
9789
9789
|
/**
|
|
9790
|
-
*
|
|
9790
|
+
* current reference of this file in our storage
|
|
9791
9791
|
*/
|
|
9792
|
-
|
|
9792
|
+
storageHandle: string;
|
|
9793
9793
|
|
|
9794
9794
|
/**
|
|
9795
|
-
*
|
|
9795
|
+
* meta data
|
|
9796
9796
|
*/
|
|
9797
|
-
|
|
9797
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9798
9798
|
|
|
9799
9799
|
/**
|
|
9800
9800
|
* MetaInformations for this Object
|
|
@@ -9838,14 +9838,14 @@ export interface ShelfShare {
|
|
|
9838
9838
|
publishState: ShelfSharePublishState;
|
|
9839
9839
|
|
|
9840
9840
|
/**
|
|
9841
|
-
*
|
|
9841
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9842
9842
|
*/
|
|
9843
|
-
|
|
9843
|
+
publicUrlDurationInMinutes: number;
|
|
9844
9844
|
|
|
9845
9845
|
/**
|
|
9846
|
-
*
|
|
9846
|
+
* Freifelder
|
|
9847
9847
|
*/
|
|
9848
|
-
|
|
9848
|
+
custom: EavShelfshare;
|
|
9849
9849
|
|
|
9850
9850
|
/**
|
|
9851
9851
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10057,14 +10057,14 @@ export interface StockMovementManualApi {
|
|
|
10057
10057
|
export interface StockTransferApi {
|
|
10058
10058
|
|
|
10059
10059
|
/**
|
|
10060
|
-
*
|
|
10060
|
+
* Ziel-Lager
|
|
10061
10061
|
*/
|
|
10062
|
-
|
|
10062
|
+
targetStorageId: number;
|
|
10063
10063
|
|
|
10064
10064
|
/**
|
|
10065
|
-
*
|
|
10065
|
+
* Seriennummer
|
|
10066
10066
|
*/
|
|
10067
|
-
|
|
10067
|
+
serialNumberId: number;
|
|
10068
10068
|
|
|
10069
10069
|
/**
|
|
10070
10070
|
* Bemerkung
|
|
@@ -10274,14 +10274,14 @@ export interface Supplier {
|
|
|
10274
10274
|
info: MetaInfo;
|
|
10275
10275
|
|
|
10276
10276
|
/**
|
|
10277
|
-
*
|
|
10277
|
+
* Lieferantengruppe
|
|
10278
10278
|
*/
|
|
10279
|
-
|
|
10279
|
+
supplierGroupRef: ApiObjectReference;
|
|
10280
10280
|
|
|
10281
10281
|
/**
|
|
10282
|
-
*
|
|
10282
|
+
* reference to the delivery method
|
|
10283
10283
|
*/
|
|
10284
|
-
|
|
10284
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10285
10285
|
|
|
10286
10286
|
/**
|
|
10287
10287
|
* tax able or tax free
|