@vario-software/types 2026.17.0 → 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 +14 -14
- package/scripting/types.d.ts +251 -251
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
|
|
@@ -1468,18 +1468,18 @@ export interface DocumentScriptingService {
|
|
|
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
|
|
@@ -1582,16 +1582,16 @@ export interface DocumentScriptingService {
|
|
|
1582
1582
|
* Versendet einen Beleg per Mail
|
|
1583
1583
|
*
|
|
1584
1584
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1585
|
+
* @param {string} reportGroupIdentifier -
|
|
1585
1586
|
*/
|
|
1586
|
-
sendViaMail(documentId: number): void;
|
|
1587
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1587
1588
|
|
|
1588
1589
|
/**
|
|
1589
1590
|
* Versendet einen Beleg per Mail
|
|
1590
1591
|
*
|
|
1591
1592
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1592
|
-
* @param {string} reportGroupIdentifier -
|
|
1593
1593
|
*/
|
|
1594
|
-
sendViaMail(documentId: number
|
|
1594
|
+
sendViaMail(documentId: number): void;
|
|
1595
1595
|
|
|
1596
1596
|
/**
|
|
1597
1597
|
* Überführt einen Beleg in einen anderen Status
|
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Street
|
|
@@ -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
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* city of the bank
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
bankCity: string;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -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
|
|
@@ -1151,14 +1151,14 @@ export interface Article {
|
|
|
1151
1151
|
workUnitInMinutes: number;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* Frei kommissionierbar
|
|
1155
1155
|
*/
|
|
1156
|
-
|
|
1156
|
+
freelyPickable: boolean;
|
|
1157
1157
|
|
|
1158
1158
|
/**
|
|
1159
|
-
*
|
|
1159
|
+
* description custom data
|
|
1160
1160
|
*/
|
|
1161
|
-
|
|
1161
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1162
1162
|
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1235,11 +1235,6 @@ export interface Article {
|
|
|
1235
1235
|
*/
|
|
1236
1236
|
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
|
-
/**
|
|
1239
|
-
* Kontingentartikel
|
|
1240
|
-
*/
|
|
1241
|
-
contingentArticleRef: ApiObjectReference;
|
|
1242
|
-
|
|
1243
1238
|
/**
|
|
1244
1239
|
* alternative name of this product
|
|
1245
1240
|
*/
|
|
@@ -1250,6 +1245,11 @@ export interface Article {
|
|
|
1250
1245
|
*/
|
|
1251
1246
|
discountable: boolean;
|
|
1252
1247
|
|
|
1248
|
+
/**
|
|
1249
|
+
* Kontingentartikel
|
|
1250
|
+
*/
|
|
1251
|
+
contingentArticleRef: ApiObjectReference;
|
|
1252
|
+
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
1255
1255
|
*/
|
|
@@ -1316,14 +1316,14 @@ export interface Article {
|
|
|
1316
1316
|
listed: boolean;
|
|
1317
1317
|
|
|
1318
1318
|
/**
|
|
1319
|
-
*
|
|
1319
|
+
* provisionsberechtiger Artikel?
|
|
1320
1320
|
*/
|
|
1321
|
-
|
|
1321
|
+
commissionable: boolean;
|
|
1322
1322
|
|
|
1323
1323
|
/**
|
|
1324
|
-
*
|
|
1324
|
+
* Nur manuelle Produktion
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
onlyManualFabrication: 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
|
|
@@ -1680,26 +1680,26 @@ export const enum ArticleSerialType {
|
|
|
1680
1680
|
|
|
1681
1681
|
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
|
-
/**
|
|
1684
|
-
* Bestand im Lager
|
|
1685
|
-
*/
|
|
1686
|
-
quantityInStock: number;
|
|
1687
|
-
|
|
1688
1683
|
/**
|
|
1689
1684
|
* Nachschub ab
|
|
1690
1685
|
*/
|
|
1691
1686
|
replenishmentFrom: number;
|
|
1692
1687
|
|
|
1693
1688
|
/**
|
|
1694
|
-
*
|
|
1689
|
+
* Bestand im Lager
|
|
1695
1690
|
*/
|
|
1696
|
-
|
|
1691
|
+
quantityInStock: number;
|
|
1697
1692
|
|
|
1698
1693
|
/**
|
|
1699
1694
|
* Bestellte Menge
|
|
1700
1695
|
*/
|
|
1701
1696
|
orderedQuantity: number;
|
|
1702
1697
|
|
|
1698
|
+
/**
|
|
1699
|
+
* Aktuelle Menge in Kommissionierung
|
|
1700
|
+
*/
|
|
1701
|
+
quantityInPicking: number;
|
|
1702
|
+
|
|
1703
1703
|
/**
|
|
1704
1704
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1705
1705
|
*/
|
|
@@ -1751,14 +1751,14 @@ export interface ArticleStorage {
|
|
|
1751
1751
|
storageRef: ApiObjectReference;
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
|
-
*
|
|
1754
|
+
* Vorgabe-Lagerplätze
|
|
1755
1755
|
*/
|
|
1756
|
-
|
|
1756
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1757
1757
|
|
|
1758
1758
|
/**
|
|
1759
|
-
*
|
|
1759
|
+
* Sollbestand
|
|
1760
1760
|
*/
|
|
1761
|
-
|
|
1761
|
+
targetStock: number;
|
|
1762
1762
|
|
|
1763
1763
|
/**
|
|
1764
1764
|
* Aktuelle Menge in Produktion
|
|
@@ -1779,9 +1779,9 @@ export interface ArticleStorage {
|
|
|
1779
1779
|
export interface ArticleSupplier {
|
|
1780
1780
|
|
|
1781
1781
|
/**
|
|
1782
|
-
*
|
|
1782
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1783
1783
|
*/
|
|
1784
|
-
|
|
1784
|
+
useSupplierArticleDescription: boolean;
|
|
1785
1785
|
|
|
1786
1786
|
/**
|
|
1787
1787
|
* Lieferanten-Meldebestand
|
|
@@ -1789,19 +1789,19 @@ export interface ArticleSupplier {
|
|
|
1789
1789
|
supplierReportingStock: number;
|
|
1790
1790
|
|
|
1791
1791
|
/**
|
|
1792
|
-
*
|
|
1792
|
+
* Anzeigename des Accounts
|
|
1793
1793
|
*/
|
|
1794
|
-
|
|
1794
|
+
accountDisplayName: string;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
|
-
*
|
|
1797
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1798
1798
|
*/
|
|
1799
|
-
|
|
1799
|
+
deliveryTime: number;
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
1802
|
-
*
|
|
1802
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1803
1803
|
*/
|
|
1804
|
-
|
|
1804
|
+
useSupplierArticleIdentifier: boolean;
|
|
1805
1805
|
|
|
1806
1806
|
/**
|
|
1807
1807
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -1859,14 +1859,14 @@ export interface ArticleSupplier {
|
|
|
1859
1859
|
articleName: string;
|
|
1860
1860
|
|
|
1861
1861
|
/**
|
|
1862
|
-
*
|
|
1862
|
+
* Referenced Article
|
|
1863
1863
|
*/
|
|
1864
|
-
|
|
1864
|
+
articleId: number;
|
|
1865
1865
|
|
|
1866
1866
|
/**
|
|
1867
|
-
*
|
|
1867
|
+
* Lieferanten-Preise
|
|
1868
1868
|
*/
|
|
1869
|
-
|
|
1869
|
+
productPrices: Array<ProductPrice>;
|
|
1870
1870
|
|
|
1871
1871
|
/**
|
|
1872
1872
|
* Aktiv?
|
|
@@ -2117,14 +2117,14 @@ export interface CountryReference {
|
|
|
2117
2117
|
export interface CreateNewDocumentRequest {
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
* Belegart
|
|
2120
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
|
-
*
|
|
2125
|
+
* Belegart
|
|
2126
2126
|
*/
|
|
2127
|
-
|
|
2127
|
+
documentTypeLabel: string;
|
|
2128
2128
|
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Details zum Beleg
|
|
@@ -2349,14 +2349,14 @@ export interface CrmActivityType {
|
|
|
2349
2349
|
export interface CrmChecklistItem {
|
|
2350
2350
|
|
|
2351
2351
|
/**
|
|
2352
|
-
*
|
|
2352
|
+
* Ist das Element "angehakt"?
|
|
2353
2353
|
*/
|
|
2354
|
-
|
|
2354
|
+
checked: boolean;
|
|
2355
2355
|
|
|
2356
2356
|
/**
|
|
2357
|
-
*
|
|
2357
|
+
* Text des Checklisten-Elements
|
|
2358
2358
|
*/
|
|
2359
|
-
|
|
2359
|
+
memo: string;
|
|
2360
2360
|
|
|
2361
2361
|
/**
|
|
2362
2362
|
* Unique identifier of the Object
|
|
@@ -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
|
|
@@ -3059,14 +3059,14 @@ export interface CrmSubType {
|
|
|
3059
3059
|
export interface CrmTask {
|
|
3060
3060
|
|
|
3061
3061
|
/**
|
|
3062
|
-
*
|
|
3062
|
+
* Angebot
|
|
3063
3063
|
*/
|
|
3064
|
-
|
|
3064
|
+
customerOfferRef: DocumentRef;
|
|
3065
3065
|
|
|
3066
3066
|
/**
|
|
3067
|
-
*
|
|
3067
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3068
3068
|
*/
|
|
3069
|
-
|
|
3069
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3070
3070
|
|
|
3071
3071
|
/**
|
|
3072
3072
|
* Liste von Erinnerungen
|
|
@@ -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
|
|
@@ -3438,14 +3438,14 @@ export interface CurrencyReference {
|
|
|
3438
3438
|
export interface Customer {
|
|
3439
3439
|
|
|
3440
3440
|
/**
|
|
3441
|
-
*
|
|
3441
|
+
* reference to customer group
|
|
3442
3442
|
*/
|
|
3443
|
-
|
|
3443
|
+
customerGroupRef: ApiObjectReference;
|
|
3444
3444
|
|
|
3445
3445
|
/**
|
|
3446
|
-
*
|
|
3446
|
+
* Option für die Stapelverarbeitung
|
|
3447
3447
|
*/
|
|
3448
|
-
|
|
3448
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3449
|
|
|
3450
3450
|
/**
|
|
3451
3451
|
* Kreditlimit
|
|
@@ -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
|
*/
|
|
@@ -3770,14 +3770,14 @@ export interface DeliveryTerm {
|
|
|
3770
3770
|
export interface Document {
|
|
3771
3771
|
|
|
3772
3772
|
/**
|
|
3773
|
-
*
|
|
3773
|
+
* Referenz zum Rechnungskonto
|
|
3774
3774
|
*/
|
|
3775
|
-
|
|
3775
|
+
billingAccountRef: ApiObjectReference;
|
|
3776
3776
|
|
|
3777
3777
|
/**
|
|
3778
|
-
*
|
|
3778
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3779
3779
|
*/
|
|
3780
|
-
|
|
3780
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3781
3781
|
|
|
3782
3782
|
/**
|
|
3783
3783
|
* Externe Belegnummer
|
|
@@ -4045,14 +4045,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4045
4045
|
calculationMode: CalculationMode;
|
|
4046
4046
|
|
|
4047
4047
|
/**
|
|
4048
|
-
*
|
|
4048
|
+
* Referenz auf Zahlungsbedingung
|
|
4049
4049
|
*/
|
|
4050
|
-
|
|
4050
|
+
paymentTermRef: PaymentTermRef;
|
|
4051
4051
|
|
|
4052
4052
|
/**
|
|
4053
|
-
*
|
|
4053
|
+
* Wird vom Workflow verarbeitet?
|
|
4054
4054
|
*/
|
|
4055
|
-
|
|
4055
|
+
processedByWorkflow: boolean;
|
|
4056
4056
|
|
|
4057
4057
|
/**
|
|
4058
4058
|
* Preisanpassungen - Beleg 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
|
|
@@ -4264,6 +4264,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4264
4264
|
*/
|
|
4265
4265
|
customerNumber: string;
|
|
4266
4266
|
|
|
4267
|
+
/**
|
|
4268
|
+
* Versandkostenpositionen
|
|
4269
|
+
*/
|
|
4270
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4271
|
+
|
|
4267
4272
|
/**
|
|
4268
4273
|
* Umsatzsteuer-Identifikationsnummer
|
|
4269
4274
|
*/
|
|
@@ -4275,14 +4280,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4275
4280
|
documentState: DocumentTypeState;
|
|
4276
4281
|
|
|
4277
4282
|
/**
|
|
4278
|
-
*
|
|
4283
|
+
* Rückgeld
|
|
4279
4284
|
*/
|
|
4280
|
-
|
|
4285
|
+
posReceiptChangeAmount: number;
|
|
4281
4286
|
|
|
4282
4287
|
/**
|
|
4283
|
-
*
|
|
4288
|
+
* Referenz auf Lieferbedingung
|
|
4284
4289
|
*/
|
|
4285
|
-
|
|
4290
|
+
deliveryTermRef: ApiObjectReference;
|
|
4286
4291
|
|
|
4287
4292
|
/**
|
|
4288
4293
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4291,11 +4296,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4291
4296
|
*/
|
|
4292
4297
|
posReceiptBalanced: boolean;
|
|
4293
4298
|
|
|
4294
|
-
/**
|
|
4295
|
-
* Referenz auf Lieferbedingung
|
|
4296
|
-
*/
|
|
4297
|
-
deliveryTermRef: ApiObjectReference;
|
|
4298
|
-
|
|
4299
4299
|
/**
|
|
4300
4300
|
* Gesamtbruttogewicht
|
|
4301
4301
|
*/
|
|
@@ -4317,14 +4317,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4317
4317
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4318
4318
|
|
|
4319
4319
|
/**
|
|
4320
|
-
*
|
|
4320
|
+
* Rechnungsadresse
|
|
4321
4321
|
*/
|
|
4322
|
-
|
|
4322
|
+
billingAddress: DocumentAddress;
|
|
4323
4323
|
|
|
4324
4324
|
/**
|
|
4325
|
-
*
|
|
4325
|
+
* Status der USt-ID-Prüfung
|
|
4326
4326
|
*/
|
|
4327
|
-
|
|
4327
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4328
4328
|
|
|
4329
4329
|
/**
|
|
4330
4330
|
* Bestellt durch Ansprechpartner
|
|
@@ -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
|
|
@@ -4869,14 +4869,14 @@ export const enum DocumentImportType {
|
|
|
4869
4869
|
export interface DocumentLine {
|
|
4870
4870
|
|
|
4871
4871
|
/**
|
|
4872
|
-
*
|
|
4872
|
+
* Zolltarifnummer
|
|
4873
4873
|
*/
|
|
4874
|
-
|
|
4874
|
+
customsTariffNumber: string;
|
|
4875
4875
|
|
|
4876
4876
|
/**
|
|
4877
|
-
*
|
|
4877
|
+
* Leistungsdatum
|
|
4878
4878
|
*/
|
|
4879
|
-
|
|
4879
|
+
performanceDate: ScriptingDate;
|
|
4880
4880
|
|
|
4881
4881
|
/**
|
|
4882
4882
|
* Land der Herkunft
|
|
@@ -4884,14 +4884,14 @@ export interface DocumentLine {
|
|
|
4884
4884
|
country: CountryReference;
|
|
4885
4885
|
|
|
4886
4886
|
/**
|
|
4887
|
-
*
|
|
4887
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4888
4888
|
*/
|
|
4889
|
-
|
|
4889
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4890
4890
|
|
|
4891
4891
|
/**
|
|
4892
|
-
*
|
|
4892
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4893
4893
|
*/
|
|
4894
|
-
|
|
4894
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4895
4895
|
|
|
4896
4896
|
/**
|
|
4897
4897
|
* verarbeitete Menge
|
|
@@ -4939,14 +4939,14 @@ export interface DocumentLine {
|
|
|
4939
4939
|
number: string;
|
|
4940
4940
|
|
|
4941
4941
|
/**
|
|
4942
|
-
*
|
|
4942
|
+
* Referenz zur Kundenauftragszeile
|
|
4943
4943
|
*/
|
|
4944
|
-
|
|
4944
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4947
|
+
* Gesamtbruttogewicht
|
|
4948
4948
|
*/
|
|
4949
|
-
|
|
4949
|
+
totalGrossWeight: number;
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
4952
|
* skontierbare Position?
|
|
@@ -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
|
*/
|
|
@@ -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
|
|
@@ -5718,14 +5718,14 @@ export interface DocumentLinePosDetail {
|
|
|
5718
5718
|
externalPaymentStatus: PosPaymentStatus;
|
|
5719
5719
|
|
|
5720
5720
|
/**
|
|
5721
|
-
*
|
|
5721
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5722
5722
|
*/
|
|
5723
|
-
|
|
5723
|
+
externalPaymentId: string;
|
|
5724
5724
|
|
|
5725
5725
|
/**
|
|
5726
|
-
*
|
|
5726
|
+
* Typ der Position
|
|
5727
5727
|
*/
|
|
5728
|
-
|
|
5728
|
+
posLineType: PosLineType;
|
|
5729
5729
|
|
|
5730
5730
|
/**
|
|
5731
5731
|
* Unique identifier of the Object
|
|
@@ -5943,14 +5943,14 @@ export interface DocumentPosPayment {
|
|
|
5943
5943
|
externalPaymentErrorMessage: string;
|
|
5944
5944
|
|
|
5945
5945
|
/**
|
|
5946
|
-
*
|
|
5946
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5947
5947
|
*/
|
|
5948
|
-
|
|
5948
|
+
externalPaymentId: string;
|
|
5949
5949
|
|
|
5950
5950
|
/**
|
|
5951
|
-
*
|
|
5951
|
+
* Typ der Position
|
|
5952
5952
|
*/
|
|
5953
|
-
|
|
5953
|
+
posLineType: PosLineType;
|
|
5954
5954
|
|
|
5955
5955
|
/**
|
|
5956
5956
|
* Unique identifier of the Object
|
|
@@ -6073,14 +6073,14 @@ export interface DocumentRef {
|
|
|
6073
6073
|
export interface DocumentShippingCost {
|
|
6074
6074
|
|
|
6075
6075
|
/**
|
|
6076
|
-
*
|
|
6076
|
+
* Die Versandkosten
|
|
6077
6077
|
*/
|
|
6078
|
-
|
|
6078
|
+
costs: number;
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
manualCosts: boolean;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
6086
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6811,14 +6811,14 @@ export interface FabricationRevertRequest {
|
|
|
6811
6811
|
quantity: number;
|
|
6812
6812
|
|
|
6813
6813
|
/**
|
|
6814
|
-
*
|
|
6814
|
+
* Material automatisch stornieren
|
|
6815
6815
|
*/
|
|
6816
|
-
|
|
6816
|
+
autoRevertComponents: boolean;
|
|
6817
6817
|
|
|
6818
6818
|
/**
|
|
6819
|
-
*
|
|
6819
|
+
* ID der zu stornierenden Position
|
|
6820
6820
|
*/
|
|
6821
|
-
|
|
6821
|
+
documentLineId: number;
|
|
6822
6822
|
|
|
6823
6823
|
/**
|
|
6824
6824
|
* Zu stornierende Seriennummern
|
|
@@ -7801,26 +7801,26 @@ 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
|
|
7821
7816
|
*/
|
|
7822
7817
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7823
7818
|
|
|
7819
|
+
/**
|
|
7820
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7821
|
+
*/
|
|
7822
|
+
maxOrderCount: number;
|
|
7823
|
+
|
|
7824
7824
|
/**
|
|
7825
7825
|
* Nur vollständig lieferbare Positionen
|
|
7826
7826
|
*/
|
|
@@ -7885,19 +7885,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7885
7885
|
printPicklist: boolean;
|
|
7886
7886
|
|
|
7887
7887
|
/**
|
|
7888
|
-
*
|
|
7888
|
+
* Die zu verwendende Pickwagengruppe
|
|
7889
7889
|
*/
|
|
7890
|
-
|
|
7890
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7891
7891
|
|
|
7892
7892
|
/**
|
|
7893
|
-
*
|
|
7893
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
7894
7894
|
*/
|
|
7895
|
-
|
|
7895
|
+
maxPicklistLineCount: number;
|
|
7896
7896
|
|
|
7897
7897
|
/**
|
|
7898
|
-
*
|
|
7898
|
+
* Der zu verwendende Pickwagen
|
|
7899
7899
|
*/
|
|
7900
|
-
|
|
7900
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7901
7901
|
|
|
7902
7902
|
/**
|
|
7903
7903
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -7905,9 +7905,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7905
7905
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7906
7906
|
|
|
7907
7907
|
/**
|
|
7908
|
-
*
|
|
7908
|
+
* Lagerplätze vorgeben
|
|
7909
7909
|
*/
|
|
7910
|
-
|
|
7910
|
+
specifyStorageBins: boolean;
|
|
7911
7911
|
|
|
7912
7912
|
/**
|
|
7913
7913
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -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?
|
|
@@ -8274,14 +8274,14 @@ export interface ProductDiscount {
|
|
|
8274
8274
|
validFrom: ScriptingDate;
|
|
8275
8275
|
|
|
8276
8276
|
/**
|
|
8277
|
-
*
|
|
8277
|
+
* Bestimmt die Art des Rabatts
|
|
8278
8278
|
*/
|
|
8279
|
-
|
|
8279
|
+
modifierType: PriceModifierType;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* Warengruppe
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
productGroupRef: ApiObjectReference;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
8287
|
* Version Identifier for this Object (for PUT)
|
|
@@ -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)
|
|
@@ -8329,14 +8329,14 @@ export interface ProductDiscount {
|
|
|
8329
8329
|
validUntil: ScriptingDate;
|
|
8330
8330
|
|
|
8331
8331
|
/**
|
|
8332
|
-
*
|
|
8332
|
+
* Name des Rabatts
|
|
8333
8333
|
*/
|
|
8334
|
-
|
|
8334
|
+
modifierName: string;
|
|
8335
8335
|
|
|
8336
8336
|
/**
|
|
8337
|
-
*
|
|
8337
|
+
* Account, für den der Rabatt gültig ist
|
|
8338
8338
|
*/
|
|
8339
|
-
|
|
8339
|
+
accountRef: ApiObjectReference;
|
|
8340
8340
|
|
|
8341
8341
|
/**
|
|
8342
8342
|
* Unique identifier of the Object
|
|
@@ -8592,19 +8592,19 @@ export interface Referenceable {
|
|
|
8592
8592
|
export interface RequestDocument {
|
|
8593
8593
|
|
|
8594
8594
|
/**
|
|
8595
|
-
*
|
|
8595
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8596
8596
|
*/
|
|
8597
|
-
|
|
8597
|
+
incomingGoodsStorageBinId: number;
|
|
8598
8598
|
|
|
8599
8599
|
/**
|
|
8600
|
-
*
|
|
8600
|
+
* Belegdatum
|
|
8601
8601
|
*/
|
|
8602
|
-
|
|
8602
|
+
documentDate: ScriptingDate;
|
|
8603
8603
|
|
|
8604
8604
|
/**
|
|
8605
|
-
*
|
|
8605
|
+
* ID der Kassenschublade (bei POS)
|
|
8606
8606
|
*/
|
|
8607
|
-
|
|
8607
|
+
cashDrawerId: number;
|
|
8608
8608
|
|
|
8609
8609
|
/**
|
|
8610
8610
|
* Der Anzahlungsbetrag
|
|
@@ -8612,9 +8612,9 @@ export interface RequestDocument {
|
|
|
8612
8612
|
depositPaymentAmount: number;
|
|
8613
8613
|
|
|
8614
8614
|
/**
|
|
8615
|
-
*
|
|
8615
|
+
* Leistungsdatum
|
|
8616
8616
|
*/
|
|
8617
|
-
|
|
8617
|
+
performanceDate: ScriptingDate;
|
|
8618
8618
|
|
|
8619
8619
|
/**
|
|
8620
8620
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8687,14 +8687,14 @@ export interface RequestDocument {
|
|
|
8687
8687
|
contractDetail: DocumentContractDetail;
|
|
8688
8688
|
|
|
8689
8689
|
/**
|
|
8690
|
-
*
|
|
8690
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8691
8691
|
*/
|
|
8692
|
-
|
|
8692
|
+
supplierAccountId: number;
|
|
8693
8693
|
|
|
8694
8694
|
/**
|
|
8695
|
-
*
|
|
8695
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8696
8696
|
*/
|
|
8697
|
-
|
|
8697
|
+
paymentTermId: number;
|
|
8698
8698
|
|
|
8699
8699
|
/**
|
|
8700
8700
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -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
|
*/
|
|
@@ -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
|
|
@@ -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
|
|
@@ -10666,14 +10666,14 @@ export interface User {
|
|
|
10666
10666
|
version: number;
|
|
10667
10667
|
|
|
10668
10668
|
/**
|
|
10669
|
-
*
|
|
10669
|
+
* is the email verified
|
|
10670
10670
|
*/
|
|
10671
|
-
|
|
10671
|
+
emailVerified: boolean;
|
|
10672
10672
|
|
|
10673
10673
|
/**
|
|
10674
|
-
*
|
|
10674
|
+
* first-name
|
|
10675
10675
|
*/
|
|
10676
|
-
|
|
10676
|
+
firstName: string;
|
|
10677
10677
|
|
|
10678
10678
|
/**
|
|
10679
10679
|
* email-address
|