@vario-software/types 2026.16.1 → 2026.16.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 +2 -2
- package/scripting/services.d.ts +23 -23
- package/scripting/types.d.ts +238 -238
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -83497,7 +83497,7 @@ export interface components {
|
|
|
83497
83497
|
additionalParticipantsOfCustomer?: components["schemas"]["erp-crm-CrmTaskParticipant"][];
|
|
83498
83498
|
assignedByUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83499
83499
|
assignedGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83500
|
-
|
|
83500
|
+
assignedParticipantRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83501
83501
|
assignedUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83502
83502
|
/** @description Abrechnungen */
|
|
83503
83503
|
billingDocumentRefs?: components["schemas"]["erp-document-DocumentRef"][];
|
|
@@ -83575,7 +83575,7 @@ export interface components {
|
|
|
83575
83575
|
/** @description Aufgabentitel */
|
|
83576
83576
|
label: string;
|
|
83577
83577
|
mainResponsibleGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83578
|
-
|
|
83578
|
+
mainResponsibleParticipantRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83579
83579
|
mainResponsibleUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83580
83580
|
/** @description Notizen */
|
|
83581
83581
|
notes?: string;
|
package/scripting/services.d.ts
CHANGED
|
@@ -375,17 +375,17 @@ export interface ArticleScriptingService {
|
|
|
375
375
|
*
|
|
376
376
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
377
377
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
378
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
379
378
|
*/
|
|
380
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
379
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
381
380
|
|
|
382
381
|
/**
|
|
383
382
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
384
383
|
*
|
|
385
384
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
386
385
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
386
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
387
387
|
*/
|
|
388
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
388
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
389
389
|
|
|
390
390
|
/**
|
|
391
391
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -506,21 +506,21 @@ export interface ArticleScriptingService {
|
|
|
506
506
|
readById(id: number, languageCode: string): Article;
|
|
507
507
|
|
|
508
508
|
/**
|
|
509
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
509
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
510
510
|
*
|
|
511
511
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
512
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
512
513
|
* @return {Article} Der gelesene Artikel
|
|
513
514
|
*/
|
|
514
|
-
readByNumber(articleNumber: string): Article;
|
|
515
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
515
516
|
|
|
516
517
|
/**
|
|
517
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
518
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
518
519
|
*
|
|
519
520
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
520
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
521
521
|
* @return {Article} Der gelesene Artikel
|
|
522
522
|
*/
|
|
523
|
-
readByNumber(articleNumber: string
|
|
523
|
+
readByNumber(articleNumber: string): Article;
|
|
524
524
|
|
|
525
525
|
/**
|
|
526
526
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1362,20 +1362,20 @@ export interface DocumentScriptingService {
|
|
|
1362
1362
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1363
1363
|
*
|
|
1364
1364
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1365
|
-
* @param {string}
|
|
1366
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1365
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1367
1366
|
* @return {Document} Der kopierte Beleg
|
|
1368
1367
|
*/
|
|
1369
|
-
copy(documentId: number,
|
|
1368
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1370
1369
|
|
|
1371
1370
|
/**
|
|
1372
1371
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1373
1372
|
*
|
|
1374
1373
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1375
|
-
* @param {string}
|
|
1374
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1375
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1376
1376
|
* @return {Document} Der kopierte Beleg
|
|
1377
1377
|
*/
|
|
1378
|
-
copy(documentId: number,
|
|
1378
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1379
1379
|
|
|
1380
1380
|
/**
|
|
1381
1381
|
* Erstellt einen neuen Beleg
|
|
@@ -1389,18 +1389,18 @@ export interface DocumentScriptingService {
|
|
|
1389
1389
|
* Löst einen Beleg auf
|
|
1390
1390
|
*
|
|
1391
1391
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1392
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1393
1392
|
* @return {Document} Der aufgelöste Beleg
|
|
1394
1393
|
*/
|
|
1395
|
-
dissolve(documentId: number
|
|
1394
|
+
dissolve(documentId: number): Document;
|
|
1396
1395
|
|
|
1397
1396
|
/**
|
|
1398
1397
|
* Löst einen Beleg auf
|
|
1399
1398
|
*
|
|
1400
1399
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1400
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1401
1401
|
* @return {Document} Der aufgelöste Beleg
|
|
1402
1402
|
*/
|
|
1403
|
-
dissolve(documentId: number): Document;
|
|
1403
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1404
1404
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -1520,16 +1520,16 @@ export interface DocumentScriptingService {
|
|
|
1520
1520
|
* Versendet einen Beleg per Mail
|
|
1521
1521
|
*
|
|
1522
1522
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1523
|
-
* @param {string} reportGroupIdentifier -
|
|
1524
1523
|
*/
|
|
1525
|
-
sendViaMail(documentId: number
|
|
1524
|
+
sendViaMail(documentId: number): void;
|
|
1526
1525
|
|
|
1527
1526
|
/**
|
|
1528
1527
|
* Versendet einen Beleg per Mail
|
|
1529
1528
|
*
|
|
1530
1529
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1530
|
+
* @param {string} reportGroupIdentifier -
|
|
1531
1531
|
*/
|
|
1532
|
-
sendViaMail(documentId: number): void;
|
|
1532
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2397,14 +2397,14 @@ export interface ScriptingServiceList {
|
|
|
2397
2397
|
crmTaskService: CrmTaskScriptingService;
|
|
2398
2398
|
|
|
2399
2399
|
/**
|
|
2400
|
-
* Service zur Verarbeitung von
|
|
2400
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2401
2401
|
*/
|
|
2402
|
-
|
|
2402
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2403
2403
|
|
|
2404
2404
|
/**
|
|
2405
|
-
* Service zur Verarbeitung von
|
|
2405
|
+
* Service zur Verarbeitung von Accounts
|
|
2406
2406
|
*/
|
|
2407
|
-
|
|
2407
|
+
accountService: AccountScriptingService;
|
|
2408
2408
|
|
|
2409
2409
|
/**
|
|
2410
2410
|
* Verwaltung von Versandarten
|
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
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* Is default bank?
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
defaultBank: boolean;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* origin type
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -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
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1241,14 +1241,14 @@ export interface Article {
|
|
|
1241
1241
|
alternativeName: string;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
*
|
|
1244
|
+
* Kontingentartikel
|
|
1245
1245
|
*/
|
|
1246
|
-
|
|
1246
|
+
contingentArticleRef: ApiObjectReference;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
|
-
*
|
|
1249
|
+
* rabattierbarer Artikel?
|
|
1250
1250
|
*/
|
|
1251
|
-
|
|
1251
|
+
discountable: boolean;
|
|
1252
1252
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
@@ -1316,14 +1316,14 @@ export interface Article {
|
|
|
1316
1316
|
listed: boolean;
|
|
1317
1317
|
|
|
1318
1318
|
/**
|
|
1319
|
-
*
|
|
1319
|
+
* Nur manuelle Produktion
|
|
1320
1320
|
*/
|
|
1321
|
-
|
|
1321
|
+
onlyManualFabrication: boolean;
|
|
1322
1322
|
|
|
1323
1323
|
/**
|
|
1324
|
-
*
|
|
1324
|
+
* provisionsberechtiger Artikel?
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
commissionable: boolean;
|
|
1327
1327
|
|
|
1328
1328
|
/**
|
|
1329
1329
|
* Preisbasis
|
|
@@ -1514,14 +1514,14 @@ export interface ArticleListing {
|
|
|
1514
1514
|
alternativeName: WithDefaults<String>;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1517
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
customLowestPriceNet: number;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1522
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
proposedLowestPriceNet: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* der aktuelle listing stand
|
|
@@ -1750,26 +1750,26 @@ export interface ArticleSupplier {
|
|
|
1750
1750
|
*/
|
|
1751
1751
|
info: MetaInfo;
|
|
1752
1752
|
|
|
1753
|
-
/**
|
|
1754
|
-
* Referenced Article name
|
|
1755
|
-
*/
|
|
1756
|
-
articleName: string;
|
|
1757
|
-
|
|
1758
1753
|
/**
|
|
1759
1754
|
* Verpackungseinheit
|
|
1760
1755
|
*/
|
|
1761
1756
|
packagingUnit: number;
|
|
1762
1757
|
|
|
1763
1758
|
/**
|
|
1764
|
-
*
|
|
1759
|
+
* Referenced Article name
|
|
1765
1760
|
*/
|
|
1766
|
-
|
|
1761
|
+
articleName: string;
|
|
1767
1762
|
|
|
1768
1763
|
/**
|
|
1769
1764
|
* Referenced Article
|
|
1770
1765
|
*/
|
|
1771
1766
|
articleId: number;
|
|
1772
1767
|
|
|
1768
|
+
/**
|
|
1769
|
+
* Lieferanten-Preise
|
|
1770
|
+
*/
|
|
1771
|
+
productPrices: Array<ProductPrice>;
|
|
1772
|
+
|
|
1773
1773
|
/**
|
|
1774
1774
|
* Aktiv?
|
|
1775
1775
|
*/
|
|
@@ -1988,14 +1988,14 @@ export interface CountryReference {
|
|
|
1988
1988
|
export interface CreateNewDocumentRequest {
|
|
1989
1989
|
|
|
1990
1990
|
/**
|
|
1991
|
-
* Belegart
|
|
1991
|
+
* Standard-Belegart der Kategorie verwenden
|
|
1992
1992
|
*/
|
|
1993
|
-
|
|
1993
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
1994
1994
|
|
|
1995
1995
|
/**
|
|
1996
|
-
*
|
|
1996
|
+
* Belegart
|
|
1997
1997
|
*/
|
|
1998
|
-
|
|
1998
|
+
documentTypeLabel: string;
|
|
1999
1999
|
|
|
2000
2000
|
/**
|
|
2001
2001
|
* Details zum Beleg
|
|
@@ -2061,14 +2061,14 @@ export interface CrmActivity {
|
|
|
2061
2061
|
info: MetaInfo;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
|
-
*
|
|
2064
|
+
* geplante Dauer
|
|
2065
2065
|
*/
|
|
2066
|
-
|
|
2066
|
+
plannedDurationInSeconds: number;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
|
-
*
|
|
2069
|
+
* Aktivität intern abgerechnet?
|
|
2070
2070
|
*/
|
|
2071
|
-
|
|
2071
|
+
internalBilled: boolean;
|
|
2072
2072
|
|
|
2073
2073
|
/**
|
|
2074
2074
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2220,14 +2220,14 @@ export interface CrmActivityType {
|
|
|
2220
2220
|
export interface CrmChecklistItem {
|
|
2221
2221
|
|
|
2222
2222
|
/**
|
|
2223
|
-
*
|
|
2223
|
+
* Text des Checklisten-Elements
|
|
2224
2224
|
*/
|
|
2225
|
-
|
|
2225
|
+
memo: string;
|
|
2226
2226
|
|
|
2227
2227
|
/**
|
|
2228
|
-
*
|
|
2228
|
+
* Ist das Element "angehakt"?
|
|
2229
2229
|
*/
|
|
2230
|
-
|
|
2230
|
+
checked: boolean;
|
|
2231
2231
|
|
|
2232
2232
|
/**
|
|
2233
2233
|
* Unique identifier of the Object
|
|
@@ -2338,14 +2338,14 @@ export interface CrmDeal {
|
|
|
2338
2338
|
info: MetaInfo;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
|
-
*
|
|
2341
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2342
2342
|
*/
|
|
2343
|
-
|
|
2343
|
+
assignedUserRef: ApiObjectReference;
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
|
-
*
|
|
2346
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2347
2347
|
*/
|
|
2348
|
-
|
|
2348
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2349
2349
|
|
|
2350
2350
|
/**
|
|
2351
2351
|
* Chance (in Prozent)
|
|
@@ -2619,14 +2619,14 @@ export interface CrmProject {
|
|
|
2619
2619
|
priorityRef: ApiObjectReference;
|
|
2620
2620
|
|
|
2621
2621
|
/**
|
|
2622
|
-
*
|
|
2622
|
+
* Phase
|
|
2623
2623
|
*/
|
|
2624
|
-
|
|
2624
|
+
phaseRef: ApiObjectReference;
|
|
2625
2625
|
|
|
2626
2626
|
/**
|
|
2627
|
-
*
|
|
2627
|
+
* Projektleiter vom Auftragnehmer
|
|
2628
2628
|
*/
|
|
2629
|
-
|
|
2629
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
2632
|
* Aufgaben-Nummer
|
|
@@ -2929,15 +2929,20 @@ export interface CrmSubType {
|
|
|
2929
2929
|
|
|
2930
2930
|
export interface CrmTask {
|
|
2931
2931
|
|
|
2932
|
+
/**
|
|
2933
|
+
* Liste von Erinnerungen
|
|
2934
|
+
*/
|
|
2935
|
+
reminders: Array<CrmReminder>;
|
|
2936
|
+
|
|
2932
2937
|
/**
|
|
2933
2938
|
* Angebot
|
|
2934
2939
|
*/
|
|
2935
2940
|
customerOfferRef: DocumentRef;
|
|
2936
2941
|
|
|
2937
2942
|
/**
|
|
2938
|
-
*
|
|
2943
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
2939
2944
|
*/
|
|
2940
|
-
|
|
2945
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
2941
2946
|
|
|
2942
2947
|
/**
|
|
2943
2948
|
* Notizen
|
|
@@ -2949,11 +2954,6 @@ export interface CrmTask {
|
|
|
2949
2954
|
*/
|
|
2950
2955
|
references: Array<CrmReference>;
|
|
2951
2956
|
|
|
2952
|
-
/**
|
|
2953
|
-
* Zu Erledigen von Teilnehmer
|
|
2954
|
-
*/
|
|
2955
|
-
assignedParticipant: ApiObjectReference;
|
|
2956
|
-
|
|
2957
2957
|
/**
|
|
2958
2958
|
* Beobachter
|
|
2959
2959
|
*/
|
|
@@ -2979,11 +2979,6 @@ export interface CrmTask {
|
|
|
2979
2979
|
*/
|
|
2980
2980
|
mainResponsibleUserRef: ApiObjectReference;
|
|
2981
2981
|
|
|
2982
|
-
/**
|
|
2983
|
-
* Verantwortlicher Teilnehmer
|
|
2984
|
-
*/
|
|
2985
|
-
mainResponsibleParticipant: ApiObjectReference;
|
|
2986
|
-
|
|
2987
2982
|
/**
|
|
2988
2983
|
* Auftrag
|
|
2989
2984
|
*/
|
|
@@ -3069,6 +3064,11 @@ export interface CrmTask {
|
|
|
3069
3064
|
*/
|
|
3070
3065
|
blockedByTaskRefs: Array<ApiObjectReference>;
|
|
3071
3066
|
|
|
3067
|
+
/**
|
|
3068
|
+
* Zu Erledigen von Teilnehmer (Ansprechpartner)
|
|
3069
|
+
*/
|
|
3070
|
+
assignedParticipantRef: ApiObjectReference;
|
|
3071
|
+
|
|
3072
3072
|
/**
|
|
3073
3073
|
* Abgerechnete Zeiten in Sekunden (extern)
|
|
3074
3074
|
*/
|
|
@@ -3324,14 +3324,14 @@ export interface Customer {
|
|
|
3324
3324
|
maximalLoan: number;
|
|
3325
3325
|
|
|
3326
3326
|
/**
|
|
3327
|
-
*
|
|
3327
|
+
* Maximal mögliche Lieferungen
|
|
3328
3328
|
*/
|
|
3329
|
-
|
|
3329
|
+
maxDeliveries: number;
|
|
3330
3330
|
|
|
3331
3331
|
/**
|
|
3332
|
-
*
|
|
3332
|
+
* collective billable
|
|
3333
3333
|
*/
|
|
3334
|
-
|
|
3334
|
+
collectiveBillable: boolean;
|
|
3335
3335
|
|
|
3336
3336
|
/**
|
|
3337
3337
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3915,26 +3915,26 @@ true wenn die Quittung bezahlt ist
|
|
|
3915
3915
|
*/
|
|
3916
3916
|
accountNumber: string;
|
|
3917
3917
|
|
|
3918
|
-
/**
|
|
3919
|
-
* Referenz auf Zahlungsbedingung
|
|
3920
|
-
*/
|
|
3921
|
-
paymentTermRef: PaymentTermRef;
|
|
3922
|
-
|
|
3923
3918
|
/**
|
|
3924
3919
|
* Wird vom Workflow verarbeitet?
|
|
3925
3920
|
*/
|
|
3926
3921
|
processedByWorkflow: boolean;
|
|
3927
3922
|
|
|
3928
3923
|
/**
|
|
3929
|
-
*
|
|
3924
|
+
* Referenz auf Zahlungsbedingung
|
|
3930
3925
|
*/
|
|
3931
|
-
|
|
3926
|
+
paymentTermRef: PaymentTermRef;
|
|
3932
3927
|
|
|
3933
3928
|
/**
|
|
3934
3929
|
* Preisanpassungen - Beleg Basiswährung
|
|
3935
3930
|
*/
|
|
3936
3931
|
baseTotalDocumentPriceModifier: number;
|
|
3937
3932
|
|
|
3933
|
+
/**
|
|
3934
|
+
* Telefon an Versender übergeben
|
|
3935
|
+
*/
|
|
3936
|
+
forwardPhoneToShipper: boolean;
|
|
3937
|
+
|
|
3938
3938
|
/**
|
|
3939
3939
|
* Liste der Belegtexte
|
|
3940
3940
|
*/
|
|
@@ -3955,26 +3955,26 @@ true wenn die Quittung bezahlt ist
|
|
|
3955
3955
|
*/
|
|
3956
3956
|
defaultAddress: DocumentAddress;
|
|
3957
3957
|
|
|
3958
|
-
/**
|
|
3959
|
-
* Verarbeitungsoption für Stapel
|
|
3960
|
-
*/
|
|
3961
|
-
stackProcessingType: OrderStackProcessingType;
|
|
3962
|
-
|
|
3963
3958
|
/**
|
|
3964
3959
|
* Leistungsdatum
|
|
3965
3960
|
*/
|
|
3966
3961
|
performanceDate: ScriptingDate;
|
|
3967
3962
|
|
|
3968
3963
|
/**
|
|
3969
|
-
*
|
|
3964
|
+
* Verarbeitungsoption für Stapel
|
|
3970
3965
|
*/
|
|
3971
|
-
|
|
3966
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3972
3967
|
|
|
3973
3968
|
/**
|
|
3974
3969
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
3975
3970
|
*/
|
|
3976
3971
|
dropShippingInvoiceApproved: boolean;
|
|
3977
3972
|
|
|
3973
|
+
/**
|
|
3974
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
3975
|
+
*/
|
|
3976
|
+
en16931Profile: EN16931Profile;
|
|
3977
|
+
|
|
3978
3978
|
/**
|
|
3979
3979
|
* Ort der steuerlichen Leistungserbringung
|
|
3980
3980
|
*/
|
|
@@ -4140,20 +4140,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4140
4140
|
*/
|
|
4141
4141
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4142
4142
|
|
|
4143
|
-
/**
|
|
4144
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4145
|
-
*/
|
|
4146
|
-
taxIdentificationNumber: string;
|
|
4147
|
-
|
|
4148
4143
|
/**
|
|
4149
4144
|
* Statusinstanz des Belegs
|
|
4150
4145
|
*/
|
|
4151
4146
|
documentState: DocumentTypeState;
|
|
4152
4147
|
|
|
4153
4148
|
/**
|
|
4154
|
-
*
|
|
4149
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4155
4150
|
*/
|
|
4156
|
-
|
|
4151
|
+
taxIdentificationNumber: string;
|
|
4157
4152
|
|
|
4158
4153
|
/**
|
|
4159
4154
|
* Referenz auf Lieferbedingung
|
|
@@ -4167,6 +4162,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4167
4162
|
*/
|
|
4168
4163
|
posReceiptBalanced: boolean;
|
|
4169
4164
|
|
|
4165
|
+
/**
|
|
4166
|
+
* Rückgeld
|
|
4167
|
+
*/
|
|
4168
|
+
posReceiptChangeAmount: number;
|
|
4169
|
+
|
|
4170
4170
|
/**
|
|
4171
4171
|
* Gesamtbruttogewicht
|
|
4172
4172
|
*/
|
|
@@ -4198,14 +4198,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4198
4198
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
4201
|
-
*
|
|
4201
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4202
4202
|
*/
|
|
4203
|
-
|
|
4203
|
+
reportGroupRef: ApiObjectReference;
|
|
4204
4204
|
|
|
4205
4205
|
/**
|
|
4206
|
-
*
|
|
4206
|
+
* Bestellt durch Ansprechpartner
|
|
4207
4207
|
*/
|
|
4208
|
-
|
|
4208
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4209
4209
|
}
|
|
4210
4210
|
|
|
4211
4211
|
export interface DocumentAdditionalInfo {
|
|
@@ -4356,14 +4356,14 @@ export interface DocumentAddress {
|
|
|
4356
4356
|
postOfficeBox: string;
|
|
4357
4357
|
|
|
4358
4358
|
/**
|
|
4359
|
-
*
|
|
4359
|
+
* country code IsoAlpha3
|
|
4360
4360
|
*/
|
|
4361
|
-
|
|
4361
|
+
countryCode: string;
|
|
4362
4362
|
|
|
4363
4363
|
/**
|
|
4364
|
-
*
|
|
4364
|
+
* Street
|
|
4365
4365
|
*/
|
|
4366
|
-
|
|
4366
|
+
street: string;
|
|
4367
4367
|
|
|
4368
4368
|
/**
|
|
4369
4369
|
* Unique identifier of the Object
|
|
@@ -4381,14 +4381,14 @@ export interface DocumentAddress {
|
|
|
4381
4381
|
info: MetaInfo;
|
|
4382
4382
|
|
|
4383
4383
|
/**
|
|
4384
|
-
*
|
|
4384
|
+
* Lieferart
|
|
4385
4385
|
*/
|
|
4386
|
-
|
|
4386
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4387
4387
|
|
|
4388
4388
|
/**
|
|
4389
|
-
*
|
|
4389
|
+
* GLN
|
|
4390
4390
|
*/
|
|
4391
|
-
|
|
4391
|
+
globalLocationNumber: string;
|
|
4392
4392
|
|
|
4393
4393
|
/**
|
|
4394
4394
|
* Postcode
|
|
@@ -4568,14 +4568,14 @@ export interface DocumentContractDetail {
|
|
|
4568
4568
|
runtimeToDate: ScriptingDate;
|
|
4569
4569
|
|
|
4570
4570
|
/**
|
|
4571
|
-
*
|
|
4571
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4572
4572
|
*/
|
|
4573
|
-
|
|
4573
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4574
4574
|
|
|
4575
4575
|
/**
|
|
4576
|
-
*
|
|
4576
|
+
* Nächste Fälligkeit
|
|
4577
4577
|
*/
|
|
4578
|
-
|
|
4578
|
+
nextDueDate: ScriptingDate;
|
|
4579
4579
|
|
|
4580
4580
|
/**
|
|
4581
4581
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4840,14 +4840,14 @@ export interface DocumentLine {
|
|
|
4840
4840
|
baseTotalLinePrice: number;
|
|
4841
4841
|
|
|
4842
4842
|
/**
|
|
4843
|
-
*
|
|
4843
|
+
* Positionstyp
|
|
4844
4844
|
*/
|
|
4845
|
-
|
|
4845
|
+
lineType: DocumentLineType;
|
|
4846
4846
|
|
|
4847
4847
|
/**
|
|
4848
|
-
*
|
|
4848
|
+
* FiBu-Buchung
|
|
4849
4849
|
*/
|
|
4850
|
-
|
|
4850
|
+
financeBooking: DocumentFinanceBooking;
|
|
4851
4851
|
|
|
4852
4852
|
/**
|
|
4853
4853
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -4905,14 +4905,14 @@ export interface DocumentLine {
|
|
|
4905
4905
|
info: MetaInfo;
|
|
4906
4906
|
|
|
4907
4907
|
/**
|
|
4908
|
-
*
|
|
4908
|
+
* Preiseinheit
|
|
4909
4909
|
*/
|
|
4910
|
-
|
|
4910
|
+
priceUnit: number;
|
|
4911
4911
|
|
|
4912
4912
|
/**
|
|
4913
|
-
*
|
|
4913
|
+
* Steuerschema
|
|
4914
4914
|
*/
|
|
4915
|
-
|
|
4915
|
+
taxSchemaRef: ApiObjectReference;
|
|
4916
4916
|
|
|
4917
4917
|
/**
|
|
4918
4918
|
* Lieferart
|
|
@@ -5049,26 +5049,26 @@ export interface DocumentLine {
|
|
|
5049
5049
|
*/
|
|
5050
5050
|
revenueCalculation: RevenueCalculation;
|
|
5051
5051
|
|
|
5052
|
-
/**
|
|
5053
|
-
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5054
|
-
*/
|
|
5055
|
-
totalLinePrice: number;
|
|
5056
|
-
|
|
5057
5052
|
/**
|
|
5058
5053
|
* Einheitentyp
|
|
5059
5054
|
*/
|
|
5060
5055
|
unitType: UnitTypeReference;
|
|
5061
5056
|
|
|
5062
5057
|
/**
|
|
5063
|
-
*
|
|
5058
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
5064
5059
|
*/
|
|
5065
|
-
|
|
5060
|
+
totalLinePrice: number;
|
|
5066
5061
|
|
|
5067
5062
|
/**
|
|
5068
5063
|
* Zubehör Einfügeart
|
|
5069
5064
|
*/
|
|
5070
5065
|
insertTerm: AccessoryInsertTerm;
|
|
5071
5066
|
|
|
5067
|
+
/**
|
|
5068
|
+
* Referenz zur Basiszeile
|
|
5069
|
+
*/
|
|
5070
|
+
baseLineId: number;
|
|
5071
|
+
|
|
5072
5072
|
/**
|
|
5073
5073
|
* Einheit Bruttogewicht
|
|
5074
5074
|
*/
|
|
@@ -5334,14 +5334,14 @@ export interface DocumentLineComponent {
|
|
|
5334
5334
|
custom: EavDocumentlinecomponent;
|
|
5335
5335
|
|
|
5336
5336
|
/**
|
|
5337
|
-
*
|
|
5337
|
+
* Referenz auf den Artikel der Komponente
|
|
5338
5338
|
*/
|
|
5339
|
-
|
|
5339
|
+
articleId: number;
|
|
5340
5340
|
|
|
5341
5341
|
/**
|
|
5342
|
-
*
|
|
5342
|
+
* Gelieferte Menge
|
|
5343
5343
|
*/
|
|
5344
|
-
|
|
5344
|
+
quantityCommitted: number;
|
|
5345
5345
|
|
|
5346
5346
|
/**
|
|
5347
5347
|
* Beschreibung des Artikels
|
|
@@ -5589,14 +5589,14 @@ export interface DocumentLinePosDetail {
|
|
|
5589
5589
|
externalPaymentStatus: PosPaymentStatus;
|
|
5590
5590
|
|
|
5591
5591
|
/**
|
|
5592
|
-
*
|
|
5592
|
+
* Typ der Position
|
|
5593
5593
|
*/
|
|
5594
|
-
|
|
5594
|
+
posLineType: PosLineType;
|
|
5595
5595
|
|
|
5596
5596
|
/**
|
|
5597
|
-
*
|
|
5597
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5598
5598
|
*/
|
|
5599
|
-
|
|
5599
|
+
externalPaymentId: string;
|
|
5600
5600
|
|
|
5601
5601
|
/**
|
|
5602
5602
|
* Unique identifier of the Object
|
|
@@ -5632,14 +5632,14 @@ export interface DocumentLineRef {
|
|
|
5632
5632
|
quantity: number;
|
|
5633
5633
|
|
|
5634
5634
|
/**
|
|
5635
|
-
*
|
|
5635
|
+
* Artikelnummer
|
|
5636
5636
|
*/
|
|
5637
|
-
|
|
5637
|
+
articleNumber: string;
|
|
5638
5638
|
|
|
5639
5639
|
/**
|
|
5640
|
-
*
|
|
5640
|
+
* Belegart
|
|
5641
5641
|
*/
|
|
5642
|
-
|
|
5642
|
+
documentType: string;
|
|
5643
5643
|
|
|
5644
5644
|
/**
|
|
5645
5645
|
* price per quantity [GROSS, NET]
|
|
@@ -5904,14 +5904,14 @@ export interface DocumentShippingCost {
|
|
|
5904
5904
|
name: string;
|
|
5905
5905
|
|
|
5906
5906
|
/**
|
|
5907
|
-
*
|
|
5907
|
+
* Steuern
|
|
5908
5908
|
*/
|
|
5909
|
-
|
|
5909
|
+
taxes: Array<DocumentTax>;
|
|
5910
5910
|
|
|
5911
5911
|
/**
|
|
5912
|
-
*
|
|
5912
|
+
* Artikelbeschreibung
|
|
5913
5913
|
*/
|
|
5914
|
-
|
|
5914
|
+
description: string;
|
|
5915
5915
|
|
|
5916
5916
|
/**
|
|
5917
5917
|
* Einkaufspreis
|
|
@@ -6014,14 +6014,14 @@ export interface DocumentText {
|
|
|
6014
6014
|
transferableIntoSubsequentDocuments: boolean;
|
|
6015
6015
|
|
|
6016
6016
|
/**
|
|
6017
|
-
*
|
|
6017
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6018
6018
|
*/
|
|
6019
|
-
|
|
6019
|
+
deleted: boolean;
|
|
6020
6020
|
|
|
6021
6021
|
/**
|
|
6022
|
-
*
|
|
6022
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6023
6023
|
*/
|
|
6024
|
-
|
|
6024
|
+
textPosition: TextPosition;
|
|
6025
6025
|
|
|
6026
6026
|
/**
|
|
6027
6027
|
* textBaustein Vorlage
|
|
@@ -6131,14 +6131,14 @@ export interface DocumentType {
|
|
|
6131
6131
|
labels: Array<DocumentTypeLabel>;
|
|
6132
6132
|
|
|
6133
6133
|
/**
|
|
6134
|
-
*
|
|
6134
|
+
* Zählerkreis
|
|
6135
6135
|
*/
|
|
6136
|
-
|
|
6136
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6137
6137
|
|
|
6138
6138
|
/**
|
|
6139
|
-
*
|
|
6139
|
+
* nächste Belegnummer
|
|
6140
6140
|
*/
|
|
6141
|
-
|
|
6141
|
+
nextNumber: string;
|
|
6142
6142
|
|
|
6143
6143
|
/**
|
|
6144
6144
|
* Sortierung
|
|
@@ -7025,14 +7025,14 @@ export interface PickTrolley {
|
|
|
7025
7025
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7026
7026
|
|
|
7027
7027
|
/**
|
|
7028
|
-
*
|
|
7028
|
+
* Bearbeiter der Pickliste
|
|
7029
7029
|
*/
|
|
7030
|
-
|
|
7030
|
+
processedByUserRef: ApiObjectReference;
|
|
7031
7031
|
|
|
7032
7032
|
/**
|
|
7033
|
-
*
|
|
7033
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7034
7034
|
*/
|
|
7035
|
-
|
|
7035
|
+
storageBinRef: StorageBinRef;
|
|
7036
7036
|
|
|
7037
7037
|
/**
|
|
7038
7038
|
* Beschreibung des Wagens
|
|
@@ -7288,14 +7288,14 @@ export interface PicklistLine {
|
|
|
7288
7288
|
articleNumber: string;
|
|
7289
7289
|
|
|
7290
7290
|
/**
|
|
7291
|
-
*
|
|
7291
|
+
* Lagernummer
|
|
7292
7292
|
*/
|
|
7293
|
-
|
|
7293
|
+
storageNumber: string;
|
|
7294
7294
|
|
|
7295
7295
|
/**
|
|
7296
|
-
*
|
|
7296
|
+
* Art der Position
|
|
7297
7297
|
*/
|
|
7298
|
-
|
|
7298
|
+
lineType: PicklistLineType;
|
|
7299
7299
|
|
|
7300
7300
|
/**
|
|
7301
7301
|
* ID der Ziel-Dokumentposition
|
|
@@ -7434,14 +7434,14 @@ export interface PicklistLineComponent {
|
|
|
7434
7434
|
targetDocumentLineComponentId: number;
|
|
7435
7435
|
|
|
7436
7436
|
/**
|
|
7437
|
-
*
|
|
7437
|
+
* abweichende Artikelbezeichnung
|
|
7438
7438
|
*/
|
|
7439
|
-
|
|
7439
|
+
articleAlternativeName: string;
|
|
7440
7440
|
|
|
7441
7441
|
/**
|
|
7442
|
-
*
|
|
7442
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7443
7443
|
*/
|
|
7444
|
-
|
|
7444
|
+
quantityPerAssemblyGroup: number;
|
|
7445
7445
|
|
|
7446
7446
|
/**
|
|
7447
7447
|
* Verpackte Menge der Position
|
|
@@ -7769,14 +7769,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7769
7769
|
alwaysShowDeliveryMethod: boolean;
|
|
7770
7770
|
|
|
7771
7771
|
/**
|
|
7772
|
-
*
|
|
7772
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7773
7773
|
*/
|
|
7774
|
-
|
|
7774
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7775
7775
|
|
|
7776
7776
|
/**
|
|
7777
|
-
*
|
|
7777
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7778
7778
|
*/
|
|
7779
|
-
|
|
7779
|
+
autoPrintDeliveryDocument: boolean;
|
|
7780
7780
|
|
|
7781
7781
|
/**
|
|
7782
7782
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7784,9 +7784,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7784
7784
|
showShippingFormOnPickingFinish: boolean;
|
|
7785
7785
|
|
|
7786
7786
|
/**
|
|
7787
|
-
*
|
|
7787
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7788
7788
|
*/
|
|
7789
|
-
|
|
7789
|
+
allowPickingOfServiceArticles: boolean;
|
|
7790
7790
|
|
|
7791
7791
|
/**
|
|
7792
7792
|
* Sammelbestätigung erlauben
|
|
@@ -7794,9 +7794,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7794
7794
|
allowFullConfirmation: boolean;
|
|
7795
7795
|
|
|
7796
7796
|
/**
|
|
7797
|
-
*
|
|
7797
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7798
7798
|
*/
|
|
7799
|
-
|
|
7799
|
+
useDigitalPicklist: boolean;
|
|
7800
7800
|
|
|
7801
7801
|
/**
|
|
7802
7802
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -8075,14 +8075,14 @@ export interface ProductDiscount {
|
|
|
8075
8075
|
validFrom: ScriptingDate;
|
|
8076
8076
|
|
|
8077
8077
|
/**
|
|
8078
|
-
*
|
|
8078
|
+
* Bestimmt die Art des Rabatts
|
|
8079
8079
|
*/
|
|
8080
|
-
|
|
8080
|
+
modifierType: PriceModifierType;
|
|
8081
8081
|
|
|
8082
8082
|
/**
|
|
8083
|
-
*
|
|
8083
|
+
* Warengruppe
|
|
8084
8084
|
*/
|
|
8085
|
-
|
|
8085
|
+
productGroupRef: ApiObjectReference;
|
|
8086
8086
|
|
|
8087
8087
|
/**
|
|
8088
8088
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8130,14 +8130,14 @@ export interface ProductDiscount {
|
|
|
8130
8130
|
validUntil: ScriptingDate;
|
|
8131
8131
|
|
|
8132
8132
|
/**
|
|
8133
|
-
*
|
|
8133
|
+
* Name des Rabatts
|
|
8134
8134
|
*/
|
|
8135
|
-
|
|
8135
|
+
modifierName: string;
|
|
8136
8136
|
|
|
8137
8137
|
/**
|
|
8138
|
-
*
|
|
8138
|
+
* Account, für den der Rabatt gültig ist
|
|
8139
8139
|
*/
|
|
8140
|
-
|
|
8140
|
+
accountRef: ApiObjectReference;
|
|
8141
8141
|
|
|
8142
8142
|
/**
|
|
8143
8143
|
* Unique identifier of the Object
|
|
@@ -8477,26 +8477,26 @@ export interface RequestDocument {
|
|
|
8477
8477
|
*/
|
|
8478
8478
|
lines: Array<RequestDocumentLine>;
|
|
8479
8479
|
|
|
8480
|
-
/**
|
|
8481
|
-
* ID der Kasse (bei POS)
|
|
8482
|
-
*/
|
|
8483
|
-
posRegisterId: number;
|
|
8484
|
-
|
|
8485
8480
|
/**
|
|
8486
8481
|
* Die Vertragsdetails
|
|
8487
8482
|
*/
|
|
8488
8483
|
contractDetail: DocumentContractDetail;
|
|
8489
8484
|
|
|
8490
8485
|
/**
|
|
8491
|
-
*
|
|
8486
|
+
* ID der Kasse (bei POS)
|
|
8492
8487
|
*/
|
|
8493
|
-
|
|
8488
|
+
posRegisterId: number;
|
|
8494
8489
|
|
|
8495
8490
|
/**
|
|
8496
8491
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8497
8492
|
*/
|
|
8498
8493
|
supplierAccountId: number;
|
|
8499
8494
|
|
|
8495
|
+
/**
|
|
8496
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8497
|
+
*/
|
|
8498
|
+
paymentTermId: number;
|
|
8499
|
+
|
|
8500
8500
|
/**
|
|
8501
8501
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8502
8502
|
*/
|
|
@@ -8606,14 +8606,14 @@ export interface RequestDocumentLine {
|
|
|
8606
8606
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8607
8607
|
|
|
8608
8608
|
/**
|
|
8609
|
-
*
|
|
8609
|
+
* Typ dieser Position
|
|
8610
8610
|
*/
|
|
8611
|
-
|
|
8611
|
+
lineType: DocumentLineType;
|
|
8612
8612
|
|
|
8613
8613
|
/**
|
|
8614
|
-
*
|
|
8614
|
+
* FiBu-Angaben
|
|
8615
8615
|
*/
|
|
8616
|
-
|
|
8616
|
+
financeBooking: DocumentFinanceBooking;
|
|
8617
8617
|
|
|
8618
8618
|
/**
|
|
8619
8619
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8706,14 +8706,14 @@ export interface RequestDocumentLine {
|
|
|
8706
8706
|
name: string;
|
|
8707
8707
|
|
|
8708
8708
|
/**
|
|
8709
|
-
*
|
|
8709
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8710
8710
|
*/
|
|
8711
|
-
|
|
8711
|
+
externalArticleNumber: string;
|
|
8712
8712
|
|
|
8713
8713
|
/**
|
|
8714
|
-
*
|
|
8714
|
+
* ID der Quell-Belegposition
|
|
8715
8715
|
*/
|
|
8716
|
-
|
|
8716
|
+
sourceLineId: number;
|
|
8717
8717
|
|
|
8718
8718
|
/**
|
|
8719
8719
|
* Buchungen zu dieser Belegposition
|
|
@@ -8862,14 +8862,14 @@ export interface SalesAgent {
|
|
|
8862
8862
|
note: string;
|
|
8863
8863
|
|
|
8864
8864
|
/**
|
|
8865
|
-
*
|
|
8865
|
+
* reference to the delivery method
|
|
8866
8866
|
*/
|
|
8867
|
-
|
|
8867
|
+
deliveryMethodRef: ApiObjectReference;
|
|
8868
8868
|
|
|
8869
8869
|
/**
|
|
8870
|
-
*
|
|
8870
|
+
* is sales agent taxable
|
|
8871
8871
|
*/
|
|
8872
|
-
|
|
8872
|
+
taxable: boolean;
|
|
8873
8873
|
|
|
8874
8874
|
/**
|
|
8875
8875
|
* Freifelder
|
|
@@ -9468,14 +9468,14 @@ export interface ShelfDocumentType {
|
|
|
9468
9468
|
active: boolean;
|
|
9469
9469
|
|
|
9470
9470
|
/**
|
|
9471
|
-
*
|
|
9471
|
+
* access level or reading
|
|
9472
9472
|
*/
|
|
9473
|
-
|
|
9473
|
+
accessLevelRead: number;
|
|
9474
9474
|
|
|
9475
9475
|
/**
|
|
9476
|
-
*
|
|
9476
|
+
* label of type
|
|
9477
9477
|
*/
|
|
9478
|
-
|
|
9478
|
+
label: string;
|
|
9479
9479
|
|
|
9480
9480
|
/**
|
|
9481
9481
|
* storage rule for revisions
|
|
@@ -9521,14 +9521,14 @@ export interface ShelfFile {
|
|
|
9521
9521
|
subFiles: Array<SubFileInfo>;
|
|
9522
9522
|
|
|
9523
9523
|
/**
|
|
9524
|
-
*
|
|
9524
|
+
* revision number of this file
|
|
9525
9525
|
*/
|
|
9526
|
-
|
|
9526
|
+
revisionNumber: number;
|
|
9527
9527
|
|
|
9528
9528
|
/**
|
|
9529
|
-
*
|
|
9529
|
+
* fileSize
|
|
9530
9530
|
*/
|
|
9531
|
-
|
|
9531
|
+
fileSize: number;
|
|
9532
9532
|
|
|
9533
9533
|
/**
|
|
9534
9534
|
* file-extension of this entry
|
|
@@ -9607,14 +9607,14 @@ export interface ShelfShare {
|
|
|
9607
9607
|
publishState: ShelfSharePublishState;
|
|
9608
9608
|
|
|
9609
9609
|
/**
|
|
9610
|
-
*
|
|
9610
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9611
9611
|
*/
|
|
9612
|
-
|
|
9612
|
+
publicUrlDurationInMinutes: number;
|
|
9613
9613
|
|
|
9614
9614
|
/**
|
|
9615
|
-
*
|
|
9615
|
+
* Freifelder
|
|
9616
9616
|
*/
|
|
9617
|
-
|
|
9617
|
+
custom: EavShelfshare;
|
|
9618
9618
|
|
|
9619
9619
|
/**
|
|
9620
9620
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9835,14 +9835,14 @@ export interface Supplier {
|
|
|
9835
9835
|
info: MetaInfo;
|
|
9836
9836
|
|
|
9837
9837
|
/**
|
|
9838
|
-
*
|
|
9838
|
+
* Lieferantengruppe
|
|
9839
9839
|
*/
|
|
9840
|
-
|
|
9840
|
+
supplierGroupRef: ApiObjectReference;
|
|
9841
9841
|
|
|
9842
9842
|
/**
|
|
9843
|
-
*
|
|
9843
|
+
* reference to the delivery method
|
|
9844
9844
|
*/
|
|
9845
|
-
|
|
9845
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9846
9846
|
|
|
9847
9847
|
/**
|
|
9848
9848
|
* tax able or tax free
|
|
@@ -9900,14 +9900,14 @@ export interface Supplier {
|
|
|
9900
9900
|
performanceCountryCode: string;
|
|
9901
9901
|
|
|
9902
9902
|
/**
|
|
9903
|
-
*
|
|
9903
|
+
* reference to the payment method
|
|
9904
9904
|
*/
|
|
9905
|
-
|
|
9905
|
+
paymentMethodRef: ApiObjectReference;
|
|
9906
9906
|
|
|
9907
9907
|
/**
|
|
9908
|
-
*
|
|
9908
|
+
* Lieferzeit in (Werk-)Tagen
|
|
9909
9909
|
*/
|
|
9910
|
-
|
|
9910
|
+
defaultDeliveryTime: number;
|
|
9911
9911
|
|
|
9912
9912
|
/**
|
|
9913
9913
|
* currency code IsoAlpha3
|
|
@@ -10229,14 +10229,14 @@ export interface User {
|
|
|
10229
10229
|
roles: Array<ApiObjectReference>;
|
|
10230
10230
|
|
|
10231
10231
|
/**
|
|
10232
|
-
*
|
|
10232
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10233
10233
|
*/
|
|
10234
|
-
|
|
10234
|
+
referencedCustomerUserId: number;
|
|
10235
10235
|
|
|
10236
10236
|
/**
|
|
10237
|
-
*
|
|
10237
|
+
* Gruppen
|
|
10238
10238
|
*/
|
|
10239
|
-
|
|
10239
|
+
groups: Array<ApiObjectReference>;
|
|
10240
10240
|
|
|
10241
10241
|
/**
|
|
10242
10242
|
* Is the user active?
|