@vario-software/types 2026.32.6 → 2026.32.7
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 +26 -26
- package/scripting/types.d.ts +462 -462
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
accountZoneId: AccountZoneId;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* first contact type for this account
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -144,14 +144,14 @@ export interface Account {
|
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Kostenstelle
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
costCenter: string;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Summe Forderungen
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
receivablesSum: number;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* companyLegal for this account
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Standard-Ansprechpartner
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
defaultPerson: AccountPerson;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* Leitweg-ID
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
buyerReference: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* GLN/ILN as location identifier for this address
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
globalLocationNumber: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* abweichende Zahlungsart
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* Contacts
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
contacts: Array<Contact>;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* abweichende Zahlungsbedingungen
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -494,26 +494,26 @@ export interface AccountBankdetail {
|
|
|
494
494
|
*/
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
|
-
/**
|
|
498
|
-
* city of the bank
|
|
499
|
-
*/
|
|
500
|
-
bankCity: string;
|
|
501
|
-
|
|
502
497
|
/**
|
|
503
498
|
* Hauptbankverbindung für
|
|
504
499
|
*/
|
|
505
500
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
501
|
|
|
507
502
|
/**
|
|
508
|
-
*
|
|
503
|
+
* city of the bank
|
|
509
504
|
*/
|
|
510
|
-
|
|
505
|
+
bankCity: string;
|
|
511
506
|
|
|
512
507
|
/**
|
|
513
508
|
* Is default bank?
|
|
514
509
|
*/
|
|
515
510
|
defaultBank: boolean;
|
|
516
511
|
|
|
512
|
+
/**
|
|
513
|
+
* origin type
|
|
514
|
+
*/
|
|
515
|
+
originType: AccountBankdetail$OriginType;
|
|
516
|
+
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
519
519
|
*/
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Kreditlimit
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
maximalLoan: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
payablesSum: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1015,20 +1015,25 @@ export interface Article {
|
|
|
1015
1015
|
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* is this product purchasable
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
purchasable: boolean;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* Product custom data
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Durchschnittl. EKP (Startwert)
|
|
1034
|
+
*/
|
|
1035
|
+
initialAvgPurchasePrice: number;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* is this product sellable without any quantity at the stock
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Durchschnittl. EKP (Startwert)
|
|
1044
|
-
*/
|
|
1045
|
-
initialAvgPurchasePrice: number;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1070,14 +1070,14 @@ export interface Article {
|
|
|
1070
1070
|
warrantyInMonths: number;
|
|
1071
1071
|
|
|
1072
1072
|
/**
|
|
1073
|
-
*
|
|
1073
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1074
1074
|
*/
|
|
1075
|
-
|
|
1075
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
|
-
*
|
|
1078
|
+
* weight and size w.o. packaging
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
netMetric: Article$Metric;
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
1083
|
* unique product number
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* Verkaufseinheit
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
salesUnit: number;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* weight and size inc. packaging
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
grossMetric: Article$Metric;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1214,20 +1214,15 @@ export interface Article {
|
|
|
1214
1214
|
*/
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
|
-
/**
|
|
1218
|
-
* Country code
|
|
1219
|
-
*/
|
|
1220
|
-
countryOfOriginRef: CountryReference;
|
|
1221
|
-
|
|
1222
1217
|
/**
|
|
1223
1218
|
* Arbeitseinheit in Minuten
|
|
1224
1219
|
*/
|
|
1225
1220
|
workUnitInMinutes: number;
|
|
1226
1221
|
|
|
1227
1222
|
/**
|
|
1228
|
-
*
|
|
1223
|
+
* Country code
|
|
1229
1224
|
*/
|
|
1230
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1231
1226
|
|
|
1232
1227
|
/**
|
|
1233
1228
|
* Frei kommissionierbar
|
|
@@ -1235,9 +1230,14 @@ export interface Article {
|
|
|
1235
1230
|
freelyPickable: boolean;
|
|
1236
1231
|
|
|
1237
1232
|
/**
|
|
1238
|
-
*
|
|
1233
|
+
* description custom data
|
|
1239
1234
|
*/
|
|
1240
|
-
|
|
1235
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1236
|
+
|
|
1237
|
+
/**
|
|
1238
|
+
* Notiz
|
|
1239
|
+
*/
|
|
1240
|
+
note: string;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
1243
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
@@ -1245,9 +1245,9 @@ export interface Article {
|
|
|
1245
1245
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
taxLiabilityReversed: boolean;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1284,6 +1284,11 @@ export interface Article {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
|
+
/**
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
|
+
*/
|
|
1290
|
+
defaultFabricationCost: number;
|
|
1291
|
+
|
|
1287
1292
|
/**
|
|
1288
1293
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1294
|
*/
|
|
@@ -1294,11 +1299,6 @@ export interface Article {
|
|
|
1294
1299
|
*/
|
|
1295
1300
|
grossSalesPrice: number;
|
|
1296
1301
|
|
|
1297
|
-
/**
|
|
1298
|
-
* Vorgabe Herstellungskosten
|
|
1299
|
-
*/
|
|
1300
|
-
defaultFabricationCost: number;
|
|
1301
|
-
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -1320,9 +1320,9 @@ export interface Article {
|
|
|
1320
1320
|
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
*
|
|
1323
|
+
* alternative name of this product
|
|
1324
1324
|
*/
|
|
1325
|
-
|
|
1325
|
+
alternativeName: string;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
1328
|
* Kontingentartikel
|
|
@@ -1330,9 +1330,9 @@ export interface Article {
|
|
|
1330
1330
|
contingentArticleRef: ApiObjectReference;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* rabattierbarer Artikel?
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
discountable: boolean;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1370,14 +1370,14 @@ export interface Article {
|
|
|
1370
1370
|
custom: EavArticle;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
|
-
*
|
|
1373
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1374
1374
|
*/
|
|
1375
|
-
|
|
1375
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1376
1376
|
|
|
1377
1377
|
/**
|
|
1378
|
-
*
|
|
1378
|
+
* Art des Haltbarkeitsdatums
|
|
1379
1379
|
*/
|
|
1380
|
-
|
|
1380
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Hersteller
|
|
@@ -1405,14 +1405,14 @@ export interface Article {
|
|
|
1405
1405
|
listed: boolean;
|
|
1406
1406
|
|
|
1407
1407
|
/**
|
|
1408
|
-
*
|
|
1408
|
+
* Nur manuelle Produktion
|
|
1409
1409
|
*/
|
|
1410
|
-
|
|
1410
|
+
onlyManualFabrication: boolean;
|
|
1411
1411
|
|
|
1412
1412
|
/**
|
|
1413
|
-
*
|
|
1413
|
+
* provisionsberechtiger Artikel?
|
|
1414
1414
|
*/
|
|
1415
|
-
|
|
1415
|
+
commissionable: boolean;
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* weight unit
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
weightUnit: UnitTypeReference;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* size
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
sizeZ: number;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1562,11 +1562,6 @@ export interface ArticleCustomer {
|
|
|
1562
1562
|
*/
|
|
1563
1563
|
useDeviatingArticleIdentifier: boolean;
|
|
1564
1564
|
|
|
1565
|
-
/**
|
|
1566
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1567
|
-
*/
|
|
1568
|
-
useDeviatingArticleDescription: boolean;
|
|
1569
|
-
|
|
1570
1565
|
/**
|
|
1571
1566
|
* Kunden-Preise
|
|
1572
1567
|
*/
|
|
@@ -1577,6 +1572,11 @@ export interface ArticleCustomer {
|
|
|
1577
1572
|
*/
|
|
1578
1573
|
articleId: number;
|
|
1579
1574
|
|
|
1575
|
+
/**
|
|
1576
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1577
|
+
*/
|
|
1578
|
+
useDeviatingArticleDescription: boolean;
|
|
1579
|
+
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Aktiv?
|
|
1582
1582
|
*/
|
|
@@ -1613,9 +1613,9 @@ export interface ArticleCustomer {
|
|
|
1613
1613
|
defaultGrossPrice: number;
|
|
1614
1614
|
|
|
1615
1615
|
/**
|
|
1616
|
-
*
|
|
1616
|
+
* Artikelnummer
|
|
1617
1617
|
*/
|
|
1618
|
-
|
|
1618
|
+
articleNumber: string;
|
|
1619
1619
|
|
|
1620
1620
|
/**
|
|
1621
1621
|
* Abweichende Produktnummer
|
|
@@ -1623,9 +1623,9 @@ export interface ArticleCustomer {
|
|
|
1623
1623
|
deviatingArticleNumber: string;
|
|
1624
1624
|
|
|
1625
1625
|
/**
|
|
1626
|
-
*
|
|
1626
|
+
* Art der Preisermittlung
|
|
1627
1627
|
*/
|
|
1628
|
-
|
|
1628
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1629
1629
|
|
|
1630
1630
|
/**
|
|
1631
1631
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -1775,14 +1775,14 @@ export interface ArticleListing {
|
|
|
1775
1775
|
alternativeName: WithDefaults<String>;
|
|
1776
1776
|
|
|
1777
1777
|
/**
|
|
1778
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1778
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1779
1779
|
*/
|
|
1780
|
-
|
|
1780
|
+
proposedLowestPriceNet: number;
|
|
1781
1781
|
|
|
1782
1782
|
/**
|
|
1783
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1783
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1784
1784
|
*/
|
|
1785
|
-
|
|
1785
|
+
customLowestPriceNet: number;
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* der aktuelle listing stand
|
|
@@ -1948,14 +1948,14 @@ export const enum ArticleSerialType {
|
|
|
1948
1948
|
export interface ArticleStorage {
|
|
1949
1949
|
|
|
1950
1950
|
/**
|
|
1951
|
-
*
|
|
1951
|
+
* Bestand im Lager
|
|
1952
1952
|
*/
|
|
1953
|
-
|
|
1953
|
+
quantityInStock: number;
|
|
1954
1954
|
|
|
1955
1955
|
/**
|
|
1956
|
-
*
|
|
1956
|
+
* Nachschub ab
|
|
1957
1957
|
*/
|
|
1958
|
-
|
|
1958
|
+
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
1961
|
* Bestellte Menge
|
|
@@ -2023,14 +2023,14 @@ export interface ArticleStorage {
|
|
|
2023
2023
|
storageRef: ApiObjectReference;
|
|
2024
2024
|
|
|
2025
2025
|
/**
|
|
2026
|
-
*
|
|
2026
|
+
* Vorgabe-Lagerplätze
|
|
2027
2027
|
*/
|
|
2028
|
-
|
|
2028
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
2029
2029
|
|
|
2030
2030
|
/**
|
|
2031
|
-
*
|
|
2031
|
+
* Sollbestand
|
|
2032
2032
|
*/
|
|
2033
|
-
|
|
2033
|
+
targetStock: number;
|
|
2034
2034
|
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Aktuelle Menge in Produktion
|
|
@@ -2051,14 +2051,14 @@ export interface ArticleStorage {
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
2053
|
/**
|
|
2054
|
-
*
|
|
2054
|
+
* Lieferanten-Meldebestand
|
|
2055
2055
|
*/
|
|
2056
|
-
|
|
2056
|
+
supplierReportingStock: number;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
|
-
*
|
|
2059
|
+
* Anzeigename des Accounts
|
|
2060
2060
|
*/
|
|
2061
|
-
|
|
2061
|
+
accountDisplayName: string;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
2064
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
@@ -2161,14 +2161,14 @@ export interface ArticleSupplier {
|
|
|
2161
2161
|
dropShippingAllowed: boolean;
|
|
2162
2162
|
|
|
2163
2163
|
/**
|
|
2164
|
-
* Abweichende
|
|
2164
|
+
* Abweichende Produktbeschreibung
|
|
2165
2165
|
*/
|
|
2166
|
-
|
|
2166
|
+
supplierArticleDescription: string;
|
|
2167
2167
|
|
|
2168
2168
|
/**
|
|
2169
|
-
* Abweichende
|
|
2169
|
+
* Abweichende Produktbezeichnung
|
|
2170
2170
|
*/
|
|
2171
|
-
|
|
2171
|
+
supplierArticleName: string;
|
|
2172
2172
|
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Standardpreis Netto
|
|
@@ -2181,14 +2181,14 @@ export interface ArticleSupplier {
|
|
|
2181
2181
|
purchaseUnit: number;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Referenced Supplier-Account
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
accountId: number;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
|
-
*
|
|
2189
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2190
2190
|
*/
|
|
2191
|
-
|
|
2191
|
+
orderOnComponentBase: boolean;
|
|
2192
2192
|
|
|
2193
2193
|
/**
|
|
2194
2194
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
system: boolean;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* tatsächliche Startzeit
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
startDateTime: ScriptingDateTime;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -2793,14 +2793,14 @@ export interface CrmActivityType {
|
|
|
2793
2793
|
export interface CrmChecklistItem {
|
|
2794
2794
|
|
|
2795
2795
|
/**
|
|
2796
|
-
*
|
|
2796
|
+
* Ist das Element "angehakt"?
|
|
2797
2797
|
*/
|
|
2798
|
-
|
|
2798
|
+
checked: boolean;
|
|
2799
2799
|
|
|
2800
2800
|
/**
|
|
2801
|
-
*
|
|
2801
|
+
* Text des Checklisten-Elements
|
|
2802
2802
|
*/
|
|
2803
|
-
|
|
2803
|
+
memo: string;
|
|
2804
2804
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* Unique identifier of the Object
|
|
@@ -3267,14 +3267,14 @@ export interface CrmProject {
|
|
|
3267
3267
|
info: MetaInfo;
|
|
3268
3268
|
|
|
3269
3269
|
/**
|
|
3270
|
-
*
|
|
3270
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3271
3271
|
*/
|
|
3272
|
-
|
|
3272
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3273
3273
|
|
|
3274
3274
|
/**
|
|
3275
|
-
*
|
|
3275
|
+
* Projektleiter vom Auftraggeber
|
|
3276
3276
|
*/
|
|
3277
|
-
|
|
3277
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3278
3278
|
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Übergeordnete CRM-Objekte
|
|
@@ -3365,14 +3365,14 @@ export const enum CrmReferenceType {
|
|
|
3365
3365
|
export interface CrmReminder {
|
|
3366
3366
|
|
|
3367
3367
|
/**
|
|
3368
|
-
*
|
|
3368
|
+
* Notiz zur Erinnerung
|
|
3369
3369
|
*/
|
|
3370
|
-
|
|
3370
|
+
note: string;
|
|
3371
3371
|
|
|
3372
3372
|
/**
|
|
3373
|
-
*
|
|
3373
|
+
* ID des CRM Objekts
|
|
3374
3374
|
*/
|
|
3375
|
-
|
|
3375
|
+
crmId: number;
|
|
3376
3376
|
|
|
3377
3377
|
/**
|
|
3378
3378
|
* Wer soll erinnert werden
|
|
@@ -3519,14 +3519,14 @@ export interface CrmSubType {
|
|
|
3519
3519
|
export interface CrmTask {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* Angebot
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
customerOfferRef: DocumentRef;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Liste von Erinnerungen
|
|
@@ -3724,14 +3724,14 @@ export interface CrmTask {
|
|
|
3724
3724
|
parentRefs: Array<CrmObjectRef>;
|
|
3725
3725
|
|
|
3726
3726
|
/**
|
|
3727
|
-
*
|
|
3727
|
+
* Beauftragte Zeit in Sekunden
|
|
3728
3728
|
*/
|
|
3729
|
-
|
|
3729
|
+
effortCommissioned: number;
|
|
3730
3730
|
|
|
3731
3731
|
/**
|
|
3732
|
-
*
|
|
3732
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3733
3733
|
*/
|
|
3734
|
-
|
|
3734
|
+
externalRecordedTimes: number;
|
|
3735
3735
|
|
|
3736
3736
|
/**
|
|
3737
3737
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3903,14 +3903,14 @@ export interface CurrencyReference {
|
|
|
3903
3903
|
export interface Customer {
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
|
-
*
|
|
3906
|
+
* Option für die Stapelverarbeitung
|
|
3907
3907
|
*/
|
|
3908
|
-
|
|
3908
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
*
|
|
3911
|
+
* reference to customer group
|
|
3912
3912
|
*/
|
|
3913
|
-
|
|
3913
|
+
customerGroupRef: ApiObjectReference;
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
3916
3916
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3928,14 +3928,14 @@ export interface Customer {
|
|
|
3928
3928
|
dueDate: ScriptingDate;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
*
|
|
3931
|
+
* Maximal mögliche Lieferungen
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
maxDeliveries: number;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
|
-
*
|
|
3936
|
+
* collective billable
|
|
3937
3937
|
*/
|
|
3938
|
-
|
|
3938
|
+
collectiveBillable: boolean;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
collectiveInvoiceManually: boolean;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* reference to product price group
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the Object
|
|
@@ -3988,14 +3988,14 @@ export interface Customer {
|
|
|
3988
3988
|
info: MetaInfo;
|
|
3989
3989
|
|
|
3990
3990
|
/**
|
|
3991
|
-
*
|
|
3991
|
+
* tax able or tax free
|
|
3992
3992
|
*/
|
|
3993
|
-
|
|
3993
|
+
taxable: boolean;
|
|
3994
3994
|
|
|
3995
3995
|
/**
|
|
3996
|
-
*
|
|
3996
|
+
* reference to the delivery method
|
|
3997
3997
|
*/
|
|
3998
|
-
|
|
3998
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3999
3999
|
|
|
4000
4000
|
/**
|
|
4001
4001
|
* active true/false
|
|
@@ -4147,14 +4147,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4147
4147
|
export interface DeliveryMethod {
|
|
4148
4148
|
|
|
4149
4149
|
/**
|
|
4150
|
-
*
|
|
4150
|
+
* E-Mail an Versender übergeben
|
|
4151
4151
|
*/
|
|
4152
|
-
|
|
4152
|
+
forwardEmailToShipper: boolean;
|
|
4153
4153
|
|
|
4154
4154
|
/**
|
|
4155
|
-
*
|
|
4155
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4156
4156
|
*/
|
|
4157
|
-
|
|
4157
|
+
splitIntoNewDocument: boolean;
|
|
4158
4158
|
|
|
4159
4159
|
/**
|
|
4160
4160
|
* Min. Gewicht pro Paket
|
|
@@ -4206,26 +4206,26 @@ export interface DeliveryMethod {
|
|
|
4206
4206
|
*/
|
|
4207
4207
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4208
|
|
|
4209
|
-
/**
|
|
4210
|
-
* Quelle für Paketgewicht
|
|
4211
|
-
*/
|
|
4212
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4213
|
-
|
|
4214
4209
|
/**
|
|
4215
4210
|
* translations
|
|
4216
4211
|
*/
|
|
4217
4212
|
translations: Array<DocumentTypeTerm>;
|
|
4218
4213
|
|
|
4219
4214
|
/**
|
|
4220
|
-
*
|
|
4215
|
+
* Quelle für Paketgewicht
|
|
4221
4216
|
*/
|
|
4222
|
-
|
|
4217
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4223
4218
|
|
|
4224
4219
|
/**
|
|
4225
4220
|
* Versand-Anbieter
|
|
4226
4221
|
*/
|
|
4227
4222
|
vdsCarrierId: number;
|
|
4228
4223
|
|
|
4224
|
+
/**
|
|
4225
|
+
* Gültige Ländercodes
|
|
4226
|
+
*/
|
|
4227
|
+
validCountryCodes: Array<string>;
|
|
4228
|
+
|
|
4229
4229
|
/**
|
|
4230
4230
|
* Standardgewichtseinheit
|
|
4231
4231
|
*/
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* free shipping net value
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
freeShippingNetValue: number;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* Versandkostenartikel
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* MetaInformations for this Object
|
|
@@ -4355,14 +4355,14 @@ export interface DmsOutputStream {
|
|
|
4355
4355
|
export interface Document {
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Referenz zum Rechnungskonto
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
billingAccountRef: ApiObjectReference;
|
|
4366
4366
|
|
|
4367
4367
|
/**
|
|
4368
4368
|
* Externe Belegnummer
|
|
@@ -4400,14 +4400,14 @@ export interface Document {
|
|
|
4400
4400
|
totalVat: number;
|
|
4401
4401
|
|
|
4402
4402
|
/**
|
|
4403
|
-
*
|
|
4403
|
+
* Name der bestellenden Person
|
|
4404
4404
|
*/
|
|
4405
|
-
|
|
4405
|
+
orderedBy: string;
|
|
4406
4406
|
|
|
4407
4407
|
/**
|
|
4408
|
-
*
|
|
4408
|
+
* Standardlager für neue Positionen
|
|
4409
4409
|
*/
|
|
4410
|
-
|
|
4410
|
+
defaultStorageRef: ApiObjectReference;
|
|
4411
4411
|
|
|
4412
4412
|
/**
|
|
4413
4413
|
* Lieferadresse
|
|
@@ -4447,11 +4447,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4447
4447
|
*/
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
|
-
/**
|
|
4451
|
-
* Steuerpflichtig oder steuerfrei
|
|
4452
|
-
*/
|
|
4453
|
-
taxable: boolean;
|
|
4454
|
-
|
|
4455
4450
|
/**
|
|
4456
4451
|
* Bestellnummer aus Vorbeleg
|
|
4457
4452
|
*/
|
|
@@ -4462,6 +4457,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4462
4457
|
*/
|
|
4463
4458
|
buyerReference: string;
|
|
4464
4459
|
|
|
4460
|
+
/**
|
|
4461
|
+
* Steuerpflichtig oder steuerfrei
|
|
4462
|
+
*/
|
|
4463
|
+
taxable: boolean;
|
|
4464
|
+
|
|
4465
4465
|
/**
|
|
4466
4466
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4467
4467
|
*/
|
|
@@ -4473,14 +4473,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4473
4473
|
baseDepositPaymentAmount: number;
|
|
4474
4474
|
|
|
4475
4475
|
/**
|
|
4476
|
-
*
|
|
4476
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4477
4477
|
*/
|
|
4478
|
-
|
|
4478
|
+
totalBeforeModifier: number;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
|
-
*
|
|
4481
|
+
* Ist der Beleg festgeschrieben?
|
|
4482
4482
|
*/
|
|
4483
|
-
|
|
4483
|
+
frozen: boolean;
|
|
4484
4484
|
|
|
4485
4485
|
/**
|
|
4486
4486
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4582,13 +4582,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4582
4582
|
*/
|
|
4583
4583
|
posPayments: Array<DocumentPosPayment>;
|
|
4584
4584
|
|
|
4585
|
-
/**
|
|
4586
|
-
* Ist die Quittung bezahlt
|
|
4587
|
-
true wenn die Quittung bezahlt ist
|
|
4588
|
-
|
|
4589
|
-
*/
|
|
4590
|
-
posReceiptPayed: boolean;
|
|
4591
|
-
|
|
4592
4585
|
/**
|
|
4593
4586
|
* Kundennummer beim Lieferanten
|
|
4594
4587
|
*/
|
|
@@ -4599,6 +4592,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4599
4592
|
*/
|
|
4600
4593
|
maxDeliveries: number;
|
|
4601
4594
|
|
|
4595
|
+
/**
|
|
4596
|
+
* Ist die Quittung bezahlt
|
|
4597
|
+
true wenn die Quittung bezahlt ist
|
|
4598
|
+
|
|
4599
|
+
*/
|
|
4600
|
+
posReceiptPayed: boolean;
|
|
4601
|
+
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Quittung: Summe Zahlbetrag
|
|
4604
4604
|
*/
|
|
@@ -4645,14 +4645,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4645
4645
|
accountNumber: string;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
|
-
*
|
|
4648
|
+
* Wird vom Workflow verarbeitet?
|
|
4649
4649
|
*/
|
|
4650
|
-
|
|
4650
|
+
processedByWorkflow: boolean;
|
|
4651
4651
|
|
|
4652
4652
|
/**
|
|
4653
|
-
*
|
|
4653
|
+
* Referenz auf Zahlungsbedingung
|
|
4654
4654
|
*/
|
|
4655
|
-
|
|
4655
|
+
paymentTermRef: PaymentTermRef;
|
|
4656
4656
|
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Verarbeitungsoption für Stapel
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Leistungsdatum
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
performanceDate: ScriptingDate;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4720,14 +4720,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4720
4720
|
additionalInfo: DocumentAdditionalInfo;
|
|
4721
4721
|
|
|
4722
4722
|
/**
|
|
4723
|
-
*
|
|
4723
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4724
4724
|
*/
|
|
4725
|
-
|
|
4725
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4726
4726
|
|
|
4727
4727
|
/**
|
|
4728
|
-
*
|
|
4728
|
+
* Bestelldatum
|
|
4729
4729
|
*/
|
|
4730
|
-
|
|
4730
|
+
orderedOn: ScriptingDate;
|
|
4731
4731
|
|
|
4732
4732
|
/**
|
|
4733
4733
|
* MetaInformations for this Object
|
|
@@ -4865,14 +4865,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4865
4865
|
customerNumber: string;
|
|
4866
4866
|
|
|
4867
4867
|
/**
|
|
4868
|
-
*
|
|
4868
|
+
* Statusinstanz des Belegs
|
|
4869
4869
|
*/
|
|
4870
|
-
|
|
4870
|
+
documentState: DocumentTypeState;
|
|
4871
4871
|
|
|
4872
4872
|
/**
|
|
4873
|
-
*
|
|
4873
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4874
4874
|
*/
|
|
4875
|
-
|
|
4875
|
+
taxIdentificationNumber: string;
|
|
4876
4876
|
|
|
4877
4877
|
/**
|
|
4878
4878
|
* Versandkostenpositionen
|
|
@@ -4880,11 +4880,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4880
4880
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4881
4881
|
|
|
4882
4882
|
/**
|
|
4883
|
-
*
|
|
4884
|
-
true wenn die Quittung ausbalanciert ist
|
|
4885
|
-
|
|
4883
|
+
* Rückgeld
|
|
4886
4884
|
*/
|
|
4887
|
-
|
|
4885
|
+
posReceiptChangeAmount: number;
|
|
4888
4886
|
|
|
4889
4887
|
/**
|
|
4890
4888
|
* Referenz auf Lieferbedingung
|
|
@@ -4892,9 +4890,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4892
4890
|
deliveryTermRef: ApiObjectReference;
|
|
4893
4891
|
|
|
4894
4892
|
/**
|
|
4895
|
-
* Rückgeld
|
|
4893
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4894
|
+
true wenn die Quittung ausbalanciert ist
|
|
4895
|
+
|
|
4896
4896
|
*/
|
|
4897
|
-
|
|
4897
|
+
posReceiptBalanced: boolean;
|
|
4898
4898
|
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Status der USt-ID-Prüfung
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Rechnungsadresse
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
billingAddress: DocumentAddress;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -4945,14 +4945,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4945
4945
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4946
4946
|
|
|
4947
4947
|
/**
|
|
4948
|
-
*
|
|
4948
|
+
* Herkunft der Sprache
|
|
4949
4949
|
*/
|
|
4950
|
-
|
|
4950
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4951
4951
|
|
|
4952
4952
|
/**
|
|
4953
|
-
*
|
|
4953
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4954
4954
|
*/
|
|
4955
|
-
|
|
4955
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4956
4956
|
|
|
4957
4957
|
/**
|
|
4958
4958
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -5097,14 +5097,14 @@ export interface DocumentAddress {
|
|
|
5097
5097
|
info: MetaInfo;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
|
-
*
|
|
5100
|
+
* GLN
|
|
5101
5101
|
*/
|
|
5102
|
-
|
|
5102
|
+
globalLocationNumber: string;
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
|
-
*
|
|
5105
|
+
* Lieferart
|
|
5106
5106
|
*/
|
|
5107
|
-
|
|
5107
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5108
5108
|
|
|
5109
5109
|
/**
|
|
5110
5110
|
* Postcode
|
|
@@ -5287,14 +5287,14 @@ export interface DocumentContractDetail {
|
|
|
5287
5287
|
runtimeToDate: ScriptingDate;
|
|
5288
5288
|
|
|
5289
5289
|
/**
|
|
5290
|
-
*
|
|
5290
|
+
* Nächste Fälligkeit
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
nextDueDate: ScriptingDate;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
|
-
*
|
|
5295
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5296
5296
|
*/
|
|
5297
|
-
|
|
5297
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5298
5298
|
|
|
5299
5299
|
/**
|
|
5300
5300
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5495,14 +5495,14 @@ export interface DocumentLine {
|
|
|
5495
5495
|
number: string;
|
|
5496
5496
|
|
|
5497
5497
|
/**
|
|
5498
|
-
*
|
|
5498
|
+
* Gesamtbruttogewicht
|
|
5499
5499
|
*/
|
|
5500
|
-
|
|
5500
|
+
totalGrossWeight: number;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Referenz zur Kundenauftragszeile
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
5508
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5545,9 +5545,9 @@ export interface DocumentLine {
|
|
|
5545
5545
|
id: number;
|
|
5546
5546
|
|
|
5547
5547
|
/**
|
|
5548
|
-
*
|
|
5548
|
+
* Serientyp
|
|
5549
5549
|
*/
|
|
5550
|
-
|
|
5550
|
+
serialType: ArticleSerialType;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
5553
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -5555,19 +5555,19 @@ export interface DocumentLine {
|
|
|
5555
5555
|
positionOfArticleLine: number;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
|
-
*
|
|
5558
|
+
* Preis pro Einheit in Basiswährung
|
|
5559
5559
|
*/
|
|
5560
|
-
|
|
5560
|
+
basePrice: number;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
|
-
*
|
|
5563
|
+
* Preiseinheit
|
|
5564
5564
|
*/
|
|
5565
|
-
|
|
5565
|
+
priceUnit: number;
|
|
5566
5566
|
|
|
5567
5567
|
/**
|
|
5568
|
-
*
|
|
5568
|
+
* Steuerschema
|
|
5569
5569
|
*/
|
|
5570
|
-
|
|
5570
|
+
taxSchemaRef: ApiObjectReference;
|
|
5571
5571
|
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5664,11 +5664,6 @@ export interface DocumentLine {
|
|
|
5664
5664
|
*/
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
|
-
/**
|
|
5668
|
-
* Nettoverkaufswert der Position in Basiswährung
|
|
5669
|
-
*/
|
|
5670
|
-
baseSalesValueNet: number;
|
|
5671
|
-
|
|
5672
5667
|
/**
|
|
5673
5668
|
* Vertragsinformationen
|
|
5674
5669
|
*/
|
|
@@ -5679,6 +5674,11 @@ export interface DocumentLine {
|
|
|
5679
5674
|
*/
|
|
5680
5675
|
netWeightUnit: UnitTypeReference;
|
|
5681
5676
|
|
|
5677
|
+
/**
|
|
5678
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5679
|
+
*/
|
|
5680
|
+
baseSalesValueNet: number;
|
|
5681
|
+
|
|
5682
5682
|
/**
|
|
5683
5683
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5684
5684
|
*/
|
|
@@ -5765,14 +5765,14 @@ export interface DocumentLine {
|
|
|
5765
5765
|
commissions: Array<DocumentLineCommission>;
|
|
5766
5766
|
|
|
5767
5767
|
/**
|
|
5768
|
-
*
|
|
5768
|
+
* Positionstyp
|
|
5769
5769
|
*/
|
|
5770
|
-
|
|
5770
|
+
lineType: DocumentLineType;
|
|
5771
5771
|
|
|
5772
5772
|
/**
|
|
5773
|
-
*
|
|
5773
|
+
* Gesamtpreis Position in Basiswährung
|
|
5774
5774
|
*/
|
|
5775
|
-
|
|
5775
|
+
baseTotalLinePrice: number;
|
|
5776
5776
|
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5810,14 +5810,14 @@ export interface DocumentLine {
|
|
|
5810
5810
|
countryRegion: ApiObjectReference;
|
|
5811
5811
|
|
|
5812
5812
|
/**
|
|
5813
|
-
*
|
|
5813
|
+
* Nettogewicht
|
|
5814
5814
|
*/
|
|
5815
|
-
|
|
5815
|
+
netWeight: number;
|
|
5816
5816
|
|
|
5817
5817
|
/**
|
|
5818
|
-
*
|
|
5818
|
+
* Provisionsursprung
|
|
5819
5819
|
*/
|
|
5820
|
-
|
|
5820
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5821
5821
|
|
|
5822
5822
|
/**
|
|
5823
5823
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -5835,14 +5835,14 @@ export interface DocumentLine {
|
|
|
5835
5835
|
position: number;
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
|
-
*
|
|
5838
|
+
* Buchungen
|
|
5839
5839
|
*/
|
|
5840
|
-
|
|
5840
|
+
bookings: Array<DocumentLineBooking>;
|
|
5841
5841
|
|
|
5842
5842
|
/**
|
|
5843
|
-
*
|
|
5843
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5844
5844
|
*/
|
|
5845
|
-
|
|
5845
|
+
recalcLinePriceViaComponents: boolean;
|
|
5846
5846
|
|
|
5847
5847
|
/**
|
|
5848
5848
|
* unit gross Volume in cubic meters
|
|
@@ -5870,14 +5870,14 @@ export interface DocumentLine {
|
|
|
5870
5870
|
description: string;
|
|
5871
5871
|
|
|
5872
5872
|
/**
|
|
5873
|
-
*
|
|
5873
|
+
* Referenz zum Lager
|
|
5874
5874
|
*/
|
|
5875
|
-
|
|
5875
|
+
storage: ApiObjectReference;
|
|
5876
5876
|
|
|
5877
5877
|
/**
|
|
5878
|
-
*
|
|
5878
|
+
* Preisherkunft
|
|
5879
5879
|
*/
|
|
5880
|
-
|
|
5880
|
+
priceOrigin: ProductPriceOrigin;
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
5883
5883
|
* Rohertragsermittlung
|
|
@@ -5935,14 +5935,14 @@ export interface DocumentLine {
|
|
|
5935
5935
|
custom: EavDocumentline;
|
|
5936
5936
|
|
|
5937
5937
|
/**
|
|
5938
|
-
*
|
|
5938
|
+
* Artikel
|
|
5939
5939
|
*/
|
|
5940
|
-
|
|
5940
|
+
articleId: number;
|
|
5941
5941
|
|
|
5942
5942
|
/**
|
|
5943
|
-
*
|
|
5943
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5944
5944
|
*/
|
|
5945
|
-
|
|
5945
|
+
settledOpenItemComment: string;
|
|
5946
5946
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Interne Preisänderungsinformationen
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Status der externen Zahlung
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Typ der Einlage/Ausgabe
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
depositExpenseTypeId: number;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6608,14 +6608,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6608
6608
|
customerShareOnReduction: number;
|
|
6609
6609
|
|
|
6610
6610
|
/**
|
|
6611
|
-
*
|
|
6611
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6612
6612
|
*/
|
|
6613
|
-
|
|
6613
|
+
deliveryTermRef: ApiObjectReference;
|
|
6614
6614
|
|
|
6615
6615
|
/**
|
|
6616
|
-
*
|
|
6616
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6617
6617
|
*/
|
|
6618
|
-
|
|
6618
|
+
waitForReturnBeforeExchange: boolean;
|
|
6619
6619
|
|
|
6620
6620
|
/**
|
|
6621
6621
|
* Referenz auf Retourengrund
|
|
@@ -6979,14 +6979,14 @@ export interface DocumentShippingCost {
|
|
|
6979
6979
|
manualCosts: boolean;
|
|
6980
6980
|
|
|
6981
6981
|
/**
|
|
6982
|
-
*
|
|
6982
|
+
* Texte
|
|
6983
6983
|
*/
|
|
6984
|
-
|
|
6984
|
+
texts: Array<DocumentText>;
|
|
6985
6985
|
|
|
6986
6986
|
/**
|
|
6987
|
-
*
|
|
6987
|
+
* Keine Versandkosten (freier Versand)
|
|
6988
6988
|
*/
|
|
6989
|
-
|
|
6989
|
+
freeShipping: boolean;
|
|
6990
6990
|
|
|
6991
6991
|
/**
|
|
6992
6992
|
* skontierbar
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
textPosition: TextPosition;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
deleted: boolean;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* Zählerkreis
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* nächste Belegnummer
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
nextNumber: string;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Seriennummer
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
serialNumberId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Ziel-Lager
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
targetStorageId: number;
|
|
7410
7410
|
|
|
7411
7411
|
/**
|
|
7412
7412
|
* Bemerkung
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Die gültige Seriennummer
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetSerialNumber: string;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -7743,14 +7743,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7743
7743
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7744
7744
|
|
|
7745
7745
|
/**
|
|
7746
|
-
*
|
|
7746
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7747
7747
|
*/
|
|
7748
|
-
|
|
7748
|
+
taxIdentificationNumber: string;
|
|
7749
7749
|
|
|
7750
7750
|
/**
|
|
7751
|
-
*
|
|
7751
|
+
* Key der Belegart
|
|
7752
7752
|
*/
|
|
7753
|
-
|
|
7753
|
+
documentTypeKey: string;
|
|
7754
7754
|
}
|
|
7755
7755
|
|
|
7756
7756
|
export interface FabricationComponentForProduction {
|
|
@@ -7865,14 +7865,14 @@ export interface FabricationRevertRequest {
|
|
|
7865
7865
|
quantity: number;
|
|
7866
7866
|
|
|
7867
7867
|
/**
|
|
7868
|
-
*
|
|
7868
|
+
* Material automatisch stornieren
|
|
7869
7869
|
*/
|
|
7870
|
-
|
|
7870
|
+
autoRevertComponents: boolean;
|
|
7871
7871
|
|
|
7872
7872
|
/**
|
|
7873
|
-
*
|
|
7873
|
+
* ID der zu stornierenden Position
|
|
7874
7874
|
*/
|
|
7875
|
-
|
|
7875
|
+
documentLineId: number;
|
|
7876
7876
|
|
|
7877
7877
|
/**
|
|
7878
7878
|
* Zu stornierende Seriennummern
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* Zahlungsplan
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* The full amount of the payment
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
fullPaymentAmount: number;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -8372,14 +8372,14 @@ export interface OpenItem {
|
|
|
8372
8372
|
baseSumDiscount: number;
|
|
8373
8373
|
|
|
8374
8374
|
/**
|
|
8375
|
-
*
|
|
8375
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8376
8376
|
*/
|
|
8377
|
-
|
|
8377
|
+
baseSumDunnings: number;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Zahlungsvorlage
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
@@ -8392,14 +8392,14 @@ export interface OpenItem {
|
|
|
8392
8392
|
taxRateRef: ApiObjectReference;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
|
-
*
|
|
8395
|
+
* Anzahlungsrechnung
|
|
8396
8396
|
*/
|
|
8397
|
-
|
|
8397
|
+
depositInvoice: ApiObjectReference;
|
|
8398
8398
|
|
|
8399
8399
|
/**
|
|
8400
|
-
*
|
|
8400
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8401
8401
|
*/
|
|
8402
|
-
|
|
8402
|
+
baseCurrencyCode: string;
|
|
8403
8403
|
|
|
8404
8404
|
/**
|
|
8405
8405
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8615,14 +8615,14 @@ export interface OpenItemRecord {
|
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
8617
|
/**
|
|
8618
|
-
*
|
|
8618
|
+
* record discountable amount
|
|
8619
8619
|
*/
|
|
8620
|
-
|
|
8620
|
+
discountableAmount: number;
|
|
8621
8621
|
|
|
8622
8622
|
/**
|
|
8623
|
-
*
|
|
8623
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8624
8624
|
*/
|
|
8625
|
-
|
|
8625
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8626
8626
|
|
|
8627
8627
|
/**
|
|
8628
8628
|
* record date
|
|
@@ -8680,14 +8680,14 @@ export interface OpenItemRecord {
|
|
|
8680
8680
|
version: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
transactionId: number;
|
|
8686
8686
|
|
|
8687
8687
|
/**
|
|
8688
|
-
*
|
|
8688
|
+
* Buchungsbetrag in Basiswährung
|
|
8689
8689
|
*/
|
|
8690
|
-
|
|
8690
|
+
baseAmount: number;
|
|
8691
8691
|
|
|
8692
8692
|
/**
|
|
8693
8693
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8965,26 +8965,26 @@ export interface PaymentTerm {
|
|
|
8965
8965
|
*/
|
|
8966
8966
|
paymentDiscount2: number;
|
|
8967
8967
|
|
|
8968
|
-
/**
|
|
8969
|
-
* printDescription
|
|
8970
|
-
*/
|
|
8971
|
-
printDescription: string;
|
|
8972
|
-
|
|
8973
8968
|
/**
|
|
8974
8969
|
* Percent for Discount 1
|
|
8975
8970
|
*/
|
|
8976
8971
|
paymentDiscount1: number;
|
|
8977
8972
|
|
|
8978
8973
|
/**
|
|
8979
|
-
*
|
|
8974
|
+
* printDescription
|
|
8980
8975
|
*/
|
|
8981
|
-
|
|
8976
|
+
printDescription: string;
|
|
8982
8977
|
|
|
8983
8978
|
/**
|
|
8984
8979
|
* Days for Discount 1
|
|
8985
8980
|
*/
|
|
8986
8981
|
paymentDays1: number;
|
|
8987
8982
|
|
|
8983
|
+
/**
|
|
8984
|
+
* for deposit: remaining term
|
|
8985
|
+
*/
|
|
8986
|
+
remainingTermRef: ApiObjectReference;
|
|
8987
|
+
|
|
8988
8988
|
/**
|
|
8989
8989
|
* Days for Discount 2
|
|
8990
8990
|
*/
|
|
@@ -9455,14 +9455,14 @@ export interface PicklistLineComponent {
|
|
|
9455
9455
|
quantityCollected: number;
|
|
9456
9456
|
|
|
9457
9457
|
/**
|
|
9458
|
-
*
|
|
9458
|
+
* Menge der Position
|
|
9459
9459
|
*/
|
|
9460
|
-
|
|
9460
|
+
quantity: number;
|
|
9461
9461
|
|
|
9462
9462
|
/**
|
|
9463
|
-
*
|
|
9463
|
+
* Artikelbezeichnung
|
|
9464
9464
|
*/
|
|
9465
|
-
|
|
9465
|
+
articleName: string;
|
|
9466
9466
|
|
|
9467
9467
|
/**
|
|
9468
9468
|
* Artikelbeschreibung
|
|
@@ -9675,26 +9675,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9675
9675
|
*/
|
|
9676
9676
|
maxArticleCountPerOrder: number;
|
|
9677
9677
|
|
|
9678
|
-
/**
|
|
9679
|
-
* Maximaler Auftragswert
|
|
9680
|
-
*/
|
|
9681
|
-
maxOrderValue: number;
|
|
9682
|
-
|
|
9683
9678
|
/**
|
|
9684
9679
|
* Alternative Selektion in VQL
|
|
9685
9680
|
*/
|
|
9686
9681
|
alternativeSelectionInVql: string;
|
|
9687
9682
|
|
|
9688
9683
|
/**
|
|
9689
|
-
*
|
|
9684
|
+
* Maximaler Auftragswert
|
|
9690
9685
|
*/
|
|
9691
|
-
|
|
9686
|
+
maxOrderValue: number;
|
|
9692
9687
|
|
|
9693
9688
|
/**
|
|
9694
9689
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9695
9690
|
*/
|
|
9696
9691
|
maxOrderCount: number;
|
|
9697
9692
|
|
|
9693
|
+
/**
|
|
9694
|
+
* Nur vollständig lieferbare Positionen
|
|
9695
|
+
*/
|
|
9696
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9697
|
+
|
|
9698
9698
|
/**
|
|
9699
9699
|
* Selektion über den Bereich vom Lieferdatum
|
|
9700
9700
|
*/
|
|
@@ -9779,9 +9779,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9779
9779
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9780
9780
|
|
|
9781
9781
|
/**
|
|
9782
|
-
*
|
|
9782
|
+
* Lagerplätze vorgeben
|
|
9783
9783
|
*/
|
|
9784
|
-
|
|
9784
|
+
specifyStorageBins: boolean;
|
|
9785
9785
|
|
|
9786
9786
|
/**
|
|
9787
9787
|
* Der zu verwendende Pickwagen
|
|
@@ -9789,9 +9789,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9789
9789
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9790
9790
|
|
|
9791
9791
|
/**
|
|
9792
|
-
*
|
|
9792
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9793
9793
|
*/
|
|
9794
|
-
|
|
9794
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9795
9795
|
|
|
9796
9796
|
/**
|
|
9797
9797
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -9861,26 +9861,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9861
9861
|
*/
|
|
9862
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9863
|
|
|
9864
|
-
/**
|
|
9865
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9866
|
-
*/
|
|
9867
|
-
useDigitalPicklist: boolean;
|
|
9868
|
-
|
|
9869
9864
|
/**
|
|
9870
9865
|
* Sammelbestätigung erlauben
|
|
9871
9866
|
*/
|
|
9872
9867
|
allowFullConfirmation: boolean;
|
|
9873
9868
|
|
|
9874
9869
|
/**
|
|
9875
|
-
*
|
|
9870
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9876
9871
|
*/
|
|
9877
|
-
|
|
9872
|
+
useDigitalPicklist: boolean;
|
|
9878
9873
|
|
|
9879
9874
|
/**
|
|
9880
9875
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9881
9876
|
*/
|
|
9882
9877
|
printLabelOnScan: boolean;
|
|
9883
9878
|
|
|
9879
|
+
/**
|
|
9880
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9881
|
+
*/
|
|
9882
|
+
allowPickingOfServiceArticles: boolean;
|
|
9883
|
+
|
|
9884
9884
|
/**
|
|
9885
9885
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9886
9886
|
*/
|
|
@@ -9985,26 +9985,26 @@ export interface PriceSelectionCriteria {
|
|
|
9985
9985
|
*/
|
|
9986
9986
|
date: ScriptingDate;
|
|
9987
9987
|
|
|
9988
|
-
/**
|
|
9989
|
-
* Die Preisgruppe
|
|
9990
|
-
*/
|
|
9991
|
-
priceGroupId: number;
|
|
9992
|
-
|
|
9993
9988
|
/**
|
|
9994
9989
|
* Eine Menge
|
|
9995
9990
|
*/
|
|
9996
9991
|
quantity: number;
|
|
9997
9992
|
|
|
9998
9993
|
/**
|
|
9999
|
-
*
|
|
9994
|
+
* Die Preisgruppe
|
|
10000
9995
|
*/
|
|
10001
|
-
|
|
9996
|
+
priceGroupId: number;
|
|
10002
9997
|
|
|
10003
9998
|
/**
|
|
10004
9999
|
* Liste von Account-IDs
|
|
10005
10000
|
*/
|
|
10006
10001
|
accountIds: Array<number>;
|
|
10007
10002
|
|
|
10003
|
+
/**
|
|
10004
|
+
* Liste von Artikel-IDs
|
|
10005
|
+
*/
|
|
10006
|
+
articleIds: Array<number>;
|
|
10007
|
+
|
|
10008
10008
|
/**
|
|
10009
10009
|
* ein qualifier
|
|
10010
10010
|
*/
|
|
@@ -10029,14 +10029,14 @@ export interface PriceSelectionCriteria {
|
|
|
10029
10029
|
export interface Product {
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
|
-
*
|
|
10032
|
+
* Zolltarifnummer
|
|
10033
10033
|
*/
|
|
10034
|
-
|
|
10034
|
+
customsTariffNumber: string;
|
|
10035
10035
|
|
|
10036
10036
|
/**
|
|
10037
|
-
*
|
|
10037
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10038
10038
|
*/
|
|
10039
|
-
|
|
10039
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10040
10040
|
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Gebindeschema dieses Produkts
|
|
@@ -10185,14 +10185,14 @@ export interface ProductArticleRef {
|
|
|
10185
10185
|
export interface ProductDiscount {
|
|
10186
10186
|
|
|
10187
10187
|
/**
|
|
10188
|
-
*
|
|
10188
|
+
* Kundengruppe
|
|
10189
10189
|
*/
|
|
10190
|
-
|
|
10190
|
+
customerGroupRef: ApiObjectReference;
|
|
10191
10191
|
|
|
10192
10192
|
/**
|
|
10193
|
-
*
|
|
10193
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10194
10194
|
*/
|
|
10195
|
-
|
|
10195
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10196
10196
|
|
|
10197
10197
|
/**
|
|
10198
10198
|
* Lieferantengruppe
|
|
@@ -10205,14 +10205,14 @@ export interface ProductDiscount {
|
|
|
10205
10205
|
fromQuantity: number;
|
|
10206
10206
|
|
|
10207
10207
|
/**
|
|
10208
|
-
*
|
|
10208
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10209
10209
|
*/
|
|
10210
|
-
|
|
10210
|
+
articleRef: ApiObjectReference;
|
|
10211
10211
|
|
|
10212
10212
|
/**
|
|
10213
|
-
*
|
|
10213
|
+
* Hersteller
|
|
10214
10214
|
*/
|
|
10215
|
-
|
|
10215
|
+
manufacturerRef: ApiObjectReference;
|
|
10216
10216
|
|
|
10217
10217
|
/**
|
|
10218
10218
|
* Gültig von
|
|
@@ -10220,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10220
10220
|
validFrom: ScriptingDate;
|
|
10221
10221
|
|
|
10222
10222
|
/**
|
|
10223
|
-
*
|
|
10223
|
+
* Warengruppe
|
|
10224
10224
|
*/
|
|
10225
|
-
|
|
10225
|
+
productGroupRef: ApiObjectReference;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* Bestimmt die Art des Rabatts
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
modifierType: PriceModifierType;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10260,14 +10260,14 @@ export interface ProductDiscount {
|
|
|
10260
10260
|
qualifier: ProductPriceQualifier;
|
|
10261
10261
|
|
|
10262
10262
|
/**
|
|
10263
|
-
*
|
|
10263
|
+
* Gültig bis
|
|
10264
10264
|
*/
|
|
10265
|
-
|
|
10265
|
+
validUntil: ScriptingDate;
|
|
10266
10266
|
|
|
10267
10267
|
/**
|
|
10268
|
-
*
|
|
10268
|
+
* Aktionpreis
|
|
10269
10269
|
*/
|
|
10270
|
-
|
|
10270
|
+
specialOfferPrice: boolean;
|
|
10271
10271
|
|
|
10272
10272
|
/**
|
|
10273
10273
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10399,14 +10399,14 @@ export interface ProductMainGroup {
|
|
|
10399
10399
|
export interface ProductPrice {
|
|
10400
10400
|
|
|
10401
10401
|
/**
|
|
10402
|
-
*
|
|
10402
|
+
* Kundengruppe
|
|
10403
10403
|
*/
|
|
10404
|
-
|
|
10404
|
+
customerGroupRef: ApiObjectReference;
|
|
10405
10405
|
|
|
10406
10406
|
/**
|
|
10407
|
-
*
|
|
10407
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10408
10408
|
*/
|
|
10409
|
-
|
|
10409
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10410
10410
|
|
|
10411
10411
|
/**
|
|
10412
10412
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10469,14 +10469,14 @@ export interface ProductPrice {
|
|
|
10469
10469
|
supplierGroupRef: ApiObjectReference;
|
|
10470
10470
|
|
|
10471
10471
|
/**
|
|
10472
|
-
*
|
|
10472
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10473
10473
|
*/
|
|
10474
|
-
|
|
10474
|
+
articleRef: ApiObjectReference;
|
|
10475
10475
|
|
|
10476
10476
|
/**
|
|
10477
|
-
*
|
|
10477
|
+
* Hersteller
|
|
10478
10478
|
*/
|
|
10479
|
-
|
|
10479
|
+
manufacturerRef: ApiObjectReference;
|
|
10480
10480
|
|
|
10481
10481
|
/**
|
|
10482
10482
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10498,6 +10498,11 @@ export interface ProductPrice {
|
|
|
10498
10498
|
*/
|
|
10499
10499
|
qualifier: ProductPriceQualifier;
|
|
10500
10500
|
|
|
10501
|
+
/**
|
|
10502
|
+
* Gültig bis
|
|
10503
|
+
*/
|
|
10504
|
+
validUntil: ScriptingDate;
|
|
10505
|
+
|
|
10501
10506
|
/**
|
|
10502
10507
|
* Aktionpreis
|
|
10503
10508
|
*/
|
|
@@ -10508,11 +10513,6 @@ export interface ProductPrice {
|
|
|
10508
10513
|
*/
|
|
10509
10514
|
priceBase: ArticlePriceBase;
|
|
10510
10515
|
|
|
10511
|
-
/**
|
|
10512
|
-
* Gültig bis
|
|
10513
|
-
*/
|
|
10514
|
-
validUntil: ScriptingDate;
|
|
10515
|
-
|
|
10516
10516
|
/**
|
|
10517
10517
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10518
10518
|
*/
|
|
@@ -10614,19 +10614,19 @@ export const enum RegulationSet {
|
|
|
10614
10614
|
export interface RequestDocument {
|
|
10615
10615
|
|
|
10616
10616
|
/**
|
|
10617
|
-
*
|
|
10617
|
+
* Belegdatum
|
|
10618
10618
|
*/
|
|
10619
|
-
|
|
10619
|
+
documentDate: ScriptingDate;
|
|
10620
10620
|
|
|
10621
10621
|
/**
|
|
10622
|
-
*
|
|
10622
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10623
10623
|
*/
|
|
10624
|
-
|
|
10624
|
+
incomingGoodsStorageBinId: number;
|
|
10625
10625
|
|
|
10626
10626
|
/**
|
|
10627
|
-
*
|
|
10627
|
+
* Der Anzahlungsbetrag
|
|
10628
10628
|
*/
|
|
10629
|
-
|
|
10629
|
+
depositPaymentAmount: number;
|
|
10630
10630
|
|
|
10631
10631
|
/**
|
|
10632
10632
|
* Leistungsdatum
|
|
@@ -10634,9 +10634,9 @@ export interface RequestDocument {
|
|
|
10634
10634
|
performanceDate: ScriptingDate;
|
|
10635
10635
|
|
|
10636
10636
|
/**
|
|
10637
|
-
*
|
|
10637
|
+
* ID der Kassenschublade (bei POS)
|
|
10638
10638
|
*/
|
|
10639
|
-
|
|
10639
|
+
cashDrawerId: number;
|
|
10640
10640
|
|
|
10641
10641
|
/**
|
|
10642
10642
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10703,26 +10703,26 @@ export interface RequestDocument {
|
|
|
10703
10703
|
*/
|
|
10704
10704
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10705
10705
|
|
|
10706
|
-
/**
|
|
10707
|
-
* ID der Kasse (bei POS)
|
|
10708
|
-
*/
|
|
10709
|
-
posRegisterId: number;
|
|
10710
|
-
|
|
10711
10706
|
/**
|
|
10712
10707
|
* Die Vertragsdetails
|
|
10713
10708
|
*/
|
|
10714
10709
|
contractDetail: DocumentContractDetail;
|
|
10715
10710
|
|
|
10716
10711
|
/**
|
|
10717
|
-
*
|
|
10712
|
+
* ID der Kasse (bei POS)
|
|
10718
10713
|
*/
|
|
10719
|
-
|
|
10714
|
+
posRegisterId: number;
|
|
10720
10715
|
|
|
10721
10716
|
/**
|
|
10722
10717
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10723
10718
|
*/
|
|
10724
10719
|
paymentTermId: number;
|
|
10725
10720
|
|
|
10721
|
+
/**
|
|
10722
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10723
|
+
*/
|
|
10724
|
+
supplierAccountId: number;
|
|
10725
|
+
|
|
10726
10726
|
/**
|
|
10727
10727
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10728
10728
|
*/
|
|
@@ -10734,14 +10734,14 @@ export interface RequestDocument {
|
|
|
10734
10734
|
custom: EavDocument;
|
|
10735
10735
|
|
|
10736
10736
|
/**
|
|
10737
|
-
*
|
|
10737
|
+
* reference to the corresponding document in an external system
|
|
10738
10738
|
*/
|
|
10739
|
-
|
|
10739
|
+
externalId: string;
|
|
10740
10740
|
|
|
10741
10741
|
/**
|
|
10742
|
-
*
|
|
10742
|
+
* target document type for document copy
|
|
10743
10743
|
*/
|
|
10744
|
-
|
|
10744
|
+
targetDocumentType: DocumentType;
|
|
10745
10745
|
|
|
10746
10746
|
/**
|
|
10747
10747
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10812,14 +10812,14 @@ export interface RequestDocumentLine {
|
|
|
10812
10812
|
description: string;
|
|
10813
10813
|
|
|
10814
10814
|
/**
|
|
10815
|
-
*
|
|
10815
|
+
* Quittungsdetails zur Belegposition
|
|
10816
10816
|
*/
|
|
10817
|
-
|
|
10817
|
+
posDetail: DocumentLinePosDetail;
|
|
10818
10818
|
|
|
10819
10819
|
/**
|
|
10820
|
-
*
|
|
10820
|
+
* Herkunft des Preises
|
|
10821
10821
|
*/
|
|
10822
|
-
|
|
10822
|
+
priceOrigin: ProductPriceOrigin;
|
|
10823
10823
|
|
|
10824
10824
|
/**
|
|
10825
10825
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10837,14 +10837,14 @@ export interface RequestDocumentLine {
|
|
|
10837
10837
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10838
10838
|
|
|
10839
10839
|
/**
|
|
10840
|
-
*
|
|
10840
|
+
* Typ dieser Position
|
|
10841
10841
|
*/
|
|
10842
|
-
|
|
10842
|
+
lineType: DocumentLineType;
|
|
10843
10843
|
|
|
10844
10844
|
/**
|
|
10845
|
-
*
|
|
10845
|
+
* FiBu-Angaben
|
|
10846
10846
|
*/
|
|
10847
|
-
|
|
10847
|
+
financeBooking: DocumentFinanceBooking;
|
|
10848
10848
|
|
|
10849
10849
|
/**
|
|
10850
10850
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10877,14 +10877,14 @@ export interface RequestDocumentLine {
|
|
|
10877
10877
|
supplierAccountId: number;
|
|
10878
10878
|
|
|
10879
10879
|
/**
|
|
10880
|
-
*
|
|
10880
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
10881
10881
|
*/
|
|
10882
|
-
|
|
10882
|
+
quantity: number;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
mainArticleLinePosition: number;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
10890
|
* Versandkosten mit Bedingungen
|
|
@@ -10902,14 +10902,14 @@ export interface RequestDocumentLine {
|
|
|
10902
10902
|
custom: EavDocumentline;
|
|
10903
10903
|
|
|
10904
10904
|
/**
|
|
10905
|
-
*
|
|
10905
|
+
* (optional) ID des Artikels dieser Position
|
|
10906
10906
|
*/
|
|
10907
|
-
|
|
10907
|
+
articleId: number;
|
|
10908
10908
|
|
|
10909
10909
|
/**
|
|
10910
|
-
*
|
|
10910
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10911
10911
|
*/
|
|
10912
|
-
|
|
10912
|
+
settledOpenItemComment: string;
|
|
10913
10913
|
|
|
10914
10914
|
/**
|
|
10915
10915
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10956,25 +10956,25 @@ export interface RequestDocumentLine {
|
|
|
10956
10956
|
*/
|
|
10957
10957
|
sourceLineId: number;
|
|
10958
10958
|
|
|
10959
|
-
/**
|
|
10960
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
10961
|
-
*/
|
|
10962
|
-
externalArticleNumber: string;
|
|
10963
|
-
|
|
10964
10959
|
/**
|
|
10965
10960
|
* Buchungen zu dieser Belegposition
|
|
10966
10961
|
*/
|
|
10967
10962
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10968
10963
|
|
|
10969
10964
|
/**
|
|
10970
|
-
*
|
|
10965
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10971
10966
|
*/
|
|
10972
|
-
|
|
10967
|
+
externalArticleNumber: string;
|
|
10973
10968
|
|
|
10974
10969
|
/**
|
|
10975
10970
|
* (optional) Preis des Artikels dieser Position
|
|
10976
10971
|
*/
|
|
10977
10972
|
productPrice: number;
|
|
10973
|
+
|
|
10974
|
+
/**
|
|
10975
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10976
|
+
*/
|
|
10977
|
+
doLabelPrint: boolean;
|
|
10978
10978
|
}
|
|
10979
10979
|
|
|
10980
10980
|
export interface RequestDocumentLineBooking {
|
|
@@ -11111,14 +11111,14 @@ export const enum ReturnCategory {
|
|
|
11111
11111
|
export interface RevenueCalculation {
|
|
11112
11112
|
|
|
11113
11113
|
/**
|
|
11114
|
-
*
|
|
11114
|
+
* Netto Umsatz
|
|
11115
11115
|
*/
|
|
11116
|
-
|
|
11116
|
+
salesValue: number;
|
|
11117
11117
|
|
|
11118
11118
|
/**
|
|
11119
|
-
*
|
|
11119
|
+
* Deckungsbeitrag (absolut)
|
|
11120
11120
|
*/
|
|
11121
|
-
|
|
11121
|
+
revenue: number;
|
|
11122
11122
|
|
|
11123
11123
|
/**
|
|
11124
11124
|
* Einkaufspreis
|
|
@@ -11395,14 +11395,14 @@ export interface ScenarioDimensionValue {
|
|
|
11395
11395
|
export interface ScenarioFactDef {
|
|
11396
11396
|
|
|
11397
11397
|
/**
|
|
11398
|
-
* Attribut
|
|
11398
|
+
* Attribut Typ
|
|
11399
11399
|
*/
|
|
11400
|
-
|
|
11400
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11401
11401
|
|
|
11402
11402
|
/**
|
|
11403
|
-
* Attribut
|
|
11403
|
+
* Attribut Name
|
|
11404
11404
|
*/
|
|
11405
|
-
|
|
11405
|
+
factAttribute: string;
|
|
11406
11406
|
|
|
11407
11407
|
/**
|
|
11408
11408
|
* Unique identifier of the Object
|
|
@@ -11850,14 +11850,14 @@ export interface ShelfFile {
|
|
|
11850
11850
|
version: number;
|
|
11851
11851
|
|
|
11852
11852
|
/**
|
|
11853
|
-
*
|
|
11853
|
+
* meta data
|
|
11854
11854
|
*/
|
|
11855
|
-
|
|
11855
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11856
11856
|
|
|
11857
11857
|
/**
|
|
11858
|
-
*
|
|
11858
|
+
* current reference of this file in our storage
|
|
11859
11859
|
*/
|
|
11860
|
-
|
|
11860
|
+
storageHandle: string;
|
|
11861
11861
|
|
|
11862
11862
|
/**
|
|
11863
11863
|
* MetaInformations for this Object
|
|
@@ -12123,14 +12123,14 @@ export interface StockMovementManualApi {
|
|
|
12123
12123
|
export interface StockTransferApi {
|
|
12124
12124
|
|
|
12125
12125
|
/**
|
|
12126
|
-
*
|
|
12126
|
+
* Seriennummer
|
|
12127
12127
|
*/
|
|
12128
|
-
|
|
12128
|
+
serialNumberId: number;
|
|
12129
12129
|
|
|
12130
12130
|
/**
|
|
12131
|
-
*
|
|
12131
|
+
* Ziel-Lager
|
|
12132
12132
|
*/
|
|
12133
|
-
|
|
12133
|
+
targetStorageId: number;
|
|
12134
12134
|
|
|
12135
12135
|
/**
|
|
12136
12136
|
* Bemerkung
|
|
@@ -12351,14 +12351,14 @@ export interface Supplier {
|
|
|
12351
12351
|
info: MetaInfo;
|
|
12352
12352
|
|
|
12353
12353
|
/**
|
|
12354
|
-
*
|
|
12354
|
+
* tax able or tax free
|
|
12355
12355
|
*/
|
|
12356
|
-
|
|
12356
|
+
taxable: boolean;
|
|
12357
12357
|
|
|
12358
12358
|
/**
|
|
12359
|
-
*
|
|
12359
|
+
* reference to the delivery method
|
|
12360
12360
|
*/
|
|
12361
|
-
|
|
12361
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12362
12362
|
|
|
12363
12363
|
/**
|
|
12364
12364
|
* Lieferantengruppe
|
|
@@ -12698,14 +12698,14 @@ export interface TextTemplate {
|
|
|
12698
12698
|
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12699
12699
|
|
|
12700
12700
|
/**
|
|
12701
|
-
*
|
|
12701
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12702
12702
|
*/
|
|
12703
|
-
|
|
12703
|
+
separateLine: boolean;
|
|
12704
12704
|
|
|
12705
12705
|
/**
|
|
12706
|
-
*
|
|
12706
|
+
* article für den diese Templates gelten
|
|
12707
12707
|
*/
|
|
12708
|
-
|
|
12708
|
+
articleId: number;
|
|
12709
12709
|
|
|
12710
12710
|
/**
|
|
12711
12711
|
* Wann wird ein UI-Hint angezeigt
|