@vario-software/types 2026.25.2 → 2026.25.4
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 +40 -40
- package/scripting/types.d.ts +229 -229
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 mit Texten zur Sprache languageCode
|
|
484
484
|
*
|
|
485
485
|
* @param {number} articleId - ID des Artikels
|
|
486
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
486
487
|
* @return {Array<ArticleListing>} Liste der Listings
|
|
487
488
|
*/
|
|
488
|
-
readAllByArticleId(articleId: number): Array<ArticleListing>;
|
|
489
|
+
readAllByArticleId(articleId: number, languageCode: string): Array<ArticleListing>;
|
|
489
490
|
|
|
490
491
|
/**
|
|
491
|
-
* Liest alle Listings zu einem Artikel
|
|
492
|
+
* Liest alle Listings zu einem Artikel
|
|
492
493
|
*
|
|
493
494
|
* @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
|
|
497
|
+
readAllByArticleId(articleId: number): 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
|
|
554
553
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
555
554
|
*/
|
|
556
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
555
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
557
556
|
|
|
558
557
|
/**
|
|
559
558
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
560
559
|
*
|
|
561
560
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
562
561
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
563
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
564
562
|
*/
|
|
565
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
563
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
566
564
|
|
|
567
565
|
/**
|
|
568
566
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
569
567
|
*
|
|
570
568
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
571
569
|
* @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): void;
|
|
573
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
574
574
|
|
|
575
575
|
/**
|
|
576
576
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -686,21 +686,21 @@ Die Texte werden zur Sprache der eigenen Adresse gespeichert.
|
|
|
686
686
|
newLabelPrintBatchIdentifier(): string;
|
|
687
687
|
|
|
688
688
|
/**
|
|
689
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
689
|
+
* Liest einen Artikel mit Texten zur Sprache languageCode
|
|
690
690
|
*
|
|
691
691
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
692
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
692
693
|
* @return {Article} Der gelesene Artikel
|
|
693
694
|
*/
|
|
694
|
-
readById(id: number): Article;
|
|
695
|
+
readById(id: number, languageCode: string): Article;
|
|
695
696
|
|
|
696
697
|
/**
|
|
697
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
698
|
+
* Liest einen Artikel mit Texten zur Sprache der eigenen Adresse
|
|
698
699
|
*
|
|
699
700
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
700
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
701
701
|
* @return {Article} Der gelesene Artikel
|
|
702
702
|
*/
|
|
703
|
-
readById(id: number
|
|
703
|
+
readById(id: number): Article;
|
|
704
704
|
|
|
705
705
|
/**
|
|
706
706
|
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
@@ -1646,18 +1646,18 @@ 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
|
|
1649
1650
|
* @return {Document} Der aufgelöste Beleg
|
|
1650
1651
|
*/
|
|
1651
|
-
dissolve(documentId: number): Document;
|
|
1652
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1652
1653
|
|
|
1653
1654
|
/**
|
|
1654
1655
|
* Löst einen Beleg auf
|
|
1655
1656
|
*
|
|
1656
1657
|
* @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
|
|
1660
|
+
dissolve(documentId: number): Document;
|
|
1661
1661
|
|
|
1662
1662
|
/**
|
|
1663
1663
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -1777,16 +1777,16 @@ export interface DocumentScriptingService {
|
|
|
1777
1777
|
* Versendet einen Beleg per Mail
|
|
1778
1778
|
*
|
|
1779
1779
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1780
|
-
* @param {string} reportGroupIdentifier -
|
|
1781
1780
|
*/
|
|
1782
|
-
sendViaMail(documentId: number
|
|
1781
|
+
sendViaMail(documentId: number): void;
|
|
1783
1782
|
|
|
1784
1783
|
/**
|
|
1785
1784
|
* Versendet einen Beleg per Mail
|
|
1786
1785
|
*
|
|
1787
1786
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1787
|
+
* @param {string} reportGroupIdentifier -
|
|
1788
1788
|
*/
|
|
1789
|
-
sendViaMail(documentId: number): void;
|
|
1789
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1790
1790
|
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2667,26 +2667,26 @@ export interface ScriptingServiceList {
|
|
|
2667
2667
|
*/
|
|
2668
2668
|
crmTaskService: CrmTaskScriptingService;
|
|
2669
2669
|
|
|
2670
|
-
/**
|
|
2671
|
-
* Service zur Verarbeitung von Accounts
|
|
2672
|
-
*/
|
|
2673
|
-
accountService: AccountScriptingService;
|
|
2674
|
-
|
|
2675
2670
|
/**
|
|
2676
2671
|
* Service zur Verarbeitung von Shelf-Documents
|
|
2677
2672
|
*/
|
|
2678
2673
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2679
2674
|
|
|
2680
2675
|
/**
|
|
2681
|
-
*
|
|
2676
|
+
* Service zur Verarbeitung von Accounts
|
|
2682
2677
|
*/
|
|
2683
|
-
|
|
2678
|
+
accountService: AccountScriptingService;
|
|
2684
2679
|
|
|
2685
2680
|
/**
|
|
2686
2681
|
* Logging im Scripting
|
|
2687
2682
|
*/
|
|
2688
2683
|
logger: LoggingScriptingService;
|
|
2689
2684
|
|
|
2685
|
+
/**
|
|
2686
|
+
* Verwaltung von Versandarten
|
|
2687
|
+
*/
|
|
2688
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
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
|
+
* Ausgabe-Support Methoden
|
|
2707
2707
|
*/
|
|
2708
|
-
|
|
2708
|
+
outputHelper: ScriptOutputHelperService;
|
|
2709
2709
|
|
|
2710
2710
|
/**
|
|
2711
|
-
*
|
|
2711
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2712
2712
|
*/
|
|
2713
|
-
|
|
2713
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
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 Variantenschemas in Skripten
|
|
2737
2737
|
*/
|
|
2738
|
-
|
|
2738
|
+
variantSchemaService: VariantSchemaScriptingService;
|
|
2739
2739
|
|
|
2740
2740
|
/**
|
|
2741
|
-
* Service zur Verarbeitung von
|
|
2741
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2742
2742
|
*/
|
|
2743
|
-
|
|
2743
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
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
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2772
2772
|
*/
|
|
2773
|
-
|
|
2773
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
|
-
*
|
|
2776
|
+
* Verwaltung von Zahlungsarten
|
|
2777
2777
|
*/
|
|
2778
|
-
|
|
2778
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
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
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
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
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Country code
|
|
310
305
|
*/
|
|
311
306
|
countryCode: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* is this product purchasable
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
purchasable: boolean;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1219,14 +1219,14 @@ export interface Article {
|
|
|
1219
1219
|
freelyPickable: boolean;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
*
|
|
1222
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1223
1223
|
*/
|
|
1224
|
-
|
|
1224
|
+
taxLiabilityReversed: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* gross sales prices
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
grossSalesPrice: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1304,14 +1304,14 @@ export interface Article {
|
|
|
1304
1304
|
alternativeName: string;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* rabattierbarer Artikel?
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
discountable: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* Kontingentartikel
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
contingentArticleRef: ApiObjectReference;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1494,14 +1494,14 @@ export interface ArticleCustomer {
|
|
|
1494
1494
|
articleName: string;
|
|
1495
1495
|
|
|
1496
1496
|
/**
|
|
1497
|
-
*
|
|
1497
|
+
* Etikettdruck-Einstellungen
|
|
1498
1498
|
*/
|
|
1499
|
-
|
|
1499
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
|
-
*
|
|
1502
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1504
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1505
1505
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Kunden-Preise
|
|
@@ -1894,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* Meldebestand
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
reorderPoint: 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
|
+
* Aktuelle Menge in Kommissionierung
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
quantityInPicking: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1986,6 +1986,11 @@ 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
|
+
|
|
1989
1994
|
/**
|
|
1990
1995
|
* Anzeigename des Accounts
|
|
1991
1996
|
*/
|
|
@@ -1996,11 +2001,6 @@ export interface ArticleSupplier {
|
|
|
1996
2001
|
*/
|
|
1997
2002
|
supplierReportingStock: number;
|
|
1998
2003
|
|
|
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
|
*/
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Referenced Article name
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
articleName: string;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Verpackungseinheit
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
packagingUnit: number;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2333,14 +2333,14 @@ export interface CountryReference {
|
|
|
2333
2333
|
export interface CreateNewDocumentRequest {
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
* Belegart
|
|
2336
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
|
-
*
|
|
2341
|
+
* Belegart
|
|
2342
2342
|
*/
|
|
2343
|
-
|
|
2343
|
+
documentTypeLabel: string;
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
2346
|
* Details zum Beleg
|
|
@@ -2406,14 +2406,14 @@ export interface CrmActivity {
|
|
|
2406
2406
|
info: MetaInfo;
|
|
2407
2407
|
|
|
2408
2408
|
/**
|
|
2409
|
-
*
|
|
2409
|
+
* Aktivität intern abgerechnet?
|
|
2410
2410
|
*/
|
|
2411
|
-
|
|
2411
|
+
internalBilled: boolean;
|
|
2412
2412
|
|
|
2413
2413
|
/**
|
|
2414
|
-
*
|
|
2414
|
+
* geplante Dauer
|
|
2415
2415
|
*/
|
|
2416
|
-
|
|
2416
|
+
plannedDurationInSeconds: number;
|
|
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
|
+
* Projektleiter vom Auftragnehmer
|
|
2968
2968
|
*/
|
|
2969
|
-
|
|
2969
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2970
2970
|
|
|
2971
2971
|
/**
|
|
2972
|
-
*
|
|
2972
|
+
* Phase
|
|
2973
2973
|
*/
|
|
2974
|
-
|
|
2974
|
+
phaseRef: ApiObjectReference;
|
|
2975
2975
|
|
|
2976
2976
|
/**
|
|
2977
2977
|
* Aufgaben-Nummer
|
|
@@ -3274,11 +3274,6 @@ export interface CrmSubType {
|
|
|
3274
3274
|
|
|
3275
3275
|
export interface CrmTask {
|
|
3276
3276
|
|
|
3277
|
-
/**
|
|
3278
|
-
* Liste von Erinnerungen
|
|
3279
|
-
*/
|
|
3280
|
-
reminders: Array<CrmReminder>;
|
|
3281
|
-
|
|
3282
3277
|
/**
|
|
3283
3278
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3284
3279
|
*/
|
|
@@ -3289,6 +3284,11 @@ export interface CrmTask {
|
|
|
3289
3284
|
*/
|
|
3290
3285
|
customerOfferRef: DocumentRef;
|
|
3291
3286
|
|
|
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
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3479
3479
|
*/
|
|
3480
|
-
|
|
3480
|
+
externalRecordedTimes: number;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
|
-
*
|
|
3483
|
+
* Beauftragte Zeit in Sekunden
|
|
3484
3484
|
*/
|
|
3485
|
-
|
|
3485
|
+
effortCommissioned: number;
|
|
3486
3486
|
|
|
3487
3487
|
/**
|
|
3488
3488
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3968,14 +3968,14 @@ export interface DeliveryMethod {
|
|
|
3968
3968
|
translations: Array<DocumentTypeTerm>;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* Gültige Ländercodes
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
validCountryCodes: Array<string>;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
|
-
*
|
|
3976
|
+
* Versand-Anbieter
|
|
3977
3977
|
*/
|
|
3978
|
-
|
|
3978
|
+
vdsCarrierId: number;
|
|
3979
3979
|
|
|
3980
3980
|
/**
|
|
3981
3981
|
* Standardgewichtseinheit
|
|
@@ -4349,14 +4349,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4349
4349
|
contractDetail: DocumentContractDetail;
|
|
4350
4350
|
|
|
4351
4351
|
/**
|
|
4352
|
-
*
|
|
4352
|
+
* Zahlungsplan vorhanden?
|
|
4353
4353
|
*/
|
|
4354
|
-
|
|
4354
|
+
paymentPlan: boolean;
|
|
4355
4355
|
|
|
4356
4356
|
/**
|
|
4357
|
-
*
|
|
4357
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4358
4358
|
*/
|
|
4359
|
-
|
|
4359
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4360
4360
|
|
|
4361
4361
|
/**
|
|
4362
4362
|
* Produktionsdetails
|
|
@@ -4373,26 +4373,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4373
4373
|
*/
|
|
4374
4374
|
accountNumber: string;
|
|
4375
4375
|
|
|
4376
|
-
/**
|
|
4377
|
-
* Wird vom Workflow verarbeitet?
|
|
4378
|
-
*/
|
|
4379
|
-
processedByWorkflow: boolean;
|
|
4380
|
-
|
|
4381
4376
|
/**
|
|
4382
4377
|
* Referenz auf Zahlungsbedingung
|
|
4383
4378
|
*/
|
|
4384
4379
|
paymentTermRef: PaymentTermRef;
|
|
4385
4380
|
|
|
4386
4381
|
/**
|
|
4387
|
-
*
|
|
4382
|
+
* Wird vom Workflow verarbeitet?
|
|
4388
4383
|
*/
|
|
4389
|
-
|
|
4384
|
+
processedByWorkflow: boolean;
|
|
4390
4385
|
|
|
4391
4386
|
/**
|
|
4392
4387
|
* Telefon an Versender übergeben
|
|
4393
4388
|
*/
|
|
4394
4389
|
forwardPhoneToShipper: boolean;
|
|
4395
4390
|
|
|
4391
|
+
/**
|
|
4392
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4393
|
+
*/
|
|
4394
|
+
baseTotalDocumentPriceModifier: number;
|
|
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
|
-
* Verarbeitungsoption für Stapel
|
|
4418
|
-
*/
|
|
4419
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4420
|
-
|
|
4421
4416
|
/**
|
|
4422
4417
|
* Leistungsdatum
|
|
4423
4418
|
*/
|
|
4424
4419
|
performanceDate: ScriptingDate;
|
|
4425
4420
|
|
|
4426
4421
|
/**
|
|
4427
|
-
*
|
|
4422
|
+
* Verarbeitungsoption für Stapel
|
|
4428
4423
|
*/
|
|
4429
|
-
|
|
4424
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4430
4425
|
|
|
4431
4426
|
/**
|
|
4432
4427
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4433
4428
|
*/
|
|
4434
4429
|
dropShippingInvoiceApproved: boolean;
|
|
4435
4430
|
|
|
4431
|
+
/**
|
|
4432
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4433
|
+
*/
|
|
4434
|
+
en16931Profile: EN16931Profile;
|
|
4435
|
+
|
|
4436
4436
|
/**
|
|
4437
4437
|
* Ort der steuerlichen Leistungserbringung
|
|
4438
4438
|
*/
|
|
@@ -4608,13 +4608,6 @@ 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
|
-
|
|
4618
4611
|
/**
|
|
4619
4612
|
* Rückgeld
|
|
4620
4613
|
*/
|
|
@@ -4625,6 +4618,13 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4625
4618
|
*/
|
|
4626
4619
|
deliveryTermRef: ApiObjectReference;
|
|
4627
4620
|
|
|
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
|
*/
|
|
@@ -4819,14 +4819,14 @@ export interface DocumentAddress {
|
|
|
4819
4819
|
postOfficeBox: string;
|
|
4820
4820
|
|
|
4821
4821
|
/**
|
|
4822
|
-
*
|
|
4822
|
+
* country code IsoAlpha3
|
|
4823
4823
|
*/
|
|
4824
|
-
|
|
4824
|
+
countryCode: string;
|
|
4825
4825
|
|
|
4826
4826
|
/**
|
|
4827
|
-
*
|
|
4827
|
+
* Street
|
|
4828
4828
|
*/
|
|
4829
|
-
|
|
4829
|
+
street: string;
|
|
4830
4830
|
|
|
4831
4831
|
/**
|
|
4832
4832
|
* Unique identifier of the Object
|
|
@@ -4844,14 +4844,14 @@ export interface DocumentAddress {
|
|
|
4844
4844
|
info: MetaInfo;
|
|
4845
4845
|
|
|
4846
4846
|
/**
|
|
4847
|
-
*
|
|
4847
|
+
* Lieferart
|
|
4848
4848
|
*/
|
|
4849
|
-
|
|
4849
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4850
4850
|
|
|
4851
4851
|
/**
|
|
4852
|
-
*
|
|
4852
|
+
* GLN
|
|
4853
4853
|
*/
|
|
4854
|
-
|
|
4854
|
+
globalLocationNumber: string;
|
|
4855
4855
|
|
|
4856
4856
|
/**
|
|
4857
4857
|
* Postcode
|
|
@@ -5298,11 +5298,6 @@ export interface DocumentLine {
|
|
|
5298
5298
|
*/
|
|
5299
5299
|
price: number;
|
|
5300
5300
|
|
|
5301
|
-
/**
|
|
5302
|
-
* Gesamtpreis Position in Basiswährung
|
|
5303
|
-
*/
|
|
5304
|
-
baseTotalLinePrice: number;
|
|
5305
|
-
|
|
5306
5301
|
/**
|
|
5307
5302
|
* FiBu-Buchung
|
|
5308
5303
|
*/
|
|
@@ -5313,6 +5308,11 @@ export interface DocumentLine {
|
|
|
5313
5308
|
*/
|
|
5314
5309
|
lineType: DocumentLineType;
|
|
5315
5310
|
|
|
5311
|
+
/**
|
|
5312
|
+
* Gesamtpreis Position in Basiswährung
|
|
5313
|
+
*/
|
|
5314
|
+
baseTotalLinePrice: number;
|
|
5315
|
+
|
|
5316
5316
|
/**
|
|
5317
5317
|
* vorgeorderte Menge in Pickvorgang
|
|
5318
5318
|
*/
|
|
@@ -5808,14 +5808,14 @@ export interface DocumentLineComponent {
|
|
|
5808
5808
|
custom: EavDocumentlinecomponent;
|
|
5809
5809
|
|
|
5810
5810
|
/**
|
|
5811
|
-
*
|
|
5811
|
+
* Referenz auf den Artikel der Komponente
|
|
5812
5812
|
*/
|
|
5813
|
-
|
|
5813
|
+
articleId: number;
|
|
5814
5814
|
|
|
5815
5815
|
/**
|
|
5816
|
-
*
|
|
5816
|
+
* Gelieferte Menge
|
|
5817
5817
|
*/
|
|
5818
|
-
|
|
5818
|
+
quantityCommitted: 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
|
+
* Typ der Einlage/Ausgabe
|
|
6125
6125
|
*/
|
|
6126
|
-
|
|
6126
|
+
depositExpenseTypeId: number;
|
|
6127
6127
|
|
|
6128
6128
|
/**
|
|
6129
|
-
*
|
|
6129
|
+
* Status der externen Zahlung
|
|
6130
6130
|
*/
|
|
6131
|
-
|
|
6131
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
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
|
+
* Zahlungsart
|
|
6391
6391
|
*/
|
|
6392
|
-
|
|
6392
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6393
6393
|
|
|
6394
6394
|
/**
|
|
6395
|
-
*
|
|
6395
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6396
6396
|
*/
|
|
6397
|
-
|
|
6397
|
+
withdrawalAmount: number;
|
|
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
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6546
6546
|
*/
|
|
6547
|
-
|
|
6547
|
+
manualCosts: boolean;
|
|
6548
6548
|
|
|
6549
6549
|
/**
|
|
6550
|
-
*
|
|
6550
|
+
* Die Versandkosten
|
|
6551
6551
|
*/
|
|
6552
|
-
|
|
6552
|
+
costs: number;
|
|
6553
6553
|
|
|
6554
6554
|
/**
|
|
6555
6555
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6982,14 +6982,14 @@ export const enum DropShippingPolicy {
|
|
|
6982
6982
|
export interface DummySerialNumberStockTransferApi {
|
|
6983
6983
|
|
|
6984
6984
|
/**
|
|
6985
|
-
*
|
|
6985
|
+
* Ziel-Lager
|
|
6986
6986
|
*/
|
|
6987
|
-
|
|
6987
|
+
targetStorageId: number;
|
|
6988
6988
|
|
|
6989
6989
|
/**
|
|
6990
|
-
*
|
|
6990
|
+
* Seriennummer
|
|
6991
6991
|
*/
|
|
6992
|
-
|
|
6992
|
+
serialNumberId: number;
|
|
6993
6993
|
|
|
6994
6994
|
/**
|
|
6995
6995
|
* Bemerkung
|
|
@@ -7346,14 +7346,14 @@ export interface FabricationRevertRequest {
|
|
|
7346
7346
|
quantity: number;
|
|
7347
7347
|
|
|
7348
7348
|
/**
|
|
7349
|
-
*
|
|
7349
|
+
* ID der zu stornierenden Position
|
|
7350
7350
|
*/
|
|
7351
|
-
|
|
7351
|
+
documentLineId: number;
|
|
7352
7352
|
|
|
7353
7353
|
/**
|
|
7354
|
-
*
|
|
7354
|
+
* Material automatisch stornieren
|
|
7355
7355
|
*/
|
|
7356
|
-
|
|
7356
|
+
autoRevertComponents: boolean;
|
|
7357
7357
|
|
|
7358
7358
|
/**
|
|
7359
7359
|
* Zu stornierende Seriennummern
|
|
@@ -7369,14 +7369,14 @@ export interface FabricationRevertRequest {
|
|
|
7369
7369
|
export interface FabricationSerialNumber {
|
|
7370
7370
|
|
|
7371
7371
|
/**
|
|
7372
|
-
*
|
|
7372
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7373
7373
|
*/
|
|
7374
|
-
|
|
7374
|
+
serialNumberId: number;
|
|
7375
7375
|
|
|
7376
7376
|
/**
|
|
7377
|
-
*
|
|
7377
|
+
* MHD / Verfallsdatum
|
|
7378
7378
|
*/
|
|
7379
|
-
|
|
7379
|
+
expiryDate: ScriptingDate;
|
|
7380
7380
|
|
|
7381
7381
|
/**
|
|
7382
7382
|
* Bemerkung
|
|
@@ -7679,14 +7679,14 @@ export interface OpenItem {
|
|
|
7679
7679
|
performanceCountryCode: string;
|
|
7680
7680
|
|
|
7681
7681
|
/**
|
|
7682
|
-
*
|
|
7682
|
+
* agreed Deposit payment date
|
|
7683
7683
|
*/
|
|
7684
|
-
|
|
7684
|
+
depositPaymentDate: ScriptingDate;
|
|
7685
7685
|
|
|
7686
7686
|
/**
|
|
7687
|
-
*
|
|
7687
|
+
* Valutadatum schreibgeschützt
|
|
7688
7688
|
*/
|
|
7689
|
-
|
|
7689
|
+
valueDateReadOnly: boolean;
|
|
7690
7690
|
|
|
7691
7691
|
/**
|
|
7692
7692
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -7754,14 +7754,14 @@ export interface OpenItem {
|
|
|
7754
7754
|
paymentAmount: number;
|
|
7755
7755
|
|
|
7756
7756
|
/**
|
|
7757
|
-
*
|
|
7757
|
+
* Rechnungskorrektur
|
|
7758
7758
|
*/
|
|
7759
|
-
|
|
7759
|
+
creditNote: ApiObjectReference;
|
|
7760
7760
|
|
|
7761
7761
|
/**
|
|
7762
|
-
*
|
|
7762
|
+
* how should a refund be done?
|
|
7763
7763
|
*/
|
|
7764
|
-
|
|
7764
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
7765
7765
|
|
|
7766
7766
|
/**
|
|
7767
7767
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -7804,14 +7804,14 @@ export interface OpenItem {
|
|
|
7804
7804
|
originalPaymentDueDate: ScriptingDate;
|
|
7805
7805
|
|
|
7806
7806
|
/**
|
|
7807
|
-
*
|
|
7807
|
+
* Valutadatum
|
|
7808
7808
|
*/
|
|
7809
|
-
|
|
7809
|
+
valueDate: ScriptingDate;
|
|
7810
7810
|
|
|
7811
7811
|
/**
|
|
7812
|
-
*
|
|
7812
|
+
* whether this open item is balanced, partially paid or open
|
|
7813
7813
|
*/
|
|
7814
|
-
|
|
7814
|
+
balanceState: OpenItemBalanceState;
|
|
7815
7815
|
|
|
7816
7816
|
/**
|
|
7817
7817
|
* Skontobetrag 1
|
|
@@ -8127,14 +8127,14 @@ export interface OpenItemRecord {
|
|
|
8127
8127
|
version: number;
|
|
8128
8128
|
|
|
8129
8129
|
/**
|
|
8130
|
-
*
|
|
8130
|
+
* Buchungsbetrag in Basiswährung
|
|
8131
8131
|
*/
|
|
8132
|
-
|
|
8132
|
+
baseAmount: number;
|
|
8133
8133
|
|
|
8134
8134
|
/**
|
|
8135
|
-
*
|
|
8135
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8136
8136
|
*/
|
|
8137
|
-
|
|
8137
|
+
transactionId: number;
|
|
8138
8138
|
|
|
8139
8139
|
/**
|
|
8140
8140
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8308,14 +8308,14 @@ export interface PaymentMethod {
|
|
|
8308
8308
|
daysToAddForFollowup: number;
|
|
8309
8309
|
|
|
8310
8310
|
/**
|
|
8311
|
-
*
|
|
8311
|
+
* Die Business Transaction
|
|
8312
8312
|
*/
|
|
8313
|
-
|
|
8313
|
+
businessTransaction: ApiObjectReference;
|
|
8314
8314
|
|
|
8315
8315
|
/**
|
|
8316
|
-
*
|
|
8316
|
+
* external Payment Id
|
|
8317
8317
|
*/
|
|
8318
|
-
|
|
8318
|
+
externalPaymentId: string;
|
|
8319
8319
|
|
|
8320
8320
|
/**
|
|
8321
8321
|
* Unique identifier of the Object
|
|
@@ -9227,14 +9227,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9227
9227
|
printPicklist: boolean;
|
|
9228
9228
|
|
|
9229
9229
|
/**
|
|
9230
|
-
*
|
|
9230
|
+
* Die zu verwendende Pickwagengruppe
|
|
9231
9231
|
*/
|
|
9232
|
-
|
|
9232
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9233
9233
|
|
|
9234
9234
|
/**
|
|
9235
|
-
*
|
|
9235
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9236
9236
|
*/
|
|
9237
|
-
|
|
9237
|
+
maxPicklistLineCount: number;
|
|
9238
9238
|
|
|
9239
9239
|
/**
|
|
9240
9240
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9319,6 +9319,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9319
9319
|
*/
|
|
9320
9320
|
showShippingFormOnPickingFinish: boolean;
|
|
9321
9321
|
|
|
9322
|
+
/**
|
|
9323
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9324
|
+
*/
|
|
9325
|
+
printLabelOnScan: boolean;
|
|
9326
|
+
|
|
9322
9327
|
/**
|
|
9323
9328
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
9324
9329
|
*/
|
|
@@ -9329,11 +9334,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9329
9334
|
*/
|
|
9330
9335
|
allowFullConfirmation: boolean;
|
|
9331
9336
|
|
|
9332
|
-
/**
|
|
9333
|
-
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9334
|
-
*/
|
|
9335
|
-
printLabelOnScan: boolean;
|
|
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
|
*/
|
|
@@ -9448,14 +9448,14 @@ export interface PriceSelectionCriteria {
|
|
|
9448
9448
|
quantity: number;
|
|
9449
9449
|
|
|
9450
9450
|
/**
|
|
9451
|
-
* Liste von
|
|
9451
|
+
* Liste von Artikel-IDs
|
|
9452
9452
|
*/
|
|
9453
|
-
|
|
9453
|
+
articleIds: Array<number>;
|
|
9454
9454
|
|
|
9455
9455
|
/**
|
|
9456
|
-
* Liste von
|
|
9456
|
+
* Liste von Account-IDs
|
|
9457
9457
|
*/
|
|
9458
|
-
|
|
9458
|
+
accountIds: Array<number>;
|
|
9459
9459
|
|
|
9460
9460
|
/**
|
|
9461
9461
|
* ein qualifier
|
|
@@ -9652,14 +9652,14 @@ export interface ProductDiscount {
|
|
|
9652
9652
|
validFrom: ScriptingDate;
|
|
9653
9653
|
|
|
9654
9654
|
/**
|
|
9655
|
-
*
|
|
9655
|
+
* Bestimmt die Art des Rabatts
|
|
9656
9656
|
*/
|
|
9657
|
-
|
|
9657
|
+
modifierType: PriceModifierType;
|
|
9658
9658
|
|
|
9659
9659
|
/**
|
|
9660
|
-
*
|
|
9660
|
+
* Warengruppe
|
|
9661
9661
|
*/
|
|
9662
|
-
|
|
9662
|
+
productGroupRef: ApiObjectReference;
|
|
9663
9663
|
|
|
9664
9664
|
/**
|
|
9665
9665
|
* Version Identifier for this Object (for PUT)
|
|
@@ -9707,14 +9707,14 @@ export interface ProductDiscount {
|
|
|
9707
9707
|
modifierValueType: ValueType;
|
|
9708
9708
|
|
|
9709
9709
|
/**
|
|
9710
|
-
*
|
|
9710
|
+
* Name des Rabatts
|
|
9711
9711
|
*/
|
|
9712
|
-
|
|
9712
|
+
modifierName: string;
|
|
9713
9713
|
|
|
9714
9714
|
/**
|
|
9715
|
-
*
|
|
9715
|
+
* Account, für den der Rabatt gültig ist
|
|
9716
9716
|
*/
|
|
9717
|
-
|
|
9717
|
+
accountRef: ApiObjectReference;
|
|
9718
9718
|
|
|
9719
9719
|
/**
|
|
9720
9720
|
* Unique identifier of the Object
|
|
@@ -10131,14 +10131,14 @@ export interface RequestDocument {
|
|
|
10131
10131
|
contractDetail: DocumentContractDetail;
|
|
10132
10132
|
|
|
10133
10133
|
/**
|
|
10134
|
-
*
|
|
10134
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10135
10135
|
*/
|
|
10136
|
-
|
|
10136
|
+
paymentTermId: number;
|
|
10137
10137
|
|
|
10138
10138
|
/**
|
|
10139
|
-
*
|
|
10139
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10140
10140
|
*/
|
|
10141
|
-
|
|
10141
|
+
supplierAccountId: number;
|
|
10142
10142
|
|
|
10143
10143
|
/**
|
|
10144
10144
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10353,11 +10353,6 @@ export interface RequestDocumentLine {
|
|
|
10353
10353
|
*/
|
|
10354
10354
|
name: string;
|
|
10355
10355
|
|
|
10356
|
-
/**
|
|
10357
|
-
* ID der Quell-Belegposition
|
|
10358
|
-
*/
|
|
10359
|
-
sourceLineId: number;
|
|
10360
|
-
|
|
10361
10356
|
/**
|
|
10362
10357
|
* Für interne Zwecke: Externe Artikelnummer
|
|
10363
10358
|
*/
|
|
@@ -10368,6 +10363,11 @@ export interface RequestDocumentLine {
|
|
|
10368
10363
|
*/
|
|
10369
10364
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10370
10365
|
|
|
10366
|
+
/**
|
|
10367
|
+
* ID der Quell-Belegposition
|
|
10368
|
+
*/
|
|
10369
|
+
sourceLineId: number;
|
|
10370
|
+
|
|
10371
10371
|
/**
|
|
10372
10372
|
* Zu der Zeile Etikettendruck anstoßen
|
|
10373
10373
|
*/
|
|
@@ -10533,14 +10533,14 @@ export interface SalesAgent {
|
|
|
10533
10533
|
note: string;
|
|
10534
10534
|
|
|
10535
10535
|
/**
|
|
10536
|
-
*
|
|
10536
|
+
* reference to the delivery method
|
|
10537
10537
|
*/
|
|
10538
|
-
|
|
10538
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10539
10539
|
|
|
10540
10540
|
/**
|
|
10541
|
-
*
|
|
10541
|
+
* is sales agent taxable
|
|
10542
10542
|
*/
|
|
10543
|
-
|
|
10543
|
+
taxable: boolean;
|
|
10544
10544
|
|
|
10545
10545
|
/**
|
|
10546
10546
|
* Freifelder
|
|
@@ -11227,14 +11227,14 @@ export interface ShelfFile {
|
|
|
11227
11227
|
version: number;
|
|
11228
11228
|
|
|
11229
11229
|
/**
|
|
11230
|
-
*
|
|
11230
|
+
* current reference of this file in our storage
|
|
11231
11231
|
*/
|
|
11232
|
-
|
|
11232
|
+
storageHandle: string;
|
|
11233
11233
|
|
|
11234
11234
|
/**
|
|
11235
|
-
*
|
|
11235
|
+
* meta data
|
|
11236
11236
|
*/
|
|
11237
|
-
|
|
11237
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
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
|
+
* Ziel-Lager
|
|
11501
11501
|
*/
|
|
11502
|
-
|
|
11502
|
+
targetStorageId: number;
|
|
11503
11503
|
|
|
11504
11504
|
/**
|
|
11505
|
-
*
|
|
11505
|
+
* Seriennummer
|
|
11506
11506
|
*/
|
|
11507
|
-
|
|
11507
|
+
serialNumberId: number;
|
|
11508
11508
|
|
|
11509
11509
|
/**
|
|
11510
11510
|
* Bemerkung
|
|
@@ -11714,14 +11714,14 @@ export interface Supplier {
|
|
|
11714
11714
|
info: MetaInfo;
|
|
11715
11715
|
|
|
11716
11716
|
/**
|
|
11717
|
-
*
|
|
11717
|
+
* reference to the delivery method
|
|
11718
11718
|
*/
|
|
11719
|
-
|
|
11719
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11720
11720
|
|
|
11721
11721
|
/**
|
|
11722
|
-
*
|
|
11722
|
+
* Lieferantengruppe
|
|
11723
11723
|
*/
|
|
11724
|
-
|
|
11724
|
+
supplierGroupRef: ApiObjectReference;
|
|
11725
11725
|
|
|
11726
11726
|
/**
|
|
11727
11727
|
* tax able or tax free
|
|
@@ -11779,14 +11779,14 @@ export interface Supplier {
|
|
|
11779
11779
|
performanceCountryCode: string;
|
|
11780
11780
|
|
|
11781
11781
|
/**
|
|
11782
|
-
*
|
|
11782
|
+
* Lieferzeit in (Werk-)Tagen
|
|
11783
11783
|
*/
|
|
11784
|
-
|
|
11784
|
+
defaultDeliveryTime: number;
|
|
11785
11785
|
|
|
11786
11786
|
/**
|
|
11787
|
-
*
|
|
11787
|
+
* reference to the payment method
|
|
11788
11788
|
*/
|
|
11789
|
-
|
|
11789
|
+
paymentMethodRef: ApiObjectReference;
|
|
11790
11790
|
|
|
11791
11791
|
/**
|
|
11792
11792
|
* currency code IsoAlpha3
|
|
@@ -11807,14 +11807,14 @@ export interface TagDto {
|
|
|
11807
11807
|
editColor: string;
|
|
11808
11808
|
|
|
11809
11809
|
/**
|
|
11810
|
-
* Farbe
|
|
11810
|
+
* Farbe für die Anzeige des Tags
|
|
11811
11811
|
*/
|
|
11812
|
-
|
|
11812
|
+
color: string;
|
|
11813
11813
|
|
|
11814
11814
|
/**
|
|
11815
|
-
* Farbe
|
|
11815
|
+
* Farbe in Such-GUI
|
|
11816
11816
|
*/
|
|
11817
|
-
|
|
11817
|
+
searchColor: string;
|
|
11818
11818
|
|
|
11819
11819
|
/**
|
|
11820
11820
|
* Beschriftung des Tags
|
|
@@ -12121,14 +12121,14 @@ export interface User {
|
|
|
12121
12121
|
roles: Array<ApiObjectReference>;
|
|
12122
12122
|
|
|
12123
12123
|
/**
|
|
12124
|
-
*
|
|
12124
|
+
* Gruppen
|
|
12125
12125
|
*/
|
|
12126
|
-
|
|
12126
|
+
groups: Array<ApiObjectReference>;
|
|
12127
12127
|
|
|
12128
12128
|
/**
|
|
12129
|
-
*
|
|
12129
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12130
12130
|
*/
|
|
12131
|
-
|
|
12131
|
+
referencedCustomerUserId: number;
|
|
12132
12132
|
|
|
12133
12133
|
/**
|
|
12134
12134
|
* Is the user active?
|
|
@@ -12361,14 +12361,14 @@ export interface VariantValue {
|
|
|
12361
12361
|
version: number;
|
|
12362
12362
|
|
|
12363
12363
|
/**
|
|
12364
|
-
*
|
|
12364
|
+
* Mehrsprachige Bezeichnungen
|
|
12365
12365
|
*/
|
|
12366
|
-
|
|
12366
|
+
labels: Array<VariantDescription>;
|
|
12367
12367
|
|
|
12368
12368
|
/**
|
|
12369
|
-
*
|
|
12369
|
+
* Variantenattribut
|
|
12370
12370
|
*/
|
|
12371
|
-
|
|
12371
|
+
attributeRef: ApiObjectReference;
|
|
12372
12372
|
|
|
12373
12373
|
/**
|
|
12374
12374
|
* MetaInformations for this Object
|