@vario-software/types 2026.21.0 → 2026.21.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/schema/erp.d.ts +1 -0
- package/scripting/services.d.ts +8 -8
- package/scripting/types.d.ts +252 -252
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -92156,6 +92156,7 @@ export interface components {
|
|
|
92156
92156
|
* @default false
|
|
92157
92157
|
*/
|
|
92158
92158
|
resolveContentInFollowUpDocument: boolean;
|
|
92159
|
+
salesChannelRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
92159
92160
|
/**
|
|
92160
92161
|
* @description Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
92161
92162
|
* @default false
|
package/scripting/services.d.ts
CHANGED
|
@@ -471,27 +471,27 @@ export interface ArticleScriptingService {
|
|
|
471
471
|
*
|
|
472
472
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
473
473
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
474
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
475
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
474
476
|
*/
|
|
475
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
477
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
476
478
|
|
|
477
479
|
/**
|
|
478
480
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
479
481
|
*
|
|
480
482
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
481
483
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
482
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
483
484
|
*/
|
|
484
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
485
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
485
486
|
|
|
486
487
|
/**
|
|
487
488
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
488
489
|
*
|
|
489
490
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
490
491
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
491
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
492
492
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
493
493
|
*/
|
|
494
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
494
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
497
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -2787,18 +2787,18 @@ export interface ScriptingUtilities {
|
|
|
2787
2787
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2788
2788
|
*
|
|
2789
2789
|
* @param {object} value - Der Quell-Wert
|
|
2790
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2790
2791
|
* @return {number} Ein BigDecimal-Wert
|
|
2791
2792
|
*/
|
|
2792
|
-
newBigDecimal(value: object): number;
|
|
2793
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2793
2794
|
|
|
2794
2795
|
/**
|
|
2795
2796
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2796
2797
|
*
|
|
2797
2798
|
* @param {object} value - Der Quell-Wert
|
|
2798
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2799
2799
|
* @return {number} Ein BigDecimal-Wert
|
|
2800
2800
|
*/
|
|
2801
|
-
newBigDecimal(value: object
|
|
2801
|
+
newBigDecimal(value: object): number;
|
|
2802
2802
|
|
|
2803
2803
|
/**
|
|
2804
2804
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* 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
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -335,26 +335,26 @@ export interface AccountAddress {
|
|
|
335
335
|
*/
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
|
-
/**
|
|
339
|
-
* GLN/ILN as location identifier for this address
|
|
340
|
-
*/
|
|
341
|
-
globalLocationNumber: string;
|
|
342
|
-
|
|
343
338
|
/**
|
|
344
339
|
* Leitweg-ID
|
|
345
340
|
*/
|
|
346
341
|
buyerReference: string;
|
|
347
342
|
|
|
348
343
|
/**
|
|
349
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
350
345
|
*/
|
|
351
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
352
347
|
|
|
353
348
|
/**
|
|
354
349
|
* abweichende Zahlungsart
|
|
355
350
|
*/
|
|
356
351
|
deviatingPaymentMethodRef: ApiObjectReference;
|
|
357
352
|
|
|
353
|
+
/**
|
|
354
|
+
* Custom data
|
|
355
|
+
*/
|
|
356
|
+
custom: EavAccountaddress;
|
|
357
|
+
|
|
358
358
|
/**
|
|
359
359
|
* Postcode
|
|
360
360
|
*/
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* city of the bank
|
|
493
|
-
*/
|
|
494
|
-
bankCity: string;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* Hauptbankverbindung für
|
|
498
493
|
*/
|
|
499
494
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* city of the bank
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
bankCity: string;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* Is default bank?
|
|
508
503
|
*/
|
|
509
504
|
defaultBank: boolean;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* origin type
|
|
508
|
+
*/
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Kreditlimit
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
maximalLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -1004,14 +1004,14 @@ export interface Article {
|
|
|
1004
1004
|
customsTariffNumber: string;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* Product custom data
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
listingCustom: EavArticleListing;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* is this product purchasable
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
purchasable: boolean;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
1017
|
* base capacity unit
|
|
@@ -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)
|
|
@@ -1224,14 +1224,14 @@ export interface Article {
|
|
|
1224
1224
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Notiz
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
note: string;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
|
-
*
|
|
1232
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1233
1233
|
*/
|
|
1234
|
-
|
|
1234
|
+
taxLiabilityReversed: boolean;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1862,6 +1862,11 @@ export interface ArticleStorage {
|
|
|
1862
1862
|
|
|
1863
1863
|
export interface ArticleSupplier {
|
|
1864
1864
|
|
|
1865
|
+
/**
|
|
1866
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1867
|
+
*/
|
|
1868
|
+
useSupplierArticleDescription: boolean;
|
|
1869
|
+
|
|
1865
1870
|
/**
|
|
1866
1871
|
* Anzeigename des Accounts
|
|
1867
1872
|
*/
|
|
@@ -1872,11 +1877,6 @@ export interface ArticleSupplier {
|
|
|
1872
1877
|
*/
|
|
1873
1878
|
supplierReportingStock: number;
|
|
1874
1879
|
|
|
1875
|
-
/**
|
|
1876
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1877
|
-
*/
|
|
1878
|
-
useSupplierArticleDescription: boolean;
|
|
1879
|
-
|
|
1880
1880
|
/**
|
|
1881
1881
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1882
1882
|
*/
|
|
@@ -1988,14 +1988,14 @@ export interface ArticleSupplier {
|
|
|
1988
1988
|
defaultNetPrice: number;
|
|
1989
1989
|
|
|
1990
1990
|
/**
|
|
1991
|
-
*
|
|
1991
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1992
1992
|
*/
|
|
1993
|
-
|
|
1993
|
+
orderOnComponentBase: boolean;
|
|
1994
1994
|
|
|
1995
1995
|
/**
|
|
1996
|
-
*
|
|
1996
|
+
* Einkaufseinheit
|
|
1997
1997
|
*/
|
|
1998
|
-
|
|
1998
|
+
purchaseUnit: number;
|
|
1999
1999
|
|
|
2000
2000
|
/**
|
|
2001
2001
|
* Referenced Supplier-Account
|
|
@@ -2430,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2430
2430
|
export interface CrmChecklistItem {
|
|
2431
2431
|
|
|
2432
2432
|
/**
|
|
2433
|
-
*
|
|
2433
|
+
* Text des Checklisten-Elements
|
|
2434
2434
|
*/
|
|
2435
|
-
|
|
2435
|
+
memo: string;
|
|
2436
2436
|
|
|
2437
2437
|
/**
|
|
2438
|
-
*
|
|
2438
|
+
* Ist das Element "angehakt"?
|
|
2439
2439
|
*/
|
|
2440
|
-
|
|
2440
|
+
checked: boolean;
|
|
2441
2441
|
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Unique identifier of the Object
|
|
@@ -2548,14 +2548,14 @@ export interface CrmDeal {
|
|
|
2548
2548
|
info: MetaInfo;
|
|
2549
2549
|
|
|
2550
2550
|
/**
|
|
2551
|
-
*
|
|
2551
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2552
2552
|
*/
|
|
2553
|
-
|
|
2553
|
+
assignedUserRef: ApiObjectReference;
|
|
2554
2554
|
|
|
2555
2555
|
/**
|
|
2556
|
-
*
|
|
2556
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2557
2557
|
*/
|
|
2558
|
-
|
|
2558
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2559
2559
|
|
|
2560
2560
|
/**
|
|
2561
2561
|
* Chance (in Prozent)
|
|
@@ -2829,14 +2829,14 @@ export interface CrmProject {
|
|
|
2829
2829
|
priorityRef: ApiObjectReference;
|
|
2830
2830
|
|
|
2831
2831
|
/**
|
|
2832
|
-
*
|
|
2832
|
+
* Projektleiter vom Auftragnehmer
|
|
2833
2833
|
*/
|
|
2834
|
-
|
|
2834
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2835
2835
|
|
|
2836
2836
|
/**
|
|
2837
|
-
*
|
|
2837
|
+
* Phase
|
|
2838
2838
|
*/
|
|
2839
|
-
|
|
2839
|
+
phaseRef: ApiObjectReference;
|
|
2840
2840
|
|
|
2841
2841
|
/**
|
|
2842
2842
|
* Aufgaben-Nummer
|
|
@@ -2854,14 +2854,14 @@ export interface CrmProject {
|
|
|
2854
2854
|
billedTimes: number;
|
|
2855
2855
|
|
|
2856
2856
|
/**
|
|
2857
|
-
*
|
|
2857
|
+
* Geplanter Projektzeitraum (von)
|
|
2858
2858
|
*/
|
|
2859
|
-
|
|
2859
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
*
|
|
2862
|
+
* Einkaufsbelege
|
|
2863
2863
|
*/
|
|
2864
|
-
|
|
2864
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
2867
|
* Verkaufsbelege
|
|
@@ -2889,14 +2889,14 @@ export interface CrmProject {
|
|
|
2889
2889
|
info: MetaInfo;
|
|
2890
2890
|
|
|
2891
2891
|
/**
|
|
2892
|
-
*
|
|
2892
|
+
* Projektleiter vom Auftraggeber
|
|
2893
2893
|
*/
|
|
2894
|
-
|
|
2894
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2895
2895
|
|
|
2896
2896
|
/**
|
|
2897
|
-
*
|
|
2897
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2898
2898
|
*/
|
|
2899
|
-
|
|
2899
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2900
2900
|
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3139,11 +3139,6 @@ export interface CrmSubType {
|
|
|
3139
3139
|
|
|
3140
3140
|
export interface CrmTask {
|
|
3141
3141
|
|
|
3142
|
-
/**
|
|
3143
|
-
* Liste von Erinnerungen
|
|
3144
|
-
*/
|
|
3145
|
-
reminders: Array<CrmReminder>;
|
|
3146
|
-
|
|
3147
3142
|
/**
|
|
3148
3143
|
* Angebot
|
|
3149
3144
|
*/
|
|
@@ -3154,6 +3149,11 @@ export interface CrmTask {
|
|
|
3154
3149
|
*/
|
|
3155
3150
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3156
3151
|
|
|
3152
|
+
/**
|
|
3153
|
+
* Liste von Erinnerungen
|
|
3154
|
+
*/
|
|
3155
|
+
reminders: Array<CrmReminder>;
|
|
3156
|
+
|
|
3157
3157
|
/**
|
|
3158
3158
|
* Notizen
|
|
3159
3159
|
*/
|
|
@@ -3335,14 +3335,14 @@ export interface CrmTask {
|
|
|
3335
3335
|
assignedUserRef: ApiObjectReference;
|
|
3336
3336
|
|
|
3337
3337
|
/**
|
|
3338
|
-
*
|
|
3338
|
+
* Beauftragte Zeit in Sekunden
|
|
3339
3339
|
*/
|
|
3340
|
-
|
|
3340
|
+
effortCommissioned: number;
|
|
3341
3341
|
|
|
3342
3342
|
/**
|
|
3343
|
-
*
|
|
3343
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3344
3344
|
*/
|
|
3345
|
-
|
|
3345
|
+
externalRecordedTimes: number;
|
|
3346
3346
|
|
|
3347
3347
|
/**
|
|
3348
3348
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3519,14 +3519,14 @@ export interface CurrencyReference {
|
|
|
3519
3519
|
export interface Customer {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* Option für die Stapelverarbeitung
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* reference to customer group
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
customerGroupRef: ApiObjectReference;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3579,14 +3579,14 @@ export interface Customer {
|
|
|
3579
3579
|
stackProcessingPriority: number;
|
|
3580
3580
|
|
|
3581
3581
|
/**
|
|
3582
|
-
*
|
|
3582
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3583
3583
|
*/
|
|
3584
|
-
|
|
3584
|
+
collectiveInvoiceManually: boolean;
|
|
3585
3585
|
|
|
3586
3586
|
/**
|
|
3587
|
-
*
|
|
3587
|
+
* reference to product price group
|
|
3588
3588
|
*/
|
|
3589
|
-
|
|
3589
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3590
3590
|
|
|
3591
3591
|
/**
|
|
3592
3592
|
* Unique identifier of the Object
|
|
@@ -3740,14 +3740,14 @@ export interface DeliveryMethod {
|
|
|
3740
3740
|
translations: Array<DocumentTypeTerm>;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
|
-
*
|
|
3743
|
+
* Versand-Anbieter
|
|
3744
3744
|
*/
|
|
3745
|
-
|
|
3745
|
+
vdsCarrierId: number;
|
|
3746
3746
|
|
|
3747
3747
|
/**
|
|
3748
|
-
*
|
|
3748
|
+
* Gültige Ländercodes
|
|
3749
3749
|
*/
|
|
3750
|
-
|
|
3750
|
+
validCountryCodes: Array<string>;
|
|
3751
3751
|
|
|
3752
3752
|
/**
|
|
3753
3753
|
* Standardgewichtseinheit
|
|
@@ -3848,14 +3848,14 @@ export interface DeliveryTerm {
|
|
|
3848
3848
|
id: number;
|
|
3849
3849
|
|
|
3850
3850
|
/**
|
|
3851
|
-
*
|
|
3851
|
+
* free shipping net value
|
|
3852
3852
|
*/
|
|
3853
|
-
|
|
3853
|
+
freeShippingNetValue: number;
|
|
3854
3854
|
|
|
3855
3855
|
/**
|
|
3856
|
-
*
|
|
3856
|
+
* Versandkostenartikel
|
|
3857
3857
|
*/
|
|
3858
|
-
|
|
3858
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3859
3859
|
|
|
3860
3860
|
/**
|
|
3861
3861
|
* MetaInformations for this Object
|
|
@@ -4014,14 +4014,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4014
4014
|
accountId: number;
|
|
4015
4015
|
|
|
4016
4016
|
/**
|
|
4017
|
-
* Länderkennzeichen
|
|
4017
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4018
4018
|
*/
|
|
4019
|
-
|
|
4019
|
+
sourceCountryCode: string;
|
|
4020
4020
|
|
|
4021
4021
|
/**
|
|
4022
|
-
* Länderkennzeichen
|
|
4022
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4023
4023
|
*/
|
|
4024
|
-
|
|
4024
|
+
performanceCountryCode: string;
|
|
4025
4025
|
|
|
4026
4026
|
/**
|
|
4027
4027
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4064,14 +4064,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4064
4064
|
supplierNumber: string;
|
|
4065
4065
|
|
|
4066
4066
|
/**
|
|
4067
|
-
*
|
|
4067
|
+
* Gesamtpreis brutto
|
|
4068
4068
|
*/
|
|
4069
|
-
|
|
4069
|
+
totalGrossPrice: number;
|
|
4070
4070
|
|
|
4071
4071
|
/**
|
|
4072
|
-
*
|
|
4072
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4073
4073
|
*/
|
|
4074
|
-
|
|
4074
|
+
deliveryApproved: boolean;
|
|
4075
4075
|
|
|
4076
4076
|
/**
|
|
4077
4077
|
* Kassen-Zahlungspositionen
|
|
@@ -4130,20 +4130,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4130
4130
|
*/
|
|
4131
4131
|
fabricationDetail: DocumentFabricationDetail;
|
|
4132
4132
|
|
|
4133
|
-
/**
|
|
4134
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4135
|
-
*/
|
|
4136
|
-
accountNumber: string;
|
|
4137
|
-
|
|
4138
4133
|
/**
|
|
4139
4134
|
* Berechnungsmodus
|
|
4140
4135
|
*/
|
|
4141
4136
|
calculationMode: CalculationMode;
|
|
4142
4137
|
|
|
4143
4138
|
/**
|
|
4144
|
-
*
|
|
4139
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4145
4140
|
*/
|
|
4146
|
-
|
|
4141
|
+
accountNumber: string;
|
|
4147
4142
|
|
|
4148
4143
|
/**
|
|
4149
4144
|
* Wird vom Workflow verarbeitet?
|
|
@@ -4151,15 +4146,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4151
4146
|
processedByWorkflow: boolean;
|
|
4152
4147
|
|
|
4153
4148
|
/**
|
|
4154
|
-
*
|
|
4149
|
+
* Referenz auf Zahlungsbedingung
|
|
4155
4150
|
*/
|
|
4156
|
-
|
|
4151
|
+
paymentTermRef: PaymentTermRef;
|
|
4157
4152
|
|
|
4158
4153
|
/**
|
|
4159
4154
|
* Telefon an Versender übergeben
|
|
4160
4155
|
*/
|
|
4161
4156
|
forwardPhoneToShipper: boolean;
|
|
4162
4157
|
|
|
4158
|
+
/**
|
|
4159
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4160
|
+
*/
|
|
4161
|
+
baseTotalDocumentPriceModifier: number;
|
|
4162
|
+
|
|
4163
4163
|
/**
|
|
4164
4164
|
* Liste der Belegtexte
|
|
4165
4165
|
*/
|
|
@@ -4246,14 +4246,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4246
4246
|
dropShipping: boolean;
|
|
4247
4247
|
|
|
4248
4248
|
/**
|
|
4249
|
-
*
|
|
4249
|
+
* Gesamtpreis netto
|
|
4250
4250
|
*/
|
|
4251
|
-
|
|
4251
|
+
totalNetPrice: number;
|
|
4252
4252
|
|
|
4253
4253
|
/**
|
|
4254
|
-
*
|
|
4254
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4255
4255
|
*/
|
|
4256
|
-
|
|
4256
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4257
4257
|
|
|
4258
4258
|
/**
|
|
4259
4259
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4361,14 +4361,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4361
4361
|
customerNumber: string;
|
|
4362
4362
|
|
|
4363
4363
|
/**
|
|
4364
|
-
*
|
|
4364
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4365
4365
|
*/
|
|
4366
|
-
|
|
4366
|
+
taxIdentificationNumber: string;
|
|
4367
4367
|
|
|
4368
4368
|
/**
|
|
4369
|
-
*
|
|
4369
|
+
* Statusinstanz des Belegs
|
|
4370
4370
|
*/
|
|
4371
|
-
|
|
4371
|
+
documentState: DocumentTypeState;
|
|
4372
4372
|
|
|
4373
4373
|
/**
|
|
4374
4374
|
* Versandkostenpositionen
|
|
@@ -4376,9 +4376,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4376
4376
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4377
4377
|
|
|
4378
4378
|
/**
|
|
4379
|
-
* Rückgeld
|
|
4379
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4380
|
+
true wenn die Quittung ausbalanciert ist
|
|
4381
|
+
|
|
4380
4382
|
*/
|
|
4381
|
-
|
|
4383
|
+
posReceiptBalanced: boolean;
|
|
4382
4384
|
|
|
4383
4385
|
/**
|
|
4384
4386
|
* Referenz auf Lieferbedingung
|
|
@@ -4386,11 +4388,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4386
4388
|
deliveryTermRef: ApiObjectReference;
|
|
4387
4389
|
|
|
4388
4390
|
/**
|
|
4389
|
-
*
|
|
4390
|
-
true wenn die Quittung ausbalanciert ist
|
|
4391
|
-
|
|
4391
|
+
* Rückgeld
|
|
4392
4392
|
*/
|
|
4393
|
-
|
|
4393
|
+
posReceiptChangeAmount: number;
|
|
4394
4394
|
|
|
4395
4395
|
/**
|
|
4396
4396
|
* Gesamtbruttogewicht
|
|
@@ -4581,14 +4581,14 @@ export interface DocumentAddress {
|
|
|
4581
4581
|
postOfficeBox: string;
|
|
4582
4582
|
|
|
4583
4583
|
/**
|
|
4584
|
-
*
|
|
4584
|
+
* Street
|
|
4585
4585
|
*/
|
|
4586
|
-
|
|
4586
|
+
street: string;
|
|
4587
4587
|
|
|
4588
4588
|
/**
|
|
4589
|
-
*
|
|
4589
|
+
* country code IsoAlpha3
|
|
4590
4590
|
*/
|
|
4591
|
-
|
|
4591
|
+
countryCode: string;
|
|
4592
4592
|
|
|
4593
4593
|
/**
|
|
4594
4594
|
* Unique identifier of the Object
|
|
@@ -4965,14 +4965,14 @@ export const enum DocumentImportType {
|
|
|
4965
4965
|
export interface DocumentLine {
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Leistungsdatum
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
performanceDate: ScriptingDate;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
|
-
*
|
|
4973
|
+
* Zolltarifnummer
|
|
4974
4974
|
*/
|
|
4975
|
-
|
|
4975
|
+
customsTariffNumber: string;
|
|
4976
4976
|
|
|
4977
4977
|
/**
|
|
4978
4978
|
* Land der Herkunft
|
|
@@ -5059,6 +5059,11 @@ export interface DocumentLine {
|
|
|
5059
5059
|
*/
|
|
5060
5060
|
price: number;
|
|
5061
5061
|
|
|
5062
|
+
/**
|
|
5063
|
+
* Gesamtpreis Position in Basiswährung
|
|
5064
|
+
*/
|
|
5065
|
+
baseTotalLinePrice: number;
|
|
5066
|
+
|
|
5062
5067
|
/**
|
|
5063
5068
|
* FiBu-Buchung
|
|
5064
5069
|
*/
|
|
@@ -5069,11 +5074,6 @@ export interface DocumentLine {
|
|
|
5069
5074
|
*/
|
|
5070
5075
|
lineType: DocumentLineType;
|
|
5071
5076
|
|
|
5072
|
-
/**
|
|
5073
|
-
* Gesamtpreis Position in Basiswährung
|
|
5074
|
-
*/
|
|
5075
|
-
baseTotalLinePrice: number;
|
|
5076
|
-
|
|
5077
5077
|
/**
|
|
5078
5078
|
* vorgeorderte Menge in Pickvorgang
|
|
5079
5079
|
*/
|
|
@@ -5105,14 +5105,14 @@ export interface DocumentLine {
|
|
|
5105
5105
|
id: number;
|
|
5106
5106
|
|
|
5107
5107
|
/**
|
|
5108
|
-
*
|
|
5108
|
+
* Externe Referenz zum VDS-Paket
|
|
5109
5109
|
*/
|
|
5110
|
-
|
|
5110
|
+
externalReferenceVds: string;
|
|
5111
5111
|
|
|
5112
5112
|
/**
|
|
5113
|
-
*
|
|
5113
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5114
5114
|
*/
|
|
5115
|
-
|
|
5115
|
+
positionOfArticleLine: number;
|
|
5116
5116
|
|
|
5117
5117
|
/**
|
|
5118
5118
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5319,6 +5319,11 @@ export interface DocumentLine {
|
|
|
5319
5319
|
*/
|
|
5320
5320
|
productType: ProductType;
|
|
5321
5321
|
|
|
5322
|
+
/**
|
|
5323
|
+
* Vertragsinformationen
|
|
5324
|
+
*/
|
|
5325
|
+
contractDetail: DocumentContractDetail;
|
|
5326
|
+
|
|
5322
5327
|
/**
|
|
5323
5328
|
* Nettoverkaufswert der Position in Basiswährung
|
|
5324
5329
|
*/
|
|
@@ -5329,11 +5334,6 @@ export interface DocumentLine {
|
|
|
5329
5334
|
*/
|
|
5330
5335
|
netWeightUnit: UnitTypeReference;
|
|
5331
5336
|
|
|
5332
|
-
/**
|
|
5333
|
-
* Vertragsinformationen
|
|
5334
|
-
*/
|
|
5335
|
-
contractDetail: DocumentContractDetail;
|
|
5336
|
-
|
|
5337
5337
|
/**
|
|
5338
5338
|
* Menge
|
|
5339
5339
|
*/
|
|
@@ -5698,14 +5698,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5698
5698
|
quantityFinished: number;
|
|
5699
5699
|
|
|
5700
5700
|
/**
|
|
5701
|
-
*
|
|
5701
|
+
* Menge defekt
|
|
5702
5702
|
*/
|
|
5703
|
-
|
|
5703
|
+
quantityDefective: number;
|
|
5704
5704
|
|
|
5705
5705
|
/**
|
|
5706
|
-
*
|
|
5706
|
+
* Produzierte Seriennummern
|
|
5707
5707
|
*/
|
|
5708
|
-
|
|
5708
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5709
5709
|
|
|
5710
5710
|
/**
|
|
5711
5711
|
* Freifeld
|
|
@@ -5862,14 +5862,14 @@ export interface DocumentLineRef {
|
|
|
5862
5862
|
quantity: number;
|
|
5863
5863
|
|
|
5864
5864
|
/**
|
|
5865
|
-
*
|
|
5865
|
+
* Belegart
|
|
5866
5866
|
*/
|
|
5867
|
-
|
|
5867
|
+
documentType: string;
|
|
5868
5868
|
|
|
5869
5869
|
/**
|
|
5870
|
-
*
|
|
5870
|
+
* Artikelnummer
|
|
5871
5871
|
*/
|
|
5872
|
-
|
|
5872
|
+
articleNumber: string;
|
|
5873
5873
|
|
|
5874
5874
|
/**
|
|
5875
5875
|
* price per quantity [GROSS, NET]
|
|
@@ -6179,14 +6179,14 @@ export interface DocumentRef {
|
|
|
6179
6179
|
export interface DocumentShippingCost {
|
|
6180
6180
|
|
|
6181
6181
|
/**
|
|
6182
|
-
*
|
|
6182
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6183
6183
|
*/
|
|
6184
|
-
|
|
6184
|
+
manualCosts: boolean;
|
|
6185
6185
|
|
|
6186
6186
|
/**
|
|
6187
|
-
*
|
|
6187
|
+
* Die Versandkosten
|
|
6188
6188
|
*/
|
|
6189
|
-
|
|
6189
|
+
costs: number;
|
|
6190
6190
|
|
|
6191
6191
|
/**
|
|
6192
6192
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6639,14 +6639,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6639
6639
|
bookDate: ScriptingDate;
|
|
6640
6640
|
|
|
6641
6641
|
/**
|
|
6642
|
-
*
|
|
6642
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6643
6643
|
*/
|
|
6644
|
-
|
|
6644
|
+
targetExpiryDate: ScriptingDate;
|
|
6645
6645
|
|
|
6646
6646
|
/**
|
|
6647
|
-
*
|
|
6647
|
+
* Die gültige Seriennummer
|
|
6648
6648
|
*/
|
|
6649
|
-
|
|
6649
|
+
targetSerialNumber: string;
|
|
6650
6650
|
|
|
6651
6651
|
/**
|
|
6652
6652
|
* Quell-Lagerplatz
|
|
@@ -6980,14 +6980,14 @@ export interface FabricationRevertRequest {
|
|
|
6980
6980
|
quantity: number;
|
|
6981
6981
|
|
|
6982
6982
|
/**
|
|
6983
|
-
*
|
|
6983
|
+
* Material automatisch stornieren
|
|
6984
6984
|
*/
|
|
6985
|
-
|
|
6985
|
+
autoRevertComponents: boolean;
|
|
6986
6986
|
|
|
6987
6987
|
/**
|
|
6988
|
-
*
|
|
6988
|
+
* ID der zu stornierenden Position
|
|
6989
6989
|
*/
|
|
6990
|
-
|
|
6990
|
+
documentLineId: number;
|
|
6991
6991
|
|
|
6992
6992
|
/**
|
|
6993
6993
|
* Zu stornierende Seriennummern
|
|
@@ -7250,14 +7250,14 @@ export interface PaymentTerm {
|
|
|
7250
7250
|
paymentDiscount2: number;
|
|
7251
7251
|
|
|
7252
7252
|
/**
|
|
7253
|
-
*
|
|
7253
|
+
* Percent for Discount 1
|
|
7254
7254
|
*/
|
|
7255
|
-
|
|
7255
|
+
paymentDiscount1: number;
|
|
7256
7256
|
|
|
7257
7257
|
/**
|
|
7258
|
-
*
|
|
7258
|
+
* printDescription
|
|
7259
7259
|
*/
|
|
7260
|
-
|
|
7260
|
+
printDescription: string;
|
|
7261
7261
|
|
|
7262
7262
|
/**
|
|
7263
7263
|
* for deposit: remaining term
|
|
@@ -7388,14 +7388,14 @@ export interface PickTrolley {
|
|
|
7388
7388
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7389
7389
|
|
|
7390
7390
|
/**
|
|
7391
|
-
*
|
|
7391
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7392
7392
|
*/
|
|
7393
|
-
|
|
7393
|
+
storageBinRef: StorageBinRef;
|
|
7394
7394
|
|
|
7395
7395
|
/**
|
|
7396
|
-
*
|
|
7396
|
+
* Bearbeiter der Pickliste
|
|
7397
7397
|
*/
|
|
7398
|
-
|
|
7398
|
+
processedByUserRef: ApiObjectReference;
|
|
7399
7399
|
|
|
7400
7400
|
/**
|
|
7401
7401
|
* Beschreibung des Wagens
|
|
@@ -7548,14 +7548,14 @@ export const enum PickingType {
|
|
|
7548
7548
|
export interface Picklist {
|
|
7549
7549
|
|
|
7550
7550
|
/**
|
|
7551
|
-
*
|
|
7551
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7552
7552
|
*/
|
|
7553
|
-
|
|
7553
|
+
usedTemplate: PicklistTemplate;
|
|
7554
7554
|
|
|
7555
7555
|
/**
|
|
7556
|
-
*
|
|
7556
|
+
* Ziellager für Nachschub
|
|
7557
7557
|
*/
|
|
7558
|
-
|
|
7558
|
+
targetStorageRef: ApiObjectReference;
|
|
7559
7559
|
|
|
7560
7560
|
/**
|
|
7561
7561
|
* Nummer der Pickliste
|
|
@@ -7606,14 +7606,14 @@ export interface Picklist {
|
|
|
7606
7606
|
export interface PicklistLine {
|
|
7607
7607
|
|
|
7608
7608
|
/**
|
|
7609
|
-
*
|
|
7609
|
+
* Gesammelte Menge der Position
|
|
7610
7610
|
*/
|
|
7611
|
-
|
|
7611
|
+
quantityCollected: number;
|
|
7612
7612
|
|
|
7613
7613
|
/**
|
|
7614
|
-
*
|
|
7614
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7615
7615
|
*/
|
|
7616
|
-
|
|
7616
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7617
7617
|
|
|
7618
7618
|
/**
|
|
7619
7619
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7651,14 +7651,14 @@ export interface PicklistLine {
|
|
|
7651
7651
|
version: number;
|
|
7652
7652
|
|
|
7653
7653
|
/**
|
|
7654
|
-
*
|
|
7654
|
+
* Lageranzeigename
|
|
7655
7655
|
*/
|
|
7656
|
-
|
|
7656
|
+
storageDisplayName: string;
|
|
7657
7657
|
|
|
7658
7658
|
/**
|
|
7659
|
-
*
|
|
7659
|
+
* ID der Quell-Dokumentposition
|
|
7660
7660
|
*/
|
|
7661
|
-
|
|
7661
|
+
sourceDocumentLineId: number;
|
|
7662
7662
|
|
|
7663
7663
|
/**
|
|
7664
7664
|
* Artikelnummer
|
|
@@ -7985,26 +7985,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7985
7985
|
*/
|
|
7986
7986
|
maxArticleCountPerOrder: number;
|
|
7987
7987
|
|
|
7988
|
-
/**
|
|
7989
|
-
* Alternative Selektion in VQL
|
|
7990
|
-
*/
|
|
7991
|
-
alternativeSelectionInVql: string;
|
|
7992
|
-
|
|
7993
7988
|
/**
|
|
7994
7989
|
* Maximaler Auftragswert
|
|
7995
7990
|
*/
|
|
7996
7991
|
maxOrderValue: number;
|
|
7997
7992
|
|
|
7998
7993
|
/**
|
|
7999
|
-
* Selektion
|
|
7994
|
+
* Alternative Selektion in VQL
|
|
8000
7995
|
*/
|
|
8001
|
-
|
|
7996
|
+
alternativeSelectionInVql: string;
|
|
8002
7997
|
|
|
8003
7998
|
/**
|
|
8004
7999
|
* Nur vollständig lieferbare Positionen
|
|
8005
8000
|
*/
|
|
8006
8001
|
onlyFullDeliverableOrderLines: boolean;
|
|
8007
8002
|
|
|
8003
|
+
/**
|
|
8004
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8005
|
+
*/
|
|
8006
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8007
|
+
|
|
8008
8008
|
/**
|
|
8009
8009
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8010
8010
|
*/
|
|
@@ -8192,14 +8192,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8192
8192
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8193
8193
|
|
|
8194
8194
|
/**
|
|
8195
|
-
*
|
|
8195
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8196
8196
|
*/
|
|
8197
|
-
|
|
8197
|
+
autoDeterminationOfLots: boolean;
|
|
8198
8198
|
|
|
8199
8199
|
/**
|
|
8200
|
-
*
|
|
8200
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8201
8201
|
*/
|
|
8202
|
-
|
|
8202
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8203
8203
|
|
|
8204
8204
|
/**
|
|
8205
8205
|
* Zielmengen in Masken verstecken?
|
|
@@ -8274,14 +8274,14 @@ export interface PriceSelectionCriteria {
|
|
|
8274
8274
|
quantity: number;
|
|
8275
8275
|
|
|
8276
8276
|
/**
|
|
8277
|
-
* Liste von
|
|
8277
|
+
* Liste von Account-IDs
|
|
8278
8278
|
*/
|
|
8279
|
-
|
|
8279
|
+
accountIds: Array<number>;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
* Liste von
|
|
8282
|
+
* Liste von Artikel-IDs
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
articleIds: Array<number>;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
8287
|
* ein qualifier
|
|
@@ -8919,14 +8919,14 @@ export interface RequestDocument {
|
|
|
8919
8919
|
lines: Array<RequestDocumentLine>;
|
|
8920
8920
|
|
|
8921
8921
|
/**
|
|
8922
|
-
*
|
|
8922
|
+
* Die Vertragsdetails
|
|
8923
8923
|
*/
|
|
8924
|
-
|
|
8924
|
+
contractDetail: DocumentContractDetail;
|
|
8925
8925
|
|
|
8926
8926
|
/**
|
|
8927
|
-
*
|
|
8927
|
+
* ID der Kasse (bei POS)
|
|
8928
8928
|
*/
|
|
8929
|
-
|
|
8929
|
+
posRegisterId: number;
|
|
8930
8930
|
|
|
8931
8931
|
/**
|
|
8932
8932
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9146,11 +9146,6 @@ export interface RequestDocumentLine {
|
|
|
9146
9146
|
*/
|
|
9147
9147
|
name: string;
|
|
9148
9148
|
|
|
9149
|
-
/**
|
|
9150
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
9151
|
-
*/
|
|
9152
|
-
externalArticleNumber: string;
|
|
9153
|
-
|
|
9154
9149
|
/**
|
|
9155
9150
|
* Buchungen zu dieser Belegposition
|
|
9156
9151
|
*/
|
|
@@ -9161,6 +9156,11 @@ export interface RequestDocumentLine {
|
|
|
9161
9156
|
*/
|
|
9162
9157
|
sourceLineId: number;
|
|
9163
9158
|
|
|
9159
|
+
/**
|
|
9160
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9161
|
+
*/
|
|
9162
|
+
externalArticleNumber: string;
|
|
9163
|
+
|
|
9164
9164
|
/**
|
|
9165
9165
|
* (optional) Preis des Artikels dieser Position
|
|
9166
9166
|
*/
|
|
@@ -9275,14 +9275,14 @@ export interface RequestDocumentText {
|
|
|
9275
9275
|
export interface RevenueCalculation {
|
|
9276
9276
|
|
|
9277
9277
|
/**
|
|
9278
|
-
*
|
|
9278
|
+
* Netto Umsatz
|
|
9279
9279
|
*/
|
|
9280
|
-
|
|
9280
|
+
salesValue: number;
|
|
9281
9281
|
|
|
9282
9282
|
/**
|
|
9283
|
-
*
|
|
9283
|
+
* Deckungsbeitrag (absolut)
|
|
9284
9284
|
*/
|
|
9285
|
-
|
|
9285
|
+
revenue: number;
|
|
9286
9286
|
|
|
9287
9287
|
/**
|
|
9288
9288
|
* Einkaufspreis
|
|
@@ -9303,14 +9303,14 @@ export interface SalesAgent {
|
|
|
9303
9303
|
note: string;
|
|
9304
9304
|
|
|
9305
9305
|
/**
|
|
9306
|
-
*
|
|
9306
|
+
* reference to the delivery method
|
|
9307
9307
|
*/
|
|
9308
|
-
|
|
9308
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9309
9309
|
|
|
9310
9310
|
/**
|
|
9311
|
-
*
|
|
9311
|
+
* is sales agent taxable
|
|
9312
9312
|
*/
|
|
9313
|
-
|
|
9313
|
+
taxable: boolean;
|
|
9314
9314
|
|
|
9315
9315
|
/**
|
|
9316
9316
|
* Freifelder
|
|
@@ -9770,14 +9770,14 @@ export interface ShelfDocument {
|
|
|
9770
9770
|
tags: Array<TagDto>;
|
|
9771
9771
|
|
|
9772
9772
|
/**
|
|
9773
|
-
*
|
|
9773
|
+
* Mehrsprachige Bezeichnungen
|
|
9774
9774
|
*/
|
|
9775
|
-
|
|
9775
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9776
9776
|
|
|
9777
9777
|
/**
|
|
9778
|
-
*
|
|
9778
|
+
* share informations
|
|
9779
9779
|
*/
|
|
9780
|
-
|
|
9780
|
+
shares: Array<ShelfShare>;
|
|
9781
9781
|
|
|
9782
9782
|
/**
|
|
9783
9783
|
* Automatische Löschung ab
|
|
@@ -9997,14 +9997,14 @@ export interface ShelfFile {
|
|
|
9997
9997
|
version: number;
|
|
9998
9998
|
|
|
9999
9999
|
/**
|
|
10000
|
-
*
|
|
10000
|
+
* current reference of this file in our storage
|
|
10001
10001
|
*/
|
|
10002
|
-
|
|
10002
|
+
storageHandle: string;
|
|
10003
10003
|
|
|
10004
10004
|
/**
|
|
10005
|
-
*
|
|
10005
|
+
* meta data
|
|
10006
10006
|
*/
|
|
10007
|
-
|
|
10007
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10008
10008
|
|
|
10009
10009
|
/**
|
|
10010
10010
|
* MetaInformations for this Object
|
|
@@ -10484,14 +10484,14 @@ export interface Supplier {
|
|
|
10484
10484
|
info: MetaInfo;
|
|
10485
10485
|
|
|
10486
10486
|
/**
|
|
10487
|
-
*
|
|
10487
|
+
* reference to the delivery method
|
|
10488
10488
|
*/
|
|
10489
|
-
|
|
10489
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10490
10490
|
|
|
10491
10491
|
/**
|
|
10492
|
-
*
|
|
10492
|
+
* Lieferantengruppe
|
|
10493
10493
|
*/
|
|
10494
|
-
|
|
10494
|
+
supplierGroupRef: ApiObjectReference;
|
|
10495
10495
|
|
|
10496
10496
|
/**
|
|
10497
10497
|
* tax able or tax free
|
|
@@ -10628,14 +10628,14 @@ export const enum TagType {
|
|
|
10628
10628
|
export interface TaxIdForeignCountry {
|
|
10629
10629
|
|
|
10630
10630
|
/**
|
|
10631
|
-
*
|
|
10631
|
+
* Tax ID of the company in the associated country
|
|
10632
10632
|
*/
|
|
10633
|
-
|
|
10633
|
+
taxId: string;
|
|
10634
10634
|
|
|
10635
10635
|
/**
|
|
10636
|
-
*
|
|
10636
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10637
10637
|
*/
|
|
10638
|
-
|
|
10638
|
+
countryCode: string;
|
|
10639
10639
|
|
|
10640
10640
|
/**
|
|
10641
10641
|
* Unique identifier of the Object
|
|
@@ -10908,14 +10908,14 @@ export interface User {
|
|
|
10908
10908
|
version: number;
|
|
10909
10909
|
|
|
10910
10910
|
/**
|
|
10911
|
-
*
|
|
10911
|
+
* first-name
|
|
10912
10912
|
*/
|
|
10913
|
-
|
|
10913
|
+
firstName: string;
|
|
10914
10914
|
|
|
10915
10915
|
/**
|
|
10916
|
-
*
|
|
10916
|
+
* is the email verified
|
|
10917
10917
|
*/
|
|
10918
|
-
|
|
10918
|
+
emailVerified: boolean;
|
|
10919
10919
|
|
|
10920
10920
|
/**
|
|
10921
10921
|
* email-address
|