@vario-software/types 2026.23.2 → 2026.23.3
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 +19 -19
- package/scripting/types.d.ts +246 -246
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -479,21 +479,21 @@ export interface ArticleListingScriptingService {
|
|
|
479
479
|
getNewDto(): ArticleListing;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
|
-
* Liest alle Listings zu einem Artikel
|
|
482
|
+
* Liest alle Listings zu einem Artikel mit Texten zur Sprache languageCode
|
|
483
483
|
*
|
|
484
484
|
* @param {number} articleId - ID des Artikels
|
|
485
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
485
486
|
* @return {Array<ArticleListing>} Liste der Listings
|
|
486
487
|
*/
|
|
487
|
-
readAllByArticleId(articleId: number): Array<ArticleListing>;
|
|
488
|
+
readAllByArticleId(articleId: number, languageCode: string): Array<ArticleListing>;
|
|
488
489
|
|
|
489
490
|
/**
|
|
490
|
-
* Liest alle Listings zu einem Artikel
|
|
491
|
+
* Liest alle Listings zu einem Artikel
|
|
491
492
|
*
|
|
492
493
|
* @param {number} articleId - ID des Artikels
|
|
493
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
494
494
|
* @return {Array<ArticleListing>} Liste der Listings
|
|
495
495
|
*/
|
|
496
|
-
readAllByArticleId(articleId: number
|
|
496
|
+
readAllByArticleId(articleId: number): Array<ArticleListing>;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
499
|
* Liest eine Liste von DTOs
|
|
@@ -549,18 +549,18 @@ export interface ArticleScriptingService {
|
|
|
549
549
|
*
|
|
550
550
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
551
551
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
552
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
553
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
554
552
|
*/
|
|
555
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
553
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
556
554
|
|
|
557
555
|
/**
|
|
558
556
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
559
557
|
*
|
|
560
558
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
561
559
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
560
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
561
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
562
562
|
*/
|
|
563
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
563
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
564
564
|
|
|
565
565
|
/**
|
|
566
566
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
@@ -685,38 +685,38 @@ Die Texte werden zur Sprache der eigenen Adresse gespeichert.
|
|
|
685
685
|
newLabelPrintBatchIdentifier(): string;
|
|
686
686
|
|
|
687
687
|
/**
|
|
688
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
688
|
+
* Liest einen Artikel mit Texten zur Sprache der eigenen Adresse
|
|
689
689
|
*
|
|
690
690
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
691
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
692
691
|
* @return {Article} Der gelesene Artikel
|
|
693
692
|
*/
|
|
694
|
-
readById(id: number
|
|
693
|
+
readById(id: number): Article;
|
|
695
694
|
|
|
696
695
|
/**
|
|
697
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
696
|
+
* Liest einen Artikel mit Texten zur Sprache languageCode
|
|
698
697
|
*
|
|
699
698
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
699
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
700
700
|
* @return {Article} Der gelesene Artikel
|
|
701
701
|
*/
|
|
702
|
-
readById(id: number): Article;
|
|
702
|
+
readById(id: number, languageCode: string): Article;
|
|
703
703
|
|
|
704
704
|
/**
|
|
705
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
705
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
706
706
|
*
|
|
707
707
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
708
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
709
708
|
* @return {Article} Der gelesene Artikel
|
|
710
709
|
*/
|
|
711
|
-
readByNumber(articleNumber: string
|
|
710
|
+
readByNumber(articleNumber: string): Article;
|
|
712
711
|
|
|
713
712
|
/**
|
|
714
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
713
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
715
714
|
*
|
|
716
715
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
716
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
717
717
|
* @return {Article} Der gelesene Artikel
|
|
718
718
|
*/
|
|
719
|
-
readByNumber(articleNumber: string): Article;
|
|
719
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
720
720
|
|
|
721
721
|
/**
|
|
722
722
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
package/scripting/types.d.ts
CHANGED
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Post office box
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
postOfficeBox: string;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Title
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Country code
|
|
@@ -391,14 +391,14 @@ export interface AccountAddress {
|
|
|
391
391
|
additionalAddressLine1: string;
|
|
392
392
|
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* Additional address line2
|
|
395
395
|
*/
|
|
396
|
-
|
|
396
|
+
additionalAddressLine2: string;
|
|
397
397
|
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* Parcel station
|
|
400
400
|
*/
|
|
401
|
-
|
|
401
|
+
parcelStation: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
404
|
* Street address number
|
|
@@ -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
|
-
* 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
|
*/
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* gross sales prices
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
grossSalesPrice: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
commissionable: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* Nur manuelle Produktion
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
onlyManualFabrication: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1494,14 +1494,14 @@ export interface ArticleCustomer {
|
|
|
1494
1494
|
articleName: string;
|
|
1495
1495
|
|
|
1496
1496
|
/**
|
|
1497
|
-
*
|
|
1497
|
+
* Etikettdruck-Einstellungen
|
|
1498
1498
|
*/
|
|
1499
|
-
|
|
1499
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
|
-
*
|
|
1502
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1504
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1505
1505
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Kunden-Preise
|
|
@@ -1893,6 +1893,11 @@ export interface ArticleStorage {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
|
+
/**
|
|
1897
|
+
* Meldebestand
|
|
1898
|
+
*/
|
|
1899
|
+
reorderPoint: number;
|
|
1900
|
+
|
|
1896
1901
|
/**
|
|
1897
1902
|
* Bestellte Menge
|
|
1898
1903
|
*/
|
|
@@ -1904,20 +1909,15 @@ export interface ArticleStorage {
|
|
|
1904
1909
|
quantityInPicking: number;
|
|
1905
1910
|
|
|
1906
1911
|
/**
|
|
1907
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1908
1913
|
*/
|
|
1909
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1910
1915
|
|
|
1911
1916
|
/**
|
|
1912
1917
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1913
1918
|
*/
|
|
1914
1919
|
virtualStockAmount: number;
|
|
1915
1920
|
|
|
1916
|
-
/**
|
|
1917
|
-
* Nachschub auf
|
|
1918
|
-
*/
|
|
1919
|
-
replenishmentOn: number;
|
|
1920
|
-
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
1923
1923
|
*/
|
|
@@ -1991,26 +1991,26 @@ export interface ArticleSupplier {
|
|
|
1991
1991
|
*/
|
|
1992
1992
|
accountDisplayName: string;
|
|
1993
1993
|
|
|
1994
|
-
/**
|
|
1995
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1996
|
-
*/
|
|
1997
|
-
useSupplierArticleDescription: boolean;
|
|
1998
|
-
|
|
1999
1994
|
/**
|
|
2000
1995
|
* Lieferanten-Meldebestand
|
|
2001
1996
|
*/
|
|
2002
1997
|
supplierReportingStock: number;
|
|
2003
1998
|
|
|
2004
1999
|
/**
|
|
2005
|
-
*
|
|
2000
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2006
2001
|
*/
|
|
2007
|
-
|
|
2002
|
+
useSupplierArticleDescription: boolean;
|
|
2008
2003
|
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2011
2006
|
*/
|
|
2012
2007
|
useSupplierArticleIdentifier: boolean;
|
|
2013
2008
|
|
|
2009
|
+
/**
|
|
2010
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2011
|
+
*/
|
|
2012
|
+
deliveryTime: number;
|
|
2013
|
+
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2016
2016
|
*/
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Verpackungseinheit
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
packagingUnit: number;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Referenced Article name
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
articleName: string;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Projektleiter vom Auftragnehmer
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Phase
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
phaseRef: ApiObjectReference;
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Aufgaben-Nummer
|
|
@@ -2990,14 +2990,14 @@ export interface CrmProject {
|
|
|
2990
2990
|
billedTimes: number;
|
|
2991
2991
|
|
|
2992
2992
|
/**
|
|
2993
|
-
*
|
|
2993
|
+
* Einkaufsbelege
|
|
2994
2994
|
*/
|
|
2995
|
-
|
|
2995
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2996
2996
|
|
|
2997
2997
|
/**
|
|
2998
|
-
*
|
|
2998
|
+
* Geplanter Projektzeitraum (von)
|
|
2999
2999
|
*/
|
|
3000
|
-
|
|
3000
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Verkaufsbelege
|
|
@@ -3025,14 +3025,14 @@ export interface CrmProject {
|
|
|
3025
3025
|
info: MetaInfo;
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
|
-
*
|
|
3028
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3029
3029
|
*/
|
|
3030
|
-
|
|
3030
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3031
3031
|
|
|
3032
3032
|
/**
|
|
3033
|
-
*
|
|
3033
|
+
* Projektleiter vom Auftraggeber
|
|
3034
3034
|
*/
|
|
3035
|
-
|
|
3035
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Übergeordnete CRM-Objekte
|
|
@@ -3220,14 +3220,14 @@ export interface CrmState {
|
|
|
3220
3220
|
readyToBill: boolean;
|
|
3221
3221
|
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
3223
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3224
3224
|
*/
|
|
3225
|
-
|
|
3225
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3226
3226
|
|
|
3227
3227
|
/**
|
|
3228
|
-
*
|
|
3228
|
+
* Handelt es sich um einen Anfang-Status
|
|
3229
3229
|
*/
|
|
3230
|
-
|
|
3230
|
+
startState: boolean;
|
|
3231
3231
|
|
|
3232
3232
|
/**
|
|
3233
3233
|
* MetaInformations for this Object
|
|
@@ -3276,9 +3276,9 @@ export interface CrmSubType {
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
3278
|
/**
|
|
3279
|
-
*
|
|
3279
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3280
3280
|
*/
|
|
3281
|
-
|
|
3281
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3282
3282
|
|
|
3283
3283
|
/**
|
|
3284
3284
|
* Angebot
|
|
@@ -3286,9 +3286,9 @@ export interface CrmTask {
|
|
|
3286
3286
|
customerOfferRef: DocumentRef;
|
|
3287
3287
|
|
|
3288
3288
|
/**
|
|
3289
|
-
*
|
|
3289
|
+
* Liste von Erinnerungen
|
|
3290
3290
|
*/
|
|
3291
|
-
|
|
3291
|
+
reminders: Array<CrmReminder>;
|
|
3292
3292
|
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Notizen
|
|
@@ -3476,14 +3476,14 @@ export interface CrmTask {
|
|
|
3476
3476
|
parentRefs: Array<CrmObjectRef>;
|
|
3477
3477
|
|
|
3478
3478
|
/**
|
|
3479
|
-
*
|
|
3479
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3480
3480
|
*/
|
|
3481
|
-
|
|
3481
|
+
externalRecordedTimes: number;
|
|
3482
3482
|
|
|
3483
3483
|
/**
|
|
3484
|
-
*
|
|
3484
|
+
* Beauftragte Zeit in Sekunden
|
|
3485
3485
|
*/
|
|
3486
|
-
|
|
3486
|
+
effortCommissioned: number;
|
|
3487
3487
|
|
|
3488
3488
|
/**
|
|
3489
3489
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3715,14 +3715,14 @@ export interface Customer {
|
|
|
3715
3715
|
stackProcessingPriority: number;
|
|
3716
3716
|
|
|
3717
3717
|
/**
|
|
3718
|
-
*
|
|
3718
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3719
3719
|
*/
|
|
3720
|
-
|
|
3720
|
+
collectiveInvoiceManually: boolean;
|
|
3721
3721
|
|
|
3722
3722
|
/**
|
|
3723
|
-
*
|
|
3723
|
+
* reference to product price group
|
|
3724
3724
|
*/
|
|
3725
|
-
|
|
3725
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3726
3726
|
|
|
3727
3727
|
/**
|
|
3728
3728
|
* Unique identifier of the Object
|
|
@@ -4057,14 +4057,14 @@ export interface DeliveryTerm {
|
|
|
4057
4057
|
version: number;
|
|
4058
4058
|
|
|
4059
4059
|
/**
|
|
4060
|
-
*
|
|
4060
|
+
* information, how the shipping charges should be calculated
|
|
4061
4061
|
*/
|
|
4062
|
-
|
|
4062
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4063
4063
|
|
|
4064
4064
|
/**
|
|
4065
|
-
*
|
|
4065
|
+
* translations
|
|
4066
4066
|
*/
|
|
4067
|
-
|
|
4067
|
+
translations: Array<DocumentTypeTerm>;
|
|
4068
4068
|
|
|
4069
4069
|
/**
|
|
4070
4070
|
* Lieferarten
|
|
@@ -4077,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4077
4077
|
id: number;
|
|
4078
4078
|
|
|
4079
4079
|
/**
|
|
4080
|
-
*
|
|
4080
|
+
* free shipping net value
|
|
4081
4081
|
*/
|
|
4082
|
-
|
|
4082
|
+
freeShippingNetValue: number;
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
|
-
*
|
|
4085
|
+
* Versandkostenartikel
|
|
4086
4086
|
*/
|
|
4087
|
-
|
|
4087
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4088
4088
|
|
|
4089
4089
|
/**
|
|
4090
4090
|
* MetaInformations for this Object
|
|
@@ -4345,14 +4345,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4345
4345
|
contractDetail: DocumentContractDetail;
|
|
4346
4346
|
|
|
4347
4347
|
/**
|
|
4348
|
-
*
|
|
4348
|
+
* Zahlungsplan vorhanden?
|
|
4349
4349
|
*/
|
|
4350
|
-
|
|
4350
|
+
paymentPlan: boolean;
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
*
|
|
4353
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4354
4354
|
*/
|
|
4355
|
-
|
|
4355
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
4358
|
* Produktionsdetails
|
|
@@ -4420,14 +4420,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4420
4420
|
performanceDate: ScriptingDate;
|
|
4421
4421
|
|
|
4422
4422
|
/**
|
|
4423
|
-
*
|
|
4423
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4424
4424
|
*/
|
|
4425
|
-
|
|
4425
|
+
en16931Profile: EN16931Profile;
|
|
4426
4426
|
|
|
4427
4427
|
/**
|
|
4428
|
-
*
|
|
4428
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4429
4429
|
*/
|
|
4430
|
-
|
|
4430
|
+
dropShippingInvoiceApproved: boolean;
|
|
4431
4431
|
|
|
4432
4432
|
/**
|
|
4433
4433
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4445,14 +4445,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4445
4445
|
additionalInfo: DocumentAdditionalInfo;
|
|
4446
4446
|
|
|
4447
4447
|
/**
|
|
4448
|
-
*
|
|
4448
|
+
* Bestelldatum
|
|
4449
4449
|
*/
|
|
4450
|
-
|
|
4450
|
+
orderedOn: ScriptingDate;
|
|
4451
4451
|
|
|
4452
4452
|
/**
|
|
4453
|
-
*
|
|
4453
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4454
4454
|
*/
|
|
4455
|
-
|
|
4455
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4456
4456
|
|
|
4457
4457
|
/**
|
|
4458
4458
|
* MetaInformations for this Object
|
|
@@ -4604,11 +4604,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4604
4604
|
*/
|
|
4605
4605
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4606
4606
|
|
|
4607
|
-
/**
|
|
4608
|
-
* Rückgeld
|
|
4609
|
-
*/
|
|
4610
|
-
posReceiptChangeAmount: number;
|
|
4611
|
-
|
|
4612
4607
|
/**
|
|
4613
4608
|
* Referenz auf Lieferbedingung
|
|
4614
4609
|
*/
|
|
@@ -4621,6 +4616,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4621
4616
|
*/
|
|
4622
4617
|
posReceiptBalanced: boolean;
|
|
4623
4618
|
|
|
4619
|
+
/**
|
|
4620
|
+
* Rückgeld
|
|
4621
|
+
*/
|
|
4622
|
+
posReceiptChangeAmount: number;
|
|
4623
|
+
|
|
4624
4624
|
/**
|
|
4625
4625
|
* Gesamtbruttogewicht
|
|
4626
4626
|
*/
|
|
@@ -4835,14 +4835,14 @@ export interface DocumentAddress {
|
|
|
4835
4835
|
info: MetaInfo;
|
|
4836
4836
|
|
|
4837
4837
|
/**
|
|
4838
|
-
*
|
|
4838
|
+
* GLN
|
|
4839
4839
|
*/
|
|
4840
|
-
|
|
4840
|
+
globalLocationNumber: string;
|
|
4841
4841
|
|
|
4842
4842
|
/**
|
|
4843
|
-
*
|
|
4843
|
+
* Lieferart
|
|
4844
4844
|
*/
|
|
4845
|
-
|
|
4845
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4846
4846
|
|
|
4847
4847
|
/**
|
|
4848
4848
|
* Postcode
|
|
@@ -5023,14 +5023,14 @@ export interface DocumentContractDetail {
|
|
|
5023
5023
|
runtimeToDate: ScriptingDate;
|
|
5024
5024
|
|
|
5025
5025
|
/**
|
|
5026
|
-
*
|
|
5026
|
+
* Nächste Fälligkeit
|
|
5027
5027
|
*/
|
|
5028
|
-
|
|
5028
|
+
nextDueDate: ScriptingDate;
|
|
5029
5029
|
|
|
5030
5030
|
/**
|
|
5031
|
-
*
|
|
5031
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5032
5032
|
*/
|
|
5033
|
-
|
|
5033
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5034
5034
|
|
|
5035
5035
|
/**
|
|
5036
5036
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5345,14 +5345,14 @@ export interface DocumentLine {
|
|
|
5345
5345
|
positionOfArticleLine: number;
|
|
5346
5346
|
|
|
5347
5347
|
/**
|
|
5348
|
-
*
|
|
5348
|
+
* Serientyp
|
|
5349
5349
|
*/
|
|
5350
|
-
|
|
5350
|
+
serialType: ArticleSerialType;
|
|
5351
5351
|
|
|
5352
5352
|
/**
|
|
5353
|
-
*
|
|
5353
|
+
* Preis pro Einheit in Basiswährung
|
|
5354
5354
|
*/
|
|
5355
|
-
|
|
5355
|
+
basePrice: number;
|
|
5356
5356
|
|
|
5357
5357
|
/**
|
|
5358
5358
|
* MetaInformations for this Object
|
|
@@ -5789,14 +5789,14 @@ export interface DocumentLineComponent {
|
|
|
5789
5789
|
custom: EavDocumentlinecomponent;
|
|
5790
5790
|
|
|
5791
5791
|
/**
|
|
5792
|
-
*
|
|
5792
|
+
* Gelieferte Menge
|
|
5793
5793
|
*/
|
|
5794
|
-
|
|
5794
|
+
quantityCommitted: number;
|
|
5795
5795
|
|
|
5796
5796
|
/**
|
|
5797
|
-
*
|
|
5797
|
+
* Referenz auf den Artikel der Komponente
|
|
5798
5798
|
*/
|
|
5799
|
-
|
|
5799
|
+
articleId: number;
|
|
5800
5800
|
|
|
5801
5801
|
/**
|
|
5802
5802
|
* Beschreibung des Artikels
|
|
@@ -5933,14 +5933,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5933
5933
|
quantityFinished: number;
|
|
5934
5934
|
|
|
5935
5935
|
/**
|
|
5936
|
-
*
|
|
5936
|
+
* Produzierte Seriennummern
|
|
5937
5937
|
*/
|
|
5938
|
-
|
|
5938
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5939
5939
|
|
|
5940
5940
|
/**
|
|
5941
|
-
*
|
|
5941
|
+
* Menge defekt
|
|
5942
5942
|
*/
|
|
5943
|
-
|
|
5943
|
+
quantityDefective: number;
|
|
5944
5944
|
|
|
5945
5945
|
/**
|
|
5946
5946
|
* Freifeld
|
|
@@ -6084,14 +6084,14 @@ export interface DocumentLinePosDetail {
|
|
|
6084
6084
|
balanceBeforeWithdrawal: number;
|
|
6085
6085
|
|
|
6086
6086
|
/**
|
|
6087
|
-
*
|
|
6087
|
+
* Typ der Position
|
|
6088
6088
|
*/
|
|
6089
|
-
|
|
6089
|
+
posLineType: PosLineType;
|
|
6090
6090
|
|
|
6091
6091
|
/**
|
|
6092
|
-
*
|
|
6092
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6093
6093
|
*/
|
|
6094
|
-
|
|
6094
|
+
externalPaymentId: string;
|
|
6095
6095
|
|
|
6096
6096
|
/**
|
|
6097
6097
|
* Unique identifier of the Object
|
|
@@ -6324,14 +6324,14 @@ export interface DocumentPosPayment {
|
|
|
6324
6324
|
balanceBeforeWithdrawal: number;
|
|
6325
6325
|
|
|
6326
6326
|
/**
|
|
6327
|
-
*
|
|
6327
|
+
* Typ der Position
|
|
6328
6328
|
*/
|
|
6329
|
-
|
|
6329
|
+
posLineType: PosLineType;
|
|
6330
6330
|
|
|
6331
6331
|
/**
|
|
6332
|
-
*
|
|
6332
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6333
6333
|
*/
|
|
6334
|
-
|
|
6334
|
+
externalPaymentId: string;
|
|
6335
6335
|
|
|
6336
6336
|
/**
|
|
6337
6337
|
* Unique identifier of the Object
|
|
@@ -6706,14 +6706,14 @@ export interface DocumentType {
|
|
|
6706
6706
|
labels: Array<DocumentTypeLabel>;
|
|
6707
6707
|
|
|
6708
6708
|
/**
|
|
6709
|
-
*
|
|
6709
|
+
* Zählerkreis
|
|
6710
6710
|
*/
|
|
6711
|
-
|
|
6711
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6712
6712
|
|
|
6713
6713
|
/**
|
|
6714
|
-
*
|
|
6714
|
+
* nächste Belegnummer
|
|
6715
6715
|
*/
|
|
6716
|
-
|
|
6716
|
+
nextNumber: string;
|
|
6717
6717
|
|
|
6718
6718
|
/**
|
|
6719
6719
|
* Sortierung
|
|
@@ -6914,14 +6914,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6914
6914
|
bookDate: ScriptingDate;
|
|
6915
6915
|
|
|
6916
6916
|
/**
|
|
6917
|
-
*
|
|
6917
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6918
6918
|
*/
|
|
6919
|
-
|
|
6919
|
+
targetExpiryDate: ScriptingDate;
|
|
6920
6920
|
|
|
6921
6921
|
/**
|
|
6922
|
-
*
|
|
6922
|
+
* Die gültige Seriennummer
|
|
6923
6923
|
*/
|
|
6924
|
-
|
|
6924
|
+
targetSerialNumber: string;
|
|
6925
6925
|
|
|
6926
6926
|
/**
|
|
6927
6927
|
* Quell-Lagerplatz
|
|
@@ -7195,14 +7195,14 @@ export const enum FabricationOfComponents {
|
|
|
7195
7195
|
export interface FabricationProduceRequest {
|
|
7196
7196
|
|
|
7197
7197
|
/**
|
|
7198
|
-
*
|
|
7198
|
+
* Zu produzierende Menge
|
|
7199
7199
|
*/
|
|
7200
|
-
|
|
7200
|
+
quantity: number;
|
|
7201
7201
|
|
|
7202
7202
|
/**
|
|
7203
|
-
*
|
|
7203
|
+
* Material automatisch bestätigen
|
|
7204
7204
|
*/
|
|
7205
|
-
|
|
7205
|
+
autoCommitComponents: boolean;
|
|
7206
7206
|
|
|
7207
7207
|
/**
|
|
7208
7208
|
* Für die Produktion zu verwendendes Material
|
|
@@ -7279,14 +7279,14 @@ export interface FabricationRevertRequest {
|
|
|
7279
7279
|
export interface FabricationSerialNumber {
|
|
7280
7280
|
|
|
7281
7281
|
/**
|
|
7282
|
-
*
|
|
7282
|
+
* MHD / Verfallsdatum
|
|
7283
7283
|
*/
|
|
7284
|
-
|
|
7284
|
+
expiryDate: ScriptingDate;
|
|
7285
7285
|
|
|
7286
7286
|
/**
|
|
7287
|
-
*
|
|
7287
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7288
7288
|
*/
|
|
7289
|
-
|
|
7289
|
+
serialNumberId: number;
|
|
7290
7290
|
|
|
7291
7291
|
/**
|
|
7292
7292
|
* Bemerkung
|
|
@@ -7483,14 +7483,14 @@ export interface PaymentMethod {
|
|
|
7483
7483
|
dunnable: boolean;
|
|
7484
7484
|
|
|
7485
7485
|
/**
|
|
7486
|
-
*
|
|
7486
|
+
* translations
|
|
7487
7487
|
*/
|
|
7488
|
-
|
|
7488
|
+
translations: Array<DocumentTypeTerm>;
|
|
7489
7489
|
|
|
7490
7490
|
/**
|
|
7491
|
-
*
|
|
7491
|
+
* Debitoren-OP abschließen?
|
|
7492
7492
|
*/
|
|
7493
|
-
|
|
7493
|
+
closeCustomerAccountType: boolean;
|
|
7494
7494
|
|
|
7495
7495
|
/**
|
|
7496
7496
|
* +Tage für Folgelastschrift
|
|
@@ -7674,14 +7674,14 @@ export interface PickTrolley {
|
|
|
7674
7674
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7675
7675
|
|
|
7676
7676
|
/**
|
|
7677
|
-
*
|
|
7677
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7678
7678
|
*/
|
|
7679
|
-
|
|
7679
|
+
storageBinRef: StorageBinRef;
|
|
7680
7680
|
|
|
7681
7681
|
/**
|
|
7682
|
-
*
|
|
7682
|
+
* Bearbeiter der Pickliste
|
|
7683
7683
|
*/
|
|
7684
|
-
|
|
7684
|
+
processedByUserRef: ApiObjectReference;
|
|
7685
7685
|
|
|
7686
7686
|
/**
|
|
7687
7687
|
* Beschreibung des Wagens
|
|
@@ -7836,14 +7836,14 @@ export const enum PickingType {
|
|
|
7836
7836
|
export interface Picklist {
|
|
7837
7837
|
|
|
7838
7838
|
/**
|
|
7839
|
-
*
|
|
7839
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7840
7840
|
*/
|
|
7841
|
-
|
|
7841
|
+
usedTemplate: PicklistTemplate;
|
|
7842
7842
|
|
|
7843
7843
|
/**
|
|
7844
|
-
*
|
|
7844
|
+
* Ziellager für Nachschub
|
|
7845
7845
|
*/
|
|
7846
|
-
|
|
7846
|
+
targetStorageRef: ApiObjectReference;
|
|
7847
7847
|
|
|
7848
7848
|
/**
|
|
7849
7849
|
* Nummer der Pickliste
|
|
@@ -7894,14 +7894,14 @@ export interface Picklist {
|
|
|
7894
7894
|
export interface PicklistLine {
|
|
7895
7895
|
|
|
7896
7896
|
/**
|
|
7897
|
-
*
|
|
7897
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7898
7898
|
*/
|
|
7899
|
-
|
|
7899
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7900
7900
|
|
|
7901
7901
|
/**
|
|
7902
|
-
*
|
|
7902
|
+
* Gesammelte Menge der Position
|
|
7903
7903
|
*/
|
|
7904
|
-
|
|
7904
|
+
quantityCollected: number;
|
|
7905
7905
|
|
|
7906
7906
|
/**
|
|
7907
7907
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7939,14 +7939,14 @@ export interface PicklistLine {
|
|
|
7939
7939
|
version: number;
|
|
7940
7940
|
|
|
7941
7941
|
/**
|
|
7942
|
-
*
|
|
7942
|
+
* ID der Quell-Dokumentposition
|
|
7943
7943
|
*/
|
|
7944
|
-
|
|
7944
|
+
sourceDocumentLineId: number;
|
|
7945
7945
|
|
|
7946
7946
|
/**
|
|
7947
|
-
*
|
|
7947
|
+
* Lageranzeigename
|
|
7948
7948
|
*/
|
|
7949
|
-
|
|
7949
|
+
storageDisplayName: string;
|
|
7950
7950
|
|
|
7951
7951
|
/**
|
|
7952
7952
|
* Artikelnummer
|
|
@@ -7954,14 +7954,14 @@ export interface PicklistLine {
|
|
|
7954
7954
|
articleNumber: string;
|
|
7955
7955
|
|
|
7956
7956
|
/**
|
|
7957
|
-
*
|
|
7957
|
+
* Art der Position
|
|
7958
7958
|
*/
|
|
7959
|
-
|
|
7959
|
+
lineType: PicklistLineType;
|
|
7960
7960
|
|
|
7961
7961
|
/**
|
|
7962
|
-
*
|
|
7962
|
+
* Lagernummer
|
|
7963
7963
|
*/
|
|
7964
|
-
|
|
7964
|
+
storageNumber: string;
|
|
7965
7965
|
|
|
7966
7966
|
/**
|
|
7967
7967
|
* ID der Ziel-Dokumentposition
|
|
@@ -8100,14 +8100,14 @@ export interface PicklistLineComponent {
|
|
|
8100
8100
|
targetDocumentLineComponentId: number;
|
|
8101
8101
|
|
|
8102
8102
|
/**
|
|
8103
|
-
*
|
|
8103
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8104
8104
|
*/
|
|
8105
|
-
|
|
8105
|
+
quantityPerAssemblyGroup: number;
|
|
8106
8106
|
|
|
8107
8107
|
/**
|
|
8108
|
-
*
|
|
8108
|
+
* abweichende Artikelbezeichnung
|
|
8109
8109
|
*/
|
|
8110
|
-
|
|
8110
|
+
articleAlternativeName: string;
|
|
8111
8111
|
|
|
8112
8112
|
/**
|
|
8113
8113
|
* Verpackte Menge der Position
|
|
@@ -8275,26 +8275,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8275
8275
|
*/
|
|
8276
8276
|
maxArticleCountPerOrder: number;
|
|
8277
8277
|
|
|
8278
|
-
/**
|
|
8279
|
-
* Alternative Selektion in VQL
|
|
8280
|
-
*/
|
|
8281
|
-
alternativeSelectionInVql: string;
|
|
8282
|
-
|
|
8283
8278
|
/**
|
|
8284
8279
|
* Maximaler Auftragswert
|
|
8285
8280
|
*/
|
|
8286
8281
|
maxOrderValue: number;
|
|
8287
8282
|
|
|
8288
8283
|
/**
|
|
8289
|
-
* Selektion
|
|
8284
|
+
* Alternative Selektion in VQL
|
|
8290
8285
|
*/
|
|
8291
|
-
|
|
8286
|
+
alternativeSelectionInVql: string;
|
|
8292
8287
|
|
|
8293
8288
|
/**
|
|
8294
8289
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8295
8290
|
*/
|
|
8296
8291
|
maxOrderCount: number;
|
|
8297
8292
|
|
|
8293
|
+
/**
|
|
8294
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8295
|
+
*/
|
|
8296
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8297
|
+
|
|
8298
8298
|
/**
|
|
8299
8299
|
* Nur vollständig lieferbare Positionen
|
|
8300
8300
|
*/
|
|
@@ -8359,19 +8359,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8359
8359
|
printPicklist: boolean;
|
|
8360
8360
|
|
|
8361
8361
|
/**
|
|
8362
|
-
*
|
|
8362
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8363
8363
|
*/
|
|
8364
|
-
|
|
8364
|
+
maxPicklistLineCount: number;
|
|
8365
8365
|
|
|
8366
8366
|
/**
|
|
8367
|
-
*
|
|
8367
|
+
* Die zu verwendende Pickwagengruppe
|
|
8368
8368
|
*/
|
|
8369
|
-
|
|
8369
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8370
8370
|
|
|
8371
8371
|
/**
|
|
8372
|
-
*
|
|
8372
|
+
* Lagerplätze vorgeben
|
|
8373
8373
|
*/
|
|
8374
|
-
|
|
8374
|
+
specifyStorageBins: boolean;
|
|
8375
8375
|
|
|
8376
8376
|
/**
|
|
8377
8377
|
* Der zu verwendende Pickwagen
|
|
@@ -8379,19 +8379,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8379
8379
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
|
-
*
|
|
8387
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8388
8388
|
*/
|
|
8389
|
-
|
|
8389
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
|
-
*
|
|
8392
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8393
8393
|
*/
|
|
8394
|
-
|
|
8394
|
+
sortByRoutePosition: boolean;
|
|
8395
8395
|
|
|
8396
8396
|
/**
|
|
8397
8397
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8437,14 +8437,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8437
8437
|
alwaysShowDeliveryMethod: boolean;
|
|
8438
8438
|
|
|
8439
8439
|
/**
|
|
8440
|
-
*
|
|
8440
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8441
8441
|
*/
|
|
8442
|
-
|
|
8442
|
+
autoPrintDeliveryDocument: boolean;
|
|
8443
8443
|
|
|
8444
8444
|
/**
|
|
8445
|
-
*
|
|
8445
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8446
8446
|
*/
|
|
8447
|
-
|
|
8447
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8448
8448
|
|
|
8449
8449
|
/**
|
|
8450
8450
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8457,14 +8457,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8457
8457
|
useDigitalPicklist: boolean;
|
|
8458
8458
|
|
|
8459
8459
|
/**
|
|
8460
|
-
*
|
|
8460
|
+
* Sammelbestätigung erlauben
|
|
8461
8461
|
*/
|
|
8462
|
-
|
|
8462
|
+
allowFullConfirmation: boolean;
|
|
8463
8463
|
|
|
8464
8464
|
/**
|
|
8465
|
-
*
|
|
8465
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8466
8466
|
*/
|
|
8467
|
-
|
|
8467
|
+
allowPickingOfServiceArticles: boolean;
|
|
8468
8468
|
|
|
8469
8469
|
/**
|
|
8470
8470
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8565,14 +8565,14 @@ export interface PriceSelectionCriteria {
|
|
|
8565
8565
|
quantity: number;
|
|
8566
8566
|
|
|
8567
8567
|
/**
|
|
8568
|
-
* Liste von
|
|
8568
|
+
* Liste von Account-IDs
|
|
8569
8569
|
*/
|
|
8570
|
-
|
|
8570
|
+
accountIds: Array<number>;
|
|
8571
8571
|
|
|
8572
8572
|
/**
|
|
8573
|
-
* Liste von
|
|
8573
|
+
* Liste von Artikel-IDs
|
|
8574
8574
|
*/
|
|
8575
|
-
|
|
8575
|
+
articleIds: Array<number>;
|
|
8576
8576
|
|
|
8577
8577
|
/**
|
|
8578
8578
|
* ein qualifier
|
|
@@ -8739,14 +8739,14 @@ export interface ProductArticleRef {
|
|
|
8739
8739
|
export interface ProductDiscount {
|
|
8740
8740
|
|
|
8741
8741
|
/**
|
|
8742
|
-
*
|
|
8742
|
+
* Kundengruppe
|
|
8743
8743
|
*/
|
|
8744
|
-
|
|
8744
|
+
customerGroupRef: ApiObjectReference;
|
|
8745
8745
|
|
|
8746
8746
|
/**
|
|
8747
|
-
*
|
|
8747
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8748
8748
|
*/
|
|
8749
|
-
|
|
8749
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8750
8750
|
|
|
8751
8751
|
/**
|
|
8752
8752
|
* Lieferantengruppe
|
|
@@ -8948,14 +8948,14 @@ export interface ProductMainGroup {
|
|
|
8948
8948
|
export interface ProductPrice {
|
|
8949
8949
|
|
|
8950
8950
|
/**
|
|
8951
|
-
*
|
|
8951
|
+
* Kundengruppe
|
|
8952
8952
|
*/
|
|
8953
|
-
|
|
8953
|
+
customerGroupRef: ApiObjectReference;
|
|
8954
8954
|
|
|
8955
8955
|
/**
|
|
8956
|
-
*
|
|
8956
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8957
8957
|
*/
|
|
8958
|
-
|
|
8958
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8959
8959
|
|
|
8960
8960
|
/**
|
|
8961
8961
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -9232,14 +9232,14 @@ export interface RequestDocument {
|
|
|
9232
9232
|
contractDetail: DocumentContractDetail;
|
|
9233
9233
|
|
|
9234
9234
|
/**
|
|
9235
|
-
*
|
|
9235
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9236
9236
|
*/
|
|
9237
|
-
|
|
9237
|
+
supplierAccountId: number;
|
|
9238
9238
|
|
|
9239
9239
|
/**
|
|
9240
|
-
*
|
|
9240
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9241
9241
|
*/
|
|
9242
|
-
|
|
9242
|
+
paymentTermId: number;
|
|
9243
9243
|
|
|
9244
9244
|
/**
|
|
9245
9245
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -9282,14 +9282,14 @@ export interface RequestDocument {
|
|
|
9282
9282
|
accountId: number;
|
|
9283
9283
|
|
|
9284
9284
|
/**
|
|
9285
|
-
*
|
|
9285
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
9286
9286
|
*/
|
|
9287
|
-
|
|
9287
|
+
processedByPicklistProcessing: boolean;
|
|
9288
9288
|
|
|
9289
9289
|
/**
|
|
9290
|
-
*
|
|
9290
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
9291
9291
|
*/
|
|
9292
|
-
|
|
9292
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
9293
9293
|
|
|
9294
9294
|
/**
|
|
9295
9295
|
* Die Rabatte des Beleges
|
|
@@ -9454,6 +9454,11 @@ export interface RequestDocumentLine {
|
|
|
9454
9454
|
*/
|
|
9455
9455
|
name: string;
|
|
9456
9456
|
|
|
9457
|
+
/**
|
|
9458
|
+
* ID der Quell-Belegposition
|
|
9459
|
+
*/
|
|
9460
|
+
sourceLineId: number;
|
|
9461
|
+
|
|
9457
9462
|
/**
|
|
9458
9463
|
* Für interne Zwecke: Externe Artikelnummer
|
|
9459
9464
|
*/
|
|
@@ -9464,11 +9469,6 @@ export interface RequestDocumentLine {
|
|
|
9464
9469
|
*/
|
|
9465
9470
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9466
9471
|
|
|
9467
|
-
/**
|
|
9468
|
-
* ID der Quell-Belegposition
|
|
9469
|
-
*/
|
|
9470
|
-
sourceLineId: number;
|
|
9471
|
-
|
|
9472
9472
|
/**
|
|
9473
9473
|
* (optional) Preis des Artikels dieser Position
|
|
9474
9474
|
*/
|
|
@@ -9977,14 +9977,14 @@ export interface SequencerConfiguration {
|
|
|
9977
9977
|
key: string;
|
|
9978
9978
|
|
|
9979
9979
|
/**
|
|
9980
|
-
*
|
|
9980
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9981
9981
|
*/
|
|
9982
|
-
|
|
9982
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9983
9983
|
|
|
9984
9984
|
/**
|
|
9985
|
-
*
|
|
9985
|
+
* Contains details about the sequencer configuration
|
|
9986
9986
|
*/
|
|
9987
|
-
|
|
9987
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9988
9988
|
|
|
9989
9989
|
/**
|
|
9990
9990
|
* MetaInformations for this Object
|
|
@@ -10323,14 +10323,14 @@ export interface ShelfFile {
|
|
|
10323
10323
|
version: number;
|
|
10324
10324
|
|
|
10325
10325
|
/**
|
|
10326
|
-
*
|
|
10326
|
+
* meta data
|
|
10327
10327
|
*/
|
|
10328
|
-
|
|
10328
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10329
10329
|
|
|
10330
10330
|
/**
|
|
10331
|
-
*
|
|
10331
|
+
* current reference of this file in our storage
|
|
10332
10332
|
*/
|
|
10333
|
-
|
|
10333
|
+
storageHandle: string;
|
|
10334
10334
|
|
|
10335
10335
|
/**
|
|
10336
10336
|
* MetaInformations for this Object
|
|
@@ -10903,14 +10903,14 @@ export interface TagDto {
|
|
|
10903
10903
|
editColor: string;
|
|
10904
10904
|
|
|
10905
10905
|
/**
|
|
10906
|
-
* Farbe
|
|
10906
|
+
* Farbe für die Anzeige des Tags
|
|
10907
10907
|
*/
|
|
10908
|
-
|
|
10908
|
+
color: string;
|
|
10909
10909
|
|
|
10910
10910
|
/**
|
|
10911
|
-
* Farbe
|
|
10911
|
+
* Farbe in Such-GUI
|
|
10912
10912
|
*/
|
|
10913
|
-
|
|
10913
|
+
searchColor: string;
|
|
10914
10914
|
|
|
10915
10915
|
/**
|
|
10916
10916
|
* Beschriftung des Tags
|
|
@@ -11242,14 +11242,14 @@ export interface User {
|
|
|
11242
11242
|
version: number;
|
|
11243
11243
|
|
|
11244
11244
|
/**
|
|
11245
|
-
*
|
|
11245
|
+
* is the email verified
|
|
11246
11246
|
*/
|
|
11247
|
-
|
|
11247
|
+
emailVerified: boolean;
|
|
11248
11248
|
|
|
11249
11249
|
/**
|
|
11250
|
-
*
|
|
11250
|
+
* first-name
|
|
11251
11251
|
*/
|
|
11252
|
-
|
|
11252
|
+
firstName: string;
|
|
11253
11253
|
|
|
11254
11254
|
/**
|
|
11255
11255
|
* email-address
|
|
@@ -11323,14 +11323,14 @@ export interface VariantAttributeListing {
|
|
|
11323
11323
|
salesChannelRef: ApiObjectReference;
|
|
11324
11324
|
|
|
11325
11325
|
/**
|
|
11326
|
-
*
|
|
11326
|
+
* Variantenattribut
|
|
11327
11327
|
*/
|
|
11328
|
-
|
|
11328
|
+
variantAttributeRef: ApiObjectReference;
|
|
11329
11329
|
|
|
11330
11330
|
/**
|
|
11331
|
-
*
|
|
11331
|
+
* Freifelder
|
|
11332
11332
|
*/
|
|
11333
|
-
|
|
11333
|
+
custom: EavVariantattributelisting;
|
|
11334
11334
|
|
|
11335
11335
|
/**
|
|
11336
11336
|
* Unique identifier of the Object
|