@vario-software/types 2026.25.0 → 2026.25.2
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 +35 -35
- package/scripting/types.d.ts +255 -255
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -480,21 +480,21 @@ export interface ArticleListingScriptingService {
|
|
|
480
480
|
getNewDto(): ArticleListing;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
* Liest alle Listings zu einem Artikel
|
|
483
|
+
* Liest alle Listings zu einem Artikel
|
|
484
484
|
*
|
|
485
485
|
* @param {number} articleId - ID des Artikels
|
|
486
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
487
486
|
* @return {Array<ArticleListing>} Liste der Listings
|
|
488
487
|
*/
|
|
489
|
-
readAllByArticleId(articleId: number
|
|
488
|
+
readAllByArticleId(articleId: number): Array<ArticleListing>;
|
|
490
489
|
|
|
491
490
|
/**
|
|
492
|
-
* Liest alle Listings zu einem Artikel
|
|
491
|
+
* Liest alle Listings zu einem Artikel mit Texten zur Sprache languageCode
|
|
493
492
|
*
|
|
494
493
|
* @param {number} articleId - ID des Artikels
|
|
494
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
495
495
|
* @return {Array<ArticleListing>} Liste der Listings
|
|
496
496
|
*/
|
|
497
|
-
readAllByArticleId(articleId: number): Array<ArticleListing>;
|
|
497
|
+
readAllByArticleId(articleId: number, languageCode: string): Array<ArticleListing>;
|
|
498
498
|
|
|
499
499
|
/**
|
|
500
500
|
* Liest eine Liste von DTOs
|
|
@@ -550,27 +550,27 @@ export interface ArticleScriptingService {
|
|
|
550
550
|
*
|
|
551
551
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
552
552
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
553
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
553
554
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
554
555
|
*/
|
|
555
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
556
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
556
557
|
|
|
557
558
|
/**
|
|
558
559
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
559
560
|
*
|
|
560
561
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
561
562
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
563
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
562
564
|
*/
|
|
563
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
565
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
564
566
|
|
|
565
567
|
/**
|
|
566
568
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
567
569
|
*
|
|
568
570
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
569
571
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
570
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
571
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
572
572
|
*/
|
|
573
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
573
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
574
574
|
|
|
575
575
|
/**
|
|
576
576
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1646,35 +1646,35 @@ export interface DocumentScriptingService {
|
|
|
1646
1646
|
* Löst einen Beleg auf
|
|
1647
1647
|
*
|
|
1648
1648
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1649
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1650
1649
|
* @return {Document} Der aufgelöste Beleg
|
|
1651
1650
|
*/
|
|
1652
|
-
dissolve(documentId: number
|
|
1651
|
+
dissolve(documentId: number): Document;
|
|
1653
1652
|
|
|
1654
1653
|
/**
|
|
1655
1654
|
* Löst einen Beleg auf
|
|
1656
1655
|
*
|
|
1657
1656
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1657
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1658
1658
|
* @return {Document} Der aufgelöste Beleg
|
|
1659
1659
|
*/
|
|
1660
|
-
dissolve(documentId: number): Document;
|
|
1660
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1661
1661
|
|
|
1662
1662
|
/**
|
|
1663
1663
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1664
1664
|
*
|
|
1665
1665
|
* @param {number} documentId - ID des Belegs
|
|
1666
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1666
1667
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1667
1668
|
*/
|
|
1668
|
-
edit(documentId: number): Document;
|
|
1669
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1669
1670
|
|
|
1670
1671
|
/**
|
|
1671
1672
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1672
1673
|
*
|
|
1673
1674
|
* @param {number} documentId - ID des Belegs
|
|
1674
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1675
1675
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1676
1676
|
*/
|
|
1677
|
-
edit(documentId: number
|
|
1677
|
+
edit(documentId: number): Document;
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
1680
1680
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -2667,26 +2667,26 @@ export interface ScriptingServiceList {
|
|
|
2667
2667
|
*/
|
|
2668
2668
|
crmTaskService: CrmTaskScriptingService;
|
|
2669
2669
|
|
|
2670
|
-
/**
|
|
2671
|
-
* Service zur Verarbeitung von Shelf-Documents
|
|
2672
|
-
*/
|
|
2673
|
-
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2674
|
-
|
|
2675
2670
|
/**
|
|
2676
2671
|
* Service zur Verarbeitung von Accounts
|
|
2677
2672
|
*/
|
|
2678
2673
|
accountService: AccountScriptingService;
|
|
2679
2674
|
|
|
2680
2675
|
/**
|
|
2681
|
-
*
|
|
2676
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2682
2677
|
*/
|
|
2683
|
-
|
|
2678
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2684
2679
|
|
|
2685
2680
|
/**
|
|
2686
2681
|
* Verwaltung von Versandarten
|
|
2687
2682
|
*/
|
|
2688
2683
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2689
2684
|
|
|
2685
|
+
/**
|
|
2686
|
+
* Logging im Scripting
|
|
2687
|
+
*/
|
|
2688
|
+
logger: LoggingScriptingService;
|
|
2689
|
+
|
|
2690
2690
|
/**
|
|
2691
2691
|
* Service zur Verarbeitung von Deals
|
|
2692
2692
|
*/
|
|
@@ -2703,14 +2703,14 @@ export interface ScriptingServiceList {
|
|
|
2703
2703
|
productGroupService: ProductGroupScriptingService;
|
|
2704
2704
|
|
|
2705
2705
|
/**
|
|
2706
|
-
*
|
|
2706
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2707
2707
|
*/
|
|
2708
|
-
|
|
2708
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2709
2709
|
|
|
2710
2710
|
/**
|
|
2711
|
-
*
|
|
2711
|
+
* Ausgabe-Support Methoden
|
|
2712
2712
|
*/
|
|
2713
|
-
|
|
2713
|
+
outputHelper: ScriptOutputHelperService;
|
|
2714
2714
|
|
|
2715
2715
|
/**
|
|
2716
2716
|
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
@@ -2733,14 +2733,14 @@ export interface ScriptingServiceList {
|
|
|
2733
2733
|
utils: ScriptingUtilities;
|
|
2734
2734
|
|
|
2735
2735
|
/**
|
|
2736
|
-
* Service zur Verarbeitung von
|
|
2736
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2737
2737
|
*/
|
|
2738
|
-
|
|
2738
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
2739
2739
|
|
|
2740
2740
|
/**
|
|
2741
|
-
* Service zur Verarbeitung von
|
|
2741
|
+
* Service zur Verarbeitung von Variantenschemas in Skripten
|
|
2742
2742
|
*/
|
|
2743
|
-
|
|
2743
|
+
variantSchemaService: VariantSchemaScriptingService;
|
|
2744
2744
|
|
|
2745
2745
|
/**
|
|
2746
2746
|
* Service zur Verarbeitung von Artikeln im Skripten
|
|
@@ -2768,14 +2768,14 @@ export interface ScriptingServiceList {
|
|
|
2768
2768
|
articleStorageService: ArticleStorageScriptingService;
|
|
2769
2769
|
|
|
2770
2770
|
/**
|
|
2771
|
-
*
|
|
2771
|
+
* Verwaltung von Zahlungsarten
|
|
2772
2772
|
*/
|
|
2773
|
-
|
|
2773
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
|
-
*
|
|
2776
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2777
2777
|
*/
|
|
2778
|
-
|
|
2778
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
2781
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
package/scripting/types.d.ts
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -999,14 +999,14 @@ export interface Article {
|
|
|
999
999
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
|
-
*
|
|
1002
|
+
* Gefahrgut Informationen
|
|
1003
1003
|
*/
|
|
1004
|
-
|
|
1004
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* Zolltarifnummer
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Product custom data
|
|
@@ -1024,14 +1024,14 @@ export interface Article {
|
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* is this product sellable without any quantity at the stock
|
|
1028
1028
|
*/
|
|
1029
|
-
|
|
1029
|
+
sellableWithoutStock: boolean;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
|
-
*
|
|
1032
|
+
* Seriennummern Auszeichnungsart
|
|
1033
1033
|
*/
|
|
1034
|
-
|
|
1034
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
1037
|
* Durchschnittl. EKP (Startwert)
|
|
@@ -1288,26 +1288,26 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
-
/**
|
|
1292
|
-
* reference to Product
|
|
1293
|
-
*/
|
|
1294
|
-
productRef: ApiObjectReference;
|
|
1295
|
-
|
|
1296
1291
|
/**
|
|
1297
1292
|
* Versandlabeldruck
|
|
1298
1293
|
*/
|
|
1299
1294
|
shippingLabelPrinting: boolean;
|
|
1300
1295
|
|
|
1301
1296
|
/**
|
|
1302
|
-
*
|
|
1297
|
+
* reference to Product
|
|
1303
1298
|
*/
|
|
1304
|
-
|
|
1299
|
+
productRef: ApiObjectReference;
|
|
1305
1300
|
|
|
1306
1301
|
/**
|
|
1307
1302
|
* alternative name of this product
|
|
1308
1303
|
*/
|
|
1309
1304
|
alternativeName: string;
|
|
1310
1305
|
|
|
1306
|
+
/**
|
|
1307
|
+
* Kontingentartikel
|
|
1308
|
+
*/
|
|
1309
|
+
contingentArticleRef: ApiObjectReference;
|
|
1310
|
+
|
|
1311
1311
|
/**
|
|
1312
1312
|
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
@@ -1503,6 +1503,11 @@ export interface ArticleCustomer {
|
|
|
1503
1503
|
*/
|
|
1504
1504
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1505
1505
|
|
|
1506
|
+
/**
|
|
1507
|
+
* Kunden-Preise
|
|
1508
|
+
*/
|
|
1509
|
+
productPrices: Array<ProductPrice>;
|
|
1510
|
+
|
|
1506
1511
|
/**
|
|
1507
1512
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1508
1513
|
*/
|
|
@@ -1513,11 +1518,6 @@ export interface ArticleCustomer {
|
|
|
1513
1518
|
*/
|
|
1514
1519
|
articleId: number;
|
|
1515
1520
|
|
|
1516
|
-
/**
|
|
1517
|
-
* Kunden-Preise
|
|
1518
|
-
*/
|
|
1519
|
-
productPrices: Array<ProductPrice>;
|
|
1520
|
-
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Aktiv?
|
|
1523
1523
|
*/
|
|
@@ -1716,14 +1716,14 @@ export interface ArticleListing {
|
|
|
1716
1716
|
alternativeName: WithDefaults<String>;
|
|
1717
1717
|
|
|
1718
1718
|
/**
|
|
1719
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1719
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1720
1720
|
*/
|
|
1721
|
-
|
|
1721
|
+
proposedLowestPriceNet: number;
|
|
1722
1722
|
|
|
1723
1723
|
/**
|
|
1724
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1724
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1725
1725
|
*/
|
|
1726
|
-
|
|
1726
|
+
customLowestPriceNet: number;
|
|
1727
1727
|
|
|
1728
1728
|
/**
|
|
1729
1729
|
* der aktuelle listing stand
|
|
@@ -1884,19 +1884,19 @@ export const enum ArticleSerialType {
|
|
|
1884
1884
|
export interface ArticleStorage {
|
|
1885
1885
|
|
|
1886
1886
|
/**
|
|
1887
|
-
*
|
|
1887
|
+
* Bestand im Lager
|
|
1888
1888
|
*/
|
|
1889
|
-
|
|
1889
|
+
quantityInStock: number;
|
|
1890
1890
|
|
|
1891
1891
|
/**
|
|
1892
|
-
*
|
|
1892
|
+
* Nachschub ab
|
|
1893
1893
|
*/
|
|
1894
|
-
|
|
1894
|
+
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* Aktuelle Menge in Kommissionierung
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
quantityInPicking: number;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Bestellte Menge
|
|
@@ -1904,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1904
1904
|
orderedQuantity: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Meldebestand
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
reorderPoint: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
virtualStockAmount: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Nachschub auf
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
replenishmentOn: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1986,11 +1986,6 @@ export interface ArticleStorage {
|
|
|
1986
1986
|
|
|
1987
1987
|
export interface ArticleSupplier {
|
|
1988
1988
|
|
|
1989
|
-
/**
|
|
1990
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1991
|
-
*/
|
|
1992
|
-
useSupplierArticleDescription: boolean;
|
|
1993
|
-
|
|
1994
1989
|
/**
|
|
1995
1990
|
* Anzeigename des Accounts
|
|
1996
1991
|
*/
|
|
@@ -2001,6 +1996,11 @@ export interface ArticleSupplier {
|
|
|
2001
1996
|
*/
|
|
2002
1997
|
supplierReportingStock: number;
|
|
2003
1998
|
|
|
1999
|
+
/**
|
|
2000
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2001
|
+
*/
|
|
2002
|
+
useSupplierArticleDescription: boolean;
|
|
2003
|
+
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2006
2006
|
*/
|
|
@@ -2056,26 +2056,26 @@ export interface ArticleSupplier {
|
|
|
2056
2056
|
*/
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
|
-
/**
|
|
2060
|
-
* Referenced Article name
|
|
2061
|
-
*/
|
|
2062
|
-
articleName: string;
|
|
2063
|
-
|
|
2064
2059
|
/**
|
|
2065
2060
|
* Verpackungseinheit
|
|
2066
2061
|
*/
|
|
2067
2062
|
packagingUnit: number;
|
|
2068
2063
|
|
|
2069
2064
|
/**
|
|
2070
|
-
* Referenced Article
|
|
2065
|
+
* Referenced Article name
|
|
2071
2066
|
*/
|
|
2072
|
-
|
|
2067
|
+
articleName: string;
|
|
2073
2068
|
|
|
2074
2069
|
/**
|
|
2075
2070
|
* Lieferanten-Preise
|
|
2076
2071
|
*/
|
|
2077
2072
|
productPrices: Array<ProductPrice>;
|
|
2078
2073
|
|
|
2074
|
+
/**
|
|
2075
|
+
* Referenced Article
|
|
2076
|
+
*/
|
|
2077
|
+
articleId: number;
|
|
2078
|
+
|
|
2079
2079
|
/**
|
|
2080
2080
|
* Aktiv?
|
|
2081
2081
|
*/
|
|
@@ -2112,14 +2112,14 @@ export interface ArticleSupplier {
|
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
2114
|
/**
|
|
2115
|
-
*
|
|
2115
|
+
* Einkaufseinheit
|
|
2116
2116
|
*/
|
|
2117
|
-
|
|
2117
|
+
purchaseUnit: number;
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
*
|
|
2120
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
orderOnComponentBase: boolean;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
2125
|
* Referenced Supplier-Account
|
|
@@ -2333,14 +2333,14 @@ export interface CountryReference {
|
|
|
2333
2333
|
export interface CreateNewDocumentRequest {
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
*
|
|
2336
|
+
* Belegart
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
documentTypeLabel: string;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
|
-
* Belegart
|
|
2341
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2342
2342
|
*/
|
|
2343
|
-
|
|
2343
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
2346
|
* Details zum Beleg
|
|
@@ -2565,14 +2565,14 @@ export interface CrmActivityType {
|
|
|
2565
2565
|
export interface CrmChecklistItem {
|
|
2566
2566
|
|
|
2567
2567
|
/**
|
|
2568
|
-
*
|
|
2568
|
+
* Ist das Element "angehakt"?
|
|
2569
2569
|
*/
|
|
2570
|
-
|
|
2570
|
+
checked: boolean;
|
|
2571
2571
|
|
|
2572
2572
|
/**
|
|
2573
|
-
*
|
|
2573
|
+
* Text des Checklisten-Elements
|
|
2574
2574
|
*/
|
|
2575
|
-
|
|
2575
|
+
memo: string;
|
|
2576
2576
|
|
|
2577
2577
|
/**
|
|
2578
2578
|
* Unique identifier of the Object
|
|
@@ -2683,14 +2683,14 @@ export interface CrmDeal {
|
|
|
2683
2683
|
info: MetaInfo;
|
|
2684
2684
|
|
|
2685
2685
|
/**
|
|
2686
|
-
*
|
|
2686
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2687
2687
|
*/
|
|
2688
|
-
|
|
2688
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2689
2689
|
|
|
2690
2690
|
/**
|
|
2691
|
-
*
|
|
2691
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2692
2692
|
*/
|
|
2693
|
-
|
|
2693
|
+
assignedUserRef: ApiObjectReference;
|
|
2694
2694
|
|
|
2695
2695
|
/**
|
|
2696
2696
|
* Chance (in Prozent)
|
|
@@ -3475,14 +3475,14 @@ export interface CrmTask {
|
|
|
3475
3475
|
parentRefs: Array<CrmObjectRef>;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
|
-
*
|
|
3478
|
+
* Beauftragte Zeit in Sekunden
|
|
3479
3479
|
*/
|
|
3480
|
-
|
|
3480
|
+
effortCommissioned: number;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
|
-
*
|
|
3483
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3484
3484
|
*/
|
|
3485
|
-
|
|
3485
|
+
externalRecordedTimes: number;
|
|
3486
3486
|
|
|
3487
3487
|
/**
|
|
3488
3488
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3714,14 +3714,14 @@ export interface Customer {
|
|
|
3714
3714
|
stackProcessingPriority: number;
|
|
3715
3715
|
|
|
3716
3716
|
/**
|
|
3717
|
-
*
|
|
3717
|
+
* reference to product price group
|
|
3718
3718
|
*/
|
|
3719
|
-
|
|
3719
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3720
3720
|
|
|
3721
3721
|
/**
|
|
3722
|
-
*
|
|
3722
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3723
3723
|
*/
|
|
3724
|
-
|
|
3724
|
+
collectiveInvoiceManually: boolean;
|
|
3725
3725
|
|
|
3726
3726
|
/**
|
|
3727
3727
|
* Unique identifier of the Object
|
|
@@ -4076,14 +4076,14 @@ export interface DeliveryTerm {
|
|
|
4076
4076
|
id: number;
|
|
4077
4077
|
|
|
4078
4078
|
/**
|
|
4079
|
-
*
|
|
4079
|
+
* Versandkostenartikel
|
|
4080
4080
|
*/
|
|
4081
|
-
|
|
4081
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4082
4082
|
|
|
4083
4083
|
/**
|
|
4084
|
-
*
|
|
4084
|
+
* free shipping net value
|
|
4085
4085
|
*/
|
|
4086
|
-
|
|
4086
|
+
freeShippingNetValue: number;
|
|
4087
4087
|
|
|
4088
4088
|
/**
|
|
4089
4089
|
* MetaInformations for this Object
|
|
@@ -4182,9 +4182,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4182
4182
|
deliveryQuantityPackages: number;
|
|
4183
4183
|
|
|
4184
4184
|
/**
|
|
4185
|
-
*
|
|
4185
|
+
* Steuerpflichtig oder steuerfrei
|
|
4186
4186
|
*/
|
|
4187
|
-
|
|
4187
|
+
taxable: boolean;
|
|
4188
4188
|
|
|
4189
4189
|
/**
|
|
4190
4190
|
* Leitweg-ID
|
|
@@ -4192,9 +4192,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4192
4192
|
buyerReference: string;
|
|
4193
4193
|
|
|
4194
4194
|
/**
|
|
4195
|
-
*
|
|
4195
|
+
* Bestellnummer aus Vorbeleg
|
|
4196
4196
|
*/
|
|
4197
|
-
|
|
4197
|
+
referencedOrderNumber: string;
|
|
4198
4198
|
|
|
4199
4199
|
/**
|
|
4200
4200
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4242,14 +4242,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4242
4242
|
accountId: number;
|
|
4243
4243
|
|
|
4244
4244
|
/**
|
|
4245
|
-
* Länderkennzeichen
|
|
4245
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4246
4246
|
*/
|
|
4247
|
-
|
|
4247
|
+
sourceCountryCode: string;
|
|
4248
4248
|
|
|
4249
4249
|
/**
|
|
4250
|
-
* Länderkennzeichen
|
|
4250
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4251
4251
|
*/
|
|
4252
|
-
|
|
4252
|
+
performanceCountryCode: string;
|
|
4253
4253
|
|
|
4254
4254
|
/**
|
|
4255
4255
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4311,6 +4311,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4311
4311
|
*/
|
|
4312
4312
|
posPayments: Array<DocumentPosPayment>;
|
|
4313
4313
|
|
|
4314
|
+
/**
|
|
4315
|
+
* Ist die Quittung bezahlt
|
|
4316
|
+
true wenn die Quittung bezahlt ist
|
|
4317
|
+
|
|
4318
|
+
*/
|
|
4319
|
+
posReceiptPayed: boolean;
|
|
4320
|
+
|
|
4314
4321
|
/**
|
|
4315
4322
|
* Kundennummer beim Lieferanten
|
|
4316
4323
|
*/
|
|
@@ -4321,13 +4328,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4321
4328
|
*/
|
|
4322
4329
|
maxDeliveries: number;
|
|
4323
4330
|
|
|
4324
|
-
/**
|
|
4325
|
-
* Ist die Quittung bezahlt
|
|
4326
|
-
true wenn die Quittung bezahlt ist
|
|
4327
|
-
|
|
4328
|
-
*/
|
|
4329
|
-
posReceiptPayed: boolean;
|
|
4330
|
-
|
|
4331
4331
|
/**
|
|
4332
4332
|
* Quittung: Summe Zahlbetrag
|
|
4333
4333
|
*/
|
|
@@ -4373,26 +4373,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4373
4373
|
*/
|
|
4374
4374
|
accountNumber: string;
|
|
4375
4375
|
|
|
4376
|
-
/**
|
|
4377
|
-
* Referenz auf Zahlungsbedingung
|
|
4378
|
-
*/
|
|
4379
|
-
paymentTermRef: PaymentTermRef;
|
|
4380
|
-
|
|
4381
4376
|
/**
|
|
4382
4377
|
* Wird vom Workflow verarbeitet?
|
|
4383
4378
|
*/
|
|
4384
4379
|
processedByWorkflow: boolean;
|
|
4385
4380
|
|
|
4386
4381
|
/**
|
|
4387
|
-
*
|
|
4382
|
+
* Referenz auf Zahlungsbedingung
|
|
4388
4383
|
*/
|
|
4389
|
-
|
|
4384
|
+
paymentTermRef: PaymentTermRef;
|
|
4390
4385
|
|
|
4391
4386
|
/**
|
|
4392
4387
|
* Preisanpassungen - Beleg Basiswährung
|
|
4393
4388
|
*/
|
|
4394
4389
|
baseTotalDocumentPriceModifier: number;
|
|
4395
4390
|
|
|
4391
|
+
/**
|
|
4392
|
+
* Telefon an Versender übergeben
|
|
4393
|
+
*/
|
|
4394
|
+
forwardPhoneToShipper: boolean;
|
|
4395
|
+
|
|
4396
4396
|
/**
|
|
4397
4397
|
* Liste der Belegtexte
|
|
4398
4398
|
*/
|
|
@@ -4413,26 +4413,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4413
4413
|
*/
|
|
4414
4414
|
defaultAddress: DocumentAddress;
|
|
4415
4415
|
|
|
4416
|
-
/**
|
|
4417
|
-
* Leistungsdatum
|
|
4418
|
-
*/
|
|
4419
|
-
performanceDate: ScriptingDate;
|
|
4420
|
-
|
|
4421
4416
|
/**
|
|
4422
4417
|
* Verarbeitungsoption für Stapel
|
|
4423
4418
|
*/
|
|
4424
4419
|
stackProcessingType: OrderStackProcessingType;
|
|
4425
4420
|
|
|
4426
4421
|
/**
|
|
4427
|
-
*
|
|
4422
|
+
* Leistungsdatum
|
|
4428
4423
|
*/
|
|
4429
|
-
|
|
4424
|
+
performanceDate: ScriptingDate;
|
|
4430
4425
|
|
|
4431
4426
|
/**
|
|
4432
4427
|
* EN16931-Profil für elektronische Rechnungen
|
|
4433
4428
|
*/
|
|
4434
4429
|
en16931Profile: EN16931Profile;
|
|
4435
4430
|
|
|
4431
|
+
/**
|
|
4432
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4433
|
+
*/
|
|
4434
|
+
dropShippingInvoiceApproved: boolean;
|
|
4435
|
+
|
|
4436
4436
|
/**
|
|
4437
4437
|
* Ort der steuerlichen Leistungserbringung
|
|
4438
4438
|
*/
|
|
@@ -4449,14 +4449,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4449
4449
|
additionalInfo: DocumentAdditionalInfo;
|
|
4450
4450
|
|
|
4451
4451
|
/**
|
|
4452
|
-
*
|
|
4452
|
+
* Bestelldatum
|
|
4453
4453
|
*/
|
|
4454
|
-
|
|
4454
|
+
orderedOn: ScriptingDate;
|
|
4455
4455
|
|
|
4456
4456
|
/**
|
|
4457
|
-
*
|
|
4457
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4458
4458
|
*/
|
|
4459
|
-
|
|
4459
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4460
4460
|
|
|
4461
4461
|
/**
|
|
4462
4462
|
* MetaInformations for this Object
|
|
@@ -4608,6 +4608,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4608
4608
|
*/
|
|
4609
4609
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4610
4610
|
|
|
4611
|
+
/**
|
|
4612
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4613
|
+
true wenn die Quittung ausbalanciert ist
|
|
4614
|
+
|
|
4615
|
+
*/
|
|
4616
|
+
posReceiptBalanced: boolean;
|
|
4617
|
+
|
|
4611
4618
|
/**
|
|
4612
4619
|
* Rückgeld
|
|
4613
4620
|
*/
|
|
@@ -4618,13 +4625,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4618
4625
|
*/
|
|
4619
4626
|
deliveryTermRef: ApiObjectReference;
|
|
4620
4627
|
|
|
4621
|
-
/**
|
|
4622
|
-
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4623
|
-
true wenn die Quittung ausbalanciert ist
|
|
4624
|
-
|
|
4625
|
-
*/
|
|
4626
|
-
posReceiptBalanced: boolean;
|
|
4627
|
-
|
|
4628
4628
|
/**
|
|
4629
4629
|
* Gesamtbruttogewicht
|
|
4630
4630
|
*/
|
|
@@ -4674,14 +4674,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4674
4674
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4675
4675
|
|
|
4676
4676
|
/**
|
|
4677
|
-
*
|
|
4677
|
+
* Herkunft der Sprache
|
|
4678
4678
|
*/
|
|
4679
|
-
|
|
4679
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4680
4680
|
|
|
4681
4681
|
/**
|
|
4682
|
-
*
|
|
4682
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4683
4683
|
*/
|
|
4684
|
-
|
|
4684
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4685
4685
|
|
|
4686
4686
|
/**
|
|
4687
4687
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -4694,14 +4694,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4694
4694
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4695
4695
|
|
|
4696
4696
|
/**
|
|
4697
|
-
*
|
|
4697
|
+
* Herkunft des Berechnungsmodus
|
|
4698
4698
|
*/
|
|
4699
|
-
|
|
4699
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4700
4700
|
|
|
4701
4701
|
/**
|
|
4702
|
-
*
|
|
4702
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4703
4703
|
*/
|
|
4704
|
-
|
|
4704
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4705
4705
|
|
|
4706
4706
|
/**
|
|
4707
4707
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5032,14 +5032,14 @@ export interface DocumentContractDetail {
|
|
|
5032
5032
|
runtimeToDate: ScriptingDate;
|
|
5033
5033
|
|
|
5034
5034
|
/**
|
|
5035
|
-
*
|
|
5035
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5036
5036
|
*/
|
|
5037
|
-
|
|
5037
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5038
5038
|
|
|
5039
5039
|
/**
|
|
5040
|
-
*
|
|
5040
|
+
* Nächste Fälligkeit
|
|
5041
5041
|
*/
|
|
5042
|
-
|
|
5042
|
+
nextDueDate: ScriptingDate;
|
|
5043
5043
|
|
|
5044
5044
|
/**
|
|
5045
5045
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5070,14 +5070,14 @@ export interface DocumentFabricationDetail {
|
|
|
5070
5070
|
targetStorageRef: ApiObjectReference;
|
|
5071
5071
|
|
|
5072
5072
|
/**
|
|
5073
|
-
*
|
|
5073
|
+
* Material-Lager
|
|
5074
5074
|
*/
|
|
5075
|
-
|
|
5075
|
+
componentsStorageRef: ApiObjectReference;
|
|
5076
5076
|
|
|
5077
5077
|
/**
|
|
5078
|
-
*
|
|
5078
|
+
* Notiz
|
|
5079
5079
|
*/
|
|
5080
|
-
|
|
5080
|
+
note: string;
|
|
5081
5081
|
|
|
5082
5082
|
/**
|
|
5083
5083
|
* QS-Lager
|
|
@@ -5274,14 +5274,14 @@ export interface DocumentLine {
|
|
|
5274
5274
|
number: string;
|
|
5275
5275
|
|
|
5276
5276
|
/**
|
|
5277
|
-
*
|
|
5277
|
+
* Referenz zur Kundenauftragszeile
|
|
5278
5278
|
*/
|
|
5279
|
-
|
|
5279
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5280
5280
|
|
|
5281
5281
|
/**
|
|
5282
|
-
*
|
|
5282
|
+
* Gesamtbruttogewicht
|
|
5283
5283
|
*/
|
|
5284
|
-
|
|
5284
|
+
totalGrossWeight: number;
|
|
5285
5285
|
|
|
5286
5286
|
/**
|
|
5287
5287
|
* skontierbare Position?
|
|
@@ -5343,6 +5343,11 @@ export interface DocumentLine {
|
|
|
5343
5343
|
*/
|
|
5344
5344
|
id: number;
|
|
5345
5345
|
|
|
5346
|
+
/**
|
|
5347
|
+
* Externe Referenz zum VDS-Paket
|
|
5348
|
+
*/
|
|
5349
|
+
externalReferenceVds: string;
|
|
5350
|
+
|
|
5346
5351
|
/**
|
|
5347
5352
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5348
5353
|
*/
|
|
@@ -5353,11 +5358,6 @@ export interface DocumentLine {
|
|
|
5353
5358
|
*/
|
|
5354
5359
|
basePrice: number;
|
|
5355
5360
|
|
|
5356
|
-
/**
|
|
5357
|
-
* Externe Referenz zum VDS-Paket
|
|
5358
|
-
*/
|
|
5359
|
-
externalReferenceVds: string;
|
|
5360
|
-
|
|
5361
5361
|
/**
|
|
5362
5362
|
* Serientyp
|
|
5363
5363
|
*/
|
|
@@ -5529,14 +5529,14 @@ export interface DocumentLine {
|
|
|
5529
5529
|
unitType: UnitTypeReference;
|
|
5530
5530
|
|
|
5531
5531
|
/**
|
|
5532
|
-
*
|
|
5532
|
+
* Referenz zur Basiszeile
|
|
5533
5533
|
*/
|
|
5534
|
-
|
|
5534
|
+
baseLineId: number;
|
|
5535
5535
|
|
|
5536
5536
|
/**
|
|
5537
|
-
*
|
|
5537
|
+
* Zubehör Einfügeart
|
|
5538
5538
|
*/
|
|
5539
|
-
|
|
5539
|
+
insertTerm: AccessoryInsertTerm;
|
|
5540
5540
|
|
|
5541
5541
|
/**
|
|
5542
5542
|
* Einheit Bruttogewicht
|
|
@@ -5808,14 +5808,14 @@ export interface DocumentLineComponent {
|
|
|
5808
5808
|
custom: EavDocumentlinecomponent;
|
|
5809
5809
|
|
|
5810
5810
|
/**
|
|
5811
|
-
*
|
|
5811
|
+
* Gelieferte Menge
|
|
5812
5812
|
*/
|
|
5813
|
-
|
|
5813
|
+
quantityCommitted: number;
|
|
5814
5814
|
|
|
5815
5815
|
/**
|
|
5816
|
-
*
|
|
5816
|
+
* Referenz auf den Artikel der Komponente
|
|
5817
5817
|
*/
|
|
5818
|
-
|
|
5818
|
+
articleId: number;
|
|
5819
5819
|
|
|
5820
5820
|
/**
|
|
5821
5821
|
* Beschreibung des Artikels
|
|
@@ -6121,14 +6121,14 @@ export interface DocumentLinePosDetail {
|
|
|
6121
6121
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6122
6122
|
|
|
6123
6123
|
/**
|
|
6124
|
-
*
|
|
6124
|
+
* Status der externen Zahlung
|
|
6125
6125
|
*/
|
|
6126
|
-
|
|
6126
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6127
6127
|
|
|
6128
6128
|
/**
|
|
6129
|
-
*
|
|
6129
|
+
* Typ der Einlage/Ausgabe
|
|
6130
6130
|
*/
|
|
6131
|
-
|
|
6131
|
+
depositExpenseTypeId: number;
|
|
6132
6132
|
|
|
6133
6133
|
/**
|
|
6134
6134
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6387,14 +6387,14 @@ export interface DocumentPosPayment {
|
|
|
6387
6387
|
version: number;
|
|
6388
6388
|
|
|
6389
6389
|
/**
|
|
6390
|
-
*
|
|
6390
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6391
6391
|
*/
|
|
6392
|
-
|
|
6392
|
+
withdrawalAmount: number;
|
|
6393
6393
|
|
|
6394
6394
|
/**
|
|
6395
|
-
*
|
|
6395
|
+
* Zahlungsart
|
|
6396
6396
|
*/
|
|
6397
|
-
|
|
6397
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6398
6398
|
|
|
6399
6399
|
/**
|
|
6400
6400
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6542,14 +6542,14 @@ export const enum DocumentRounding {
|
|
|
6542
6542
|
export interface DocumentShippingCost {
|
|
6543
6543
|
|
|
6544
6544
|
/**
|
|
6545
|
-
*
|
|
6545
|
+
* Die Versandkosten
|
|
6546
6546
|
*/
|
|
6547
|
-
|
|
6547
|
+
costs: number;
|
|
6548
6548
|
|
|
6549
6549
|
/**
|
|
6550
|
-
*
|
|
6550
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6551
6551
|
*/
|
|
6552
|
-
|
|
6552
|
+
manualCosts: boolean;
|
|
6553
6553
|
|
|
6554
6554
|
/**
|
|
6555
6555
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6677,14 +6677,14 @@ export interface DocumentText {
|
|
|
6677
6677
|
transferableIntoSubsequentDocuments: boolean;
|
|
6678
6678
|
|
|
6679
6679
|
/**
|
|
6680
|
-
*
|
|
6680
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6681
6681
|
*/
|
|
6682
|
-
|
|
6682
|
+
deleted: boolean;
|
|
6683
6683
|
|
|
6684
6684
|
/**
|
|
6685
|
-
*
|
|
6685
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6686
6686
|
*/
|
|
6687
|
-
|
|
6687
|
+
textPosition: TextPosition;
|
|
6688
6688
|
|
|
6689
6689
|
/**
|
|
6690
6690
|
* textBaustein Vorlage
|
|
@@ -7369,14 +7369,14 @@ export interface FabricationRevertRequest {
|
|
|
7369
7369
|
export interface FabricationSerialNumber {
|
|
7370
7370
|
|
|
7371
7371
|
/**
|
|
7372
|
-
*
|
|
7372
|
+
* MHD / Verfallsdatum
|
|
7373
7373
|
*/
|
|
7374
|
-
|
|
7374
|
+
expiryDate: ScriptingDate;
|
|
7375
7375
|
|
|
7376
7376
|
/**
|
|
7377
|
-
*
|
|
7377
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7378
7378
|
*/
|
|
7379
|
-
|
|
7379
|
+
serialNumberId: number;
|
|
7380
7380
|
|
|
7381
7381
|
/**
|
|
7382
7382
|
* Bemerkung
|
|
@@ -7668,26 +7668,26 @@ export interface OpenItem {
|
|
|
7668
7668
|
*/
|
|
7669
7669
|
paymentDueDate: ScriptingDate;
|
|
7670
7670
|
|
|
7671
|
-
/**
|
|
7672
|
-
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7673
|
-
*/
|
|
7674
|
-
performanceCountryCode: string;
|
|
7675
|
-
|
|
7676
7671
|
/**
|
|
7677
7672
|
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7678
7673
|
*/
|
|
7679
7674
|
sourceCountryCode: string;
|
|
7680
7675
|
|
|
7681
7676
|
/**
|
|
7682
|
-
*
|
|
7677
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7683
7678
|
*/
|
|
7684
|
-
|
|
7679
|
+
performanceCountryCode: string;
|
|
7685
7680
|
|
|
7686
7681
|
/**
|
|
7687
7682
|
* Valutadatum schreibgeschützt
|
|
7688
7683
|
*/
|
|
7689
7684
|
valueDateReadOnly: boolean;
|
|
7690
7685
|
|
|
7686
|
+
/**
|
|
7687
|
+
* agreed Deposit payment date
|
|
7688
|
+
*/
|
|
7689
|
+
depositPaymentDate: ScriptingDate;
|
|
7690
|
+
|
|
7691
7691
|
/**
|
|
7692
7692
|
* Does this open item belong to accounts payable or accounts receivable
|
|
7693
7693
|
*/
|
|
@@ -8127,14 +8127,14 @@ export interface OpenItemRecord {
|
|
|
8127
8127
|
version: number;
|
|
8128
8128
|
|
|
8129
8129
|
/**
|
|
8130
|
-
*
|
|
8130
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8131
8131
|
*/
|
|
8132
|
-
|
|
8132
|
+
transactionId: number;
|
|
8133
8133
|
|
|
8134
8134
|
/**
|
|
8135
|
-
*
|
|
8135
|
+
* Buchungsbetrag in Basiswährung
|
|
8136
8136
|
*/
|
|
8137
|
-
|
|
8137
|
+
baseAmount: number;
|
|
8138
8138
|
|
|
8139
8139
|
/**
|
|
8140
8140
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8152,14 +8152,14 @@ export interface OpenItemRecord {
|
|
|
8152
8152
|
totalAmount: number;
|
|
8153
8153
|
|
|
8154
8154
|
/**
|
|
8155
|
-
*
|
|
8155
|
+
* id des records, der diesen storniert hat
|
|
8156
8156
|
*/
|
|
8157
|
-
|
|
8157
|
+
revertedByRecordId: number;
|
|
8158
8158
|
|
|
8159
8159
|
/**
|
|
8160
|
-
*
|
|
8160
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8161
8161
|
*/
|
|
8162
|
-
|
|
8162
|
+
baseCurrencyCode: string;
|
|
8163
8163
|
|
|
8164
8164
|
/**
|
|
8165
8165
|
* qualifier of open item
|
|
@@ -8963,14 +8963,14 @@ export interface PicklistLineComponent {
|
|
|
8963
8963
|
targetDocumentLineComponentId: number;
|
|
8964
8964
|
|
|
8965
8965
|
/**
|
|
8966
|
-
*
|
|
8966
|
+
* abweichende Artikelbezeichnung
|
|
8967
8967
|
*/
|
|
8968
|
-
|
|
8968
|
+
articleAlternativeName: string;
|
|
8969
8969
|
|
|
8970
8970
|
/**
|
|
8971
|
-
*
|
|
8971
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8972
8972
|
*/
|
|
8973
|
-
|
|
8973
|
+
quantityPerAssemblyGroup: number;
|
|
8974
8974
|
|
|
8975
8975
|
/**
|
|
8976
8976
|
* Verpackte Menge der Position
|
|
@@ -9148,11 +9148,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9148
9148
|
*/
|
|
9149
9149
|
alternativeSelectionInVql: string;
|
|
9150
9150
|
|
|
9151
|
-
/**
|
|
9152
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9153
|
-
*/
|
|
9154
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9155
|
-
|
|
9156
9151
|
/**
|
|
9157
9152
|
* Nur vollständig lieferbare Positionen
|
|
9158
9153
|
*/
|
|
@@ -9163,6 +9158,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9163
9158
|
*/
|
|
9164
9159
|
maxOrderCount: number;
|
|
9165
9160
|
|
|
9161
|
+
/**
|
|
9162
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9163
|
+
*/
|
|
9164
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9165
|
+
|
|
9166
9166
|
/**
|
|
9167
9167
|
* Selektion über den Bereich vom Belegdatum
|
|
9168
9168
|
*/
|
|
@@ -9237,14 +9237,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9237
9237
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9238
9238
|
|
|
9239
9239
|
/**
|
|
9240
|
-
*
|
|
9240
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9241
9241
|
*/
|
|
9242
|
-
|
|
9242
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9243
9243
|
|
|
9244
9244
|
/**
|
|
9245
|
-
*
|
|
9245
|
+
* Der zu verwendende Pickwagen
|
|
9246
9246
|
*/
|
|
9247
|
-
|
|
9247
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9248
9248
|
|
|
9249
9249
|
/**
|
|
9250
9250
|
* Lagerplätze vorgeben
|
|
@@ -9305,14 +9305,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9305
9305
|
alwaysShowDeliveryMethod: boolean;
|
|
9306
9306
|
|
|
9307
9307
|
/**
|
|
9308
|
-
*
|
|
9308
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9309
9309
|
*/
|
|
9310
|
-
|
|
9310
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9311
9311
|
|
|
9312
9312
|
/**
|
|
9313
|
-
*
|
|
9313
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9314
9314
|
*/
|
|
9315
|
-
|
|
9315
|
+
autoPrintDeliveryDocument: boolean;
|
|
9316
9316
|
|
|
9317
9317
|
/**
|
|
9318
9318
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -9320,9 +9320,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9320
9320
|
showShippingFormOnPickingFinish: boolean;
|
|
9321
9321
|
|
|
9322
9322
|
/**
|
|
9323
|
-
*
|
|
9323
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9324
9324
|
*/
|
|
9325
|
-
|
|
9325
|
+
allowPickingOfServiceArticles: boolean;
|
|
9326
9326
|
|
|
9327
9327
|
/**
|
|
9328
9328
|
* Sammelbestätigung erlauben
|
|
@@ -9330,14 +9330,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9330
9330
|
allowFullConfirmation: boolean;
|
|
9331
9331
|
|
|
9332
9332
|
/**
|
|
9333
|
-
* Sollen
|
|
9333
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9334
9334
|
*/
|
|
9335
|
-
|
|
9335
|
+
printLabelOnScan: boolean;
|
|
9336
9336
|
|
|
9337
9337
|
/**
|
|
9338
|
-
*
|
|
9338
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9339
9339
|
*/
|
|
9340
|
-
|
|
9340
|
+
useDigitalPicklist: boolean;
|
|
9341
9341
|
|
|
9342
9342
|
/**
|
|
9343
9343
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9365,14 +9365,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9365
9365
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9366
9366
|
|
|
9367
9367
|
/**
|
|
9368
|
-
*
|
|
9368
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9369
9369
|
*/
|
|
9370
|
-
|
|
9370
|
+
autoDeterminationOfLots: boolean;
|
|
9371
9371
|
|
|
9372
9372
|
/**
|
|
9373
|
-
*
|
|
9373
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9374
9374
|
*/
|
|
9375
|
-
|
|
9375
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9376
9376
|
|
|
9377
9377
|
/**
|
|
9378
9378
|
* Zielmengen in Masken verstecken?
|
|
@@ -9448,14 +9448,14 @@ export interface PriceSelectionCriteria {
|
|
|
9448
9448
|
quantity: number;
|
|
9449
9449
|
|
|
9450
9450
|
/**
|
|
9451
|
-
* Liste von
|
|
9451
|
+
* Liste von Account-IDs
|
|
9452
9452
|
*/
|
|
9453
|
-
|
|
9453
|
+
accountIds: Array<number>;
|
|
9454
9454
|
|
|
9455
9455
|
/**
|
|
9456
|
-
* Liste von
|
|
9456
|
+
* Liste von Artikel-IDs
|
|
9457
9457
|
*/
|
|
9458
|
-
|
|
9458
|
+
articleIds: Array<number>;
|
|
9459
9459
|
|
|
9460
9460
|
/**
|
|
9461
9461
|
* ein qualifier
|
|
@@ -9707,14 +9707,14 @@ export interface ProductDiscount {
|
|
|
9707
9707
|
modifierValueType: ValueType;
|
|
9708
9708
|
|
|
9709
9709
|
/**
|
|
9710
|
-
*
|
|
9710
|
+
* Account, für den der Rabatt gültig ist
|
|
9711
9711
|
*/
|
|
9712
|
-
|
|
9712
|
+
accountRef: ApiObjectReference;
|
|
9713
9713
|
|
|
9714
9714
|
/**
|
|
9715
|
-
*
|
|
9715
|
+
* Name des Rabatts
|
|
9716
9716
|
*/
|
|
9717
|
-
|
|
9717
|
+
modifierName: string;
|
|
9718
9718
|
|
|
9719
9719
|
/**
|
|
9720
9720
|
* Unique identifier of the Object
|
|
@@ -10056,14 +10056,14 @@ export interface RequestDocument {
|
|
|
10056
10056
|
cashDrawerId: number;
|
|
10057
10057
|
|
|
10058
10058
|
/**
|
|
10059
|
-
*
|
|
10059
|
+
* Der Anzahlungsbetrag
|
|
10060
10060
|
*/
|
|
10061
|
-
|
|
10061
|
+
depositPaymentAmount: number;
|
|
10062
10062
|
|
|
10063
10063
|
/**
|
|
10064
|
-
*
|
|
10064
|
+
* Leistungsdatum
|
|
10065
10065
|
*/
|
|
10066
|
-
|
|
10066
|
+
performanceDate: ScriptingDate;
|
|
10067
10067
|
|
|
10068
10068
|
/**
|
|
10069
10069
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -11227,14 +11227,14 @@ export interface ShelfFile {
|
|
|
11227
11227
|
version: number;
|
|
11228
11228
|
|
|
11229
11229
|
/**
|
|
11230
|
-
*
|
|
11230
|
+
* meta data
|
|
11231
11231
|
*/
|
|
11232
|
-
|
|
11232
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11233
11233
|
|
|
11234
11234
|
/**
|
|
11235
|
-
*
|
|
11235
|
+
* current reference of this file in our storage
|
|
11236
11236
|
*/
|
|
11237
|
-
|
|
11237
|
+
storageHandle: string;
|
|
11238
11238
|
|
|
11239
11239
|
/**
|
|
11240
11240
|
* MetaInformations for this Object
|
|
@@ -11415,14 +11415,14 @@ export interface Stock {
|
|
|
11415
11415
|
storageBinId: number;
|
|
11416
11416
|
|
|
11417
11417
|
/**
|
|
11418
|
-
*
|
|
11418
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
11419
11419
|
*/
|
|
11420
|
-
|
|
11420
|
+
reservedSerialQuantity: number;
|
|
11421
11421
|
|
|
11422
11422
|
/**
|
|
11423
|
-
*
|
|
11423
|
+
* Artikel
|
|
11424
11424
|
*/
|
|
11425
|
-
|
|
11425
|
+
articleId: number;
|
|
11426
11426
|
}
|
|
11427
11427
|
|
|
11428
11428
|
export const enum StockJournalFactor {
|
|
@@ -11807,14 +11807,14 @@ export interface TagDto {
|
|
|
11807
11807
|
editColor: string;
|
|
11808
11808
|
|
|
11809
11809
|
/**
|
|
11810
|
-
* Farbe
|
|
11810
|
+
* Farbe in Such-GUI
|
|
11811
11811
|
*/
|
|
11812
|
-
|
|
11812
|
+
searchColor: string;
|
|
11813
11813
|
|
|
11814
11814
|
/**
|
|
11815
|
-
* Farbe
|
|
11815
|
+
* Farbe für die Anzeige des Tags
|
|
11816
11816
|
*/
|
|
11817
|
-
|
|
11817
|
+
color: string;
|
|
11818
11818
|
|
|
11819
11819
|
/**
|
|
11820
11820
|
* Beschriftung des Tags
|
|
@@ -12171,14 +12171,14 @@ export interface User {
|
|
|
12171
12171
|
id: number;
|
|
12172
12172
|
|
|
12173
12173
|
/**
|
|
12174
|
-
*
|
|
12174
|
+
* username
|
|
12175
12175
|
*/
|
|
12176
|
-
|
|
12176
|
+
username: string;
|
|
12177
12177
|
|
|
12178
12178
|
/**
|
|
12179
|
-
*
|
|
12179
|
+
* Valid to
|
|
12180
12180
|
*/
|
|
12181
|
-
|
|
12181
|
+
validTo: ScriptingDateTime;
|
|
12182
12182
|
|
|
12183
12183
|
/**
|
|
12184
12184
|
* MetaInformations for this Object
|
|
@@ -12361,14 +12361,14 @@ export interface VariantValue {
|
|
|
12361
12361
|
version: number;
|
|
12362
12362
|
|
|
12363
12363
|
/**
|
|
12364
|
-
*
|
|
12364
|
+
* Variantenattribut
|
|
12365
12365
|
*/
|
|
12366
|
-
|
|
12366
|
+
attributeRef: ApiObjectReference;
|
|
12367
12367
|
|
|
12368
12368
|
/**
|
|
12369
|
-
*
|
|
12369
|
+
* Mehrsprachige Bezeichnungen
|
|
12370
12370
|
*/
|
|
12371
|
-
|
|
12371
|
+
labels: Array<VariantDescription>;
|
|
12372
12372
|
|
|
12373
12373
|
/**
|
|
12374
12374
|
* MetaInformations for this Object
|