@vario-software/types 2026.17.1 → 2026.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +37 -37
- package/scripting/types.d.ts +239 -239
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -367,10 +367,9 @@ export interface ArticleScriptingService {
|
|
|
367
367
|
*
|
|
368
368
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
369
369
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
370
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
371
370
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
372
371
|
*/
|
|
373
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
372
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
374
373
|
|
|
375
374
|
/**
|
|
376
375
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
@@ -385,9 +384,10 @@ export interface ArticleScriptingService {
|
|
|
385
384
|
*
|
|
386
385
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
387
386
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
387
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
388
388
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
389
389
|
*/
|
|
390
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
390
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
391
391
|
|
|
392
392
|
/**
|
|
393
393
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -508,21 +508,21 @@ export interface ArticleScriptingService {
|
|
|
508
508
|
readById(id: number, languageCode: string): Article;
|
|
509
509
|
|
|
510
510
|
/**
|
|
511
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
511
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
512
512
|
*
|
|
513
513
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
514
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
514
515
|
* @return {Article} Der gelesene Artikel
|
|
515
516
|
*/
|
|
516
|
-
readByNumber(articleNumber: string): Article;
|
|
517
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
517
518
|
|
|
518
519
|
/**
|
|
519
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
520
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
520
521
|
*
|
|
521
522
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
522
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
523
523
|
* @return {Article} Der gelesene Artikel
|
|
524
524
|
*/
|
|
525
|
-
readByNumber(articleNumber: string
|
|
525
|
+
readByNumber(articleNumber: string): Article;
|
|
526
526
|
|
|
527
527
|
/**
|
|
528
528
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1424,20 +1424,20 @@ export interface DocumentScriptingService {
|
|
|
1424
1424
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1425
1425
|
*
|
|
1426
1426
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1427
|
-
* @param {string}
|
|
1428
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1427
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1429
1428
|
* @return {Document} Der kopierte Beleg
|
|
1430
1429
|
*/
|
|
1431
|
-
copy(documentId: number,
|
|
1430
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1432
1431
|
|
|
1433
1432
|
/**
|
|
1434
1433
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1435
1434
|
*
|
|
1436
1435
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1437
|
-
* @param {string}
|
|
1436
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1437
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1438
1438
|
* @return {Document} Der kopierte Beleg
|
|
1439
1439
|
*/
|
|
1440
|
-
copy(documentId: number,
|
|
1440
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1441
1441
|
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Erstellt einen neuen Beleg
|
|
@@ -1451,35 +1451,35 @@ export interface DocumentScriptingService {
|
|
|
1451
1451
|
* Löst einen Beleg auf
|
|
1452
1452
|
*
|
|
1453
1453
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1454
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1455
1454
|
* @return {Document} Der aufgelöste Beleg
|
|
1456
1455
|
*/
|
|
1457
|
-
dissolve(documentId: number
|
|
1456
|
+
dissolve(documentId: number): Document;
|
|
1458
1457
|
|
|
1459
1458
|
/**
|
|
1460
1459
|
* Löst einen Beleg auf
|
|
1461
1460
|
*
|
|
1462
1461
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1462
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1463
1463
|
* @return {Document} Der aufgelöste Beleg
|
|
1464
1464
|
*/
|
|
1465
|
-
dissolve(documentId: number): Document;
|
|
1465
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1466
1466
|
|
|
1467
1467
|
/**
|
|
1468
1468
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1469
1469
|
*
|
|
1470
1470
|
* @param {number} documentId - ID des Belegs
|
|
1471
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1471
1472
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1472
1473
|
*/
|
|
1473
|
-
edit(documentId: number): Document;
|
|
1474
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1474
1475
|
|
|
1475
1476
|
/**
|
|
1476
1477
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1477
1478
|
*
|
|
1478
1479
|
* @param {number} documentId - ID des Belegs
|
|
1479
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1480
1480
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1481
1481
|
*/
|
|
1482
|
-
edit(documentId: number
|
|
1482
|
+
edit(documentId: number): Document;
|
|
1483
1483
|
|
|
1484
1484
|
/**
|
|
1485
1485
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -2458,26 +2458,26 @@ export interface ScriptingServiceList {
|
|
|
2458
2458
|
*/
|
|
2459
2459
|
crmTaskService: CrmTaskScriptingService;
|
|
2460
2460
|
|
|
2461
|
-
/**
|
|
2462
|
-
* Service zur Verarbeitung von Accounts
|
|
2463
|
-
*/
|
|
2464
|
-
accountService: AccountScriptingService;
|
|
2465
|
-
|
|
2466
2461
|
/**
|
|
2467
2462
|
* Service zur Verarbeitung von Shelf-Documents
|
|
2468
2463
|
*/
|
|
2469
2464
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2470
2465
|
|
|
2471
2466
|
/**
|
|
2472
|
-
*
|
|
2467
|
+
* Service zur Verarbeitung von Accounts
|
|
2473
2468
|
*/
|
|
2474
|
-
|
|
2469
|
+
accountService: AccountScriptingService;
|
|
2475
2470
|
|
|
2476
2471
|
/**
|
|
2477
2472
|
* Logging im Scripting
|
|
2478
2473
|
*/
|
|
2479
2474
|
logger: LoggingScriptingService;
|
|
2480
2475
|
|
|
2476
|
+
/**
|
|
2477
|
+
* Verwaltung von Versandarten
|
|
2478
|
+
*/
|
|
2479
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2480
|
+
|
|
2481
2481
|
/**
|
|
2482
2482
|
* Service zur Verarbeitung von Deals
|
|
2483
2483
|
*/
|
|
@@ -2494,14 +2494,14 @@ export interface ScriptingServiceList {
|
|
|
2494
2494
|
productGroupService: ProductGroupScriptingService;
|
|
2495
2495
|
|
|
2496
2496
|
/**
|
|
2497
|
-
*
|
|
2497
|
+
* Ausgabe-Support Methoden
|
|
2498
2498
|
*/
|
|
2499
|
-
|
|
2499
|
+
outputHelper: ScriptOutputHelperService;
|
|
2500
2500
|
|
|
2501
2501
|
/**
|
|
2502
|
-
*
|
|
2502
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2503
2503
|
*/
|
|
2504
|
-
|
|
2504
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2505
2505
|
|
|
2506
2506
|
/**
|
|
2507
2507
|
* Erstellt DTOs zur Verwendung im Skript
|
|
@@ -2549,14 +2549,14 @@ export interface ScriptingServiceList {
|
|
|
2549
2549
|
articleStorageService: ArticleStorageScriptingService;
|
|
2550
2550
|
|
|
2551
2551
|
/**
|
|
2552
|
-
*
|
|
2552
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2553
2553
|
*/
|
|
2554
|
-
|
|
2554
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2555
2555
|
|
|
2556
2556
|
/**
|
|
2557
|
-
*
|
|
2557
|
+
* Verwaltung von Zahlungsarten
|
|
2558
2558
|
*/
|
|
2559
|
-
|
|
2559
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2560
2560
|
|
|
2561
2561
|
/**
|
|
2562
2562
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
|
@@ -2666,18 +2666,18 @@ export interface ScriptingUtilities {
|
|
|
2666
2666
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2667
2667
|
*
|
|
2668
2668
|
* @param {object} value - Der Quell-Wert
|
|
2669
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2669
2670
|
* @return {number} Ein BigDecimal-Wert
|
|
2670
2671
|
*/
|
|
2671
|
-
newBigDecimal(value: object): number;
|
|
2672
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2672
2673
|
|
|
2673
2674
|
/**
|
|
2674
2675
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2675
2676
|
*
|
|
2676
2677
|
* @param {object} value - Der Quell-Wert
|
|
2677
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2678
2678
|
* @return {number} Ein BigDecimal-Wert
|
|
2679
2679
|
*/
|
|
2680
|
-
newBigDecimal(value: object
|
|
2680
|
+
newBigDecimal(value: object): number;
|
|
2681
2681
|
|
|
2682
2682
|
/**
|
|
2683
2683
|
* 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
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
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
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
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
|
*/
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
|
|
|
469
469
|
active: boolean;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
*
|
|
472
|
+
* name of the bank
|
|
473
473
|
*/
|
|
474
|
-
|
|
474
|
+
bankName: string;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* post-code of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankPostCode: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* account from, if differs from account-address
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* origin type
|
|
508
503
|
*/
|
|
509
504
|
originType: AccountBankdetail$OriginType;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* Is default bank?
|
|
508
|
+
*/
|
|
509
|
+
defaultBank: boolean;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -547,14 +547,14 @@ export const enum AccountBillingType {
|
|
|
547
547
|
export interface AccountLoanValue {
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* Nicht berücksichtigter Betrag
|
|
551
551
|
*/
|
|
552
|
-
|
|
552
|
+
unconsideredAmount: number;
|
|
553
553
|
|
|
554
554
|
/**
|
|
555
|
-
*
|
|
555
|
+
* Account
|
|
556
556
|
*/
|
|
557
|
-
|
|
557
|
+
accountId: number;
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
560
|
* Betrag aus Aufträgen
|
|
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
|
|
|
562
562
|
nonInvoicedDocumentLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
payablesSum: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* Kreditlimit
|
|
571
571
|
*/
|
|
572
|
-
|
|
572
|
+
maximalLoan: number;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Überschrittener Kreditbetrag
|
|
@@ -956,14 +956,14 @@ export interface Article {
|
|
|
956
956
|
customsTariffNumber: string;
|
|
957
957
|
|
|
958
958
|
/**
|
|
959
|
-
*
|
|
959
|
+
* Product custom data
|
|
960
960
|
*/
|
|
961
|
-
|
|
961
|
+
listingCustom: EavArticleListing;
|
|
962
962
|
|
|
963
963
|
/**
|
|
964
|
-
*
|
|
964
|
+
* is this product purchasable
|
|
965
965
|
*/
|
|
966
|
-
|
|
966
|
+
purchasable: boolean;
|
|
967
967
|
|
|
968
968
|
/**
|
|
969
969
|
* base capacity unit
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* weight and size w.o. packaging
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
netMetric: Article$Metric;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1236,9 +1236,9 @@ export interface Article {
|
|
|
1236
1236
|
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
1238
|
/**
|
|
1239
|
-
*
|
|
1239
|
+
* alternative name of this product
|
|
1240
1240
|
*/
|
|
1241
|
-
|
|
1241
|
+
alternativeName: string;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
1244
|
* rabattierbarer Artikel?
|
|
@@ -1246,9 +1246,9 @@ export interface Article {
|
|
|
1246
1246
|
discountable: boolean;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
|
-
*
|
|
1249
|
+
* Kontingentartikel
|
|
1250
1250
|
*/
|
|
1251
|
-
|
|
1251
|
+
contingentArticleRef: ApiObjectReference;
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
@@ -1701,14 +1701,14 @@ export interface ArticleStorage {
|
|
|
1701
1701
|
quantityInPicking: number;
|
|
1702
1702
|
|
|
1703
1703
|
/**
|
|
1704
|
-
*
|
|
1704
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1705
1705
|
*/
|
|
1706
|
-
|
|
1706
|
+
virtualStockAmount: number;
|
|
1707
1707
|
|
|
1708
1708
|
/**
|
|
1709
|
-
*
|
|
1709
|
+
* Nachschub auf
|
|
1710
1710
|
*/
|
|
1711
|
-
|
|
1711
|
+
replenishmentOn: number;
|
|
1712
1712
|
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Reservierte Menge
|
|
@@ -1778,11 +1778,6 @@ export interface ArticleStorage {
|
|
|
1778
1778
|
|
|
1779
1779
|
export interface ArticleSupplier {
|
|
1780
1780
|
|
|
1781
|
-
/**
|
|
1782
|
-
* Anzeigename des Accounts
|
|
1783
|
-
*/
|
|
1784
|
-
accountDisplayName: string;
|
|
1785
|
-
|
|
1786
1781
|
/**
|
|
1787
1782
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1788
1783
|
*/
|
|
@@ -1794,15 +1789,20 @@ export interface ArticleSupplier {
|
|
|
1794
1789
|
supplierReportingStock: number;
|
|
1795
1790
|
|
|
1796
1791
|
/**
|
|
1797
|
-
*
|
|
1792
|
+
* Anzeigename des Accounts
|
|
1798
1793
|
*/
|
|
1799
|
-
|
|
1794
|
+
accountDisplayName: string;
|
|
1800
1795
|
|
|
1801
1796
|
/**
|
|
1802
1797
|
* Lieferzeit in (Werk-)Tagen
|
|
1803
1798
|
*/
|
|
1804
1799
|
deliveryTime: number;
|
|
1805
1800
|
|
|
1801
|
+
/**
|
|
1802
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1803
|
+
*/
|
|
1804
|
+
useSupplierArticleIdentifier: boolean;
|
|
1805
|
+
|
|
1806
1806
|
/**
|
|
1807
1807
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1808
1808
|
*/
|
|
@@ -1889,14 +1889,14 @@ export interface ArticleSupplier {
|
|
|
1889
1889
|
dropShippingAllowed: boolean;
|
|
1890
1890
|
|
|
1891
1891
|
/**
|
|
1892
|
-
* Abweichende
|
|
1892
|
+
* Abweichende Produktbeschreibung
|
|
1893
1893
|
*/
|
|
1894
|
-
|
|
1894
|
+
supplierArticleDescription: string;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
* Abweichende
|
|
1897
|
+
* Abweichende Produktbezeichnung
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
supplierArticleName: string;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Standardpreis Netto
|
|
@@ -1904,14 +1904,14 @@ export interface ArticleSupplier {
|
|
|
1904
1904
|
defaultNetPrice: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Einkaufseinheit
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
purchaseUnit: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
orderOnComponentBase: boolean;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
1917
|
* Referenced Supplier-Account
|
|
@@ -2190,14 +2190,14 @@ export interface CrmActivity {
|
|
|
2190
2190
|
info: MetaInfo;
|
|
2191
2191
|
|
|
2192
2192
|
/**
|
|
2193
|
-
*
|
|
2193
|
+
* geplante Dauer
|
|
2194
2194
|
*/
|
|
2195
|
-
|
|
2195
|
+
plannedDurationInSeconds: number;
|
|
2196
2196
|
|
|
2197
2197
|
/**
|
|
2198
|
-
*
|
|
2198
|
+
* Aktivität intern abgerechnet?
|
|
2199
2199
|
*/
|
|
2200
|
-
|
|
2200
|
+
internalBilled: boolean;
|
|
2201
2201
|
|
|
2202
2202
|
/**
|
|
2203
2203
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2235,14 +2235,14 @@ export interface CrmActivity {
|
|
|
2235
2235
|
userRef: ApiObjectReference;
|
|
2236
2236
|
|
|
2237
2237
|
/**
|
|
2238
|
-
*
|
|
2238
|
+
* tatsächliche Startzeit
|
|
2239
2239
|
*/
|
|
2240
|
-
|
|
2240
|
+
startDateTime: ScriptingDateTime;
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
|
-
*
|
|
2243
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2244
2244
|
*/
|
|
2245
|
-
|
|
2245
|
+
system: boolean;
|
|
2246
2246
|
|
|
2247
2247
|
/**
|
|
2248
2248
|
* Inhalt dieser Aktivität
|
|
@@ -2467,14 +2467,14 @@ export interface CrmDeal {
|
|
|
2467
2467
|
info: MetaInfo;
|
|
2468
2468
|
|
|
2469
2469
|
/**
|
|
2470
|
-
*
|
|
2470
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2471
2471
|
*/
|
|
2472
|
-
|
|
2472
|
+
assignedUserRef: ApiObjectReference;
|
|
2473
2473
|
|
|
2474
2474
|
/**
|
|
2475
|
-
*
|
|
2475
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2476
2476
|
*/
|
|
2477
|
-
|
|
2477
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2478
2478
|
|
|
2479
2479
|
/**
|
|
2480
2480
|
* Chance (in Prozent)
|
|
@@ -2773,14 +2773,14 @@ export interface CrmProject {
|
|
|
2773
2773
|
billedTimes: number;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
|
-
*
|
|
2776
|
+
* Einkaufsbelege
|
|
2777
2777
|
*/
|
|
2778
|
-
|
|
2778
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
|
-
*
|
|
2781
|
+
* Geplanter Projektzeitraum (von)
|
|
2782
2782
|
*/
|
|
2783
|
-
|
|
2783
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2784
2784
|
|
|
2785
2785
|
/**
|
|
2786
2786
|
* Verkaufsbelege
|
|
@@ -2808,14 +2808,14 @@ export interface CrmProject {
|
|
|
2808
2808
|
info: MetaInfo;
|
|
2809
2809
|
|
|
2810
2810
|
/**
|
|
2811
|
-
*
|
|
2811
|
+
* Projektleiter vom Auftraggeber
|
|
2812
2812
|
*/
|
|
2813
|
-
|
|
2813
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2814
2814
|
|
|
2815
2815
|
/**
|
|
2816
|
-
*
|
|
2816
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2817
2817
|
*/
|
|
2818
|
-
|
|
2818
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2819
2819
|
|
|
2820
2820
|
/**
|
|
2821
2821
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3254,14 +3254,14 @@ export interface CrmTask {
|
|
|
3254
3254
|
assignedUserRef: ApiObjectReference;
|
|
3255
3255
|
|
|
3256
3256
|
/**
|
|
3257
|
-
*
|
|
3257
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3258
3258
|
*/
|
|
3259
|
-
|
|
3259
|
+
externalRecordedTimes: number;
|
|
3260
3260
|
|
|
3261
3261
|
/**
|
|
3262
|
-
*
|
|
3262
|
+
* Beauftragte Zeit in Sekunden
|
|
3263
3263
|
*/
|
|
3264
|
-
|
|
3264
|
+
effortCommissioned: number;
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
3267
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3633,26 +3633,26 @@ export interface DeliveryMethod {
|
|
|
3633
3633
|
*/
|
|
3634
3634
|
defaultSizeUnit: UnitTypeReference;
|
|
3635
3635
|
|
|
3636
|
-
/**
|
|
3637
|
-
* Quelle für Paketgewicht
|
|
3638
|
-
*/
|
|
3639
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3640
|
-
|
|
3641
3636
|
/**
|
|
3642
3637
|
* translations
|
|
3643
3638
|
*/
|
|
3644
3639
|
translations: Array<DocumentTypeTerm>;
|
|
3645
3640
|
|
|
3646
3641
|
/**
|
|
3647
|
-
*
|
|
3642
|
+
* Quelle für Paketgewicht
|
|
3648
3643
|
*/
|
|
3649
|
-
|
|
3644
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3650
3645
|
|
|
3651
3646
|
/**
|
|
3652
3647
|
* Gültige Ländercodes
|
|
3653
3648
|
*/
|
|
3654
3649
|
validCountryCodes: Array<string>;
|
|
3655
3650
|
|
|
3651
|
+
/**
|
|
3652
|
+
* Versand-Anbieter
|
|
3653
|
+
*/
|
|
3654
|
+
vdsCarrierId: number;
|
|
3655
|
+
|
|
3656
3656
|
/**
|
|
3657
3657
|
* Standardgewichtseinheit
|
|
3658
3658
|
*/
|
|
@@ -3863,14 +3863,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3863
3863
|
referencedOrderNumber: string;
|
|
3864
3864
|
|
|
3865
3865
|
/**
|
|
3866
|
-
*
|
|
3866
|
+
* Steuerpflichtig oder steuerfrei
|
|
3867
3867
|
*/
|
|
3868
|
-
|
|
3868
|
+
taxable: boolean;
|
|
3869
3869
|
|
|
3870
3870
|
/**
|
|
3871
|
-
*
|
|
3871
|
+
* Leitweg-ID
|
|
3872
3872
|
*/
|
|
3873
|
-
|
|
3873
|
+
buyerReference: string;
|
|
3874
3874
|
|
|
3875
3875
|
/**
|
|
3876
3876
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4085,14 +4085,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4085
4085
|
defaultAddress: DocumentAddress;
|
|
4086
4086
|
|
|
4087
4087
|
/**
|
|
4088
|
-
*
|
|
4088
|
+
* Verarbeitungsoption für Stapel
|
|
4089
4089
|
*/
|
|
4090
|
-
|
|
4090
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4091
4091
|
|
|
4092
4092
|
/**
|
|
4093
|
-
*
|
|
4093
|
+
* Leistungsdatum
|
|
4094
4094
|
*/
|
|
4095
|
-
|
|
4095
|
+
performanceDate: ScriptingDate;
|
|
4096
4096
|
|
|
4097
4097
|
/**
|
|
4098
4098
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4120,14 +4120,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4120
4120
|
additionalInfo: DocumentAdditionalInfo;
|
|
4121
4121
|
|
|
4122
4122
|
/**
|
|
4123
|
-
*
|
|
4123
|
+
* Bestelldatum
|
|
4124
4124
|
*/
|
|
4125
|
-
|
|
4125
|
+
orderedOn: ScriptingDate;
|
|
4126
4126
|
|
|
4127
4127
|
/**
|
|
4128
|
-
*
|
|
4128
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4129
4129
|
*/
|
|
4130
|
-
|
|
4130
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4131
4131
|
|
|
4132
4132
|
/**
|
|
4133
4133
|
* MetaInformations for this Object
|
|
@@ -4270,14 +4270,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4270
4270
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4271
4271
|
|
|
4272
4272
|
/**
|
|
4273
|
-
*
|
|
4273
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4274
4274
|
*/
|
|
4275
|
-
|
|
4275
|
+
taxIdentificationNumber: string;
|
|
4276
4276
|
|
|
4277
4277
|
/**
|
|
4278
|
-
*
|
|
4278
|
+
* Statusinstanz des Belegs
|
|
4279
4279
|
*/
|
|
4280
|
-
|
|
4280
|
+
documentState: DocumentTypeState;
|
|
4281
4281
|
|
|
4282
4282
|
/**
|
|
4283
4283
|
* Rückgeld
|
|
@@ -4485,14 +4485,14 @@ export interface DocumentAddress {
|
|
|
4485
4485
|
postOfficeBox: string;
|
|
4486
4486
|
|
|
4487
4487
|
/**
|
|
4488
|
-
*
|
|
4488
|
+
* Street
|
|
4489
4489
|
*/
|
|
4490
|
-
|
|
4490
|
+
street: string;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
|
-
*
|
|
4493
|
+
* country code IsoAlpha3
|
|
4494
4494
|
*/
|
|
4495
|
-
|
|
4495
|
+
countryCode: string;
|
|
4496
4496
|
|
|
4497
4497
|
/**
|
|
4498
4498
|
* Unique identifier of the Object
|
|
@@ -4510,14 +4510,14 @@ export interface DocumentAddress {
|
|
|
4510
4510
|
info: MetaInfo;
|
|
4511
4511
|
|
|
4512
4512
|
/**
|
|
4513
|
-
*
|
|
4513
|
+
* Lieferart
|
|
4514
4514
|
*/
|
|
4515
|
-
|
|
4515
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4516
4516
|
|
|
4517
4517
|
/**
|
|
4518
|
-
*
|
|
4518
|
+
* GLN
|
|
4519
4519
|
*/
|
|
4520
|
-
|
|
4520
|
+
globalLocationNumber: string;
|
|
4521
4521
|
|
|
4522
4522
|
/**
|
|
4523
4523
|
* Postcode
|
|
@@ -4697,14 +4697,14 @@ export interface DocumentContractDetail {
|
|
|
4697
4697
|
runtimeToDate: ScriptingDate;
|
|
4698
4698
|
|
|
4699
4699
|
/**
|
|
4700
|
-
*
|
|
4700
|
+
* Nächste Fälligkeit
|
|
4701
4701
|
*/
|
|
4702
|
-
|
|
4702
|
+
nextDueDate: ScriptingDate;
|
|
4703
4703
|
|
|
4704
4704
|
/**
|
|
4705
|
-
*
|
|
4705
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4706
4706
|
*/
|
|
4707
|
-
|
|
4707
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4708
4708
|
|
|
4709
4709
|
/**
|
|
4710
4710
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4969,14 +4969,14 @@ export interface DocumentLine {
|
|
|
4969
4969
|
baseTotalLinePrice: number;
|
|
4970
4970
|
|
|
4971
4971
|
/**
|
|
4972
|
-
*
|
|
4972
|
+
* FiBu-Buchung
|
|
4973
4973
|
*/
|
|
4974
|
-
|
|
4974
|
+
financeBooking: DocumentFinanceBooking;
|
|
4975
4975
|
|
|
4976
4976
|
/**
|
|
4977
|
-
*
|
|
4977
|
+
* Positionstyp
|
|
4978
4978
|
*/
|
|
4979
|
-
|
|
4979
|
+
lineType: DocumentLineType;
|
|
4980
4980
|
|
|
4981
4981
|
/**
|
|
4982
4982
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5008,26 +5008,26 @@ export interface DocumentLine {
|
|
|
5008
5008
|
*/
|
|
5009
5009
|
id: number;
|
|
5010
5010
|
|
|
5011
|
-
/**
|
|
5012
|
-
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5013
|
-
*/
|
|
5014
|
-
positionOfArticleLine: number;
|
|
5015
|
-
|
|
5016
5011
|
/**
|
|
5017
5012
|
* Externe Referenz zum VDS-Paket
|
|
5018
5013
|
*/
|
|
5019
5014
|
externalReferenceVds: string;
|
|
5020
5015
|
|
|
5021
5016
|
/**
|
|
5022
|
-
*
|
|
5017
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5023
5018
|
*/
|
|
5024
|
-
|
|
5019
|
+
positionOfArticleLine: number;
|
|
5025
5020
|
|
|
5026
5021
|
/**
|
|
5027
5022
|
* Serientyp
|
|
5028
5023
|
*/
|
|
5029
5024
|
serialType: ArticleSerialType;
|
|
5030
5025
|
|
|
5026
|
+
/**
|
|
5027
|
+
* Preis pro Einheit in Basiswährung
|
|
5028
|
+
*/
|
|
5029
|
+
basePrice: number;
|
|
5030
|
+
|
|
5031
5031
|
/**
|
|
5032
5032
|
* MetaInformations for this Object
|
|
5033
5033
|
*/
|
|
@@ -5189,14 +5189,14 @@ export interface DocumentLine {
|
|
|
5189
5189
|
unitType: UnitTypeReference;
|
|
5190
5190
|
|
|
5191
5191
|
/**
|
|
5192
|
-
*
|
|
5192
|
+
* Zubehör Einfügeart
|
|
5193
5193
|
*/
|
|
5194
|
-
|
|
5194
|
+
insertTerm: AccessoryInsertTerm;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* Referenz zur Basiszeile
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
baseLineId: number;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
5202
|
* Einheit Bruttogewicht
|
|
@@ -5463,14 +5463,14 @@ export interface DocumentLineComponent {
|
|
|
5463
5463
|
custom: EavDocumentlinecomponent;
|
|
5464
5464
|
|
|
5465
5465
|
/**
|
|
5466
|
-
*
|
|
5466
|
+
* Referenz auf den Artikel der Komponente
|
|
5467
5467
|
*/
|
|
5468
|
-
|
|
5468
|
+
articleId: number;
|
|
5469
5469
|
|
|
5470
5470
|
/**
|
|
5471
|
-
*
|
|
5471
|
+
* Gelieferte Menge
|
|
5472
5472
|
*/
|
|
5473
|
-
|
|
5473
|
+
quantityCommitted: number;
|
|
5474
5474
|
|
|
5475
5475
|
/**
|
|
5476
5476
|
* Beschreibung des Artikels
|
|
@@ -7048,14 +7048,14 @@ export interface PaymentMethod {
|
|
|
7048
7048
|
daysToAddForFollowup: number;
|
|
7049
7049
|
|
|
7050
7050
|
/**
|
|
7051
|
-
*
|
|
7051
|
+
* Die Business Transaction
|
|
7052
7052
|
*/
|
|
7053
|
-
|
|
7053
|
+
businessTransaction: ApiObjectReference;
|
|
7054
7054
|
|
|
7055
7055
|
/**
|
|
7056
|
-
*
|
|
7056
|
+
* external Payment Id
|
|
7057
7057
|
*/
|
|
7058
|
-
|
|
7058
|
+
externalPaymentId: string;
|
|
7059
7059
|
|
|
7060
7060
|
/**
|
|
7061
7061
|
* Unique identifier of the Object
|
|
@@ -7080,26 +7080,26 @@ export interface PaymentTerm {
|
|
|
7080
7080
|
*/
|
|
7081
7081
|
paymentDiscount2: number;
|
|
7082
7082
|
|
|
7083
|
-
/**
|
|
7084
|
-
* Percent for Discount 1
|
|
7085
|
-
*/
|
|
7086
|
-
paymentDiscount1: number;
|
|
7087
|
-
|
|
7088
7083
|
/**
|
|
7089
7084
|
* printDescription
|
|
7090
7085
|
*/
|
|
7091
7086
|
printDescription: string;
|
|
7092
7087
|
|
|
7093
7088
|
/**
|
|
7094
|
-
*
|
|
7089
|
+
* Percent for Discount 1
|
|
7095
7090
|
*/
|
|
7096
|
-
|
|
7091
|
+
paymentDiscount1: number;
|
|
7097
7092
|
|
|
7098
7093
|
/**
|
|
7099
7094
|
* for deposit: remaining term
|
|
7100
7095
|
*/
|
|
7101
7096
|
remainingTermRef: ApiObjectReference;
|
|
7102
7097
|
|
|
7098
|
+
/**
|
|
7099
|
+
* Days for Discount 1
|
|
7100
|
+
*/
|
|
7101
|
+
paymentDays1: number;
|
|
7102
|
+
|
|
7103
7103
|
/**
|
|
7104
7104
|
* Days for Discount 2
|
|
7105
7105
|
*/
|
|
@@ -7801,20 +7801,15 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7801
7801
|
*/
|
|
7802
7802
|
maxArticleCountPerOrder: number;
|
|
7803
7803
|
|
|
7804
|
-
/**
|
|
7805
|
-
* Maximaler Auftragswert
|
|
7806
|
-
*/
|
|
7807
|
-
maxOrderValue: number;
|
|
7808
|
-
|
|
7809
7804
|
/**
|
|
7810
7805
|
* Alternative Selektion in VQL
|
|
7811
7806
|
*/
|
|
7812
7807
|
alternativeSelectionInVql: string;
|
|
7813
7808
|
|
|
7814
7809
|
/**
|
|
7815
|
-
*
|
|
7810
|
+
* Maximaler Auftragswert
|
|
7816
7811
|
*/
|
|
7817
|
-
|
|
7812
|
+
maxOrderValue: number;
|
|
7818
7813
|
|
|
7819
7814
|
/**
|
|
7820
7815
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -7826,6 +7821,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7826
7821
|
*/
|
|
7827
7822
|
maxOrderCount: number;
|
|
7828
7823
|
|
|
7824
|
+
/**
|
|
7825
|
+
* Nur vollständig lieferbare Positionen
|
|
7826
|
+
*/
|
|
7827
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7828
|
+
|
|
7829
7829
|
/**
|
|
7830
7830
|
* Selektion über den Bereich vom Belegdatum
|
|
7831
7831
|
*/
|
|
@@ -7884,20 +7884,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7884
7884
|
*/
|
|
7885
7885
|
printPicklist: boolean;
|
|
7886
7886
|
|
|
7887
|
-
/**
|
|
7888
|
-
* Maximale Anzahl an Positionen einer Pickliste
|
|
7889
|
-
*/
|
|
7890
|
-
maxPicklistLineCount: number;
|
|
7891
|
-
|
|
7892
7887
|
/**
|
|
7893
7888
|
* Die zu verwendende Pickwagengruppe
|
|
7894
7889
|
*/
|
|
7895
7890
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7896
7891
|
|
|
7897
7892
|
/**
|
|
7898
|
-
*
|
|
7893
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
7899
7894
|
*/
|
|
7900
|
-
|
|
7895
|
+
maxPicklistLineCount: number;
|
|
7901
7896
|
|
|
7902
7897
|
/**
|
|
7903
7898
|
* Der zu verwendende Pickwagen
|
|
@@ -7910,15 +7905,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7910
7905
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7911
7906
|
|
|
7912
7907
|
/**
|
|
7913
|
-
*
|
|
7908
|
+
* Lagerplätze vorgeben
|
|
7914
7909
|
*/
|
|
7915
|
-
|
|
7910
|
+
specifyStorageBins: boolean;
|
|
7916
7911
|
|
|
7917
7912
|
/**
|
|
7918
7913
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7919
7914
|
*/
|
|
7920
7915
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
7921
7916
|
|
|
7917
|
+
/**
|
|
7918
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7919
|
+
*/
|
|
7920
|
+
sortByRoutePosition: boolean;
|
|
7921
|
+
|
|
7922
7922
|
/**
|
|
7923
7923
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
7924
7924
|
*/
|
|
@@ -7963,14 +7963,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7963
7963
|
alwaysShowDeliveryMethod: boolean;
|
|
7964
7964
|
|
|
7965
7965
|
/**
|
|
7966
|
-
*
|
|
7966
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7967
7967
|
*/
|
|
7968
|
-
|
|
7968
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7969
7969
|
|
|
7970
7970
|
/**
|
|
7971
|
-
*
|
|
7971
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7972
7972
|
*/
|
|
7973
|
-
|
|
7973
|
+
autoPrintDeliveryDocument: boolean;
|
|
7974
7974
|
|
|
7975
7975
|
/**
|
|
7976
7976
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7978,14 +7978,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7978
7978
|
showShippingFormOnPickingFinish: boolean;
|
|
7979
7979
|
|
|
7980
7980
|
/**
|
|
7981
|
-
*
|
|
7981
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7982
7982
|
*/
|
|
7983
|
-
|
|
7983
|
+
allowPickingOfServiceArticles: boolean;
|
|
7984
7984
|
|
|
7985
7985
|
/**
|
|
7986
|
-
*
|
|
7986
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7987
7987
|
*/
|
|
7988
|
-
|
|
7988
|
+
useDigitalPicklist: boolean;
|
|
7989
7989
|
|
|
7990
7990
|
/**
|
|
7991
7991
|
* Sammelbestätigung erlauben
|
|
@@ -8003,14 +8003,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8003
8003
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8004
8004
|
|
|
8005
8005
|
/**
|
|
8006
|
-
*
|
|
8006
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8007
8007
|
*/
|
|
8008
|
-
|
|
8008
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8009
8009
|
|
|
8010
8010
|
/**
|
|
8011
|
-
*
|
|
8011
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8012
8012
|
*/
|
|
8013
|
-
|
|
8013
|
+
autoDeterminationOfLots: boolean;
|
|
8014
8014
|
|
|
8015
8015
|
/**
|
|
8016
8016
|
* Zielmengen in Masken verstecken?
|
|
@@ -8299,14 +8299,14 @@ export interface ProductDiscount {
|
|
|
8299
8299
|
currencyRef: CurrencyReference;
|
|
8300
8300
|
|
|
8301
8301
|
/**
|
|
8302
|
-
*
|
|
8302
|
+
* Wert des Rabatts
|
|
8303
8303
|
*/
|
|
8304
|
-
|
|
8304
|
+
modifierValue: number;
|
|
8305
8305
|
|
|
8306
8306
|
/**
|
|
8307
|
-
*
|
|
8307
|
+
* Preisgruppe
|
|
8308
8308
|
*/
|
|
8309
|
-
|
|
8309
|
+
priceGroupRef: ApiObjectReference;
|
|
8310
8310
|
|
|
8311
8311
|
/**
|
|
8312
8312
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -8528,14 +8528,14 @@ export interface ProductPrice {
|
|
|
8528
8528
|
qualifier: ProductPriceQualifier;
|
|
8529
8529
|
|
|
8530
8530
|
/**
|
|
8531
|
-
*
|
|
8531
|
+
* Aktionpreis
|
|
8532
8532
|
*/
|
|
8533
|
-
|
|
8533
|
+
specialOfferPrice: boolean;
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Preisbasis
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
priceBase: ArticlePriceBase;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
8541
|
* Gültig bis
|
|
@@ -8805,14 +8805,14 @@ export interface RequestDocumentLine {
|
|
|
8805
8805
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8806
8806
|
|
|
8807
8807
|
/**
|
|
8808
|
-
*
|
|
8808
|
+
* FiBu-Angaben
|
|
8809
8809
|
*/
|
|
8810
|
-
|
|
8810
|
+
financeBooking: DocumentFinanceBooking;
|
|
8811
8811
|
|
|
8812
8812
|
/**
|
|
8813
|
-
*
|
|
8813
|
+
* Typ dieser Position
|
|
8814
8814
|
*/
|
|
8815
|
-
|
|
8815
|
+
lineType: DocumentLineType;
|
|
8816
8816
|
|
|
8817
8817
|
/**
|
|
8818
8818
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8904,11 +8904,6 @@ export interface RequestDocumentLine {
|
|
|
8904
8904
|
*/
|
|
8905
8905
|
name: string;
|
|
8906
8906
|
|
|
8907
|
-
/**
|
|
8908
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
8909
|
-
*/
|
|
8910
|
-
externalArticleNumber: string;
|
|
8911
|
-
|
|
8912
8907
|
/**
|
|
8913
8908
|
* ID der Quell-Belegposition
|
|
8914
8909
|
*/
|
|
@@ -8919,6 +8914,11 @@ export interface RequestDocumentLine {
|
|
|
8919
8914
|
*/
|
|
8920
8915
|
bookings: Array<RequestDocumentLineBooking>;
|
|
8921
8916
|
|
|
8917
|
+
/**
|
|
8918
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8919
|
+
*/
|
|
8920
|
+
externalArticleNumber: string;
|
|
8921
|
+
|
|
8922
8922
|
/**
|
|
8923
8923
|
* (optional) Preis des Artikels dieser Position
|
|
8924
8924
|
*/
|
|
@@ -9409,14 +9409,14 @@ export interface SequencerConfiguration {
|
|
|
9409
9409
|
key: string;
|
|
9410
9410
|
|
|
9411
9411
|
/**
|
|
9412
|
-
*
|
|
9412
|
+
* Contains details about the sequencer configuration
|
|
9413
9413
|
*/
|
|
9414
|
-
|
|
9414
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9415
9415
|
|
|
9416
9416
|
/**
|
|
9417
|
-
*
|
|
9417
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9418
9418
|
*/
|
|
9419
|
-
|
|
9419
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9420
9420
|
|
|
9421
9421
|
/**
|
|
9422
9422
|
* MetaInformations for this Object
|
|
@@ -9528,14 +9528,14 @@ export interface ShelfDocument {
|
|
|
9528
9528
|
tags: Array<TagDto>;
|
|
9529
9529
|
|
|
9530
9530
|
/**
|
|
9531
|
-
*
|
|
9531
|
+
* share informations
|
|
9532
9532
|
*/
|
|
9533
|
-
|
|
9533
|
+
shares: Array<ShelfShare>;
|
|
9534
9534
|
|
|
9535
9535
|
/**
|
|
9536
|
-
*
|
|
9536
|
+
* Mehrsprachige Bezeichnungen
|
|
9537
9537
|
*/
|
|
9538
|
-
|
|
9538
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9539
9539
|
|
|
9540
9540
|
/**
|
|
9541
9541
|
* Automatische Löschung ab
|
|
@@ -9667,14 +9667,14 @@ export interface ShelfDocumentType {
|
|
|
9667
9667
|
active: boolean;
|
|
9668
9668
|
|
|
9669
9669
|
/**
|
|
9670
|
-
*
|
|
9670
|
+
* label of type
|
|
9671
9671
|
*/
|
|
9672
|
-
|
|
9672
|
+
label: string;
|
|
9673
9673
|
|
|
9674
9674
|
/**
|
|
9675
|
-
*
|
|
9675
|
+
* access level or reading
|
|
9676
9676
|
*/
|
|
9677
|
-
|
|
9677
|
+
accessLevelRead: number;
|
|
9678
9678
|
|
|
9679
9679
|
/**
|
|
9680
9680
|
* storage rule for revisions
|
|
@@ -9720,14 +9720,14 @@ export interface ShelfFile {
|
|
|
9720
9720
|
subFiles: Array<SubFileInfo>;
|
|
9721
9721
|
|
|
9722
9722
|
/**
|
|
9723
|
-
*
|
|
9723
|
+
* fileSize
|
|
9724
9724
|
*/
|
|
9725
|
-
|
|
9725
|
+
fileSize: number;
|
|
9726
9726
|
|
|
9727
9727
|
/**
|
|
9728
|
-
*
|
|
9728
|
+
* revision number of this file
|
|
9729
9729
|
*/
|
|
9730
|
-
|
|
9730
|
+
revisionNumber: number;
|
|
9731
9731
|
|
|
9732
9732
|
/**
|
|
9733
9733
|
* file-extension of this entry
|
|
@@ -9755,14 +9755,14 @@ export interface ShelfFile {
|
|
|
9755
9755
|
version: number;
|
|
9756
9756
|
|
|
9757
9757
|
/**
|
|
9758
|
-
*
|
|
9758
|
+
* meta data
|
|
9759
9759
|
*/
|
|
9760
|
-
|
|
9760
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9761
9761
|
|
|
9762
9762
|
/**
|
|
9763
|
-
*
|
|
9763
|
+
* current reference of this file in our storage
|
|
9764
9764
|
*/
|
|
9765
|
-
|
|
9765
|
+
storageHandle: string;
|
|
9766
9766
|
|
|
9767
9767
|
/**
|
|
9768
9768
|
* MetaInformations for this Object
|
|
@@ -9806,14 +9806,14 @@ export interface ShelfShare {
|
|
|
9806
9806
|
publishState: ShelfSharePublishState;
|
|
9807
9807
|
|
|
9808
9808
|
/**
|
|
9809
|
-
*
|
|
9809
|
+
* Freifelder
|
|
9810
9810
|
*/
|
|
9811
|
-
|
|
9811
|
+
custom: EavShelfshare;
|
|
9812
9812
|
|
|
9813
9813
|
/**
|
|
9814
|
-
*
|
|
9814
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9815
9815
|
*/
|
|
9816
|
-
|
|
9816
|
+
publicUrlDurationInMinutes: number;
|
|
9817
9817
|
|
|
9818
9818
|
/**
|
|
9819
9819
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9943,14 +9943,14 @@ export interface Stock {
|
|
|
9943
9943
|
storageBinId: number;
|
|
9944
9944
|
|
|
9945
9945
|
/**
|
|
9946
|
-
*
|
|
9946
|
+
* Artikel
|
|
9947
9947
|
*/
|
|
9948
|
-
|
|
9948
|
+
articleId: number;
|
|
9949
9949
|
|
|
9950
9950
|
/**
|
|
9951
|
-
*
|
|
9951
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
9952
9952
|
*/
|
|
9953
|
-
|
|
9953
|
+
reservedSerialQuantity: number;
|
|
9954
9954
|
}
|
|
9955
9955
|
|
|
9956
9956
|
export const enum StockJournalFactor {
|
|
@@ -10242,14 +10242,14 @@ export interface Supplier {
|
|
|
10242
10242
|
info: MetaInfo;
|
|
10243
10243
|
|
|
10244
10244
|
/**
|
|
10245
|
-
*
|
|
10245
|
+
* Lieferantengruppe
|
|
10246
10246
|
*/
|
|
10247
|
-
|
|
10247
|
+
supplierGroupRef: ApiObjectReference;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* reference to the delivery method
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10253
10253
|
|
|
10254
10254
|
/**
|
|
10255
10255
|
* tax able or tax free
|
|
@@ -10307,14 +10307,14 @@ export interface Supplier {
|
|
|
10307
10307
|
performanceCountryCode: string;
|
|
10308
10308
|
|
|
10309
10309
|
/**
|
|
10310
|
-
*
|
|
10310
|
+
* reference to the payment method
|
|
10311
10311
|
*/
|
|
10312
|
-
|
|
10312
|
+
paymentMethodRef: ApiObjectReference;
|
|
10313
10313
|
|
|
10314
10314
|
/**
|
|
10315
|
-
*
|
|
10315
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10316
10316
|
*/
|
|
10317
|
-
|
|
10317
|
+
defaultDeliveryTime: number;
|
|
10318
10318
|
|
|
10319
10319
|
/**
|
|
10320
10320
|
* currency code IsoAlpha3
|