@vario-software/types 2026.18.0 → 2026.18.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 +19 -19
- package/scripting/types.d.ts +177 -177
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -419,18 +419,18 @@ export interface ArticleScriptingService {
|
|
|
419
419
|
*
|
|
420
420
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
421
421
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
422
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
423
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
422
424
|
*/
|
|
423
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
425
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
424
426
|
|
|
425
427
|
/**
|
|
426
428
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
427
429
|
*
|
|
428
430
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
429
431
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
430
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
431
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
432
432
|
*/
|
|
433
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
433
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
434
434
|
|
|
435
435
|
/**
|
|
436
436
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -476,16 +476,16 @@ export interface ArticleScriptingService {
|
|
|
476
476
|
* Führt einen Etikettendrucklauf aus
|
|
477
477
|
*
|
|
478
478
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
479
|
+
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
479
480
|
*/
|
|
480
|
-
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
481
|
+
executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
|
|
481
482
|
|
|
482
483
|
/**
|
|
483
484
|
* Führt einen Etikettendrucklauf aus
|
|
484
485
|
*
|
|
485
486
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
486
|
-
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
487
487
|
*/
|
|
488
|
-
executeLabelPrintBatch(batchIdentifier: string
|
|
488
|
+
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
489
489
|
|
|
490
490
|
/**
|
|
491
491
|
* Liefert die Einkaufsrabatte zu einem Artikel
|
|
@@ -1467,20 +1467,20 @@ export interface DocumentScriptingService {
|
|
|
1467
1467
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1468
1468
|
*
|
|
1469
1469
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1470
|
-
* @param {string}
|
|
1471
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1470
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1472
1471
|
* @return {Document} Der kopierte Beleg
|
|
1473
1472
|
*/
|
|
1474
|
-
copy(documentId: number,
|
|
1473
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1475
1474
|
|
|
1476
1475
|
/**
|
|
1477
1476
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1478
1477
|
*
|
|
1479
1478
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1480
|
-
* @param {string}
|
|
1479
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1480
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1481
1481
|
* @return {Document} Der kopierte Beleg
|
|
1482
1482
|
*/
|
|
1483
|
-
copy(documentId: number,
|
|
1483
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1484
1484
|
|
|
1485
1485
|
/**
|
|
1486
1486
|
* Erstellt einen neuen Beleg
|
|
@@ -2502,14 +2502,14 @@ export interface ScriptingServiceList {
|
|
|
2502
2502
|
crmTaskService: CrmTaskScriptingService;
|
|
2503
2503
|
|
|
2504
2504
|
/**
|
|
2505
|
-
* Service zur Verarbeitung von
|
|
2505
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2506
2506
|
*/
|
|
2507
|
-
|
|
2507
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2508
2508
|
|
|
2509
2509
|
/**
|
|
2510
|
-
* Service zur Verarbeitung von
|
|
2510
|
+
* Service zur Verarbeitung von Accounts
|
|
2511
2511
|
*/
|
|
2512
|
-
|
|
2512
|
+
accountService: AccountScriptingService;
|
|
2513
2513
|
|
|
2514
2514
|
/**
|
|
2515
2515
|
* Verwaltung von Versandarten
|
|
@@ -2709,18 +2709,18 @@ export interface ScriptingUtilities {
|
|
|
2709
2709
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2710
2710
|
*
|
|
2711
2711
|
* @param {object} value - Der Quell-Wert
|
|
2712
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2712
2713
|
* @return {number} Ein BigDecimal-Wert
|
|
2713
2714
|
*/
|
|
2714
|
-
newBigDecimal(value: object): number;
|
|
2715
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2715
2716
|
|
|
2716
2717
|
/**
|
|
2717
2718
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2718
2719
|
*
|
|
2719
2720
|
* @param {object} value - Der Quell-Wert
|
|
2720
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2721
2721
|
* @return {number} Ein BigDecimal-Wert
|
|
2722
2722
|
*/
|
|
2723
|
-
newBigDecimal(value: object
|
|
2723
|
+
newBigDecimal(value: object): number;
|
|
2724
2724
|
|
|
2725
2725
|
/**
|
|
2726
2726
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
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
|
|
@@ -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
|
|
@@ -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
|
+
* is this product purchasable
|
|
960
960
|
*/
|
|
961
|
-
|
|
961
|
+
purchasable: boolean;
|
|
962
962
|
|
|
963
963
|
/**
|
|
964
|
-
*
|
|
964
|
+
* Product custom data
|
|
965
965
|
*/
|
|
966
|
-
|
|
966
|
+
listingCustom: EavArticleListing;
|
|
967
967
|
|
|
968
968
|
/**
|
|
969
969
|
* base capacity unit
|
|
@@ -976,14 +976,14 @@ export interface Article {
|
|
|
976
976
|
initialAvgPurchasePrice: number;
|
|
977
977
|
|
|
978
978
|
/**
|
|
979
|
-
*
|
|
979
|
+
* Seriennummern Auszeichnungsart
|
|
980
980
|
*/
|
|
981
|
-
|
|
981
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
982
982
|
|
|
983
983
|
/**
|
|
984
|
-
*
|
|
984
|
+
* is this product sellable without any quantity at the stock
|
|
985
985
|
*/
|
|
986
|
-
|
|
986
|
+
sellableWithoutStock: boolean;
|
|
987
987
|
|
|
988
988
|
/**
|
|
989
989
|
* gross Volume in cubic meters
|
|
@@ -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
|
|
@@ -1121,14 +1121,14 @@ export interface Article {
|
|
|
1121
1121
|
solvable: boolean;
|
|
1122
1122
|
|
|
1123
1123
|
/**
|
|
1124
|
-
*
|
|
1124
|
+
* Verkaufseinheit
|
|
1125
1125
|
*/
|
|
1126
|
-
|
|
1126
|
+
salesUnit: number;
|
|
1127
1127
|
|
|
1128
1128
|
/**
|
|
1129
|
-
*
|
|
1129
|
+
* weight and size inc. packaging
|
|
1130
1130
|
*/
|
|
1131
|
-
|
|
1131
|
+
grossMetric: Article$Metric;
|
|
1132
1132
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* name of this product
|
|
@@ -1151,14 +1151,14 @@ export interface Article {
|
|
|
1151
1151
|
countryOfOriginRef: CountryReference;
|
|
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?
|
|
@@ -1226,19 +1226,19 @@ export interface Article {
|
|
|
1226
1226
|
isDangerousGood: boolean;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
|
-
*
|
|
1229
|
+
* reference to Product
|
|
1230
1230
|
*/
|
|
1231
|
-
|
|
1231
|
+
productRef: ApiObjectReference;
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
1234
|
-
*
|
|
1234
|
+
* Versandlabeldruck
|
|
1235
1235
|
*/
|
|
1236
|
-
|
|
1236
|
+
shippingLabelPrinting: boolean;
|
|
1237
1237
|
|
|
1238
1238
|
/**
|
|
1239
|
-
*
|
|
1239
|
+
* alternative name of this product
|
|
1240
1240
|
*/
|
|
1241
|
-
|
|
1241
|
+
alternativeName: string;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
1244
|
* Kontingentartikel
|
|
@@ -1246,9 +1246,9 @@ export interface Article {
|
|
|
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
|
|
@@ -1474,14 +1474,14 @@ export interface ArticleListing {
|
|
|
1474
1474
|
proposedLowestPriceGross: number;
|
|
1475
1475
|
|
|
1476
1476
|
/**
|
|
1477
|
-
* der
|
|
1477
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1478
1478
|
*/
|
|
1479
|
-
|
|
1479
|
+
customLowestPriceGross: number;
|
|
1480
1480
|
|
|
1481
1481
|
/**
|
|
1482
|
-
*
|
|
1482
|
+
* der Sales Channel
|
|
1483
1483
|
*/
|
|
1484
|
-
|
|
1484
|
+
salesChannelRef: ApiObjectReference;
|
|
1485
1485
|
|
|
1486
1486
|
/**
|
|
1487
1487
|
* soll der Artikel gelistet werden
|
|
@@ -1756,14 +1756,14 @@ export interface ArticleStorage {
|
|
|
1756
1756
|
storageRef: ApiObjectReference;
|
|
1757
1757
|
|
|
1758
1758
|
/**
|
|
1759
|
-
*
|
|
1759
|
+
* Vorgabe-Lagerplätze
|
|
1760
1760
|
*/
|
|
1761
|
-
|
|
1761
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1762
1762
|
|
|
1763
1763
|
/**
|
|
1764
|
-
*
|
|
1764
|
+
* Sollbestand
|
|
1765
1765
|
*/
|
|
1766
|
-
|
|
1766
|
+
targetStock: number;
|
|
1767
1767
|
|
|
1768
1768
|
/**
|
|
1769
1769
|
* Aktuelle Menge in Produktion
|
|
@@ -1784,14 +1784,14 @@ export interface ArticleStorage {
|
|
|
1784
1784
|
export interface ArticleSupplier {
|
|
1785
1785
|
|
|
1786
1786
|
/**
|
|
1787
|
-
*
|
|
1787
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1788
1788
|
*/
|
|
1789
|
-
|
|
1789
|
+
useSupplierArticleDescription: boolean;
|
|
1790
1790
|
|
|
1791
1791
|
/**
|
|
1792
|
-
*
|
|
1792
|
+
* Lieferanten-Meldebestand
|
|
1793
1793
|
*/
|
|
1794
|
-
|
|
1794
|
+
supplierReportingStock: number;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
1797
|
* Anzeigename des Accounts
|
|
@@ -1893,25 +1893,20 @@ export interface ArticleSupplier {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
dropShippingAllowed: boolean;
|
|
1895
1895
|
|
|
1896
|
-
/**
|
|
1897
|
-
* Abweichende Produktbezeichnung
|
|
1898
|
-
*/
|
|
1899
|
-
supplierArticleName: string;
|
|
1900
|
-
|
|
1901
1896
|
/**
|
|
1902
1897
|
* Abweichende Produktbeschreibung
|
|
1903
1898
|
*/
|
|
1904
1899
|
supplierArticleDescription: string;
|
|
1905
1900
|
|
|
1906
1901
|
/**
|
|
1907
|
-
*
|
|
1902
|
+
* Abweichende Produktbezeichnung
|
|
1908
1903
|
*/
|
|
1909
|
-
|
|
1904
|
+
supplierArticleName: string;
|
|
1910
1905
|
|
|
1911
1906
|
/**
|
|
1912
|
-
*
|
|
1907
|
+
* Standardpreis Netto
|
|
1913
1908
|
*/
|
|
1914
|
-
|
|
1909
|
+
defaultNetPrice: number;
|
|
1915
1910
|
|
|
1916
1911
|
/**
|
|
1917
1912
|
* Einkaufseinheit
|
|
@@ -1923,6 +1918,11 @@ export interface ArticleSupplier {
|
|
|
1923
1918
|
*/
|
|
1924
1919
|
orderOnComponentBase: boolean;
|
|
1925
1920
|
|
|
1921
|
+
/**
|
|
1922
|
+
* Referenced Supplier-Account
|
|
1923
|
+
*/
|
|
1924
|
+
accountId: number;
|
|
1925
|
+
|
|
1926
1926
|
/**
|
|
1927
1927
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1928
1928
|
*/
|
|
@@ -2354,14 +2354,14 @@ export interface CrmActivityType {
|
|
|
2354
2354
|
export interface CrmChecklistItem {
|
|
2355
2355
|
|
|
2356
2356
|
/**
|
|
2357
|
-
*
|
|
2357
|
+
* Ist das Element "angehakt"?
|
|
2358
2358
|
*/
|
|
2359
|
-
|
|
2359
|
+
checked: boolean;
|
|
2360
2360
|
|
|
2361
2361
|
/**
|
|
2362
|
-
*
|
|
2362
|
+
* Text des Checklisten-Elements
|
|
2363
2363
|
*/
|
|
2364
|
-
|
|
2364
|
+
memo: string;
|
|
2365
2365
|
|
|
2366
2366
|
/**
|
|
2367
2367
|
* Unique identifier of the Object
|
|
@@ -2472,14 +2472,14 @@ export interface CrmDeal {
|
|
|
2472
2472
|
info: MetaInfo;
|
|
2473
2473
|
|
|
2474
2474
|
/**
|
|
2475
|
-
*
|
|
2475
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2476
2476
|
*/
|
|
2477
|
-
|
|
2477
|
+
assignedUserRef: ApiObjectReference;
|
|
2478
2478
|
|
|
2479
2479
|
/**
|
|
2480
|
-
*
|
|
2480
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2481
2481
|
*/
|
|
2482
|
-
|
|
2482
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2483
2483
|
|
|
2484
2484
|
/**
|
|
2485
2485
|
* Chance (in Prozent)
|
|
@@ -2813,14 +2813,14 @@ export interface CrmProject {
|
|
|
2813
2813
|
info: MetaInfo;
|
|
2814
2814
|
|
|
2815
2815
|
/**
|
|
2816
|
-
*
|
|
2816
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2817
2817
|
*/
|
|
2818
|
-
|
|
2818
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2819
2819
|
|
|
2820
2820
|
/**
|
|
2821
|
-
*
|
|
2821
|
+
* Projektleiter vom Auftraggeber
|
|
2822
2822
|
*/
|
|
2823
|
-
|
|
2823
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
2824
2824
|
|
|
2825
2825
|
/**
|
|
2826
2826
|
* Gesamt beauftragte Zeit in Sekunden
|
|
@@ -3579,14 +3579,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3579
3579
|
export interface DeliveryMethod {
|
|
3580
3580
|
|
|
3581
3581
|
/**
|
|
3582
|
-
*
|
|
3582
|
+
* E-Mail an Versender übergeben
|
|
3583
3583
|
*/
|
|
3584
|
-
|
|
3584
|
+
forwardEmailToShipper: boolean;
|
|
3585
3585
|
|
|
3586
3586
|
/**
|
|
3587
|
-
*
|
|
3587
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3588
3588
|
*/
|
|
3589
|
-
|
|
3589
|
+
splitIntoNewDocument: boolean;
|
|
3590
3590
|
|
|
3591
3591
|
/**
|
|
3592
3592
|
* Min. Gewicht pro Paket
|
|
@@ -3638,26 +3638,26 @@ export interface DeliveryMethod {
|
|
|
3638
3638
|
*/
|
|
3639
3639
|
defaultSizeUnit: UnitTypeReference;
|
|
3640
3640
|
|
|
3641
|
-
/**
|
|
3642
|
-
* Quelle für Paketgewicht
|
|
3643
|
-
*/
|
|
3644
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3645
|
-
|
|
3646
3641
|
/**
|
|
3647
3642
|
* translations
|
|
3648
3643
|
*/
|
|
3649
3644
|
translations: Array<DocumentTypeTerm>;
|
|
3650
3645
|
|
|
3651
3646
|
/**
|
|
3652
|
-
*
|
|
3647
|
+
* Quelle für Paketgewicht
|
|
3653
3648
|
*/
|
|
3654
|
-
|
|
3649
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3655
3650
|
|
|
3656
3651
|
/**
|
|
3657
3652
|
* Versand-Anbieter
|
|
3658
3653
|
*/
|
|
3659
3654
|
vdsCarrierId: number;
|
|
3660
3655
|
|
|
3656
|
+
/**
|
|
3657
|
+
* Gültige Ländercodes
|
|
3658
|
+
*/
|
|
3659
|
+
validCountryCodes: Array<string>;
|
|
3660
|
+
|
|
3661
3661
|
/**
|
|
3662
3662
|
* Standardgewichtseinheit
|
|
3663
3663
|
*/
|
|
@@ -3863,9 +3863,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3863
3863
|
deliveryQuantityPackages: number;
|
|
3864
3864
|
|
|
3865
3865
|
/**
|
|
3866
|
-
*
|
|
3866
|
+
* Steuerpflichtig oder steuerfrei
|
|
3867
3867
|
*/
|
|
3868
|
-
|
|
3868
|
+
taxable: boolean;
|
|
3869
3869
|
|
|
3870
3870
|
/**
|
|
3871
3871
|
* Leitweg-ID
|
|
@@ -3873,9 +3873,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3873
3873
|
buyerReference: string;
|
|
3874
3874
|
|
|
3875
3875
|
/**
|
|
3876
|
-
*
|
|
3876
|
+
* Bestellnummer aus Vorbeleg
|
|
3877
3877
|
*/
|
|
3878
|
-
|
|
3878
|
+
referencedOrderNumber: string;
|
|
3879
3879
|
|
|
3880
3880
|
/**
|
|
3881
3881
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4100,14 +4100,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4100
4100
|
stackProcessingType: OrderStackProcessingType;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
en16931Profile: EN16931Profile;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
dropShippingInvoiceApproved: boolean;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4125,14 +4125,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4125
4125
|
additionalInfo: DocumentAdditionalInfo;
|
|
4126
4126
|
|
|
4127
4127
|
/**
|
|
4128
|
-
*
|
|
4128
|
+
* Bestelldatum
|
|
4129
4129
|
*/
|
|
4130
|
-
|
|
4130
|
+
orderedOn: ScriptingDate;
|
|
4131
4131
|
|
|
4132
4132
|
/**
|
|
4133
|
-
*
|
|
4133
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4134
4134
|
*/
|
|
4135
|
-
|
|
4135
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4136
4136
|
|
|
4137
4137
|
/**
|
|
4138
4138
|
* MetaInformations for this Object
|
|
@@ -4490,14 +4490,14 @@ export interface DocumentAddress {
|
|
|
4490
4490
|
postOfficeBox: string;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
|
-
*
|
|
4493
|
+
* country code IsoAlpha3
|
|
4494
4494
|
*/
|
|
4495
|
-
|
|
4495
|
+
countryCode: string;
|
|
4496
4496
|
|
|
4497
4497
|
/**
|
|
4498
|
-
*
|
|
4498
|
+
* Street
|
|
4499
4499
|
*/
|
|
4500
|
-
|
|
4500
|
+
street: string;
|
|
4501
4501
|
|
|
4502
4502
|
/**
|
|
4503
4503
|
* Unique identifier of the Object
|
|
@@ -4944,14 +4944,14 @@ export interface DocumentLine {
|
|
|
4944
4944
|
number: string;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4947
|
+
* Referenz zur Kundenauftragszeile
|
|
4948
4948
|
*/
|
|
4949
|
-
|
|
4949
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
|
-
*
|
|
4952
|
+
* Gesamtbruttogewicht
|
|
4953
4953
|
*/
|
|
4954
|
-
|
|
4954
|
+
totalGrossWeight: number;
|
|
4955
4955
|
|
|
4956
4956
|
/**
|
|
4957
4957
|
* skontierbare Position?
|
|
@@ -5014,24 +5014,24 @@ export interface DocumentLine {
|
|
|
5014
5014
|
id: number;
|
|
5015
5015
|
|
|
5016
5016
|
/**
|
|
5017
|
-
*
|
|
5017
|
+
* Externe Referenz zum VDS-Paket
|
|
5018
5018
|
*/
|
|
5019
|
-
|
|
5019
|
+
externalReferenceVds: string;
|
|
5020
5020
|
|
|
5021
5021
|
/**
|
|
5022
|
-
*
|
|
5022
|
+
* Preis pro Einheit in Basiswährung
|
|
5023
5023
|
*/
|
|
5024
|
-
|
|
5024
|
+
basePrice: number;
|
|
5025
5025
|
|
|
5026
5026
|
/**
|
|
5027
|
-
*
|
|
5027
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5028
5028
|
*/
|
|
5029
|
-
|
|
5029
|
+
positionOfArticleLine: number;
|
|
5030
5030
|
|
|
5031
5031
|
/**
|
|
5032
|
-
*
|
|
5032
|
+
* Serientyp
|
|
5033
5033
|
*/
|
|
5034
|
-
|
|
5034
|
+
serialType: ArticleSerialType;
|
|
5035
5035
|
|
|
5036
5036
|
/**
|
|
5037
5037
|
* MetaInformations for this Object
|
|
@@ -6078,14 +6078,14 @@ export interface DocumentRef {
|
|
|
6078
6078
|
export interface DocumentShippingCost {
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Die Versandkosten
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
costs: number;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
|
-
*
|
|
6086
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6087
6087
|
*/
|
|
6088
|
-
|
|
6088
|
+
manualCosts: boolean;
|
|
6089
6089
|
|
|
6090
6090
|
/**
|
|
6091
6091
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6330,14 +6330,14 @@ export interface DocumentType {
|
|
|
6330
6330
|
labels: Array<DocumentTypeLabel>;
|
|
6331
6331
|
|
|
6332
6332
|
/**
|
|
6333
|
-
*
|
|
6333
|
+
* nächste Belegnummer
|
|
6334
6334
|
*/
|
|
6335
|
-
|
|
6335
|
+
nextNumber: string;
|
|
6336
6336
|
|
|
6337
6337
|
/**
|
|
6338
|
-
*
|
|
6338
|
+
* Zählerkreis
|
|
6339
6339
|
*/
|
|
6340
|
-
|
|
6340
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6341
6341
|
|
|
6342
6342
|
/**
|
|
6343
6343
|
* Sortierung
|
|
@@ -7053,14 +7053,14 @@ export interface PaymentMethod {
|
|
|
7053
7053
|
daysToAddForFollowup: number;
|
|
7054
7054
|
|
|
7055
7055
|
/**
|
|
7056
|
-
*
|
|
7056
|
+
* external Payment Id
|
|
7057
7057
|
*/
|
|
7058
|
-
|
|
7058
|
+
externalPaymentId: string;
|
|
7059
7059
|
|
|
7060
7060
|
/**
|
|
7061
|
-
*
|
|
7061
|
+
* Die Business Transaction
|
|
7062
7062
|
*/
|
|
7063
|
-
|
|
7063
|
+
businessTransaction: ApiObjectReference;
|
|
7064
7064
|
|
|
7065
7065
|
/**
|
|
7066
7066
|
* Unique identifier of the Object
|
|
@@ -7817,9 +7817,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7817
7817
|
maxOrderValue: number;
|
|
7818
7818
|
|
|
7819
7819
|
/**
|
|
7820
|
-
*
|
|
7820
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7821
7821
|
*/
|
|
7822
|
-
|
|
7822
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7823
7823
|
|
|
7824
7824
|
/**
|
|
7825
7825
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -7827,9 +7827,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7827
7827
|
maxOrderCount: number;
|
|
7828
7828
|
|
|
7829
7829
|
/**
|
|
7830
|
-
*
|
|
7830
|
+
* Nur vollständig lieferbare Positionen
|
|
7831
7831
|
*/
|
|
7832
|
-
|
|
7832
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7833
7833
|
|
|
7834
7834
|
/**
|
|
7835
7835
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7889,20 +7889,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7889
7889
|
*/
|
|
7890
7890
|
printPicklist: boolean;
|
|
7891
7891
|
|
|
7892
|
-
/**
|
|
7893
|
-
* Maximale Anzahl an Positionen einer Pickliste
|
|
7894
|
-
*/
|
|
7895
|
-
maxPicklistLineCount: number;
|
|
7896
|
-
|
|
7897
7892
|
/**
|
|
7898
7893
|
* Die zu verwendende Pickwagengruppe
|
|
7899
7894
|
*/
|
|
7900
7895
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7901
7896
|
|
|
7902
7897
|
/**
|
|
7903
|
-
*
|
|
7898
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
7904
7899
|
*/
|
|
7905
|
-
|
|
7900
|
+
maxPicklistLineCount: number;
|
|
7906
7901
|
|
|
7907
7902
|
/**
|
|
7908
7903
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -7915,15 +7910,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7915
7910
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7916
7911
|
|
|
7917
7912
|
/**
|
|
7918
|
-
*
|
|
7913
|
+
* Lagerplätze vorgeben
|
|
7919
7914
|
*/
|
|
7920
|
-
|
|
7915
|
+
specifyStorageBins: boolean;
|
|
7921
7916
|
|
|
7922
7917
|
/**
|
|
7923
7918
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7924
7919
|
*/
|
|
7925
7920
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
7926
7921
|
|
|
7922
|
+
/**
|
|
7923
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7924
|
+
*/
|
|
7925
|
+
sortByRoutePosition: boolean;
|
|
7926
|
+
|
|
7927
7927
|
/**
|
|
7928
7928
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
7929
7929
|
*/
|
|
@@ -7968,14 +7968,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7968
7968
|
alwaysShowDeliveryMethod: boolean;
|
|
7969
7969
|
|
|
7970
7970
|
/**
|
|
7971
|
-
*
|
|
7971
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7972
7972
|
*/
|
|
7973
|
-
|
|
7973
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7974
7974
|
|
|
7975
7975
|
/**
|
|
7976
|
-
*
|
|
7976
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7977
7977
|
*/
|
|
7978
|
-
|
|
7978
|
+
autoPrintDeliveryDocument: boolean;
|
|
7979
7979
|
|
|
7980
7980
|
/**
|
|
7981
7981
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7988,14 +7988,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7988
7988
|
useDigitalPicklist: boolean;
|
|
7989
7989
|
|
|
7990
7990
|
/**
|
|
7991
|
-
*
|
|
7991
|
+
* Sammelbestätigung erlauben
|
|
7992
7992
|
*/
|
|
7993
|
-
|
|
7993
|
+
allowFullConfirmation: boolean;
|
|
7994
7994
|
|
|
7995
7995
|
/**
|
|
7996
|
-
*
|
|
7996
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7997
7997
|
*/
|
|
7998
|
-
|
|
7998
|
+
allowPickingOfServiceArticles: boolean;
|
|
7999
7999
|
|
|
8000
8000
|
/**
|
|
8001
8001
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -8008,14 +8008,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8008
8008
|
scanPickTrolleyBoxToConfirmPickedArticle: 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
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8017
8017
|
*/
|
|
8018
|
-
|
|
8018
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8019
8019
|
|
|
8020
8020
|
/**
|
|
8021
8021
|
* Zielmengen in Masken verstecken?
|
|
@@ -8249,14 +8249,14 @@ export interface ProductArticleRef {
|
|
|
8249
8249
|
export interface ProductDiscount {
|
|
8250
8250
|
|
|
8251
8251
|
/**
|
|
8252
|
-
*
|
|
8252
|
+
* Kundengruppe
|
|
8253
8253
|
*/
|
|
8254
|
-
|
|
8254
|
+
customerGroupRef: ApiObjectReference;
|
|
8255
8255
|
|
|
8256
8256
|
/**
|
|
8257
|
-
*
|
|
8257
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8258
8258
|
*/
|
|
8259
|
-
|
|
8259
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8260
8260
|
|
|
8261
8261
|
/**
|
|
8262
8262
|
* Lieferantengruppe
|
|
@@ -8279,14 +8279,14 @@ export interface ProductDiscount {
|
|
|
8279
8279
|
validFrom: ScriptingDate;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* Bestimmt die Art des Rabatts
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
modifierType: PriceModifierType;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
|
-
*
|
|
8287
|
+
* Warengruppe
|
|
8288
8288
|
*/
|
|
8289
|
-
|
|
8289
|
+
productGroupRef: ApiObjectReference;
|
|
8290
8290
|
|
|
8291
8291
|
/**
|
|
8292
8292
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8458,14 +8458,14 @@ export interface ProductMainGroup {
|
|
|
8458
8458
|
export interface ProductPrice {
|
|
8459
8459
|
|
|
8460
8460
|
/**
|
|
8461
|
-
*
|
|
8461
|
+
* Kundengruppe
|
|
8462
8462
|
*/
|
|
8463
|
-
|
|
8463
|
+
customerGroupRef: ApiObjectReference;
|
|
8464
8464
|
|
|
8465
8465
|
/**
|
|
8466
|
-
*
|
|
8466
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8467
8467
|
*/
|
|
8468
|
-
|
|
8468
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8469
8469
|
|
|
8470
8470
|
/**
|
|
8471
8471
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -8692,14 +8692,14 @@ export interface RequestDocument {
|
|
|
8692
8692
|
contractDetail: DocumentContractDetail;
|
|
8693
8693
|
|
|
8694
8694
|
/**
|
|
8695
|
-
*
|
|
8695
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8696
8696
|
*/
|
|
8697
|
-
|
|
8697
|
+
supplierAccountId: number;
|
|
8698
8698
|
|
|
8699
8699
|
/**
|
|
8700
|
-
*
|
|
8700
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8701
8701
|
*/
|
|
8702
|
-
|
|
8702
|
+
paymentTermId: number;
|
|
8703
8703
|
|
|
8704
8704
|
/**
|
|
8705
8705
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -9760,14 +9760,14 @@ export interface ShelfFile {
|
|
|
9760
9760
|
version: number;
|
|
9761
9761
|
|
|
9762
9762
|
/**
|
|
9763
|
-
*
|
|
9763
|
+
* meta data
|
|
9764
9764
|
*/
|
|
9765
|
-
|
|
9765
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9766
9766
|
|
|
9767
9767
|
/**
|
|
9768
|
-
*
|
|
9768
|
+
* current reference of this file in our storage
|
|
9769
9769
|
*/
|
|
9770
|
-
|
|
9770
|
+
storageHandle: string;
|
|
9771
9771
|
|
|
9772
9772
|
/**
|
|
9773
9773
|
* MetaInformations for this Object
|