@vario-software/types 2026.25.1 → 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 +38 -38
- package/scripting/types.d.ts +245 -245
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
|
|
@@ -2678,14 +2678,14 @@ export interface ScriptingServiceList {
|
|
|
2678
2678
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
|
-
*
|
|
2681
|
+
* Verwaltung von Versandarten
|
|
2682
2682
|
*/
|
|
2683
|
-
|
|
2683
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2684
2684
|
|
|
2685
2685
|
/**
|
|
2686
|
-
*
|
|
2686
|
+
* Logging im Scripting
|
|
2687
2687
|
*/
|
|
2688
|
-
|
|
2688
|
+
logger: LoggingScriptingService;
|
|
2689
2689
|
|
|
2690
2690
|
/**
|
|
2691
2691
|
* Service zur Verarbeitung von Deals
|
|
@@ -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
|
|
@@ -2933,24 +2933,24 @@ export interface ShelfDocumentScriptingService {
|
|
|
2933
2933
|
deleteAttribution(attributionId: number): void;
|
|
2934
2934
|
|
|
2935
2935
|
/**
|
|
2936
|
-
* Lädt eine Datei von einer URL
|
|
2936
|
+
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
2937
2937
|
*
|
|
2938
2938
|
* @param {string} url - Download-URL
|
|
2939
|
-
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
2940
|
-
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
2941
2939
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
2942
2940
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
2943
2941
|
*/
|
|
2944
|
-
downloadIntoDMS(url: string,
|
|
2942
|
+
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
2945
2943
|
|
|
2946
2944
|
/**
|
|
2947
|
-
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
2945
|
+
* Lädt eine Datei von einer URL mit Authentifizierung herunter und erstellt ein neues DMS-Dokument
|
|
2948
2946
|
*
|
|
2949
2947
|
* @param {string} url - Download-URL
|
|
2948
|
+
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
2949
|
+
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
2950
2950
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
2951
2951
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
2952
2952
|
*/
|
|
2953
|
-
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
2953
|
+
downloadIntoDMS(url: string, authenticationType: EScriptingAuthenticationType, authValue: string, documentTypeKey: string): ShelfDocument;
|
|
2954
2954
|
|
|
2955
2955
|
/**
|
|
2956
2956
|
* Findet ein Dokumentenart über ihren Schlüssel
|
package/scripting/types.d.ts
CHANGED
|
@@ -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
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Street
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
street: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Country code
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
countryCode: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -1209,14 +1209,14 @@ export interface Article {
|
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
|
-
*
|
|
1212
|
+
* description custom data
|
|
1213
1213
|
*/
|
|
1214
|
-
|
|
1214
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1215
1215
|
|
|
1216
1216
|
/**
|
|
1217
|
-
*
|
|
1217
|
+
* Frei kommissionierbar
|
|
1218
1218
|
*/
|
|
1219
|
-
|
|
1219
|
+
freelyPickable: boolean;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
@@ -1299,9 +1299,9 @@ export interface Article {
|
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* alternative name of this product
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
alternativeName: string;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
1307
|
* Kontingentartikel
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* Nur manuelle Produktion
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
onlyManualFabrication: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* provisionsberechtiger Artikel?
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
commissionable: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1894,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
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
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Sollbestand
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
targetStock: number;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Vorgabe-Lagerplätze
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1970
1970
|
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1992,14 +1992,14 @@ export interface ArticleSupplier {
|
|
|
1992
1992
|
accountDisplayName: string;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
|
-
*
|
|
1995
|
+
* Lieferanten-Meldebestand
|
|
1996
1996
|
*/
|
|
1997
|
-
|
|
1997
|
+
supplierReportingStock: number;
|
|
1998
1998
|
|
|
1999
1999
|
/**
|
|
2000
|
-
*
|
|
2000
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2001
2001
|
*/
|
|
2002
|
-
|
|
2002
|
+
useSupplierArticleDescription: boolean;
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Verpackungseinheit
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
packagingUnit: number;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Referenced Article name
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
articleName: string;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2097,14 +2097,14 @@ export interface ArticleSupplier {
|
|
|
2097
2097
|
dropShippingAllowed: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
* Abweichende
|
|
2100
|
+
* Abweichende Produktbeschreibung
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierArticleDescription: string;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
|
-
* Abweichende
|
|
2105
|
+
* Abweichende Produktbezeichnung
|
|
2106
2106
|
*/
|
|
2107
|
-
|
|
2107
|
+
supplierArticleName: string;
|
|
2108
2108
|
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Standardpreis Netto
|
|
@@ -2406,14 +2406,14 @@ export interface CrmActivity {
|
|
|
2406
2406
|
info: MetaInfo;
|
|
2407
2407
|
|
|
2408
2408
|
/**
|
|
2409
|
-
*
|
|
2409
|
+
* geplante Dauer
|
|
2410
2410
|
*/
|
|
2411
|
-
|
|
2411
|
+
plannedDurationInSeconds: number;
|
|
2412
2412
|
|
|
2413
2413
|
/**
|
|
2414
|
-
*
|
|
2414
|
+
* Aktivität intern abgerechnet?
|
|
2415
2415
|
*/
|
|
2416
|
-
|
|
2416
|
+
internalBilled: boolean;
|
|
2417
2417
|
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2964,14 +2964,14 @@ export interface CrmProject {
|
|
|
2964
2964
|
priorityRef: ApiObjectReference;
|
|
2965
2965
|
|
|
2966
2966
|
/**
|
|
2967
|
-
*
|
|
2967
|
+
* Phase
|
|
2968
2968
|
*/
|
|
2969
|
-
|
|
2969
|
+
phaseRef: ApiObjectReference;
|
|
2970
2970
|
|
|
2971
2971
|
/**
|
|
2972
|
-
*
|
|
2972
|
+
* Projektleiter vom Auftragnehmer
|
|
2973
2973
|
*/
|
|
2974
|
-
|
|
2974
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2975
2975
|
|
|
2976
2976
|
/**
|
|
2977
2977
|
* Aufgaben-Nummer
|
|
@@ -3274,6 +3274,11 @@ export interface CrmSubType {
|
|
|
3274
3274
|
|
|
3275
3275
|
export interface CrmTask {
|
|
3276
3276
|
|
|
3277
|
+
/**
|
|
3278
|
+
* Liste von Erinnerungen
|
|
3279
|
+
*/
|
|
3280
|
+
reminders: Array<CrmReminder>;
|
|
3281
|
+
|
|
3277
3282
|
/**
|
|
3278
3283
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3279
3284
|
*/
|
|
@@ -3284,11 +3289,6 @@ export interface CrmTask {
|
|
|
3284
3289
|
*/
|
|
3285
3290
|
customerOfferRef: DocumentRef;
|
|
3286
3291
|
|
|
3287
|
-
/**
|
|
3288
|
-
* Liste von Erinnerungen
|
|
3289
|
-
*/
|
|
3290
|
-
reminders: Array<CrmReminder>;
|
|
3291
|
-
|
|
3292
3292
|
/**
|
|
3293
3293
|
* Notizen
|
|
3294
3294
|
*/
|
|
@@ -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
|
|
@@ -3958,14 +3958,14 @@ export interface DeliveryMethod {
|
|
|
3958
3958
|
defaultSizeUnit: UnitTypeReference;
|
|
3959
3959
|
|
|
3960
3960
|
/**
|
|
3961
|
-
*
|
|
3961
|
+
* Quelle für Paketgewicht
|
|
3962
3962
|
*/
|
|
3963
|
-
|
|
3963
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* translations
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
translations: Array<DocumentTypeTerm>;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
3971
|
* Versand-Anbieter
|
|
@@ -4056,14 +4056,14 @@ export interface DeliveryTerm {
|
|
|
4056
4056
|
version: number;
|
|
4057
4057
|
|
|
4058
4058
|
/**
|
|
4059
|
-
*
|
|
4059
|
+
* information, how the shipping charges should be calculated
|
|
4060
4060
|
*/
|
|
4061
|
-
|
|
4061
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4062
4062
|
|
|
4063
4063
|
/**
|
|
4064
|
-
*
|
|
4064
|
+
* translations
|
|
4065
4065
|
*/
|
|
4066
|
-
|
|
4066
|
+
translations: Array<DocumentTypeTerm>;
|
|
4067
4067
|
|
|
4068
4068
|
/**
|
|
4069
4069
|
* Lieferarten
|
|
@@ -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
|
|
@@ -4181,6 +4181,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4181
4181
|
*/
|
|
4182
4182
|
deliveryQuantityPackages: number;
|
|
4183
4183
|
|
|
4184
|
+
/**
|
|
4185
|
+
* Steuerpflichtig oder steuerfrei
|
|
4186
|
+
*/
|
|
4187
|
+
taxable: boolean;
|
|
4188
|
+
|
|
4184
4189
|
/**
|
|
4185
4190
|
* Leitweg-ID
|
|
4186
4191
|
*/
|
|
@@ -4191,11 +4196,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4191
4196
|
*/
|
|
4192
4197
|
referencedOrderNumber: string;
|
|
4193
4198
|
|
|
4194
|
-
/**
|
|
4195
|
-
* Steuerpflichtig oder steuerfrei
|
|
4196
|
-
*/
|
|
4197
|
-
taxable: boolean;
|
|
4198
|
-
|
|
4199
4199
|
/**
|
|
4200
4200
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4201
4201
|
*/
|
|
@@ -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
|
|
@@ -4348,25 +4348,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4348
4348
|
*/
|
|
4349
4349
|
contractDetail: DocumentContractDetail;
|
|
4350
4350
|
|
|
4351
|
-
/**
|
|
4352
|
-
* Zahlungsplan vorhanden?
|
|
4353
|
-
*/
|
|
4354
|
-
paymentPlan: boolean;
|
|
4355
|
-
|
|
4356
4351
|
/**
|
|
4357
4352
|
* Skontofähiger Bruttogesamtbetrag
|
|
4358
4353
|
*/
|
|
4359
4354
|
cashDiscountableTotalGrossPrice: number;
|
|
4360
4355
|
|
|
4361
4356
|
/**
|
|
4362
|
-
*
|
|
4357
|
+
* Zahlungsplan vorhanden?
|
|
4363
4358
|
*/
|
|
4364
|
-
|
|
4359
|
+
paymentPlan: boolean;
|
|
4365
4360
|
|
|
4366
4361
|
/**
|
|
4367
|
-
*
|
|
4362
|
+
* Produktionsdetails
|
|
4368
4363
|
*/
|
|
4369
|
-
|
|
4364
|
+
fabricationDetail: DocumentFabricationDetail;
|
|
4370
4365
|
|
|
4371
4366
|
/**
|
|
4372
4367
|
* Berechnungsmodus
|
|
@@ -4374,15 +4369,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4374
4369
|
calculationMode: CalculationMode;
|
|
4375
4370
|
|
|
4376
4371
|
/**
|
|
4377
|
-
*
|
|
4372
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4378
4373
|
*/
|
|
4379
|
-
|
|
4374
|
+
accountNumber: string;
|
|
4380
4375
|
|
|
4381
4376
|
/**
|
|
4382
4377
|
* Wird vom Workflow verarbeitet?
|
|
4383
4378
|
*/
|
|
4384
4379
|
processedByWorkflow: boolean;
|
|
4385
4380
|
|
|
4381
|
+
/**
|
|
4382
|
+
* Referenz auf Zahlungsbedingung
|
|
4383
|
+
*/
|
|
4384
|
+
paymentTermRef: PaymentTermRef;
|
|
4385
|
+
|
|
4386
4386
|
/**
|
|
4387
4387
|
* Preisanpassungen - Beleg Basiswährung
|
|
4388
4388
|
*/
|
|
@@ -4414,14 +4414,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4414
4414
|
defaultAddress: DocumentAddress;
|
|
4415
4415
|
|
|
4416
4416
|
/**
|
|
4417
|
-
*
|
|
4417
|
+
* Verarbeitungsoption für Stapel
|
|
4418
4418
|
*/
|
|
4419
|
-
|
|
4419
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4420
4420
|
|
|
4421
4421
|
/**
|
|
4422
|
-
*
|
|
4422
|
+
* Leistungsdatum
|
|
4423
4423
|
*/
|
|
4424
|
-
|
|
4424
|
+
performanceDate: ScriptingDate;
|
|
4425
4425
|
|
|
4426
4426
|
/**
|
|
4427
4427
|
* EN16931-Profil für elektronische Rechnungen
|
|
@@ -4608,11 +4608,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4608
4608
|
*/
|
|
4609
4609
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4610
4610
|
|
|
4611
|
-
/**
|
|
4612
|
-
* Rückgeld
|
|
4613
|
-
*/
|
|
4614
|
-
posReceiptChangeAmount: number;
|
|
4615
|
-
|
|
4616
4611
|
/**
|
|
4617
4612
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4618
4613
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4620,6 +4615,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4620
4615
|
*/
|
|
4621
4616
|
posReceiptBalanced: boolean;
|
|
4622
4617
|
|
|
4618
|
+
/**
|
|
4619
|
+
* Rückgeld
|
|
4620
|
+
*/
|
|
4621
|
+
posReceiptChangeAmount: number;
|
|
4622
|
+
|
|
4623
4623
|
/**
|
|
4624
4624
|
* Referenz auf Lieferbedingung
|
|
4625
4625
|
*/
|
|
@@ -4819,14 +4819,14 @@ export interface DocumentAddress {
|
|
|
4819
4819
|
postOfficeBox: string;
|
|
4820
4820
|
|
|
4821
4821
|
/**
|
|
4822
|
-
*
|
|
4822
|
+
* Street
|
|
4823
4823
|
*/
|
|
4824
|
-
|
|
4824
|
+
street: string;
|
|
4825
4825
|
|
|
4826
4826
|
/**
|
|
4827
|
-
*
|
|
4827
|
+
* country code IsoAlpha3
|
|
4828
4828
|
*/
|
|
4829
|
-
|
|
4829
|
+
countryCode: string;
|
|
4830
4830
|
|
|
4831
4831
|
/**
|
|
4832
4832
|
* Unique identifier of the Object
|
|
@@ -5304,19 +5304,19 @@ export interface DocumentLine {
|
|
|
5304
5304
|
baseTotalLinePrice: number;
|
|
5305
5305
|
|
|
5306
5306
|
/**
|
|
5307
|
-
*
|
|
5307
|
+
* FiBu-Buchung
|
|
5308
5308
|
*/
|
|
5309
|
-
|
|
5309
|
+
financeBooking: DocumentFinanceBooking;
|
|
5310
5310
|
|
|
5311
5311
|
/**
|
|
5312
|
-
*
|
|
5312
|
+
* Positionstyp
|
|
5313
5313
|
*/
|
|
5314
|
-
|
|
5314
|
+
lineType: DocumentLineType;
|
|
5315
5315
|
|
|
5316
5316
|
/**
|
|
5317
|
-
*
|
|
5317
|
+
* vorgeorderte Menge in Pickvorgang
|
|
5318
5318
|
*/
|
|
5319
|
-
|
|
5319
|
+
preOrderPickedQuantity: number;
|
|
5320
5320
|
|
|
5321
5321
|
/**
|
|
5322
5322
|
* Referenz zur Lieferantenbestellungszeile
|
|
@@ -5324,9 +5324,9 @@ export interface DocumentLine {
|
|
|
5324
5324
|
supplierOrderLineIds: Array<number>;
|
|
5325
5325
|
|
|
5326
5326
|
/**
|
|
5327
|
-
*
|
|
5327
|
+
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
5328
5328
|
*/
|
|
5329
|
-
|
|
5329
|
+
totalLinePriceModifier: number;
|
|
5330
5330
|
|
|
5331
5331
|
/**
|
|
5332
5332
|
* Vorgabe zu Streckengeschäft
|
|
@@ -5589,14 +5589,14 @@ export interface DocumentLine {
|
|
|
5589
5589
|
deliveryText: string;
|
|
5590
5590
|
|
|
5591
5591
|
/**
|
|
5592
|
-
*
|
|
5592
|
+
* Vorgabewert für die Preiskalkulation
|
|
5593
5593
|
*/
|
|
5594
|
-
|
|
5594
|
+
presetPrice: number;
|
|
5595
5595
|
|
|
5596
5596
|
/**
|
|
5597
|
-
*
|
|
5597
|
+
* Produktionsdetails
|
|
5598
5598
|
*/
|
|
5599
|
-
|
|
5599
|
+
fabricationDetail: DocumentLineFabricationDetail;
|
|
5600
5600
|
|
|
5601
5601
|
/**
|
|
5602
5602
|
* Freifelder
|
|
@@ -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
|
|
@@ -6166,14 +6166,14 @@ export interface DocumentLinePosDetail {
|
|
|
6166
6166
|
balanceBeforeWithdrawal: number;
|
|
6167
6167
|
|
|
6168
6168
|
/**
|
|
6169
|
-
*
|
|
6169
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6170
6170
|
*/
|
|
6171
|
-
|
|
6171
|
+
externalPaymentId: string;
|
|
6172
6172
|
|
|
6173
6173
|
/**
|
|
6174
|
-
*
|
|
6174
|
+
* Typ der Position
|
|
6175
6175
|
*/
|
|
6176
|
-
|
|
6176
|
+
posLineType: PosLineType;
|
|
6177
6177
|
|
|
6178
6178
|
/**
|
|
6179
6179
|
* Unique identifier of the Object
|
|
@@ -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)
|
|
@@ -6407,14 +6407,14 @@ export interface DocumentPosPayment {
|
|
|
6407
6407
|
balanceBeforeWithdrawal: number;
|
|
6408
6408
|
|
|
6409
6409
|
/**
|
|
6410
|
-
*
|
|
6410
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6411
6411
|
*/
|
|
6412
|
-
|
|
6412
|
+
externalPaymentId: string;
|
|
6413
6413
|
|
|
6414
6414
|
/**
|
|
6415
|
-
*
|
|
6415
|
+
* Typ der Position
|
|
6416
6416
|
*/
|
|
6417
|
-
|
|
6417
|
+
posLineType: PosLineType;
|
|
6418
6418
|
|
|
6419
6419
|
/**
|
|
6420
6420
|
* Unique identifier of the Object
|
|
@@ -6794,14 +6794,14 @@ export interface DocumentType {
|
|
|
6794
6794
|
labels: Array<DocumentTypeLabel>;
|
|
6795
6795
|
|
|
6796
6796
|
/**
|
|
6797
|
-
*
|
|
6797
|
+
* Zählerkreis
|
|
6798
6798
|
*/
|
|
6799
|
-
|
|
6799
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6800
6800
|
|
|
6801
6801
|
/**
|
|
6802
|
-
*
|
|
6802
|
+
* nächste Belegnummer
|
|
6803
6803
|
*/
|
|
6804
|
-
|
|
6804
|
+
nextNumber: string;
|
|
6805
6805
|
|
|
6806
6806
|
/**
|
|
6807
6807
|
* Sortierung
|
|
@@ -6982,14 +6982,14 @@ export const enum DropShippingPolicy {
|
|
|
6982
6982
|
export interface DummySerialNumberStockTransferApi {
|
|
6983
6983
|
|
|
6984
6984
|
/**
|
|
6985
|
-
*
|
|
6985
|
+
* Seriennummer
|
|
6986
6986
|
*/
|
|
6987
|
-
|
|
6987
|
+
serialNumberId: number;
|
|
6988
6988
|
|
|
6989
6989
|
/**
|
|
6990
|
-
*
|
|
6990
|
+
* Ziel-Lager
|
|
6991
6991
|
*/
|
|
6992
|
-
|
|
6992
|
+
targetStorageId: number;
|
|
6993
6993
|
|
|
6994
6994
|
/**
|
|
6995
6995
|
* Bemerkung
|
|
@@ -7002,14 +7002,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7002
7002
|
bookDate: ScriptingDate;
|
|
7003
7003
|
|
|
7004
7004
|
/**
|
|
7005
|
-
*
|
|
7005
|
+
* Die gültige Seriennummer
|
|
7006
7006
|
*/
|
|
7007
|
-
|
|
7007
|
+
targetSerialNumber: string;
|
|
7008
7008
|
|
|
7009
7009
|
/**
|
|
7010
|
-
*
|
|
7010
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7011
7011
|
*/
|
|
7012
|
-
|
|
7012
|
+
targetExpiryDate: ScriptingDate;
|
|
7013
7013
|
|
|
7014
7014
|
/**
|
|
7015
7015
|
* Quell-Lagerplatz
|
|
@@ -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
|
|
@@ -7669,14 +7669,14 @@ export interface OpenItem {
|
|
|
7669
7669
|
paymentDueDate: ScriptingDate;
|
|
7670
7670
|
|
|
7671
7671
|
/**
|
|
7672
|
-
* Länderkennzeichen
|
|
7672
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7673
7673
|
*/
|
|
7674
|
-
|
|
7674
|
+
sourceCountryCode: string;
|
|
7675
7675
|
|
|
7676
7676
|
/**
|
|
7677
|
-
* Länderkennzeichen
|
|
7677
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7678
7678
|
*/
|
|
7679
|
-
|
|
7679
|
+
performanceCountryCode: string;
|
|
7680
7680
|
|
|
7681
7681
|
/**
|
|
7682
7682
|
* Valutadatum schreibgeschützt
|
|
@@ -7754,14 +7754,14 @@ export interface OpenItem {
|
|
|
7754
7754
|
paymentAmount: number;
|
|
7755
7755
|
|
|
7756
7756
|
/**
|
|
7757
|
-
*
|
|
7757
|
+
* how should a refund be done?
|
|
7758
7758
|
*/
|
|
7759
|
-
|
|
7759
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
7760
7760
|
|
|
7761
7761
|
/**
|
|
7762
|
-
*
|
|
7762
|
+
* Rechnungskorrektur
|
|
7763
7763
|
*/
|
|
7764
|
-
|
|
7764
|
+
creditNote: ApiObjectReference;
|
|
7765
7765
|
|
|
7766
7766
|
/**
|
|
7767
7767
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -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
|
|
@@ -8308,14 +8308,14 @@ export interface PaymentMethod {
|
|
|
8308
8308
|
daysToAddForFollowup: number;
|
|
8309
8309
|
|
|
8310
8310
|
/**
|
|
8311
|
-
*
|
|
8311
|
+
* external Payment Id
|
|
8312
8312
|
*/
|
|
8313
|
-
|
|
8313
|
+
externalPaymentId: string;
|
|
8314
8314
|
|
|
8315
8315
|
/**
|
|
8316
|
-
*
|
|
8316
|
+
* Die Business Transaction
|
|
8317
8317
|
*/
|
|
8318
|
-
|
|
8318
|
+
businessTransaction: ApiObjectReference;
|
|
8319
8319
|
|
|
8320
8320
|
/**
|
|
8321
8321
|
* Unique identifier of the Object
|
|
@@ -8398,26 +8398,26 @@ export interface PaymentTerm {
|
|
|
8398
8398
|
*/
|
|
8399
8399
|
paymentDiscount2: number;
|
|
8400
8400
|
|
|
8401
|
-
/**
|
|
8402
|
-
* Percent for Discount 1
|
|
8403
|
-
*/
|
|
8404
|
-
paymentDiscount1: number;
|
|
8405
|
-
|
|
8406
8401
|
/**
|
|
8407
8402
|
* printDescription
|
|
8408
8403
|
*/
|
|
8409
8404
|
printDescription: string;
|
|
8410
8405
|
|
|
8411
8406
|
/**
|
|
8412
|
-
*
|
|
8407
|
+
* Percent for Discount 1
|
|
8413
8408
|
*/
|
|
8414
|
-
|
|
8409
|
+
paymentDiscount1: number;
|
|
8415
8410
|
|
|
8416
8411
|
/**
|
|
8417
8412
|
* for deposit: remaining term
|
|
8418
8413
|
*/
|
|
8419
8414
|
remainingTermRef: ApiObjectReference;
|
|
8420
8415
|
|
|
8416
|
+
/**
|
|
8417
|
+
* Days for Discount 1
|
|
8418
|
+
*/
|
|
8419
|
+
paymentDays1: number;
|
|
8420
|
+
|
|
8421
8421
|
/**
|
|
8422
8422
|
* Days for Discount 2
|
|
8423
8423
|
*/
|
|
@@ -8757,14 +8757,14 @@ export interface Picklist {
|
|
|
8757
8757
|
export interface PicklistLine {
|
|
8758
8758
|
|
|
8759
8759
|
/**
|
|
8760
|
-
*
|
|
8760
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
8761
8761
|
*/
|
|
8762
|
-
|
|
8762
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
8763
8763
|
|
|
8764
8764
|
/**
|
|
8765
|
-
*
|
|
8765
|
+
* Gesammelte Menge der Position
|
|
8766
8766
|
*/
|
|
8767
|
-
|
|
8767
|
+
quantityCollected: number;
|
|
8768
8768
|
|
|
8769
8769
|
/**
|
|
8770
8770
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -8802,14 +8802,14 @@ export interface PicklistLine {
|
|
|
8802
8802
|
version: number;
|
|
8803
8803
|
|
|
8804
8804
|
/**
|
|
8805
|
-
*
|
|
8805
|
+
* ID der Quell-Dokumentposition
|
|
8806
8806
|
*/
|
|
8807
|
-
|
|
8807
|
+
sourceDocumentLineId: number;
|
|
8808
8808
|
|
|
8809
8809
|
/**
|
|
8810
|
-
*
|
|
8810
|
+
* Lageranzeigename
|
|
8811
8811
|
*/
|
|
8812
|
-
|
|
8812
|
+
storageDisplayName: string;
|
|
8813
8813
|
|
|
8814
8814
|
/**
|
|
8815
8815
|
* Artikelnummer
|
|
@@ -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
|
*/
|
|
@@ -9226,26 +9226,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9226
9226
|
*/
|
|
9227
9227
|
printPicklist: boolean;
|
|
9228
9228
|
|
|
9229
|
-
/**
|
|
9230
|
-
* Die zu verwendende Pickwagengruppe
|
|
9231
|
-
*/
|
|
9232
|
-
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9233
|
-
|
|
9234
9229
|
/**
|
|
9235
9230
|
* Maximale Anzahl an Positionen einer Pickliste
|
|
9236
9231
|
*/
|
|
9237
9232
|
maxPicklistLineCount: number;
|
|
9238
9233
|
|
|
9239
9234
|
/**
|
|
9240
|
-
*
|
|
9235
|
+
* Die zu verwendende Pickwagengruppe
|
|
9241
9236
|
*/
|
|
9242
|
-
|
|
9237
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9243
9238
|
|
|
9244
9239
|
/**
|
|
9245
9240
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9246
9241
|
*/
|
|
9247
9242
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9248
9243
|
|
|
9244
|
+
/**
|
|
9245
|
+
* Der zu verwendende Pickwagen
|
|
9246
|
+
*/
|
|
9247
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9248
|
+
|
|
9249
9249
|
/**
|
|
9250
9250
|
* Lagerplätze vorgeben
|
|
9251
9251
|
*/
|
|
@@ -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
|
|
@@ -9335,9 +9335,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
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
|
|
@@ -10249,14 +10249,14 @@ export interface RequestDocumentLine {
|
|
|
10249
10249
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10250
10250
|
|
|
10251
10251
|
/**
|
|
10252
|
-
*
|
|
10252
|
+
* FiBu-Angaben
|
|
10253
10253
|
*/
|
|
10254
|
-
|
|
10254
|
+
financeBooking: DocumentFinanceBooking;
|
|
10255
10255
|
|
|
10256
10256
|
/**
|
|
10257
|
-
*
|
|
10257
|
+
* Typ dieser Position
|
|
10258
10258
|
*/
|
|
10259
|
-
|
|
10259
|
+
lineType: DocumentLineType;
|
|
10260
10260
|
|
|
10261
10261
|
/**
|
|
10262
10262
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10354,14 +10354,14 @@ export interface RequestDocumentLine {
|
|
|
10354
10354
|
name: string;
|
|
10355
10355
|
|
|
10356
10356
|
/**
|
|
10357
|
-
*
|
|
10357
|
+
* ID der Quell-Belegposition
|
|
10358
10358
|
*/
|
|
10359
|
-
|
|
10359
|
+
sourceLineId: number;
|
|
10360
10360
|
|
|
10361
10361
|
/**
|
|
10362
|
-
*
|
|
10362
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10363
10363
|
*/
|
|
10364
|
-
|
|
10364
|
+
externalArticleNumber: string;
|
|
10365
10365
|
|
|
10366
10366
|
/**
|
|
10367
10367
|
* Buchungen zu dieser Belegposition
|
|
@@ -10369,14 +10369,14 @@ export interface RequestDocumentLine {
|
|
|
10369
10369
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10370
10370
|
|
|
10371
10371
|
/**
|
|
10372
|
-
*
|
|
10372
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10373
10373
|
*/
|
|
10374
|
-
|
|
10374
|
+
doLabelPrint: boolean;
|
|
10375
10375
|
|
|
10376
10376
|
/**
|
|
10377
|
-
*
|
|
10377
|
+
* (optional) Preis des Artikels dieser Position
|
|
10378
10378
|
*/
|
|
10379
|
-
|
|
10379
|
+
productPrice: number;
|
|
10380
10380
|
}
|
|
10381
10381
|
|
|
10382
10382
|
export interface RequestDocumentLineBooking {
|
|
@@ -10881,14 +10881,14 @@ export interface SequencerConfiguration {
|
|
|
10881
10881
|
key: string;
|
|
10882
10882
|
|
|
10883
10883
|
/**
|
|
10884
|
-
*
|
|
10884
|
+
* Contains details about the sequencer configuration
|
|
10885
10885
|
*/
|
|
10886
|
-
|
|
10886
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
10887
10887
|
|
|
10888
10888
|
/**
|
|
10889
|
-
*
|
|
10889
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
10890
10890
|
*/
|
|
10891
|
-
|
|
10891
|
+
alternativeConfiguration: ApiObjectReference;
|
|
10892
10892
|
|
|
10893
10893
|
/**
|
|
10894
10894
|
* MetaInformations for this Object
|
|
@@ -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
|
|
@@ -11497,14 +11497,14 @@ export interface StockMovementManualApi {
|
|
|
11497
11497
|
export interface StockTransferApi {
|
|
11498
11498
|
|
|
11499
11499
|
/**
|
|
11500
|
-
*
|
|
11500
|
+
* Seriennummer
|
|
11501
11501
|
*/
|
|
11502
|
-
|
|
11502
|
+
serialNumberId: number;
|
|
11503
11503
|
|
|
11504
11504
|
/**
|
|
11505
|
-
*
|
|
11505
|
+
* Ziel-Lager
|
|
11506
11506
|
*/
|
|
11507
|
-
|
|
11507
|
+
targetStorageId: number;
|
|
11508
11508
|
|
|
11509
11509
|
/**
|
|
11510
11510
|
* Bemerkung
|
|
@@ -11779,14 +11779,14 @@ export interface Supplier {
|
|
|
11779
11779
|
performanceCountryCode: string;
|
|
11780
11780
|
|
|
11781
11781
|
/**
|
|
11782
|
-
*
|
|
11782
|
+
* reference to the payment method
|
|
11783
11783
|
*/
|
|
11784
|
-
|
|
11784
|
+
paymentMethodRef: ApiObjectReference;
|
|
11785
11785
|
|
|
11786
11786
|
/**
|
|
11787
|
-
*
|
|
11787
|
+
* Lieferzeit in (Werk-)Tagen
|
|
11788
11788
|
*/
|
|
11789
|
-
|
|
11789
|
+
defaultDeliveryTime: number;
|
|
11790
11790
|
|
|
11791
11791
|
/**
|
|
11792
11792
|
* currency code IsoAlpha3
|
|
@@ -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
|