@vario-software/types 2026.19.3 → 2026.20.0
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/schema/erp.d.ts +36 -4
- package/scripting/eav_types.d.ts +6 -0
- package/scripting/services.d.ts +87 -22
- package/scripting/types.d.ts +251 -203
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -78870,8 +78870,6 @@ export interface components {
|
|
|
78870
78870
|
startEntityIdentifier?: string;
|
|
78871
78871
|
/** @description Unter-Objekte, für die eine resolving strategy definiert werden kann */
|
|
78872
78872
|
subgraphs?: components["schemas"]["common-data_import-ResolvingStrategyInformation"][];
|
|
78873
|
-
/** @description Upload von zusätzlichen Dateien möglich? */
|
|
78874
|
-
supportsFileUpload?: boolean;
|
|
78875
78873
|
/** @description Wird der Validierungsschritt unterstützt? */
|
|
78876
78874
|
supportsValidation?: boolean;
|
|
78877
78875
|
/** @enum {string} */
|
|
@@ -87001,6 +86999,8 @@ export interface components {
|
|
|
87001
86999
|
/** @description Produktionsdetails zu einer Komponente */
|
|
87002
87000
|
"erp-fabrication-DocumentLineComponentFabricationDetail": {
|
|
87003
87001
|
custom?: components["schemas"]["unknownservice-unknownmodule-JsonNode"];
|
|
87002
|
+
/** @description Abweichende Herstellungskosten */
|
|
87003
|
+
deviatingUnitPrice?: number;
|
|
87004
87004
|
/** @description Unique identifier of the Object */
|
|
87005
87005
|
id?: string;
|
|
87006
87006
|
info?: components["schemas"]["core-api-MetaInfo"];
|
|
@@ -88368,6 +88368,11 @@ export interface components {
|
|
|
88368
88368
|
targetOpenItemId?: number;
|
|
88369
88369
|
};
|
|
88370
88370
|
"erp-finance-PaymentCreationRequest": {
|
|
88371
|
+
/**
|
|
88372
|
+
* Format: date
|
|
88373
|
+
* @description Manuell gesetztes Ausführungsdatum; wird verwendet, wenn die Vorlage manuallySetExecutionDate=true hat
|
|
88374
|
+
*/
|
|
88375
|
+
executionDate?: string;
|
|
88371
88376
|
/** @description Detailangaben für die Zahlung */
|
|
88372
88377
|
paymentDetails?: components["schemas"]["erp-finance-PaymentCreationRequestDetail"][];
|
|
88373
88378
|
/**
|
|
@@ -88651,6 +88656,11 @@ export interface components {
|
|
|
88651
88656
|
};
|
|
88652
88657
|
/** @description Zahlungsvorlage zur Vorbelegung von Feldern in einer Zahlung */
|
|
88653
88658
|
"erp-payment-PaymentTemplate": {
|
|
88659
|
+
/**
|
|
88660
|
+
* @description Skonto immer ziehen
|
|
88661
|
+
* @default false
|
|
88662
|
+
*/
|
|
88663
|
+
alwaysUseDiscount1: boolean;
|
|
88654
88664
|
/**
|
|
88655
88665
|
* @description Sammelauftrag möglich
|
|
88656
88666
|
* @default false
|
|
@@ -88668,6 +88678,11 @@ export interface components {
|
|
|
88668
88678
|
info?: components["schemas"]["core-api-MetaInfo"];
|
|
88669
88679
|
/** @description Bezeichnung der Zahlungsvorlage */
|
|
88670
88680
|
label: string;
|
|
88681
|
+
/**
|
|
88682
|
+
* @description Ausführungsdatum manuell setzen
|
|
88683
|
+
* @default false
|
|
88684
|
+
*/
|
|
88685
|
+
manuallySetExecutionDate: boolean;
|
|
88671
88686
|
/** @description Die einzelnen Feldvorbelegungen der Zahlungsvorlage */
|
|
88672
88687
|
paymentTemplateEntries?: components["schemas"]["erp-payment-PaymentTemplateEntry"][];
|
|
88673
88688
|
/**
|
|
@@ -89549,6 +89564,8 @@ export interface components {
|
|
|
89549
89564
|
componentArticleRef: components["schemas"]["erp-product-ProductArticleRef"];
|
|
89550
89565
|
/** @description Beschreibung */
|
|
89551
89566
|
description?: string;
|
|
89567
|
+
/** @description Abweichende Herstellungskosten */
|
|
89568
|
+
deviatingUnitPrice?: number;
|
|
89552
89569
|
deviatingUnitRef?: components["schemas"]["common-masterdata-UnitTypeReference"];
|
|
89553
89570
|
fabricationArticleRef: components["schemas"]["erp-product-ProductArticleRef"];
|
|
89554
89571
|
/**
|
|
@@ -90392,17 +90409,32 @@ export interface components {
|
|
|
90392
90409
|
defaultSalesChannel?: boolean;
|
|
90393
90410
|
/** @description Beschreibung */
|
|
90394
90411
|
description?: string;
|
|
90395
|
-
/** @description Externe
|
|
90396
|
-
readonly
|
|
90412
|
+
/** @description Externe Referenzen */
|
|
90413
|
+
readonly externalReferences?: string;
|
|
90397
90414
|
fiscalizationBackend?: components["schemas"]["core-api-ApiObjectReference"];
|
|
90398
90415
|
/** @description Unique identifier of the Object */
|
|
90399
90416
|
id?: string;
|
|
90400
90417
|
info?: components["schemas"]["core-api-MetaInfo"];
|
|
90401
90418
|
/** @description Bezeichnung */
|
|
90402
90419
|
label?: string;
|
|
90420
|
+
/**
|
|
90421
|
+
* Format: date
|
|
90422
|
+
* @description Letzter TSS-Export-Tag
|
|
90423
|
+
*/
|
|
90424
|
+
readonly lastTssExportDate?: string;
|
|
90425
|
+
/**
|
|
90426
|
+
* Format: date
|
|
90427
|
+
* @description Aktuell laufender TSS-Export bis
|
|
90428
|
+
*/
|
|
90429
|
+
readonly pendingTssExportDateEnd?: string;
|
|
90403
90430
|
reportGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
90404
90431
|
/** @description Lagerzuordnungen */
|
|
90405
90432
|
salesChannelStorages?: components["schemas"]["erp-sales_channel-SalesChannelStorage"][];
|
|
90433
|
+
/**
|
|
90434
|
+
* @description TSS-Export-Zustand
|
|
90435
|
+
* @enum {string}
|
|
90436
|
+
*/
|
|
90437
|
+
readonly tssExportState?: "PENDING" | "FINISHED";
|
|
90406
90438
|
/** @description Version Identifier for this Object (for PUT) */
|
|
90407
90439
|
version?: string;
|
|
90408
90440
|
};
|
package/scripting/eav_types.d.ts
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
-
Account, AccountAddress, AccountBankdetail,
|
|
3
|
-
AccountManufacturer, AccountManufacturerDescription,
|
|
4
|
-
AccountRelation, AdditionalParameter, ApiCreatableReference,
|
|
2
|
+
Account, AccountAddress, AccountBankdetail, AccountListing,
|
|
3
|
+
AccountLoanValue, AccountManufacturer, AccountManufacturerDescription,
|
|
4
|
+
AccountPerson, AccountRelation, AdditionalParameter, ApiCreatableReference,
|
|
5
5
|
ApiObjectReference, Article, Article$Metric,
|
|
6
6
|
ArticleAvailabilityDetermination, ArticleIdentifier, ArticleListing,
|
|
7
7
|
ArticlePrintLabelSettings, ArticleSerialNumber, ArticleStorage,
|
|
@@ -54,6 +54,66 @@ import {
|
|
|
54
54
|
VariantSchema, VariantValue, VariantValueListing
|
|
55
55
|
} from "./types"
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
59
|
+
*/
|
|
60
|
+
export interface AccountListingScriptingService {
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Persistiert ein DTO
|
|
64
|
+
*
|
|
65
|
+
* @param {AccountListing} toCreate - Das zu persistierende DTO
|
|
66
|
+
* @return {AccountListing} Das persistierte DTO
|
|
67
|
+
*/
|
|
68
|
+
create(toCreate: AccountListing): AccountListing;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Löscht eine Entity
|
|
72
|
+
*
|
|
73
|
+
* @param {number} id - ID der zu löschenden Entity
|
|
74
|
+
*/
|
|
75
|
+
deleteById(id: number): void;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Erstellt eine neue DTO-Instanz
|
|
79
|
+
*
|
|
80
|
+
* @return {AccountListing} Die neue DTO-Instanz
|
|
81
|
+
*/
|
|
82
|
+
getNewDto(): AccountListing;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Liest eine Liste von DTOs
|
|
86
|
+
*
|
|
87
|
+
* @param {Array<number>} ids - Die Liste der gelesenen DTOs
|
|
88
|
+
* @return {Array<AccountListing>} Die Liste der gelesenen DTOs
|
|
89
|
+
*/
|
|
90
|
+
readAllById(ids: Array<number>): Array<AccountListing>;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Liest ein DTO
|
|
94
|
+
*
|
|
95
|
+
* @param {number} id - ID vom zu lesenden DTO
|
|
96
|
+
* @return {AccountListing} Das gelesene DTO
|
|
97
|
+
*/
|
|
98
|
+
readById(id: number): AccountListing;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Persistiert eine DTO
|
|
102
|
+
*
|
|
103
|
+
* @param {AccountListing} toStore - Das zu persistierende DTO
|
|
104
|
+
* @return {AccountListing} Das persistierte DTO
|
|
105
|
+
*/
|
|
106
|
+
store(toStore: AccountListing): AccountListing;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Aktualisiert ein persistiertes DTO
|
|
110
|
+
*
|
|
111
|
+
* @param {AccountListing} toUpdate - Die zu aktualisierende Entity
|
|
112
|
+
* @return {AccountListing} Das aktualisierte DTO
|
|
113
|
+
*/
|
|
114
|
+
update(toUpdate: AccountListing): AccountListing;
|
|
115
|
+
}
|
|
116
|
+
|
|
57
117
|
/**
|
|
58
118
|
* Service zur Verarbeitung von Accounts
|
|
59
119
|
*/
|
|
@@ -410,27 +470,27 @@ export interface ArticleScriptingService {
|
|
|
410
470
|
*
|
|
411
471
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
412
472
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
473
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
474
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
413
475
|
*/
|
|
414
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
476
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
415
477
|
|
|
416
478
|
/**
|
|
417
479
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
418
480
|
*
|
|
419
481
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
420
482
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
421
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
422
483
|
*/
|
|
423
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
484
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
424
485
|
|
|
425
486
|
/**
|
|
426
487
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
427
488
|
*
|
|
428
489
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
429
490
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
430
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
431
491
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
432
492
|
*/
|
|
433
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
493
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
434
494
|
|
|
435
495
|
/**
|
|
436
496
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -476,16 +536,16 @@ export interface ArticleScriptingService {
|
|
|
476
536
|
* Führt einen Etikettendrucklauf aus
|
|
477
537
|
*
|
|
478
538
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
479
|
-
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
480
539
|
*/
|
|
481
|
-
executeLabelPrintBatch(batchIdentifier: string
|
|
540
|
+
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
482
541
|
|
|
483
542
|
/**
|
|
484
543
|
* Führt einen Etikettendrucklauf aus
|
|
485
544
|
*
|
|
486
545
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
546
|
+
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
487
547
|
*/
|
|
488
|
-
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
548
|
+
executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
|
|
489
549
|
|
|
490
550
|
/**
|
|
491
551
|
* Liefert die Einkaufsrabatte zu einem Artikel
|
|
@@ -551,21 +611,21 @@ export interface ArticleScriptingService {
|
|
|
551
611
|
readById(id: number, languageCode: string): Article;
|
|
552
612
|
|
|
553
613
|
/**
|
|
554
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
614
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
555
615
|
*
|
|
556
616
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
557
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
558
617
|
* @return {Article} Der gelesene Artikel
|
|
559
618
|
*/
|
|
560
|
-
readByNumber(articleNumber: string
|
|
619
|
+
readByNumber(articleNumber: string): Article;
|
|
561
620
|
|
|
562
621
|
/**
|
|
563
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
622
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
564
623
|
*
|
|
565
624
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
625
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
566
626
|
* @return {Article} Der gelesene Artikel
|
|
567
627
|
*/
|
|
568
|
-
readByNumber(articleNumber: string): Article;
|
|
628
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
569
629
|
|
|
570
630
|
/**
|
|
571
631
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1494,18 +1554,18 @@ export interface DocumentScriptingService {
|
|
|
1494
1554
|
* Löst einen Beleg auf
|
|
1495
1555
|
*
|
|
1496
1556
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1557
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1497
1558
|
* @return {Document} Der aufgelöste Beleg
|
|
1498
1559
|
*/
|
|
1499
|
-
dissolve(documentId: number): Document;
|
|
1560
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1500
1561
|
|
|
1501
1562
|
/**
|
|
1502
1563
|
* Löst einen Beleg auf
|
|
1503
1564
|
*
|
|
1504
1565
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1505
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1506
1566
|
* @return {Document} Der aufgelöste Beleg
|
|
1507
1567
|
*/
|
|
1508
|
-
dissolve(documentId: number
|
|
1568
|
+
dissolve(documentId: number): Document;
|
|
1509
1569
|
|
|
1510
1570
|
/**
|
|
1511
1571
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -2546,6 +2606,11 @@ export interface ScriptingServiceList {
|
|
|
2546
2606
|
*/
|
|
2547
2607
|
outputHelper: ScriptOutputHelperService;
|
|
2548
2608
|
|
|
2609
|
+
/**
|
|
2610
|
+
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
2611
|
+
*/
|
|
2612
|
+
accountListingService: AccountListingScriptingService;
|
|
2613
|
+
|
|
2549
2614
|
/**
|
|
2550
2615
|
* Erstellt DTOs zur Verwendung im Skript
|
|
2551
2616
|
*/
|
|
@@ -2709,18 +2774,18 @@ export interface ScriptingUtilities {
|
|
|
2709
2774
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2710
2775
|
*
|
|
2711
2776
|
* @param {object} value - Der Quell-Wert
|
|
2777
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2712
2778
|
* @return {number} Ein BigDecimal-Wert
|
|
2713
2779
|
*/
|
|
2714
|
-
newBigDecimal(value: object): number;
|
|
2780
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2715
2781
|
|
|
2716
2782
|
/**
|
|
2717
2783
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2718
2784
|
*
|
|
2719
2785
|
* @param {object} value - Der Quell-Wert
|
|
2720
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2721
2786
|
* @return {number} Ein BigDecimal-Wert
|
|
2722
2787
|
*/
|
|
2723
|
-
newBigDecimal(value: object
|
|
2788
|
+
newBigDecimal(value: object): number;
|
|
2724
2789
|
|
|
2725
2790
|
/**
|
|
2726
2791
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EavAccount, EavAccountaddress,
|
|
3
|
-
EavArticleListing, EavArticleListingDescription, EavContact,
|
|
2
|
+
EavAccount, EavAccountaddress, EavAccountlisting, EavAccountperson,
|
|
3
|
+
EavArticle, EavArticleListing, EavArticleListingDescription, EavContact,
|
|
4
4
|
EavCrmactivity, EavCrmdeal, EavCrmproject, EavCrmtask, EavDocument,
|
|
5
5
|
EavDocumentline, EavDocumentlinecomponent, EavFabrication,
|
|
6
6
|
EavFabricationline, EavFabricationlinecomponent, EavProductgroup,
|
|
@@ -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
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
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
|
|
@@ -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
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -544,6 +544,49 @@ export const enum AccountBillingType {
|
|
|
544
544
|
NET = 'NET'
|
|
545
545
|
}
|
|
546
546
|
|
|
547
|
+
export interface AccountListing {
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* Kunde gelistet?
|
|
551
|
+
*/
|
|
552
|
+
customerListed: boolean;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* Hersteller gelisted?
|
|
556
|
+
*/
|
|
557
|
+
manufacturerListed: boolean;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Verkaufskanal
|
|
561
|
+
*/
|
|
562
|
+
salesChannelRef: ApiObjectReference;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* Freifeld
|
|
566
|
+
*/
|
|
567
|
+
custom: EavAccountlisting;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* Adresse
|
|
571
|
+
*/
|
|
572
|
+
accountRef: ApiObjectReference;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Unique identifier of the Object
|
|
576
|
+
*/
|
|
577
|
+
id: number;
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* Version Identifier for this Object (for PUT)
|
|
581
|
+
*/
|
|
582
|
+
version: number;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* MetaInformations for this Object
|
|
586
|
+
*/
|
|
587
|
+
info: MetaInfo;
|
|
588
|
+
}
|
|
589
|
+
|
|
547
590
|
export interface AccountLoanValue {
|
|
548
591
|
|
|
549
592
|
/**
|
|
@@ -971,14 +1014,14 @@ export interface Article {
|
|
|
971
1014
|
baseCapacityUnit: UnitTypeReference;
|
|
972
1015
|
|
|
973
1016
|
/**
|
|
974
|
-
*
|
|
1017
|
+
* is this product sellable without any quantity at the stock
|
|
975
1018
|
*/
|
|
976
|
-
|
|
1019
|
+
sellableWithoutStock: boolean;
|
|
977
1020
|
|
|
978
1021
|
/**
|
|
979
|
-
*
|
|
1022
|
+
* Seriennummern Auszeichnungsart
|
|
980
1023
|
*/
|
|
981
|
-
|
|
1024
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
982
1025
|
|
|
983
1026
|
/**
|
|
984
1027
|
* Durchschnittl. EKP (Startwert)
|
|
@@ -1006,14 +1049,14 @@ export interface Article {
|
|
|
1006
1049
|
warrantyInMonths: number;
|
|
1007
1050
|
|
|
1008
1051
|
/**
|
|
1009
|
-
*
|
|
1052
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1010
1053
|
*/
|
|
1011
|
-
|
|
1054
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1012
1055
|
|
|
1013
1056
|
/**
|
|
1014
|
-
*
|
|
1057
|
+
* weight and size w.o. packaging
|
|
1015
1058
|
*/
|
|
1016
|
-
|
|
1059
|
+
netMetric: Article$Metric;
|
|
1017
1060
|
|
|
1018
1061
|
/**
|
|
1019
1062
|
* unique product number
|
|
@@ -1156,14 +1199,14 @@ export interface Article {
|
|
|
1156
1199
|
workUnitInMinutes: number;
|
|
1157
1200
|
|
|
1158
1201
|
/**
|
|
1159
|
-
*
|
|
1202
|
+
* description custom data
|
|
1160
1203
|
*/
|
|
1161
|
-
|
|
1204
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1162
1205
|
|
|
1163
1206
|
/**
|
|
1164
|
-
*
|
|
1207
|
+
* Frei kommissionierbar
|
|
1165
1208
|
*/
|
|
1166
|
-
|
|
1209
|
+
freelyPickable: boolean;
|
|
1167
1210
|
|
|
1168
1211
|
/**
|
|
1169
1212
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1241,14 +1284,14 @@ export interface Article {
|
|
|
1241
1284
|
isDangerousGood: boolean;
|
|
1242
1285
|
|
|
1243
1286
|
/**
|
|
1244
|
-
*
|
|
1287
|
+
* rabattierbarer Artikel?
|
|
1245
1288
|
*/
|
|
1246
|
-
|
|
1289
|
+
discountable: boolean;
|
|
1247
1290
|
|
|
1248
1291
|
/**
|
|
1249
|
-
*
|
|
1292
|
+
* Kontingentartikel
|
|
1250
1293
|
*/
|
|
1251
|
-
|
|
1294
|
+
contingentArticleRef: ApiObjectReference;
|
|
1252
1295
|
|
|
1253
1296
|
/**
|
|
1254
1297
|
* alternative name of this product
|
|
@@ -1286,14 +1329,14 @@ export interface Article {
|
|
|
1286
1329
|
custom: EavArticle;
|
|
1287
1330
|
|
|
1288
1331
|
/**
|
|
1289
|
-
*
|
|
1332
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1290
1333
|
*/
|
|
1291
|
-
|
|
1334
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1292
1335
|
|
|
1293
1336
|
/**
|
|
1294
|
-
*
|
|
1337
|
+
* Art des Haltbarkeitsdatums
|
|
1295
1338
|
*/
|
|
1296
|
-
|
|
1339
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1297
1340
|
|
|
1298
1341
|
/**
|
|
1299
1342
|
* Hersteller
|
|
@@ -1479,14 +1522,14 @@ export interface ArticleListing {
|
|
|
1479
1522
|
proposedLowestPriceGross: number;
|
|
1480
1523
|
|
|
1481
1524
|
/**
|
|
1482
|
-
*
|
|
1525
|
+
* der Sales Channel
|
|
1483
1526
|
*/
|
|
1484
|
-
|
|
1527
|
+
salesChannelRef: ApiObjectReference;
|
|
1485
1528
|
|
|
1486
1529
|
/**
|
|
1487
|
-
* der
|
|
1530
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1488
1531
|
*/
|
|
1489
|
-
|
|
1532
|
+
customLowestPriceGross: number;
|
|
1490
1533
|
|
|
1491
1534
|
/**
|
|
1492
1535
|
* soll der Artikel gelistet werden
|
|
@@ -1761,14 +1804,14 @@ export interface ArticleStorage {
|
|
|
1761
1804
|
storageRef: ApiObjectReference;
|
|
1762
1805
|
|
|
1763
1806
|
/**
|
|
1764
|
-
*
|
|
1807
|
+
* Vorgabe-Lagerplätze
|
|
1765
1808
|
*/
|
|
1766
|
-
|
|
1809
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1767
1810
|
|
|
1768
1811
|
/**
|
|
1769
|
-
*
|
|
1812
|
+
* Sollbestand
|
|
1770
1813
|
*/
|
|
1771
|
-
|
|
1814
|
+
targetStock: number;
|
|
1772
1815
|
|
|
1773
1816
|
/**
|
|
1774
1817
|
* Aktuelle Menge in Produktion
|
|
@@ -1793,26 +1836,26 @@ export interface ArticleSupplier {
|
|
|
1793
1836
|
*/
|
|
1794
1837
|
useSupplierArticleDescription: boolean;
|
|
1795
1838
|
|
|
1796
|
-
/**
|
|
1797
|
-
* Anzeigename des Accounts
|
|
1798
|
-
*/
|
|
1799
|
-
accountDisplayName: string;
|
|
1800
|
-
|
|
1801
1839
|
/**
|
|
1802
1840
|
* Lieferanten-Meldebestand
|
|
1803
1841
|
*/
|
|
1804
1842
|
supplierReportingStock: number;
|
|
1805
1843
|
|
|
1806
1844
|
/**
|
|
1807
|
-
*
|
|
1845
|
+
* Anzeigename des Accounts
|
|
1808
1846
|
*/
|
|
1809
|
-
|
|
1847
|
+
accountDisplayName: string;
|
|
1810
1848
|
|
|
1811
1849
|
/**
|
|
1812
1850
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1813
1851
|
*/
|
|
1814
1852
|
useSupplierArticleIdentifier: boolean;
|
|
1815
1853
|
|
|
1854
|
+
/**
|
|
1855
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1856
|
+
*/
|
|
1857
|
+
deliveryTime: number;
|
|
1858
|
+
|
|
1816
1859
|
/**
|
|
1817
1860
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1818
1861
|
*/
|
|
@@ -1859,14 +1902,14 @@ export interface ArticleSupplier {
|
|
|
1859
1902
|
info: MetaInfo;
|
|
1860
1903
|
|
|
1861
1904
|
/**
|
|
1862
|
-
*
|
|
1905
|
+
* Verpackungseinheit
|
|
1863
1906
|
*/
|
|
1864
|
-
|
|
1907
|
+
packagingUnit: number;
|
|
1865
1908
|
|
|
1866
1909
|
/**
|
|
1867
|
-
*
|
|
1910
|
+
* Referenced Article name
|
|
1868
1911
|
*/
|
|
1869
|
-
|
|
1912
|
+
articleName: string;
|
|
1870
1913
|
|
|
1871
1914
|
/**
|
|
1872
1915
|
* Lieferanten-Preise
|
|
@@ -1914,14 +1957,14 @@ export interface ArticleSupplier {
|
|
|
1914
1957
|
defaultNetPrice: number;
|
|
1915
1958
|
|
|
1916
1959
|
/**
|
|
1917
|
-
*
|
|
1960
|
+
* Einkaufseinheit
|
|
1918
1961
|
*/
|
|
1919
|
-
|
|
1962
|
+
purchaseUnit: number;
|
|
1920
1963
|
|
|
1921
1964
|
/**
|
|
1922
|
-
*
|
|
1965
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1923
1966
|
*/
|
|
1924
|
-
|
|
1967
|
+
orderOnComponentBase: boolean;
|
|
1925
1968
|
|
|
1926
1969
|
/**
|
|
1927
1970
|
* Referenced Supplier-Account
|
|
@@ -2197,14 +2240,14 @@ export interface CrmActivity {
|
|
|
2197
2240
|
info: MetaInfo;
|
|
2198
2241
|
|
|
2199
2242
|
/**
|
|
2200
|
-
*
|
|
2243
|
+
* geplante Dauer
|
|
2201
2244
|
*/
|
|
2202
|
-
|
|
2245
|
+
plannedDurationInSeconds: number;
|
|
2203
2246
|
|
|
2204
2247
|
/**
|
|
2205
|
-
*
|
|
2248
|
+
* Aktivität intern abgerechnet?
|
|
2206
2249
|
*/
|
|
2207
|
-
|
|
2250
|
+
internalBilled: boolean;
|
|
2208
2251
|
|
|
2209
2252
|
/**
|
|
2210
2253
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2780,14 +2823,14 @@ export interface CrmProject {
|
|
|
2780
2823
|
billedTimes: number;
|
|
2781
2824
|
|
|
2782
2825
|
/**
|
|
2783
|
-
*
|
|
2826
|
+
* Einkaufsbelege
|
|
2784
2827
|
*/
|
|
2785
|
-
|
|
2828
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2786
2829
|
|
|
2787
2830
|
/**
|
|
2788
|
-
*
|
|
2831
|
+
* Geplanter Projektzeitraum (von)
|
|
2789
2832
|
*/
|
|
2790
|
-
|
|
2833
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2791
2834
|
|
|
2792
2835
|
/**
|
|
2793
2836
|
* Verkaufsbelege
|
|
@@ -3065,6 +3108,11 @@ export interface CrmSubType {
|
|
|
3065
3108
|
|
|
3066
3109
|
export interface CrmTask {
|
|
3067
3110
|
|
|
3111
|
+
/**
|
|
3112
|
+
* Liste von Erinnerungen
|
|
3113
|
+
*/
|
|
3114
|
+
reminders: Array<CrmReminder>;
|
|
3115
|
+
|
|
3068
3116
|
/**
|
|
3069
3117
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3070
3118
|
*/
|
|
@@ -3075,11 +3123,6 @@ export interface CrmTask {
|
|
|
3075
3123
|
*/
|
|
3076
3124
|
customerOfferRef: DocumentRef;
|
|
3077
3125
|
|
|
3078
|
-
/**
|
|
3079
|
-
* Liste von Erinnerungen
|
|
3080
|
-
*/
|
|
3081
|
-
reminders: Array<CrmReminder>;
|
|
3082
|
-
|
|
3083
3126
|
/**
|
|
3084
3127
|
* Notizen
|
|
3085
3128
|
*/
|
|
@@ -3470,14 +3513,14 @@ export interface Customer {
|
|
|
3470
3513
|
dueDate: ScriptingDate;
|
|
3471
3514
|
|
|
3472
3515
|
/**
|
|
3473
|
-
*
|
|
3516
|
+
* collective billable
|
|
3474
3517
|
*/
|
|
3475
|
-
|
|
3518
|
+
collectiveBillable: boolean;
|
|
3476
3519
|
|
|
3477
3520
|
/**
|
|
3478
|
-
*
|
|
3521
|
+
* Maximal mögliche Lieferungen
|
|
3479
3522
|
*/
|
|
3480
|
-
|
|
3523
|
+
maxDeliveries: number;
|
|
3481
3524
|
|
|
3482
3525
|
/**
|
|
3483
3526
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3666,14 +3709,14 @@ export interface DeliveryMethod {
|
|
|
3666
3709
|
translations: Array<DocumentTypeTerm>;
|
|
3667
3710
|
|
|
3668
3711
|
/**
|
|
3669
|
-
*
|
|
3712
|
+
* Versand-Anbieter
|
|
3670
3713
|
*/
|
|
3671
|
-
|
|
3714
|
+
vdsCarrierId: number;
|
|
3672
3715
|
|
|
3673
3716
|
/**
|
|
3674
|
-
*
|
|
3717
|
+
* Gültige Ländercodes
|
|
3675
3718
|
*/
|
|
3676
|
-
|
|
3719
|
+
validCountryCodes: Array<string>;
|
|
3677
3720
|
|
|
3678
3721
|
/**
|
|
3679
3722
|
* Standardgewichtseinheit
|
|
@@ -3754,14 +3797,14 @@ export interface DeliveryTerm {
|
|
|
3754
3797
|
version: number;
|
|
3755
3798
|
|
|
3756
3799
|
/**
|
|
3757
|
-
*
|
|
3800
|
+
* translations
|
|
3758
3801
|
*/
|
|
3759
|
-
|
|
3802
|
+
translations: Array<DocumentTypeTerm>;
|
|
3760
3803
|
|
|
3761
3804
|
/**
|
|
3762
|
-
*
|
|
3805
|
+
* information, how the shipping charges should be calculated
|
|
3763
3806
|
*/
|
|
3764
|
-
|
|
3807
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3765
3808
|
|
|
3766
3809
|
/**
|
|
3767
3810
|
* Lieferarten
|
|
@@ -3774,14 +3817,14 @@ export interface DeliveryTerm {
|
|
|
3774
3817
|
id: number;
|
|
3775
3818
|
|
|
3776
3819
|
/**
|
|
3777
|
-
*
|
|
3820
|
+
* free shipping net value
|
|
3778
3821
|
*/
|
|
3779
|
-
|
|
3822
|
+
freeShippingNetValue: number;
|
|
3780
3823
|
|
|
3781
3824
|
/**
|
|
3782
|
-
*
|
|
3825
|
+
* Versandkostenartikel
|
|
3783
3826
|
*/
|
|
3784
|
-
|
|
3827
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3785
3828
|
|
|
3786
3829
|
/**
|
|
3787
3830
|
* MetaInformations for this Object
|
|
@@ -3880,14 +3923,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3880
3923
|
deliveryQuantityPackages: number;
|
|
3881
3924
|
|
|
3882
3925
|
/**
|
|
3883
|
-
*
|
|
3926
|
+
* Leitweg-ID
|
|
3884
3927
|
*/
|
|
3885
|
-
|
|
3928
|
+
buyerReference: string;
|
|
3886
3929
|
|
|
3887
3930
|
/**
|
|
3888
|
-
*
|
|
3931
|
+
* Bestellnummer aus Vorbeleg
|
|
3889
3932
|
*/
|
|
3890
|
-
|
|
3933
|
+
referencedOrderNumber: string;
|
|
3891
3934
|
|
|
3892
3935
|
/**
|
|
3893
3936
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4302,14 +4345,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4302
4345
|
taxIdentificationNumber: string;
|
|
4303
4346
|
|
|
4304
4347
|
/**
|
|
4305
|
-
*
|
|
4348
|
+
* Referenz auf Lieferbedingung
|
|
4306
4349
|
*/
|
|
4307
|
-
|
|
4350
|
+
deliveryTermRef: ApiObjectReference;
|
|
4308
4351
|
|
|
4309
4352
|
/**
|
|
4310
|
-
*
|
|
4353
|
+
* Rückgeld
|
|
4311
4354
|
*/
|
|
4312
|
-
|
|
4355
|
+
posReceiptChangeAmount: number;
|
|
4313
4356
|
|
|
4314
4357
|
/**
|
|
4315
4358
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4349,14 +4392,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4349
4392
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4350
4393
|
|
|
4351
4394
|
/**
|
|
4352
|
-
*
|
|
4395
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4353
4396
|
*/
|
|
4354
|
-
|
|
4397
|
+
reportGroupRef: ApiObjectReference;
|
|
4355
4398
|
|
|
4356
4399
|
/**
|
|
4357
|
-
*
|
|
4400
|
+
* Bestellt durch Ansprechpartner
|
|
4358
4401
|
*/
|
|
4359
|
-
|
|
4402
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4360
4403
|
}
|
|
4361
4404
|
|
|
4362
4405
|
export interface DocumentAdditionalInfo {
|
|
@@ -4367,14 +4410,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4367
4410
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4368
4411
|
|
|
4369
4412
|
/**
|
|
4370
|
-
*
|
|
4413
|
+
* Herkunft der Sprache
|
|
4371
4414
|
*/
|
|
4372
|
-
|
|
4415
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4373
4416
|
|
|
4374
4417
|
/**
|
|
4375
|
-
*
|
|
4418
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4376
4419
|
*/
|
|
4377
|
-
|
|
4420
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4378
4421
|
|
|
4379
4422
|
/**
|
|
4380
4423
|
* Herkunft der Käufer-Referenz
|
|
@@ -4382,14 +4425,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4382
4425
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4383
4426
|
|
|
4384
4427
|
/**
|
|
4385
|
-
*
|
|
4428
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4386
4429
|
*/
|
|
4387
|
-
|
|
4430
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4388
4431
|
|
|
4389
4432
|
/**
|
|
4390
|
-
*
|
|
4433
|
+
* Herkunft des Berechnungsmodus
|
|
4391
4434
|
*/
|
|
4392
|
-
|
|
4435
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4393
4436
|
|
|
4394
4437
|
/**
|
|
4395
4438
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -4507,14 +4550,14 @@ export interface DocumentAddress {
|
|
|
4507
4550
|
postOfficeBox: string;
|
|
4508
4551
|
|
|
4509
4552
|
/**
|
|
4510
|
-
*
|
|
4553
|
+
* Street
|
|
4511
4554
|
*/
|
|
4512
|
-
|
|
4555
|
+
street: string;
|
|
4513
4556
|
|
|
4514
4557
|
/**
|
|
4515
|
-
*
|
|
4558
|
+
* country code IsoAlpha3
|
|
4516
4559
|
*/
|
|
4517
|
-
|
|
4560
|
+
countryCode: string;
|
|
4518
4561
|
|
|
4519
4562
|
/**
|
|
4520
4563
|
* Unique identifier of the Object
|
|
@@ -4986,14 +5029,14 @@ export interface DocumentLine {
|
|
|
4986
5029
|
price: number;
|
|
4987
5030
|
|
|
4988
5031
|
/**
|
|
4989
|
-
*
|
|
5032
|
+
* FiBu-Buchung
|
|
4990
5033
|
*/
|
|
4991
|
-
|
|
5034
|
+
financeBooking: DocumentFinanceBooking;
|
|
4992
5035
|
|
|
4993
5036
|
/**
|
|
4994
|
-
*
|
|
5037
|
+
* Gesamtpreis Position in Basiswährung
|
|
4995
5038
|
*/
|
|
4996
|
-
|
|
5039
|
+
baseTotalLinePrice: number;
|
|
4997
5040
|
|
|
4998
5041
|
/**
|
|
4999
5042
|
* Positionstyp
|
|
@@ -5041,14 +5084,14 @@ export interface DocumentLine {
|
|
|
5041
5084
|
externalReferenceVds: string;
|
|
5042
5085
|
|
|
5043
5086
|
/**
|
|
5044
|
-
*
|
|
5087
|
+
* Serientyp
|
|
5045
5088
|
*/
|
|
5046
|
-
|
|
5089
|
+
serialType: ArticleSerialType;
|
|
5047
5090
|
|
|
5048
5091
|
/**
|
|
5049
|
-
*
|
|
5092
|
+
* Preis pro Einheit in Basiswährung
|
|
5050
5093
|
*/
|
|
5051
|
-
|
|
5094
|
+
basePrice: number;
|
|
5052
5095
|
|
|
5053
5096
|
/**
|
|
5054
5097
|
* MetaInformations for this Object
|
|
@@ -5552,6 +5595,11 @@ export interface DocumentLineComponent {
|
|
|
5552
5595
|
|
|
5553
5596
|
export interface DocumentLineComponentFabricationDetail {
|
|
5554
5597
|
|
|
5598
|
+
/**
|
|
5599
|
+
* Abweichende Herstellungskosten
|
|
5600
|
+
*/
|
|
5601
|
+
deviatingUnitPrice: number;
|
|
5602
|
+
|
|
5555
5603
|
/**
|
|
5556
5604
|
* Freifeld
|
|
5557
5605
|
*/
|
|
@@ -6352,14 +6400,14 @@ export interface DocumentType {
|
|
|
6352
6400
|
labels: Array<DocumentTypeLabel>;
|
|
6353
6401
|
|
|
6354
6402
|
/**
|
|
6355
|
-
*
|
|
6403
|
+
* Zählerkreis
|
|
6356
6404
|
*/
|
|
6357
|
-
|
|
6405
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6358
6406
|
|
|
6359
6407
|
/**
|
|
6360
|
-
*
|
|
6408
|
+
* nächste Belegnummer
|
|
6361
6409
|
*/
|
|
6362
|
-
|
|
6410
|
+
nextNumber: string;
|
|
6363
6411
|
|
|
6364
6412
|
/**
|
|
6365
6413
|
* Sortierung
|
|
@@ -6861,14 +6909,14 @@ export interface FabricationRevertRequest {
|
|
|
6861
6909
|
export interface FabricationSerialNumber {
|
|
6862
6910
|
|
|
6863
6911
|
/**
|
|
6864
|
-
*
|
|
6912
|
+
* MHD / Verfallsdatum
|
|
6865
6913
|
*/
|
|
6866
|
-
|
|
6914
|
+
expiryDate: ScriptingDate;
|
|
6867
6915
|
|
|
6868
6916
|
/**
|
|
6869
|
-
*
|
|
6917
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6870
6918
|
*/
|
|
6871
|
-
|
|
6919
|
+
serialNumberId: number;
|
|
6872
6920
|
|
|
6873
6921
|
/**
|
|
6874
6922
|
* Bemerkung
|
|
@@ -7108,14 +7156,14 @@ export interface PaymentTerm {
|
|
|
7108
7156
|
paymentDiscount2: number;
|
|
7109
7157
|
|
|
7110
7158
|
/**
|
|
7111
|
-
*
|
|
7159
|
+
* printDescription
|
|
7112
7160
|
*/
|
|
7113
|
-
|
|
7161
|
+
printDescription: string;
|
|
7114
7162
|
|
|
7115
7163
|
/**
|
|
7116
|
-
*
|
|
7164
|
+
* Percent for Discount 1
|
|
7117
7165
|
*/
|
|
7118
|
-
|
|
7166
|
+
paymentDiscount1: number;
|
|
7119
7167
|
|
|
7120
7168
|
/**
|
|
7121
7169
|
* for deposit: remaining term
|
|
@@ -7246,14 +7294,14 @@ export interface PickTrolley {
|
|
|
7246
7294
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7247
7295
|
|
|
7248
7296
|
/**
|
|
7249
|
-
*
|
|
7297
|
+
* Bearbeiter der Pickliste
|
|
7250
7298
|
*/
|
|
7251
|
-
|
|
7299
|
+
processedByUserRef: ApiObjectReference;
|
|
7252
7300
|
|
|
7253
7301
|
/**
|
|
7254
|
-
*
|
|
7302
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7255
7303
|
*/
|
|
7256
|
-
|
|
7304
|
+
storageBinRef: StorageBinRef;
|
|
7257
7305
|
|
|
7258
7306
|
/**
|
|
7259
7307
|
* Beschreibung des Wagens
|
|
@@ -7509,14 +7557,14 @@ export interface PicklistLine {
|
|
|
7509
7557
|
articleNumber: string;
|
|
7510
7558
|
|
|
7511
7559
|
/**
|
|
7512
|
-
*
|
|
7560
|
+
* Lagernummer
|
|
7513
7561
|
*/
|
|
7514
|
-
|
|
7562
|
+
storageNumber: string;
|
|
7515
7563
|
|
|
7516
7564
|
/**
|
|
7517
|
-
*
|
|
7565
|
+
* Art der Position
|
|
7518
7566
|
*/
|
|
7519
|
-
|
|
7567
|
+
lineType: PicklistLineType;
|
|
7520
7568
|
|
|
7521
7569
|
/**
|
|
7522
7570
|
* ID der Ziel-Dokumentposition
|
|
@@ -7838,11 +7886,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7838
7886
|
*/
|
|
7839
7887
|
alternativeSelectionInVql: string;
|
|
7840
7888
|
|
|
7841
|
-
/**
|
|
7842
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
7843
|
-
*/
|
|
7844
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7845
|
-
|
|
7846
7889
|
/**
|
|
7847
7890
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7848
7891
|
*/
|
|
@@ -7853,6 +7896,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7853
7896
|
*/
|
|
7854
7897
|
onlyFullDeliverableOrderLines: boolean;
|
|
7855
7898
|
|
|
7899
|
+
/**
|
|
7900
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7901
|
+
*/
|
|
7902
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7903
|
+
|
|
7856
7904
|
/**
|
|
7857
7905
|
* Selektion über den Bereich vom Belegdatum
|
|
7858
7906
|
*/
|
|
@@ -7990,14 +8038,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7990
8038
|
alwaysShowDeliveryMethod: boolean;
|
|
7991
8039
|
|
|
7992
8040
|
/**
|
|
7993
|
-
*
|
|
8041
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7994
8042
|
*/
|
|
7995
|
-
|
|
8043
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7996
8044
|
|
|
7997
8045
|
/**
|
|
7998
|
-
*
|
|
8046
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7999
8047
|
*/
|
|
8000
|
-
|
|
8048
|
+
autoPrintDeliveryDocument: boolean;
|
|
8001
8049
|
|
|
8002
8050
|
/**
|
|
8003
8051
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8035,14 +8083,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8035
8083
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8036
8084
|
|
|
8037
8085
|
/**
|
|
8038
|
-
*
|
|
8086
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8039
8087
|
*/
|
|
8040
|
-
|
|
8088
|
+
autoDeterminationOfLots: boolean;
|
|
8041
8089
|
|
|
8042
8090
|
/**
|
|
8043
|
-
*
|
|
8091
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8044
8092
|
*/
|
|
8045
|
-
|
|
8093
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8046
8094
|
|
|
8047
8095
|
/**
|
|
8048
8096
|
* Zielmengen in Masken verstecken?
|
|
@@ -8276,14 +8324,14 @@ export interface ProductArticleRef {
|
|
|
8276
8324
|
export interface ProductDiscount {
|
|
8277
8325
|
|
|
8278
8326
|
/**
|
|
8279
|
-
*
|
|
8327
|
+
* Kundengruppe
|
|
8280
8328
|
*/
|
|
8281
|
-
|
|
8329
|
+
customerGroupRef: ApiObjectReference;
|
|
8282
8330
|
|
|
8283
8331
|
/**
|
|
8284
|
-
*
|
|
8332
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8285
8333
|
*/
|
|
8286
|
-
|
|
8334
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8287
8335
|
|
|
8288
8336
|
/**
|
|
8289
8337
|
* Lieferantengruppe
|
|
@@ -8331,14 +8379,14 @@ export interface ProductDiscount {
|
|
|
8331
8379
|
currencyRef: CurrencyReference;
|
|
8332
8380
|
|
|
8333
8381
|
/**
|
|
8334
|
-
*
|
|
8382
|
+
* Wert des Rabatts
|
|
8335
8383
|
*/
|
|
8336
|
-
|
|
8384
|
+
modifierValue: number;
|
|
8337
8385
|
|
|
8338
8386
|
/**
|
|
8339
|
-
*
|
|
8387
|
+
* Preisgruppe
|
|
8340
8388
|
*/
|
|
8341
|
-
|
|
8389
|
+
priceGroupRef: ApiObjectReference;
|
|
8342
8390
|
|
|
8343
8391
|
/**
|
|
8344
8392
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8485,14 +8533,14 @@ export interface ProductMainGroup {
|
|
|
8485
8533
|
export interface ProductPrice {
|
|
8486
8534
|
|
|
8487
8535
|
/**
|
|
8488
|
-
*
|
|
8536
|
+
* Kundengruppe
|
|
8489
8537
|
*/
|
|
8490
|
-
|
|
8538
|
+
customerGroupRef: ApiObjectReference;
|
|
8491
8539
|
|
|
8492
8540
|
/**
|
|
8493
|
-
*
|
|
8541
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8494
8542
|
*/
|
|
8495
|
-
|
|
8543
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8496
8544
|
|
|
8497
8545
|
/**
|
|
8498
8546
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8639,14 +8687,14 @@ export interface RequestDocument {
|
|
|
8639
8687
|
cashDrawerId: number;
|
|
8640
8688
|
|
|
8641
8689
|
/**
|
|
8642
|
-
*
|
|
8690
|
+
* Der Anzahlungsbetrag
|
|
8643
8691
|
*/
|
|
8644
|
-
|
|
8692
|
+
depositPaymentAmount: number;
|
|
8645
8693
|
|
|
8646
8694
|
/**
|
|
8647
|
-
*
|
|
8695
|
+
* Leistungsdatum
|
|
8648
8696
|
*/
|
|
8649
|
-
|
|
8697
|
+
performanceDate: ScriptingDate;
|
|
8650
8698
|
|
|
8651
8699
|
/**
|
|
8652
8700
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8709,14 +8757,14 @@ export interface RequestDocument {
|
|
|
8709
8757
|
lines: Array<RequestDocumentLine>;
|
|
8710
8758
|
|
|
8711
8759
|
/**
|
|
8712
|
-
*
|
|
8760
|
+
* Die Vertragsdetails
|
|
8713
8761
|
*/
|
|
8714
|
-
|
|
8762
|
+
contractDetail: DocumentContractDetail;
|
|
8715
8763
|
|
|
8716
8764
|
/**
|
|
8717
|
-
*
|
|
8765
|
+
* ID der Kasse (bei POS)
|
|
8718
8766
|
*/
|
|
8719
|
-
|
|
8767
|
+
posRegisterId: number;
|
|
8720
8768
|
|
|
8721
8769
|
/**
|
|
8722
8770
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -8857,14 +8905,14 @@ export interface RequestDocumentLine {
|
|
|
8857
8905
|
dropShippingPolicy: DropShippingPolicy;
|
|
8858
8906
|
|
|
8859
8907
|
/**
|
|
8860
|
-
*
|
|
8908
|
+
* Positionsnummer der Artikel
|
|
8861
8909
|
*/
|
|
8862
|
-
|
|
8910
|
+
positionOfArticleLine: number;
|
|
8863
8911
|
|
|
8864
8912
|
/**
|
|
8865
|
-
*
|
|
8913
|
+
* (optional) Lager-ID
|
|
8866
8914
|
*/
|
|
8867
|
-
|
|
8915
|
+
storageId: number;
|
|
8868
8916
|
|
|
8869
8917
|
/**
|
|
8870
8918
|
* Vertragsdetails zur Belegposition
|
|
@@ -9065,14 +9113,14 @@ export interface RequestDocumentText {
|
|
|
9065
9113
|
export interface RevenueCalculation {
|
|
9066
9114
|
|
|
9067
9115
|
/**
|
|
9068
|
-
*
|
|
9116
|
+
* Deckungsbeitrag (absolut)
|
|
9069
9117
|
*/
|
|
9070
|
-
|
|
9118
|
+
revenue: number;
|
|
9071
9119
|
|
|
9072
9120
|
/**
|
|
9073
|
-
*
|
|
9121
|
+
* Netto Umsatz
|
|
9074
9122
|
*/
|
|
9075
|
-
|
|
9123
|
+
salesValue: number;
|
|
9076
9124
|
|
|
9077
9125
|
/**
|
|
9078
9126
|
* Einkaufspreis
|
|
@@ -9093,14 +9141,14 @@ export interface SalesAgent {
|
|
|
9093
9141
|
note: string;
|
|
9094
9142
|
|
|
9095
9143
|
/**
|
|
9096
|
-
*
|
|
9144
|
+
* is sales agent taxable
|
|
9097
9145
|
*/
|
|
9098
|
-
|
|
9146
|
+
taxable: boolean;
|
|
9099
9147
|
|
|
9100
9148
|
/**
|
|
9101
|
-
*
|
|
9149
|
+
* reference to the delivery method
|
|
9102
9150
|
*/
|
|
9103
|
-
|
|
9151
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9104
9152
|
|
|
9105
9153
|
/**
|
|
9106
9154
|
* Freifelder
|
|
@@ -9643,14 +9691,14 @@ export interface ShelfDocumentAttribution {
|
|
|
9643
9691
|
shelfResourceId: number;
|
|
9644
9692
|
|
|
9645
9693
|
/**
|
|
9646
|
-
*
|
|
9694
|
+
* id of the referenced object
|
|
9647
9695
|
*/
|
|
9648
|
-
|
|
9696
|
+
refId: number;
|
|
9649
9697
|
|
|
9650
9698
|
/**
|
|
9651
|
-
*
|
|
9699
|
+
* Verfügbare Transformationen zum Bild
|
|
9652
9700
|
*/
|
|
9653
|
-
|
|
9701
|
+
transformationKeys: Array<string>;
|
|
9654
9702
|
|
|
9655
9703
|
/**
|
|
9656
9704
|
* Unique identifier of the Object
|
|
@@ -9838,14 +9886,14 @@ export interface ShelfShare {
|
|
|
9838
9886
|
publishState: ShelfSharePublishState;
|
|
9839
9887
|
|
|
9840
9888
|
/**
|
|
9841
|
-
*
|
|
9889
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9842
9890
|
*/
|
|
9843
|
-
|
|
9891
|
+
publicUrlDurationInMinutes: number;
|
|
9844
9892
|
|
|
9845
9893
|
/**
|
|
9846
|
-
*
|
|
9894
|
+
* Freifelder
|
|
9847
9895
|
*/
|
|
9848
|
-
|
|
9896
|
+
custom: EavShelfshare;
|
|
9849
9897
|
|
|
9850
9898
|
/**
|
|
9851
9899
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10057,14 +10105,14 @@ export interface StockMovementManualApi {
|
|
|
10057
10105
|
export interface StockTransferApi {
|
|
10058
10106
|
|
|
10059
10107
|
/**
|
|
10060
|
-
*
|
|
10108
|
+
* Ziel-Lager
|
|
10061
10109
|
*/
|
|
10062
|
-
|
|
10110
|
+
targetStorageId: number;
|
|
10063
10111
|
|
|
10064
10112
|
/**
|
|
10065
|
-
*
|
|
10113
|
+
* Seriennummer
|
|
10066
10114
|
*/
|
|
10067
|
-
|
|
10115
|
+
serialNumberId: number;
|
|
10068
10116
|
|
|
10069
10117
|
/**
|
|
10070
10118
|
* Bemerkung
|
|
@@ -10779,14 +10827,14 @@ export interface VariantAttributeListing {
|
|
|
10779
10827
|
salesChannelRef: ApiObjectReference;
|
|
10780
10828
|
|
|
10781
10829
|
/**
|
|
10782
|
-
*
|
|
10830
|
+
* Variantenattribut
|
|
10783
10831
|
*/
|
|
10784
|
-
|
|
10832
|
+
variantAttributeRef: ApiObjectReference;
|
|
10785
10833
|
|
|
10786
10834
|
/**
|
|
10787
|
-
*
|
|
10835
|
+
* Freifelder
|
|
10788
10836
|
*/
|
|
10789
|
-
|
|
10837
|
+
custom: EavVariantattributelisting;
|
|
10790
10838
|
|
|
10791
10839
|
/**
|
|
10792
10840
|
* Unique identifier of the Object
|