@vario-software/types 2026.22.1 → 2026.22.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 +44 -44
- package/scripting/types.d.ts +310 -310
package/scripting/types.d.ts
CHANGED
|
@@ -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
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -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
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1208,26 +1208,26 @@ export interface Article {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
|
-
/**
|
|
1212
|
-
* Frei kommissionierbar
|
|
1213
|
-
*/
|
|
1214
|
-
freelyPickable: boolean;
|
|
1215
|
-
|
|
1216
1211
|
/**
|
|
1217
1212
|
* description custom data
|
|
1218
1213
|
*/
|
|
1219
1214
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* Frei kommissionierbar
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
freelyPickable: boolean;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1228
1223
|
*/
|
|
1229
1224
|
taxLiabilityReversed: boolean;
|
|
1230
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
|
+
*/
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
|
+
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
1233
1233
|
*/
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* gross sales prices
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
grossSalesPrice: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1299,9 +1299,9 @@ export interface Article {
|
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* rabattierbarer Artikel?
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
discountable: boolean;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
1307
|
* Kontingentartikel
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* alternative name of this product
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
alternativeName: string;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
commissionable: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* Nur manuelle Produktion
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
onlyManualFabrication: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1508,11 +1508,6 @@ export interface ArticleCustomer {
|
|
|
1508
1508
|
*/
|
|
1509
1509
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1510
1510
|
|
|
1511
|
-
/**
|
|
1512
|
-
* Referenced Article
|
|
1513
|
-
*/
|
|
1514
|
-
articleId: number;
|
|
1515
|
-
|
|
1516
1511
|
/**
|
|
1517
1512
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1518
1513
|
*/
|
|
@@ -1523,6 +1518,11 @@ export interface ArticleCustomer {
|
|
|
1523
1518
|
*/
|
|
1524
1519
|
productPrices: Array<ProductPrice>;
|
|
1525
1520
|
|
|
1521
|
+
/**
|
|
1522
|
+
* Referenced Article
|
|
1523
|
+
*/
|
|
1524
|
+
articleId: number;
|
|
1525
|
+
|
|
1526
1526
|
/**
|
|
1527
1527
|
* Aktiv?
|
|
1528
1528
|
*/
|
|
@@ -1670,14 +1670,14 @@ export interface ArticleListing {
|
|
|
1670
1670
|
proposedLowestPriceGross: number;
|
|
1671
1671
|
|
|
1672
1672
|
/**
|
|
1673
|
-
* der
|
|
1673
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1674
1674
|
*/
|
|
1675
|
-
|
|
1675
|
+
customLowestPriceGross: number;
|
|
1676
1676
|
|
|
1677
1677
|
/**
|
|
1678
|
-
*
|
|
1678
|
+
* der Sales Channel
|
|
1679
1679
|
*/
|
|
1680
|
-
|
|
1680
|
+
salesChannelRef: ApiObjectReference;
|
|
1681
1681
|
|
|
1682
1682
|
/**
|
|
1683
1683
|
* soll der Artikel gelistet werden
|
|
@@ -1887,6 +1887,11 @@ export interface ArticleStorage {
|
|
|
1887
1887
|
*/
|
|
1888
1888
|
quantityInStock: number;
|
|
1889
1889
|
|
|
1890
|
+
/**
|
|
1891
|
+
* Meldebestand
|
|
1892
|
+
*/
|
|
1893
|
+
reorderPoint: number;
|
|
1894
|
+
|
|
1890
1895
|
/**
|
|
1891
1896
|
* Bestellte Menge
|
|
1892
1897
|
*/
|
|
@@ -1897,11 +1902,6 @@ export interface ArticleStorage {
|
|
|
1897
1902
|
*/
|
|
1898
1903
|
quantityInPicking: number;
|
|
1899
1904
|
|
|
1900
|
-
/**
|
|
1901
|
-
* Meldebestand
|
|
1902
|
-
*/
|
|
1903
|
-
reorderPoint: number;
|
|
1904
|
-
|
|
1905
1905
|
/**
|
|
1906
1906
|
* Nachschub auf
|
|
1907
1907
|
*/
|
|
@@ -1953,14 +1953,14 @@ export interface ArticleStorage {
|
|
|
1953
1953
|
storageRef: ApiObjectReference;
|
|
1954
1954
|
|
|
1955
1955
|
/**
|
|
1956
|
-
*
|
|
1956
|
+
* Vorgabe-Lagerplätze
|
|
1957
1957
|
*/
|
|
1958
|
-
|
|
1958
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
|
-
*
|
|
1961
|
+
* Sollbestand
|
|
1962
1962
|
*/
|
|
1963
|
-
|
|
1963
|
+
targetStock: number;
|
|
1964
1964
|
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Aktuelle Menge in Produktion
|
|
@@ -1980,11 +1980,6 @@ export interface ArticleStorage {
|
|
|
1980
1980
|
|
|
1981
1981
|
export interface ArticleSupplier {
|
|
1982
1982
|
|
|
1983
|
-
/**
|
|
1984
|
-
* Lieferanten-Meldebestand
|
|
1985
|
-
*/
|
|
1986
|
-
supplierReportingStock: number;
|
|
1987
|
-
|
|
1988
1983
|
/**
|
|
1989
1984
|
* Anzeigename des Accounts
|
|
1990
1985
|
*/
|
|
@@ -1996,15 +1991,20 @@ export interface ArticleSupplier {
|
|
|
1996
1991
|
useSupplierArticleDescription: boolean;
|
|
1997
1992
|
|
|
1998
1993
|
/**
|
|
1999
|
-
*
|
|
1994
|
+
* Lieferanten-Meldebestand
|
|
2000
1995
|
*/
|
|
2001
|
-
|
|
1996
|
+
supplierReportingStock: number;
|
|
2002
1997
|
|
|
2003
1998
|
/**
|
|
2004
1999
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2005
2000
|
*/
|
|
2006
2001
|
useSupplierArticleIdentifier: boolean;
|
|
2007
2002
|
|
|
2003
|
+
/**
|
|
2004
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2005
|
+
*/
|
|
2006
|
+
deliveryTime: number;
|
|
2007
|
+
|
|
2008
2008
|
/**
|
|
2009
2009
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2010
2010
|
*/
|
|
@@ -2050,26 +2050,26 @@ export interface ArticleSupplier {
|
|
|
2050
2050
|
*/
|
|
2051
2051
|
info: MetaInfo;
|
|
2052
2052
|
|
|
2053
|
-
/**
|
|
2054
|
-
* Referenced Article name
|
|
2055
|
-
*/
|
|
2056
|
-
articleName: string;
|
|
2057
|
-
|
|
2058
2053
|
/**
|
|
2059
2054
|
* Verpackungseinheit
|
|
2060
2055
|
*/
|
|
2061
2056
|
packagingUnit: number;
|
|
2062
2057
|
|
|
2063
2058
|
/**
|
|
2064
|
-
* Referenced Article
|
|
2059
|
+
* Referenced Article name
|
|
2065
2060
|
*/
|
|
2066
|
-
|
|
2061
|
+
articleName: string;
|
|
2067
2062
|
|
|
2068
2063
|
/**
|
|
2069
2064
|
* Lieferanten-Preise
|
|
2070
2065
|
*/
|
|
2071
2066
|
productPrices: Array<ProductPrice>;
|
|
2072
2067
|
|
|
2068
|
+
/**
|
|
2069
|
+
* Referenced Article
|
|
2070
|
+
*/
|
|
2071
|
+
articleId: number;
|
|
2072
|
+
|
|
2073
2073
|
/**
|
|
2074
2074
|
* Aktiv?
|
|
2075
2075
|
*/
|
|
@@ -2106,14 +2106,14 @@ export interface ArticleSupplier {
|
|
|
2106
2106
|
defaultNetPrice: number;
|
|
2107
2107
|
|
|
2108
2108
|
/**
|
|
2109
|
-
*
|
|
2109
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2110
2110
|
*/
|
|
2111
|
-
|
|
2111
|
+
orderOnComponentBase: boolean;
|
|
2112
2112
|
|
|
2113
2113
|
/**
|
|
2114
|
-
*
|
|
2114
|
+
* Einkaufseinheit
|
|
2115
2115
|
*/
|
|
2116
|
-
|
|
2116
|
+
purchaseUnit: number;
|
|
2117
2117
|
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Referenced Supplier-Account
|
|
@@ -2328,14 +2328,14 @@ export interface CountryReference {
|
|
|
2328
2328
|
export interface CreateNewDocumentRequest {
|
|
2329
2329
|
|
|
2330
2330
|
/**
|
|
2331
|
-
* Belegart
|
|
2331
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2332
2332
|
*/
|
|
2333
|
-
|
|
2333
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
*
|
|
2336
|
+
* Belegart
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
documentTypeLabel: string;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
2341
|
* Details zum Beleg
|
|
@@ -2560,14 +2560,14 @@ export interface CrmActivityType {
|
|
|
2560
2560
|
export interface CrmChecklistItem {
|
|
2561
2561
|
|
|
2562
2562
|
/**
|
|
2563
|
-
*
|
|
2563
|
+
* Ist das Element "angehakt"?
|
|
2564
2564
|
*/
|
|
2565
|
-
|
|
2565
|
+
checked: boolean;
|
|
2566
2566
|
|
|
2567
2567
|
/**
|
|
2568
|
-
*
|
|
2568
|
+
* Text des Checklisten-Elements
|
|
2569
2569
|
*/
|
|
2570
|
-
|
|
2570
|
+
memo: string;
|
|
2571
2571
|
|
|
2572
2572
|
/**
|
|
2573
2573
|
* Unique identifier of the Object
|
|
@@ -2959,14 +2959,14 @@ export interface CrmProject {
|
|
|
2959
2959
|
priorityRef: ApiObjectReference;
|
|
2960
2960
|
|
|
2961
2961
|
/**
|
|
2962
|
-
*
|
|
2962
|
+
* Projektleiter vom Auftragnehmer
|
|
2963
2963
|
*/
|
|
2964
|
-
|
|
2964
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2965
2965
|
|
|
2966
2966
|
/**
|
|
2967
|
-
*
|
|
2967
|
+
* Phase
|
|
2968
2968
|
*/
|
|
2969
|
-
|
|
2969
|
+
phaseRef: ApiObjectReference;
|
|
2970
2970
|
|
|
2971
2971
|
/**
|
|
2972
2972
|
* Aufgaben-Nummer
|
|
@@ -3214,14 +3214,14 @@ export interface CrmState {
|
|
|
3214
3214
|
readyToBill: boolean;
|
|
3215
3215
|
|
|
3216
3216
|
/**
|
|
3217
|
-
*
|
|
3217
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3218
3218
|
*/
|
|
3219
|
-
|
|
3219
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3220
3220
|
|
|
3221
3221
|
/**
|
|
3222
|
-
*
|
|
3222
|
+
* Handelt es sich um einen Anfang-Status
|
|
3223
3223
|
*/
|
|
3224
|
-
|
|
3224
|
+
startState: boolean;
|
|
3225
3225
|
|
|
3226
3226
|
/**
|
|
3227
3227
|
* MetaInformations for this Object
|
|
@@ -3269,11 +3269,6 @@ export interface CrmSubType {
|
|
|
3269
3269
|
|
|
3270
3270
|
export interface CrmTask {
|
|
3271
3271
|
|
|
3272
|
-
/**
|
|
3273
|
-
* Liste von Erinnerungen
|
|
3274
|
-
*/
|
|
3275
|
-
reminders: Array<CrmReminder>;
|
|
3276
|
-
|
|
3277
3272
|
/**
|
|
3278
3273
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3279
3274
|
*/
|
|
@@ -3284,6 +3279,11 @@ export interface CrmTask {
|
|
|
3284
3279
|
*/
|
|
3285
3280
|
customerOfferRef: DocumentRef;
|
|
3286
3281
|
|
|
3282
|
+
/**
|
|
3283
|
+
* Liste von Erinnerungen
|
|
3284
|
+
*/
|
|
3285
|
+
reminders: Array<CrmReminder>;
|
|
3286
|
+
|
|
3287
3287
|
/**
|
|
3288
3288
|
* Notizen
|
|
3289
3289
|
*/
|
|
@@ -3465,14 +3465,14 @@ export interface CrmTask {
|
|
|
3465
3465
|
assignedUserRef: ApiObjectReference;
|
|
3466
3466
|
|
|
3467
3467
|
/**
|
|
3468
|
-
*
|
|
3468
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3469
3469
|
*/
|
|
3470
|
-
|
|
3470
|
+
externalRecordedTimes: number;
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Beauftragte Zeit in Sekunden
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
effortCommissioned: number;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3953,14 +3953,14 @@ export interface DeliveryMethod {
|
|
|
3953
3953
|
defaultSizeUnit: UnitTypeReference;
|
|
3954
3954
|
|
|
3955
3955
|
/**
|
|
3956
|
-
*
|
|
3956
|
+
* Quelle für Paketgewicht
|
|
3957
3957
|
*/
|
|
3958
|
-
|
|
3958
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3959
3959
|
|
|
3960
3960
|
/**
|
|
3961
|
-
*
|
|
3961
|
+
* translations
|
|
3962
3962
|
*/
|
|
3963
|
-
|
|
3963
|
+
translations: Array<DocumentTypeTerm>;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
3966
|
* Versand-Anbieter
|
|
@@ -4051,14 +4051,14 @@ export interface DeliveryTerm {
|
|
|
4051
4051
|
version: number;
|
|
4052
4052
|
|
|
4053
4053
|
/**
|
|
4054
|
-
*
|
|
4054
|
+
* information, how the shipping charges should be calculated
|
|
4055
4055
|
*/
|
|
4056
|
-
|
|
4056
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4057
4057
|
|
|
4058
4058
|
/**
|
|
4059
|
-
*
|
|
4059
|
+
* translations
|
|
4060
4060
|
*/
|
|
4061
|
-
|
|
4061
|
+
translations: Array<DocumentTypeTerm>;
|
|
4062
4062
|
|
|
4063
4063
|
/**
|
|
4064
4064
|
* Lieferarten
|
|
@@ -4237,14 +4237,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4237
4237
|
accountId: number;
|
|
4238
4238
|
|
|
4239
4239
|
/**
|
|
4240
|
-
* Länderkennzeichen
|
|
4240
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4241
4241
|
*/
|
|
4242
|
-
|
|
4242
|
+
sourceCountryCode: string;
|
|
4243
4243
|
|
|
4244
4244
|
/**
|
|
4245
|
-
* Länderkennzeichen
|
|
4245
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4246
4246
|
*/
|
|
4247
|
-
|
|
4247
|
+
performanceCountryCode: string;
|
|
4248
4248
|
|
|
4249
4249
|
/**
|
|
4250
4250
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4339,14 +4339,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4339
4339
|
contractDetail: DocumentContractDetail;
|
|
4340
4340
|
|
|
4341
4341
|
/**
|
|
4342
|
-
*
|
|
4342
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4343
4343
|
*/
|
|
4344
|
-
|
|
4344
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4345
4345
|
|
|
4346
4346
|
/**
|
|
4347
|
-
*
|
|
4347
|
+
* Zahlungsplan vorhanden?
|
|
4348
4348
|
*/
|
|
4349
|
-
|
|
4349
|
+
paymentPlan: boolean;
|
|
4350
4350
|
|
|
4351
4351
|
/**
|
|
4352
4352
|
* Produktionsdetails
|
|
@@ -4374,14 +4374,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4374
4374
|
processedByWorkflow: boolean;
|
|
4375
4375
|
|
|
4376
4376
|
/**
|
|
4377
|
-
*
|
|
4377
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4378
4378
|
*/
|
|
4379
|
-
|
|
4379
|
+
baseTotalDocumentPriceModifier: number;
|
|
4380
4380
|
|
|
4381
4381
|
/**
|
|
4382
|
-
*
|
|
4382
|
+
* Telefon an Versender übergeben
|
|
4383
4383
|
*/
|
|
4384
|
-
|
|
4384
|
+
forwardPhoneToShipper: boolean;
|
|
4385
4385
|
|
|
4386
4386
|
/**
|
|
4387
4387
|
* Liste der Belegtexte
|
|
@@ -4414,14 +4414,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4414
4414
|
performanceDate: ScriptingDate;
|
|
4415
4415
|
|
|
4416
4416
|
/**
|
|
4417
|
-
*
|
|
4417
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4418
4418
|
*/
|
|
4419
|
-
|
|
4419
|
+
dropShippingInvoiceApproved: boolean;
|
|
4420
4420
|
|
|
4421
4421
|
/**
|
|
4422
|
-
*
|
|
4422
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4423
4423
|
*/
|
|
4424
|
-
|
|
4424
|
+
en16931Profile: EN16931Profile;
|
|
4425
4425
|
|
|
4426
4426
|
/**
|
|
4427
4427
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4439,14 +4439,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4439
4439
|
additionalInfo: DocumentAdditionalInfo;
|
|
4440
4440
|
|
|
4441
4441
|
/**
|
|
4442
|
-
*
|
|
4442
|
+
* Bestelldatum
|
|
4443
4443
|
*/
|
|
4444
|
-
|
|
4444
|
+
orderedOn: ScriptingDate;
|
|
4445
4445
|
|
|
4446
4446
|
/**
|
|
4447
|
-
*
|
|
4447
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4448
4448
|
*/
|
|
4449
|
-
|
|
4449
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4450
4450
|
|
|
4451
4451
|
/**
|
|
4452
4452
|
* MetaInformations for this Object
|
|
@@ -4584,14 +4584,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4584
4584
|
customerNumber: string;
|
|
4585
4585
|
|
|
4586
4586
|
/**
|
|
4587
|
-
*
|
|
4587
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4588
4588
|
*/
|
|
4589
|
-
|
|
4589
|
+
taxIdentificationNumber: string;
|
|
4590
4590
|
|
|
4591
4591
|
/**
|
|
4592
|
-
*
|
|
4592
|
+
* Statusinstanz des Belegs
|
|
4593
4593
|
*/
|
|
4594
|
-
|
|
4594
|
+
documentState: DocumentTypeState;
|
|
4595
4595
|
|
|
4596
4596
|
/**
|
|
4597
4597
|
* Versandkostenpositionen
|
|
@@ -4599,9 +4599,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4599
4599
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4600
4600
|
|
|
4601
4601
|
/**
|
|
4602
|
-
* Rückgeld
|
|
4602
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4603
|
+
true wenn die Quittung ausbalanciert ist
|
|
4604
|
+
|
|
4603
4605
|
*/
|
|
4604
|
-
|
|
4606
|
+
posReceiptBalanced: boolean;
|
|
4605
4607
|
|
|
4606
4608
|
/**
|
|
4607
4609
|
* Referenz auf Lieferbedingung
|
|
@@ -4609,11 +4611,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4609
4611
|
deliveryTermRef: ApiObjectReference;
|
|
4610
4612
|
|
|
4611
4613
|
/**
|
|
4612
|
-
*
|
|
4613
|
-
true wenn die Quittung ausbalanciert ist
|
|
4614
|
-
|
|
4614
|
+
* Rückgeld
|
|
4615
4615
|
*/
|
|
4616
|
-
|
|
4616
|
+
posReceiptChangeAmount: number;
|
|
4617
4617
|
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Gesamtbruttogewicht
|
|
@@ -4646,14 +4646,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4646
4646
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4647
4647
|
|
|
4648
4648
|
/**
|
|
4649
|
-
*
|
|
4649
|
+
* Bestellt durch Ansprechpartner
|
|
4650
4650
|
*/
|
|
4651
|
-
|
|
4651
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4652
4652
|
|
|
4653
4653
|
/**
|
|
4654
|
-
*
|
|
4654
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4655
4655
|
*/
|
|
4656
|
-
|
|
4656
|
+
reportGroupRef: ApiObjectReference;
|
|
4657
4657
|
}
|
|
4658
4658
|
|
|
4659
4659
|
export interface DocumentAdditionalInfo {
|
|
@@ -4664,14 +4664,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4664
4664
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4665
4665
|
|
|
4666
4666
|
/**
|
|
4667
|
-
*
|
|
4667
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4668
4668
|
*/
|
|
4669
|
-
|
|
4669
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4670
4670
|
|
|
4671
4671
|
/**
|
|
4672
|
-
*
|
|
4672
|
+
* Herkunft der Sprache
|
|
4673
4673
|
*/
|
|
4674
|
-
|
|
4674
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4675
4675
|
|
|
4676
4676
|
/**
|
|
4677
4677
|
* Herkunft der Käufer-Referenz
|
|
@@ -5288,15 +5288,20 @@ export interface DocumentLine {
|
|
|
5288
5288
|
*/
|
|
5289
5289
|
baseTotalLinePrice: number;
|
|
5290
5290
|
|
|
5291
|
+
/**
|
|
5292
|
+
* Positionstyp
|
|
5293
|
+
*/
|
|
5294
|
+
lineType: DocumentLineType;
|
|
5295
|
+
|
|
5291
5296
|
/**
|
|
5292
5297
|
* FiBu-Buchung
|
|
5293
5298
|
*/
|
|
5294
5299
|
financeBooking: DocumentFinanceBooking;
|
|
5295
5300
|
|
|
5296
5301
|
/**
|
|
5297
|
-
*
|
|
5302
|
+
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
5298
5303
|
*/
|
|
5299
|
-
|
|
5304
|
+
totalLinePriceModifier: number;
|
|
5300
5305
|
|
|
5301
5306
|
/**
|
|
5302
5307
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5308,11 +5313,6 @@ export interface DocumentLine {
|
|
|
5308
5313
|
*/
|
|
5309
5314
|
supplierOrderLineIds: Array<number>;
|
|
5310
5315
|
|
|
5311
|
-
/**
|
|
5312
|
-
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
5313
|
-
*/
|
|
5314
|
-
totalLinePriceModifier: number;
|
|
5315
|
-
|
|
5316
5316
|
/**
|
|
5317
5317
|
* Vorgabe zu Streckengeschäft
|
|
5318
5318
|
*/
|
|
@@ -5328,6 +5328,11 @@ export interface DocumentLine {
|
|
|
5328
5328
|
*/
|
|
5329
5329
|
id: number;
|
|
5330
5330
|
|
|
5331
|
+
/**
|
|
5332
|
+
* Preis pro Einheit in Basiswährung
|
|
5333
|
+
*/
|
|
5334
|
+
basePrice: number;
|
|
5335
|
+
|
|
5331
5336
|
/**
|
|
5332
5337
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5333
5338
|
*/
|
|
@@ -5338,11 +5343,6 @@ export interface DocumentLine {
|
|
|
5338
5343
|
*/
|
|
5339
5344
|
externalReferenceVds: string;
|
|
5340
5345
|
|
|
5341
|
-
/**
|
|
5342
|
-
* Preis pro Einheit in Basiswährung
|
|
5343
|
-
*/
|
|
5344
|
-
basePrice: number;
|
|
5345
|
-
|
|
5346
5346
|
/**
|
|
5347
5347
|
* Serientyp
|
|
5348
5348
|
*/
|
|
@@ -5354,14 +5354,14 @@ export interface DocumentLine {
|
|
|
5354
5354
|
info: MetaInfo;
|
|
5355
5355
|
|
|
5356
5356
|
/**
|
|
5357
|
-
*
|
|
5357
|
+
* Steuerschema
|
|
5358
5358
|
*/
|
|
5359
|
-
|
|
5359
|
+
taxSchemaRef: ApiObjectReference;
|
|
5360
5360
|
|
|
5361
5361
|
/**
|
|
5362
|
-
*
|
|
5362
|
+
* Preiseinheit
|
|
5363
5363
|
*/
|
|
5364
|
-
|
|
5364
|
+
priceUnit: number;
|
|
5365
5365
|
|
|
5366
5366
|
/**
|
|
5367
5367
|
* Lieferart
|
|
@@ -5569,14 +5569,14 @@ export interface DocumentLine {
|
|
|
5569
5569
|
deliveryText: string;
|
|
5570
5570
|
|
|
5571
5571
|
/**
|
|
5572
|
-
*
|
|
5572
|
+
* Produktionsdetails
|
|
5573
5573
|
*/
|
|
5574
|
-
|
|
5574
|
+
fabricationDetail: DocumentLineFabricationDetail;
|
|
5575
5575
|
|
|
5576
5576
|
/**
|
|
5577
|
-
*
|
|
5577
|
+
* Vorgabewert für die Preiskalkulation
|
|
5578
5578
|
*/
|
|
5579
|
-
|
|
5579
|
+
presetPrice: number;
|
|
5580
5580
|
|
|
5581
5581
|
/**
|
|
5582
5582
|
* Freifelder
|
|
@@ -6033,14 +6033,14 @@ export interface DocumentLinePosDetail {
|
|
|
6033
6033
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6034
6034
|
|
|
6035
6035
|
/**
|
|
6036
|
-
*
|
|
6036
|
+
* Typ der Einlage/Ausgabe
|
|
6037
6037
|
*/
|
|
6038
|
-
|
|
6038
|
+
depositExpenseTypeId: number;
|
|
6039
6039
|
|
|
6040
6040
|
/**
|
|
6041
|
-
*
|
|
6041
|
+
* Status der externen Zahlung
|
|
6042
6042
|
*/
|
|
6043
|
-
|
|
6043
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6044
6044
|
|
|
6045
6045
|
/**
|
|
6046
6046
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6078,14 +6078,14 @@ export interface DocumentLinePosDetail {
|
|
|
6078
6078
|
balanceBeforeWithdrawal: number;
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Typ der Position
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
posLineType: PosLineType;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
|
-
*
|
|
6086
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6087
6087
|
*/
|
|
6088
|
-
|
|
6088
|
+
externalPaymentId: string;
|
|
6089
6089
|
|
|
6090
6090
|
/**
|
|
6091
6091
|
* Unique identifier of the Object
|
|
@@ -6298,14 +6298,14 @@ export interface DocumentPosPayment {
|
|
|
6298
6298
|
version: number;
|
|
6299
6299
|
|
|
6300
6300
|
/**
|
|
6301
|
-
*
|
|
6301
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6302
6302
|
*/
|
|
6303
|
-
|
|
6303
|
+
withdrawalAmount: number;
|
|
6304
6304
|
|
|
6305
6305
|
/**
|
|
6306
|
-
*
|
|
6306
|
+
* Zahlungsart
|
|
6307
6307
|
*/
|
|
6308
|
-
|
|
6308
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6309
6309
|
|
|
6310
6310
|
/**
|
|
6311
6311
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6318,14 +6318,14 @@ export interface DocumentPosPayment {
|
|
|
6318
6318
|
balanceBeforeWithdrawal: number;
|
|
6319
6319
|
|
|
6320
6320
|
/**
|
|
6321
|
-
*
|
|
6321
|
+
* Typ der Position
|
|
6322
6322
|
*/
|
|
6323
|
-
|
|
6323
|
+
posLineType: PosLineType;
|
|
6324
6324
|
|
|
6325
6325
|
/**
|
|
6326
|
-
*
|
|
6326
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6327
6327
|
*/
|
|
6328
|
-
|
|
6328
|
+
externalPaymentId: string;
|
|
6329
6329
|
|
|
6330
6330
|
/**
|
|
6331
6331
|
* Unique identifier of the Object
|
|
@@ -6888,14 +6888,14 @@ export const enum DropShippingPolicy {
|
|
|
6888
6888
|
export interface DummySerialNumberStockTransferApi {
|
|
6889
6889
|
|
|
6890
6890
|
/**
|
|
6891
|
-
*
|
|
6891
|
+
* Ziel-Lager
|
|
6892
6892
|
*/
|
|
6893
|
-
|
|
6893
|
+
targetStorageId: number;
|
|
6894
6894
|
|
|
6895
6895
|
/**
|
|
6896
|
-
*
|
|
6896
|
+
* Seriennummer
|
|
6897
6897
|
*/
|
|
6898
|
-
|
|
6898
|
+
serialNumberId: number;
|
|
6899
6899
|
|
|
6900
6900
|
/**
|
|
6901
6901
|
* Bemerkung
|
|
@@ -6908,14 +6908,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6908
6908
|
bookDate: ScriptingDate;
|
|
6909
6909
|
|
|
6910
6910
|
/**
|
|
6911
|
-
*
|
|
6911
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6912
6912
|
*/
|
|
6913
|
-
|
|
6913
|
+
targetExpiryDate: ScriptingDate;
|
|
6914
6914
|
|
|
6915
6915
|
/**
|
|
6916
|
-
*
|
|
6916
|
+
* Die gültige Seriennummer
|
|
6917
6917
|
*/
|
|
6918
|
-
|
|
6918
|
+
targetSerialNumber: string;
|
|
6919
6919
|
|
|
6920
6920
|
/**
|
|
6921
6921
|
* Quell-Lagerplatz
|
|
@@ -7887,14 +7887,14 @@ export interface Picklist {
|
|
|
7887
7887
|
export interface PicklistLine {
|
|
7888
7888
|
|
|
7889
7889
|
/**
|
|
7890
|
-
*
|
|
7890
|
+
* Gesammelte Menge der Position
|
|
7891
7891
|
*/
|
|
7892
|
-
|
|
7892
|
+
quantityCollected: number;
|
|
7893
7893
|
|
|
7894
7894
|
/**
|
|
7895
|
-
*
|
|
7895
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7896
7896
|
*/
|
|
7897
|
-
|
|
7897
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7898
7898
|
|
|
7899
7899
|
/**
|
|
7900
7900
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7932,14 +7932,14 @@ export interface PicklistLine {
|
|
|
7932
7932
|
version: number;
|
|
7933
7933
|
|
|
7934
7934
|
/**
|
|
7935
|
-
*
|
|
7935
|
+
* Lageranzeigename
|
|
7936
7936
|
*/
|
|
7937
|
-
|
|
7937
|
+
storageDisplayName: string;
|
|
7938
7938
|
|
|
7939
7939
|
/**
|
|
7940
|
-
*
|
|
7940
|
+
* ID der Quell-Dokumentposition
|
|
7941
7941
|
*/
|
|
7942
|
-
|
|
7942
|
+
sourceDocumentLineId: number;
|
|
7943
7943
|
|
|
7944
7944
|
/**
|
|
7945
7945
|
* Artikelnummer
|
|
@@ -7947,14 +7947,14 @@ export interface PicklistLine {
|
|
|
7947
7947
|
articleNumber: string;
|
|
7948
7948
|
|
|
7949
7949
|
/**
|
|
7950
|
-
*
|
|
7950
|
+
* Art der Position
|
|
7951
7951
|
*/
|
|
7952
|
-
|
|
7952
|
+
lineType: PicklistLineType;
|
|
7953
7953
|
|
|
7954
7954
|
/**
|
|
7955
|
-
*
|
|
7955
|
+
* Lagernummer
|
|
7956
7956
|
*/
|
|
7957
|
-
|
|
7957
|
+
storageNumber: string;
|
|
7958
7958
|
|
|
7959
7959
|
/**
|
|
7960
7960
|
* ID der Ziel-Dokumentposition
|
|
@@ -8093,14 +8093,14 @@ export interface PicklistLineComponent {
|
|
|
8093
8093
|
targetDocumentLineComponentId: number;
|
|
8094
8094
|
|
|
8095
8095
|
/**
|
|
8096
|
-
*
|
|
8096
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8097
8097
|
*/
|
|
8098
|
-
|
|
8098
|
+
quantityPerAssemblyGroup: number;
|
|
8099
8099
|
|
|
8100
8100
|
/**
|
|
8101
|
-
*
|
|
8101
|
+
* abweichende Artikelbezeichnung
|
|
8102
8102
|
*/
|
|
8103
|
-
|
|
8103
|
+
articleAlternativeName: string;
|
|
8104
8104
|
|
|
8105
8105
|
/**
|
|
8106
8106
|
* Verpackte Menge der Position
|
|
@@ -8267,19 +8267,19 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8267
8267
|
maxArticleCountPerOrder: number;
|
|
8268
8268
|
|
|
8269
8269
|
/**
|
|
8270
|
-
*
|
|
8270
|
+
* Alternative Selektion in VQL
|
|
8271
8271
|
*/
|
|
8272
|
-
|
|
8272
|
+
alternativeSelectionInVql: string;
|
|
8273
8273
|
|
|
8274
8274
|
/**
|
|
8275
|
-
*
|
|
8275
|
+
* Maximaler Auftragswert
|
|
8276
8276
|
*/
|
|
8277
|
-
|
|
8277
|
+
maxOrderValue: number;
|
|
8278
8278
|
|
|
8279
8279
|
/**
|
|
8280
|
-
* Nur
|
|
8280
|
+
* Nur vollständig lieferbare Positionen
|
|
8281
8281
|
*/
|
|
8282
|
-
|
|
8282
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
8283
8283
|
|
|
8284
8284
|
/**
|
|
8285
8285
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -8287,9 +8287,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8287
8287
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8288
8288
|
|
|
8289
8289
|
/**
|
|
8290
|
-
* Nur
|
|
8290
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8291
8291
|
*/
|
|
8292
|
-
|
|
8292
|
+
maxOrderCount: number;
|
|
8293
8293
|
|
|
8294
8294
|
/**
|
|
8295
8295
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -8365,14 +8365,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8365
8365
|
specifyStorageBins: boolean;
|
|
8366
8366
|
|
|
8367
8367
|
/**
|
|
8368
|
-
*
|
|
8368
|
+
* Der zu verwendende Pickwagen
|
|
8369
8369
|
*/
|
|
8370
|
-
|
|
8370
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8371
8371
|
|
|
8372
8372
|
/**
|
|
8373
|
-
*
|
|
8373
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8374
8374
|
*/
|
|
8375
|
-
|
|
8375
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8376
8376
|
|
|
8377
8377
|
/**
|
|
8378
8378
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8428,14 +8428,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8428
8428
|
alwaysShowDeliveryMethod: boolean;
|
|
8429
8429
|
|
|
8430
8430
|
/**
|
|
8431
|
-
*
|
|
8431
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8432
8432
|
*/
|
|
8433
|
-
|
|
8433
|
+
autoPrintDeliveryDocument: boolean;
|
|
8434
8434
|
|
|
8435
8435
|
/**
|
|
8436
|
-
*
|
|
8436
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8437
8437
|
*/
|
|
8438
|
-
|
|
8438
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8439
8439
|
|
|
8440
8440
|
/**
|
|
8441
8441
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8443,9 +8443,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8443
8443
|
showShippingFormOnPickingFinish: boolean;
|
|
8444
8444
|
|
|
8445
8445
|
/**
|
|
8446
|
-
*
|
|
8446
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8447
8447
|
*/
|
|
8448
|
-
|
|
8448
|
+
useDigitalPicklist: boolean;
|
|
8449
8449
|
|
|
8450
8450
|
/**
|
|
8451
8451
|
* Sammelbestätigung erlauben
|
|
@@ -8453,9 +8453,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8453
8453
|
allowFullConfirmation: boolean;
|
|
8454
8454
|
|
|
8455
8455
|
/**
|
|
8456
|
-
*
|
|
8456
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8457
8457
|
*/
|
|
8458
|
-
|
|
8458
|
+
allowPickingOfServiceArticles: boolean;
|
|
8459
8459
|
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8730,14 +8730,14 @@ export interface ProductArticleRef {
|
|
|
8730
8730
|
export interface ProductDiscount {
|
|
8731
8731
|
|
|
8732
8732
|
/**
|
|
8733
|
-
*
|
|
8733
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8734
8734
|
*/
|
|
8735
|
-
|
|
8735
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8736
8736
|
|
|
8737
8737
|
/**
|
|
8738
|
-
*
|
|
8738
|
+
* Kundengruppe
|
|
8739
8739
|
*/
|
|
8740
|
-
|
|
8740
|
+
customerGroupRef: ApiObjectReference;
|
|
8741
8741
|
|
|
8742
8742
|
/**
|
|
8743
8743
|
* Lieferantengruppe
|
|
@@ -8815,14 +8815,14 @@ export interface ProductDiscount {
|
|
|
8815
8815
|
modifierValueType: ValueType;
|
|
8816
8816
|
|
|
8817
8817
|
/**
|
|
8818
|
-
*
|
|
8818
|
+
* Name des Rabatts
|
|
8819
8819
|
*/
|
|
8820
|
-
|
|
8820
|
+
modifierName: string;
|
|
8821
8821
|
|
|
8822
8822
|
/**
|
|
8823
|
-
*
|
|
8823
|
+
* Account, für den der Rabatt gültig ist
|
|
8824
8824
|
*/
|
|
8825
|
-
|
|
8825
|
+
accountRef: ApiObjectReference;
|
|
8826
8826
|
|
|
8827
8827
|
/**
|
|
8828
8828
|
* Unique identifier of the Object
|
|
@@ -8939,14 +8939,14 @@ export interface ProductMainGroup {
|
|
|
8939
8939
|
export interface ProductPrice {
|
|
8940
8940
|
|
|
8941
8941
|
/**
|
|
8942
|
-
*
|
|
8942
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8943
8943
|
*/
|
|
8944
|
-
|
|
8944
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8945
8945
|
|
|
8946
8946
|
/**
|
|
8947
|
-
*
|
|
8947
|
+
* Kundengruppe
|
|
8948
8948
|
*/
|
|
8949
|
-
|
|
8949
|
+
customerGroupRef: ApiObjectReference;
|
|
8950
8950
|
|
|
8951
8951
|
/**
|
|
8952
8952
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -9212,26 +9212,26 @@ export interface RequestDocument {
|
|
|
9212
9212
|
*/
|
|
9213
9213
|
lines: Array<RequestDocumentLine>;
|
|
9214
9214
|
|
|
9215
|
-
/**
|
|
9216
|
-
* ID der Kasse (bei POS)
|
|
9217
|
-
*/
|
|
9218
|
-
posRegisterId: number;
|
|
9219
|
-
|
|
9220
9215
|
/**
|
|
9221
9216
|
* Die Vertragsdetails
|
|
9222
9217
|
*/
|
|
9223
9218
|
contractDetail: DocumentContractDetail;
|
|
9224
9219
|
|
|
9225
9220
|
/**
|
|
9226
|
-
*
|
|
9221
|
+
* ID der Kasse (bei POS)
|
|
9227
9222
|
*/
|
|
9228
|
-
|
|
9223
|
+
posRegisterId: number;
|
|
9229
9224
|
|
|
9230
9225
|
/**
|
|
9231
9226
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9232
9227
|
*/
|
|
9233
9228
|
paymentTermId: number;
|
|
9234
9229
|
|
|
9230
|
+
/**
|
|
9231
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9232
|
+
*/
|
|
9233
|
+
supplierAccountId: number;
|
|
9234
|
+
|
|
9235
9235
|
/**
|
|
9236
9236
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
9237
9237
|
*/
|
|
@@ -9273,14 +9273,14 @@ export interface RequestDocument {
|
|
|
9273
9273
|
accountId: number;
|
|
9274
9274
|
|
|
9275
9275
|
/**
|
|
9276
|
-
*
|
|
9276
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
9277
9277
|
*/
|
|
9278
|
-
|
|
9278
|
+
processedByPicklistProcessing: boolean;
|
|
9279
9279
|
|
|
9280
9280
|
/**
|
|
9281
|
-
*
|
|
9281
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
9282
9282
|
*/
|
|
9283
|
-
|
|
9283
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
9284
9284
|
|
|
9285
9285
|
/**
|
|
9286
9286
|
* Die Rabatte des Beleges
|
|
@@ -9341,14 +9341,14 @@ export interface RequestDocumentLine {
|
|
|
9341
9341
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9342
9342
|
|
|
9343
9343
|
/**
|
|
9344
|
-
*
|
|
9344
|
+
* Typ dieser Position
|
|
9345
9345
|
*/
|
|
9346
|
-
|
|
9346
|
+
lineType: DocumentLineType;
|
|
9347
9347
|
|
|
9348
9348
|
/**
|
|
9349
|
-
*
|
|
9349
|
+
* FiBu-Angaben
|
|
9350
9350
|
*/
|
|
9351
|
-
|
|
9351
|
+
financeBooking: DocumentFinanceBooking;
|
|
9352
9352
|
|
|
9353
9353
|
/**
|
|
9354
9354
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9445,6 +9445,11 @@ export interface RequestDocumentLine {
|
|
|
9445
9445
|
*/
|
|
9446
9446
|
name: string;
|
|
9447
9447
|
|
|
9448
|
+
/**
|
|
9449
|
+
* ID der Quell-Belegposition
|
|
9450
|
+
*/
|
|
9451
|
+
sourceLineId: number;
|
|
9452
|
+
|
|
9448
9453
|
/**
|
|
9449
9454
|
* Für interne Zwecke: Externe Artikelnummer
|
|
9450
9455
|
*/
|
|
@@ -9455,11 +9460,6 @@ export interface RequestDocumentLine {
|
|
|
9455
9460
|
*/
|
|
9456
9461
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9457
9462
|
|
|
9458
|
-
/**
|
|
9459
|
-
* ID der Quell-Belegposition
|
|
9460
|
-
*/
|
|
9461
|
-
sourceLineId: number;
|
|
9462
|
-
|
|
9463
9463
|
/**
|
|
9464
9464
|
* (optional) Preis des Artikels dieser Position
|
|
9465
9465
|
*/
|
|
@@ -9620,14 +9620,14 @@ export interface SalesAgent {
|
|
|
9620
9620
|
note: string;
|
|
9621
9621
|
|
|
9622
9622
|
/**
|
|
9623
|
-
*
|
|
9623
|
+
* reference to the delivery method
|
|
9624
9624
|
*/
|
|
9625
|
-
|
|
9625
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9626
9626
|
|
|
9627
9627
|
/**
|
|
9628
|
-
*
|
|
9628
|
+
* is sales agent taxable
|
|
9629
9629
|
*/
|
|
9630
|
-
|
|
9630
|
+
taxable: boolean;
|
|
9631
9631
|
|
|
9632
9632
|
/**
|
|
9633
9633
|
* Freifelder
|
|
@@ -9968,14 +9968,14 @@ export interface SequencerConfiguration {
|
|
|
9968
9968
|
key: string;
|
|
9969
9969
|
|
|
9970
9970
|
/**
|
|
9971
|
-
*
|
|
9971
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9972
9972
|
*/
|
|
9973
|
-
|
|
9973
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9974
9974
|
|
|
9975
9975
|
/**
|
|
9976
|
-
*
|
|
9976
|
+
* Contains details about the sequencer configuration
|
|
9977
9977
|
*/
|
|
9978
|
-
|
|
9978
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9979
9979
|
|
|
9980
9980
|
/**
|
|
9981
9981
|
* MetaInformations for this Object
|
|
@@ -10087,14 +10087,14 @@ export interface ShelfDocument {
|
|
|
10087
10087
|
tags: Array<TagDto>;
|
|
10088
10088
|
|
|
10089
10089
|
/**
|
|
10090
|
-
*
|
|
10090
|
+
* share informations
|
|
10091
10091
|
*/
|
|
10092
|
-
|
|
10092
|
+
shares: Array<ShelfShare>;
|
|
10093
10093
|
|
|
10094
10094
|
/**
|
|
10095
|
-
*
|
|
10095
|
+
* Mehrsprachige Bezeichnungen
|
|
10096
10096
|
*/
|
|
10097
|
-
|
|
10097
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10098
10098
|
|
|
10099
10099
|
/**
|
|
10100
10100
|
* Automatische Löschung ab
|
|
@@ -10170,14 +10170,14 @@ export interface ShelfDocumentAttribution {
|
|
|
10170
10170
|
shelfResourceId: number;
|
|
10171
10171
|
|
|
10172
10172
|
/**
|
|
10173
|
-
*
|
|
10173
|
+
* id of the referenced object
|
|
10174
10174
|
*/
|
|
10175
|
-
|
|
10175
|
+
refId: number;
|
|
10176
10176
|
|
|
10177
10177
|
/**
|
|
10178
|
-
*
|
|
10178
|
+
* Verfügbare Transformationen zum Bild
|
|
10179
10179
|
*/
|
|
10180
|
-
|
|
10180
|
+
transformationKeys: Array<string>;
|
|
10181
10181
|
|
|
10182
10182
|
/**
|
|
10183
10183
|
* Unique identifier of the Object
|
|
@@ -10226,14 +10226,14 @@ export interface ShelfDocumentType {
|
|
|
10226
10226
|
active: boolean;
|
|
10227
10227
|
|
|
10228
10228
|
/**
|
|
10229
|
-
*
|
|
10229
|
+
* label of type
|
|
10230
10230
|
*/
|
|
10231
|
-
|
|
10231
|
+
label: string;
|
|
10232
10232
|
|
|
10233
10233
|
/**
|
|
10234
|
-
*
|
|
10234
|
+
* access level or reading
|
|
10235
10235
|
*/
|
|
10236
|
-
|
|
10236
|
+
accessLevelRead: number;
|
|
10237
10237
|
|
|
10238
10238
|
/**
|
|
10239
10239
|
* storage rule for revisions
|
|
@@ -10279,14 +10279,14 @@ export interface ShelfFile {
|
|
|
10279
10279
|
subFiles: Array<SubFileInfo>;
|
|
10280
10280
|
|
|
10281
10281
|
/**
|
|
10282
|
-
*
|
|
10282
|
+
* fileSize
|
|
10283
10283
|
*/
|
|
10284
|
-
|
|
10284
|
+
fileSize: number;
|
|
10285
10285
|
|
|
10286
10286
|
/**
|
|
10287
|
-
*
|
|
10287
|
+
* revision number of this file
|
|
10288
10288
|
*/
|
|
10289
|
-
|
|
10289
|
+
revisionNumber: number;
|
|
10290
10290
|
|
|
10291
10291
|
/**
|
|
10292
10292
|
* file-extension of this entry
|
|
@@ -10365,14 +10365,14 @@ export interface ShelfShare {
|
|
|
10365
10365
|
publishState: ShelfSharePublishState;
|
|
10366
10366
|
|
|
10367
10367
|
/**
|
|
10368
|
-
*
|
|
10368
|
+
* Freifelder
|
|
10369
10369
|
*/
|
|
10370
|
-
|
|
10370
|
+
custom: EavShelfshare;
|
|
10371
10371
|
|
|
10372
10372
|
/**
|
|
10373
|
-
*
|
|
10373
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
10374
10374
|
*/
|
|
10375
|
-
|
|
10375
|
+
publicUrlDurationInMinutes: number;
|
|
10376
10376
|
|
|
10377
10377
|
/**
|
|
10378
10378
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10584,14 +10584,14 @@ export interface StockMovementManualApi {
|
|
|
10584
10584
|
export interface StockTransferApi {
|
|
10585
10585
|
|
|
10586
10586
|
/**
|
|
10587
|
-
*
|
|
10587
|
+
* Ziel-Lager
|
|
10588
10588
|
*/
|
|
10589
|
-
|
|
10589
|
+
targetStorageId: number;
|
|
10590
10590
|
|
|
10591
10591
|
/**
|
|
10592
|
-
*
|
|
10592
|
+
* Seriennummer
|
|
10593
10593
|
*/
|
|
10594
|
-
|
|
10594
|
+
serialNumberId: number;
|
|
10595
10595
|
|
|
10596
10596
|
/**
|
|
10597
10597
|
* Bemerkung
|
|
@@ -10801,14 +10801,14 @@ export interface Supplier {
|
|
|
10801
10801
|
info: MetaInfo;
|
|
10802
10802
|
|
|
10803
10803
|
/**
|
|
10804
|
-
*
|
|
10804
|
+
* reference to the delivery method
|
|
10805
10805
|
*/
|
|
10806
|
-
|
|
10806
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10807
10807
|
|
|
10808
10808
|
/**
|
|
10809
|
-
*
|
|
10809
|
+
* Lieferantengruppe
|
|
10810
10810
|
*/
|
|
10811
|
-
|
|
10811
|
+
supplierGroupRef: ApiObjectReference;
|
|
10812
10812
|
|
|
10813
10813
|
/**
|
|
10814
10814
|
* tax able or tax free
|
|
@@ -10866,14 +10866,14 @@ export interface Supplier {
|
|
|
10866
10866
|
performanceCountryCode: string;
|
|
10867
10867
|
|
|
10868
10868
|
/**
|
|
10869
|
-
*
|
|
10869
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10870
10870
|
*/
|
|
10871
|
-
|
|
10871
|
+
defaultDeliveryTime: number;
|
|
10872
10872
|
|
|
10873
10873
|
/**
|
|
10874
|
-
*
|
|
10874
|
+
* reference to the payment method
|
|
10875
10875
|
*/
|
|
10876
|
-
|
|
10876
|
+
paymentMethodRef: ApiObjectReference;
|
|
10877
10877
|
|
|
10878
10878
|
/**
|
|
10879
10879
|
* currency code IsoAlpha3
|
|
@@ -10894,14 +10894,14 @@ export interface TagDto {
|
|
|
10894
10894
|
editColor: string;
|
|
10895
10895
|
|
|
10896
10896
|
/**
|
|
10897
|
-
* Farbe
|
|
10897
|
+
* Farbe in Such-GUI
|
|
10898
10898
|
*/
|
|
10899
|
-
|
|
10899
|
+
searchColor: string;
|
|
10900
10900
|
|
|
10901
10901
|
/**
|
|
10902
|
-
* Farbe
|
|
10902
|
+
* Farbe für die Anzeige des Tags
|
|
10903
10903
|
*/
|
|
10904
|
-
|
|
10904
|
+
color: string;
|
|
10905
10905
|
|
|
10906
10906
|
/**
|
|
10907
10907
|
* Beschriftung des Tags
|
|
@@ -11233,14 +11233,14 @@ export interface User {
|
|
|
11233
11233
|
version: number;
|
|
11234
11234
|
|
|
11235
11235
|
/**
|
|
11236
|
-
*
|
|
11236
|
+
* first-name
|
|
11237
11237
|
*/
|
|
11238
|
-
|
|
11238
|
+
firstName: string;
|
|
11239
11239
|
|
|
11240
11240
|
/**
|
|
11241
|
-
*
|
|
11241
|
+
* is the email verified
|
|
11242
11242
|
*/
|
|
11243
|
-
|
|
11243
|
+
emailVerified: boolean;
|
|
11244
11244
|
|
|
11245
11245
|
/**
|
|
11246
11246
|
* email-address
|
|
@@ -11443,14 +11443,14 @@ export interface VariantValue {
|
|
|
11443
11443
|
version: number;
|
|
11444
11444
|
|
|
11445
11445
|
/**
|
|
11446
|
-
*
|
|
11446
|
+
* Variantenattribut
|
|
11447
11447
|
*/
|
|
11448
|
-
|
|
11448
|
+
attributeRef: ApiObjectReference;
|
|
11449
11449
|
|
|
11450
11450
|
/**
|
|
11451
|
-
*
|
|
11451
|
+
* Mehrsprachige Bezeichnungen
|
|
11452
11452
|
*/
|
|
11453
|
-
|
|
11453
|
+
labels: Array<VariantDescription>;
|
|
11454
11454
|
|
|
11455
11455
|
/**
|
|
11456
11456
|
* MetaInformations for this Object
|