@vario-software/types 2026.30.3 → 2026.30.4
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 +36 -36
- package/scripting/types.d.ts +472 -472
package/scripting/types.d.ts
CHANGED
|
@@ -153,14 +153,14 @@ export interface Account {
|
|
|
153
153
|
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* companyLegal for this account
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
companyLegalRef: ApiCreatableReference;
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* Custom account data
|
|
162
162
|
*/
|
|
163
|
-
|
|
163
|
+
custom: EavAccount;
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
166
|
* tax number/ Steuernummer
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -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
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Country code
|
|
310
305
|
*/
|
|
311
306
|
countryCode: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -346,14 +346,14 @@ export interface AccountAddress {
|
|
|
346
346
|
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
* abweichende Zahlungsart
|
|
350
350
|
*/
|
|
351
|
-
|
|
351
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
352
352
|
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Custom data
|
|
355
355
|
*/
|
|
356
|
-
|
|
356
|
+
custom: EavAccountaddress;
|
|
357
357
|
|
|
358
358
|
/**
|
|
359
359
|
* Postcode
|
|
@@ -396,14 +396,14 @@ export interface AccountAddress {
|
|
|
396
396
|
additionalAddressLine1: string;
|
|
397
397
|
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* Parcel station
|
|
400
400
|
*/
|
|
401
|
-
|
|
401
|
+
parcelStation: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
|
-
*
|
|
404
|
+
* Additional address line2
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
additionalAddressLine2: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
409
|
* Street address number
|
|
@@ -411,14 +411,14 @@ export interface AccountAddress {
|
|
|
411
411
|
streetAddressNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Default contacts
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
422
422
|
|
|
423
423
|
/**
|
|
424
424
|
* Name3
|
|
@@ -451,14 +451,14 @@ export interface AccountAddress {
|
|
|
451
451
|
name1: string;
|
|
452
452
|
|
|
453
453
|
/**
|
|
454
|
-
*
|
|
454
|
+
* abweichende Zahlungsbedingungen
|
|
455
455
|
*/
|
|
456
|
-
|
|
456
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
457
457
|
|
|
458
458
|
/**
|
|
459
|
-
*
|
|
459
|
+
* Contacts
|
|
460
460
|
*/
|
|
461
|
-
|
|
461
|
+
contacts: Array<Contact>;
|
|
462
462
|
|
|
463
463
|
/**
|
|
464
464
|
* is this the default address of the account
|
|
@@ -474,14 +474,14 @@ export interface AccountBankdetail {
|
|
|
474
474
|
active: boolean;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* post-code of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankPostCode: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
|
-
*
|
|
482
|
+
* name of the bank
|
|
483
483
|
*/
|
|
484
|
-
|
|
484
|
+
bankName: string;
|
|
485
485
|
|
|
486
486
|
/**
|
|
487
487
|
* account from, if differs from account-address
|
|
@@ -610,14 +610,14 @@ export interface AccountLoanValue {
|
|
|
610
610
|
nonInvoicedDocumentLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
|
-
*
|
|
618
|
+
* Kreditlimit
|
|
619
619
|
*/
|
|
620
|
-
|
|
620
|
+
maximalLoan: number;
|
|
621
621
|
|
|
622
622
|
/**
|
|
623
623
|
* Überschrittener Kreditbetrag
|
|
@@ -827,14 +827,14 @@ export interface AccountPerson {
|
|
|
827
827
|
tags: Array<TagDto>;
|
|
828
828
|
|
|
829
829
|
/**
|
|
830
|
-
*
|
|
830
|
+
* Default contacts
|
|
831
831
|
*/
|
|
832
|
-
|
|
832
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
833
833
|
|
|
834
834
|
/**
|
|
835
|
-
*
|
|
835
|
+
* First name
|
|
836
836
|
*/
|
|
837
|
-
|
|
837
|
+
firstName: string;
|
|
838
838
|
|
|
839
839
|
/**
|
|
840
840
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1028,6 +1028,11 @@ export interface Article {
|
|
|
1028
1028
|
*/
|
|
1029
1029
|
baseCapacityUnit: UnitTypeReference;
|
|
1030
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Seriennummern Auszeichnungsart
|
|
1033
|
+
*/
|
|
1034
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1035
|
+
|
|
1031
1036
|
/**
|
|
1032
1037
|
* Durchschnittl. EKP (Startwert)
|
|
1033
1038
|
*/
|
|
@@ -1038,11 +1043,6 @@ export interface Article {
|
|
|
1038
1043
|
*/
|
|
1039
1044
|
sellableWithoutStock: boolean;
|
|
1040
1045
|
|
|
1041
|
-
/**
|
|
1042
|
-
* Seriennummern Auszeichnungsart
|
|
1043
|
-
*/
|
|
1044
|
-
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1045
|
-
|
|
1046
1046
|
/**
|
|
1047
1047
|
* gross Volume in cubic meters
|
|
1048
1048
|
*/
|
|
@@ -1069,14 +1069,14 @@ export interface Article {
|
|
|
1069
1069
|
warrantyInMonths: number;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
|
-
*
|
|
1077
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1078
1078
|
*/
|
|
1079
|
-
|
|
1079
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
1082
|
* unique product number
|
|
@@ -1189,14 +1189,14 @@ export interface Article {
|
|
|
1189
1189
|
solvable: boolean;
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
|
-
*
|
|
1192
|
+
* weight and size inc. packaging
|
|
1193
1193
|
*/
|
|
1194
|
-
|
|
1194
|
+
grossMetric: Article$Metric;
|
|
1195
1195
|
|
|
1196
1196
|
/**
|
|
1197
|
-
*
|
|
1197
|
+
* Verkaufseinheit
|
|
1198
1198
|
*/
|
|
1199
|
-
|
|
1199
|
+
salesUnit: number;
|
|
1200
1200
|
|
|
1201
1201
|
/**
|
|
1202
1202
|
* name of this product
|
|
@@ -1209,14 +1209,14 @@ export interface Article {
|
|
|
1209
1209
|
listingStateChangeTime: ScriptingDateTime;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
|
-
*
|
|
1212
|
+
* Country code
|
|
1213
1213
|
*/
|
|
1214
|
-
|
|
1214
|
+
countryOfOriginRef: CountryReference;
|
|
1215
1215
|
|
|
1216
1216
|
/**
|
|
1217
|
-
*
|
|
1217
|
+
* Arbeitseinheit in Minuten
|
|
1218
1218
|
*/
|
|
1219
|
-
|
|
1219
|
+
workUnitInMinutes: number;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Frei kommissionierbar
|
|
@@ -1234,14 +1234,14 @@ export interface Article {
|
|
|
1234
1234
|
taxLiabilityReversed: boolean;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
|
-
*
|
|
1237
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1238
1238
|
*/
|
|
1239
|
-
|
|
1239
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
|
-
*
|
|
1242
|
+
* Notiz
|
|
1243
1243
|
*/
|
|
1244
|
-
|
|
1244
|
+
note: string;
|
|
1245
1245
|
|
|
1246
1246
|
/**
|
|
1247
1247
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1279,9 +1279,9 @@ export interface Article {
|
|
|
1279
1279
|
capacity: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
|
-
*
|
|
1282
|
+
* gross sales prices
|
|
1283
1283
|
*/
|
|
1284
|
-
|
|
1284
|
+
grossSalesPrice: number;
|
|
1285
1285
|
|
|
1286
1286
|
/**
|
|
1287
1287
|
* Vorgabe Herstellungskosten
|
|
@@ -1289,9 +1289,9 @@ export interface Article {
|
|
|
1289
1289
|
defaultFabricationCost: number;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
|
-
*
|
|
1292
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1293
1293
|
*/
|
|
1294
|
-
|
|
1294
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
1297
|
* Letzter EKP (Startwert)
|
|
@@ -1314,14 +1314,14 @@ export interface Article {
|
|
|
1314
1314
|
shippingLabelPrinting: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
|
-
*
|
|
1317
|
+
* Kontingentartikel
|
|
1318
1318
|
*/
|
|
1319
|
-
|
|
1319
|
+
contingentArticleRef: ApiObjectReference;
|
|
1320
1320
|
|
|
1321
1321
|
/**
|
|
1322
|
-
*
|
|
1322
|
+
* rabattierbarer Artikel?
|
|
1323
1323
|
*/
|
|
1324
|
-
|
|
1324
|
+
discountable: boolean;
|
|
1325
1325
|
|
|
1326
1326
|
/**
|
|
1327
1327
|
* alternative name of this product
|
|
@@ -1437,14 +1437,14 @@ export interface Article$Metric {
|
|
|
1437
1437
|
sizeX: number;
|
|
1438
1438
|
|
|
1439
1439
|
/**
|
|
1440
|
-
*
|
|
1440
|
+
* size unit
|
|
1441
1441
|
*/
|
|
1442
|
-
|
|
1442
|
+
sizeUnit: UnitTypeReference;
|
|
1443
1443
|
|
|
1444
1444
|
/**
|
|
1445
|
-
*
|
|
1445
|
+
* weight
|
|
1446
1446
|
*/
|
|
1447
|
-
|
|
1447
|
+
weight: number;
|
|
1448
1448
|
|
|
1449
1449
|
/**
|
|
1450
1450
|
* size
|
|
@@ -1452,14 +1452,14 @@ export interface Article$Metric {
|
|
|
1452
1452
|
sizeY: number;
|
|
1453
1453
|
|
|
1454
1454
|
/**
|
|
1455
|
-
*
|
|
1455
|
+
* size
|
|
1456
1456
|
*/
|
|
1457
|
-
|
|
1457
|
+
sizeZ: number;
|
|
1458
1458
|
|
|
1459
1459
|
/**
|
|
1460
|
-
*
|
|
1460
|
+
* weight unit
|
|
1461
1461
|
*/
|
|
1462
|
-
|
|
1462
|
+
weightUnit: UnitTypeReference;
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
1465
|
export interface ArticleAssetInformation {
|
|
@@ -1547,14 +1547,14 @@ export interface ArticleCustomer {
|
|
|
1547
1547
|
articleName: string;
|
|
1548
1548
|
|
|
1549
1549
|
/**
|
|
1550
|
-
*
|
|
1550
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1551
1551
|
*/
|
|
1552
|
-
|
|
1552
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1553
1553
|
|
|
1554
1554
|
/**
|
|
1555
|
-
*
|
|
1555
|
+
* Etikettdruck-Einstellungen
|
|
1556
1556
|
*/
|
|
1557
|
-
|
|
1557
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1558
1558
|
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Kunden-Preise
|
|
@@ -1562,14 +1562,14 @@ export interface ArticleCustomer {
|
|
|
1562
1562
|
productPrices: Array<ProductPrice>;
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
1565
|
-
*
|
|
1565
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1566
1566
|
*/
|
|
1567
|
-
|
|
1567
|
+
useDeviatingArticleDescription: boolean;
|
|
1568
1568
|
|
|
1569
1569
|
/**
|
|
1570
|
-
*
|
|
1570
|
+
* Referenced Article
|
|
1571
1571
|
*/
|
|
1572
|
-
|
|
1572
|
+
articleId: number;
|
|
1573
1573
|
|
|
1574
1574
|
/**
|
|
1575
1575
|
* Aktiv?
|
|
@@ -1607,9 +1607,9 @@ export interface ArticleCustomer {
|
|
|
1607
1607
|
defaultGrossPrice: number;
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
|
1610
|
-
*
|
|
1610
|
+
* Abweichende Produktnummer
|
|
1611
1611
|
*/
|
|
1612
|
-
|
|
1612
|
+
deviatingArticleNumber: string;
|
|
1613
1613
|
|
|
1614
1614
|
/**
|
|
1615
1615
|
* Art der Preisermittlung
|
|
@@ -1617,9 +1617,9 @@ export interface ArticleCustomer {
|
|
|
1617
1617
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1618
1618
|
|
|
1619
1619
|
/**
|
|
1620
|
-
*
|
|
1620
|
+
* Artikelnummer
|
|
1621
1621
|
*/
|
|
1622
|
-
|
|
1622
|
+
articleNumber: string;
|
|
1623
1623
|
|
|
1624
1624
|
/**
|
|
1625
1625
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -1729,14 +1729,14 @@ export interface ArticleListing {
|
|
|
1729
1729
|
proposedLowestPriceGross: number;
|
|
1730
1730
|
|
|
1731
1731
|
/**
|
|
1732
|
-
* der
|
|
1732
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1733
1733
|
*/
|
|
1734
|
-
|
|
1734
|
+
customLowestPriceGross: number;
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
|
-
*
|
|
1737
|
+
* der Sales Channel
|
|
1738
1738
|
*/
|
|
1739
|
-
|
|
1739
|
+
salesChannelRef: ApiObjectReference;
|
|
1740
1740
|
|
|
1741
1741
|
/**
|
|
1742
1742
|
* soll der Artikel gelistet werden
|
|
@@ -1946,11 +1946,6 @@ export interface ArticleStorage {
|
|
|
1946
1946
|
*/
|
|
1947
1947
|
replenishmentFrom: number;
|
|
1948
1948
|
|
|
1949
|
-
/**
|
|
1950
|
-
* Bestellte Menge
|
|
1951
|
-
*/
|
|
1952
|
-
orderedQuantity: number;
|
|
1953
|
-
|
|
1954
1949
|
/**
|
|
1955
1950
|
* Aktuelle Menge in Kommissionierung
|
|
1956
1951
|
*/
|
|
@@ -1961,6 +1956,11 @@ export interface ArticleStorage {
|
|
|
1961
1956
|
*/
|
|
1962
1957
|
reorderPoint: number;
|
|
1963
1958
|
|
|
1959
|
+
/**
|
|
1960
|
+
* Bestellte Menge
|
|
1961
|
+
*/
|
|
1962
|
+
orderedQuantity: number;
|
|
1963
|
+
|
|
1964
1964
|
/**
|
|
1965
1965
|
* Nachschub auf
|
|
1966
1966
|
*/
|
|
@@ -2040,9 +2040,9 @@ export interface ArticleStorage {
|
|
|
2040
2040
|
export interface ArticleSupplier {
|
|
2041
2041
|
|
|
2042
2042
|
/**
|
|
2043
|
-
*
|
|
2043
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2044
2044
|
*/
|
|
2045
|
-
|
|
2045
|
+
useSupplierArticleDescription: boolean;
|
|
2046
2046
|
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Anzeigename des Accounts
|
|
@@ -2050,19 +2050,19 @@ export interface ArticleSupplier {
|
|
|
2050
2050
|
accountDisplayName: string;
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
2053
|
-
*
|
|
2053
|
+
* Lieferanten-Meldebestand
|
|
2054
2054
|
*/
|
|
2055
|
-
|
|
2055
|
+
supplierReportingStock: number;
|
|
2056
2056
|
|
|
2057
2057
|
/**
|
|
2058
|
-
*
|
|
2058
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2059
2059
|
*/
|
|
2060
|
-
|
|
2060
|
+
useSupplierArticleIdentifier: boolean;
|
|
2061
2061
|
|
|
2062
2062
|
/**
|
|
2063
|
-
*
|
|
2063
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2064
2064
|
*/
|
|
2065
|
-
|
|
2065
|
+
deliveryTime: number;
|
|
2066
2066
|
|
|
2067
2067
|
/**
|
|
2068
2068
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -2150,14 +2150,14 @@ export interface ArticleSupplier {
|
|
|
2150
2150
|
dropShippingAllowed: boolean;
|
|
2151
2151
|
|
|
2152
2152
|
/**
|
|
2153
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbezeichnung
|
|
2154
2154
|
*/
|
|
2155
|
-
|
|
2155
|
+
supplierArticleName: string;
|
|
2156
2156
|
|
|
2157
2157
|
/**
|
|
2158
|
-
* Abweichende
|
|
2158
|
+
* Abweichende Produktbeschreibung
|
|
2159
2159
|
*/
|
|
2160
|
-
|
|
2160
|
+
supplierArticleDescription: string;
|
|
2161
2161
|
|
|
2162
2162
|
/**
|
|
2163
2163
|
* Standardpreis Netto
|
|
@@ -2170,14 +2170,14 @@ export interface ArticleSupplier {
|
|
|
2170
2170
|
purchaseUnit: number;
|
|
2171
2171
|
|
|
2172
2172
|
/**
|
|
2173
|
-
*
|
|
2173
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2174
2174
|
*/
|
|
2175
|
-
|
|
2175
|
+
orderOnComponentBase: boolean;
|
|
2176
2176
|
|
|
2177
2177
|
/**
|
|
2178
|
-
*
|
|
2178
|
+
* Referenced Supplier-Account
|
|
2179
2179
|
*/
|
|
2180
|
-
|
|
2180
|
+
accountId: number;
|
|
2181
2181
|
|
|
2182
2182
|
/**
|
|
2183
2183
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2223,14 +2223,14 @@ export interface Asset {
|
|
|
2223
2223
|
active: boolean;
|
|
2224
2224
|
|
|
2225
2225
|
/**
|
|
2226
|
-
*
|
|
2226
|
+
* Ende Garantie
|
|
2227
2227
|
*/
|
|
2228
|
-
|
|
2228
|
+
warrantyEndDate: ScriptingDate;
|
|
2229
2229
|
|
|
2230
2230
|
/**
|
|
2231
|
-
*
|
|
2231
|
+
* Zugehörige Assets
|
|
2232
2232
|
*/
|
|
2233
|
-
|
|
2233
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2234
2234
|
|
|
2235
2235
|
/**
|
|
2236
2236
|
* Asset-Bezeichnung
|
|
@@ -2517,14 +2517,14 @@ export interface CountryReference {
|
|
|
2517
2517
|
export interface CreateNewDocumentRequest {
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
* Belegart
|
|
2520
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
|
-
*
|
|
2525
|
+
* Belegart
|
|
2526
2526
|
*/
|
|
2527
|
-
|
|
2527
|
+
documentTypeLabel: string;
|
|
2528
2528
|
|
|
2529
2529
|
/**
|
|
2530
2530
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -2595,14 +2595,14 @@ export interface CrmActivity {
|
|
|
2595
2595
|
info: MetaInfo;
|
|
2596
2596
|
|
|
2597
2597
|
/**
|
|
2598
|
-
*
|
|
2598
|
+
* Aktivität intern abgerechnet?
|
|
2599
2599
|
*/
|
|
2600
|
-
|
|
2600
|
+
internalBilled: boolean;
|
|
2601
2601
|
|
|
2602
2602
|
/**
|
|
2603
|
-
*
|
|
2603
|
+
* geplante Dauer
|
|
2604
2604
|
*/
|
|
2605
|
-
|
|
2605
|
+
plannedDurationInSeconds: number;
|
|
2606
2606
|
|
|
2607
2607
|
/**
|
|
2608
2608
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2640,14 +2640,14 @@ export interface CrmActivity {
|
|
|
2640
2640
|
userRef: ApiObjectReference;
|
|
2641
2641
|
|
|
2642
2642
|
/**
|
|
2643
|
-
*
|
|
2643
|
+
* tatsächliche Startzeit
|
|
2644
2644
|
*/
|
|
2645
|
-
|
|
2645
|
+
startDateTime: ScriptingDateTime;
|
|
2646
2646
|
|
|
2647
2647
|
/**
|
|
2648
|
-
*
|
|
2648
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2649
2649
|
*/
|
|
2650
|
-
|
|
2650
|
+
system: boolean;
|
|
2651
2651
|
|
|
2652
2652
|
/**
|
|
2653
2653
|
* Inhalt dieser Aktivität
|
|
@@ -2754,14 +2754,14 @@ export interface CrmActivityType {
|
|
|
2754
2754
|
export interface CrmChecklistItem {
|
|
2755
2755
|
|
|
2756
2756
|
/**
|
|
2757
|
-
*
|
|
2757
|
+
* Ist das Element "angehakt"?
|
|
2758
2758
|
*/
|
|
2759
|
-
|
|
2759
|
+
checked: boolean;
|
|
2760
2760
|
|
|
2761
2761
|
/**
|
|
2762
|
-
*
|
|
2762
|
+
* Text des Checklisten-Elements
|
|
2763
2763
|
*/
|
|
2764
|
-
|
|
2764
|
+
memo: string;
|
|
2765
2765
|
|
|
2766
2766
|
/**
|
|
2767
2767
|
* Unique identifier of the Object
|
|
@@ -3163,14 +3163,14 @@ export interface CrmProject {
|
|
|
3163
3163
|
priorityRef: ApiObjectReference;
|
|
3164
3164
|
|
|
3165
3165
|
/**
|
|
3166
|
-
*
|
|
3166
|
+
* Phase
|
|
3167
3167
|
*/
|
|
3168
|
-
|
|
3168
|
+
phaseRef: ApiObjectReference;
|
|
3169
3169
|
|
|
3170
3170
|
/**
|
|
3171
|
-
*
|
|
3171
|
+
* Projektleiter vom Auftragnehmer
|
|
3172
3172
|
*/
|
|
3173
|
-
|
|
3173
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3174
3174
|
|
|
3175
3175
|
/**
|
|
3176
3176
|
* Aufgaben-Nummer
|
|
@@ -3188,14 +3188,14 @@ export interface CrmProject {
|
|
|
3188
3188
|
billedTimes: number;
|
|
3189
3189
|
|
|
3190
3190
|
/**
|
|
3191
|
-
*
|
|
3191
|
+
* Geplanter Projektzeitraum (von)
|
|
3192
3192
|
*/
|
|
3193
|
-
|
|
3193
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3194
3194
|
|
|
3195
3195
|
/**
|
|
3196
|
-
*
|
|
3196
|
+
* Einkaufsbelege
|
|
3197
3197
|
*/
|
|
3198
|
-
|
|
3198
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3199
3199
|
|
|
3200
3200
|
/**
|
|
3201
3201
|
* Verkaufsbelege
|
|
@@ -3228,14 +3228,14 @@ export interface CrmProject {
|
|
|
3228
3228
|
info: MetaInfo;
|
|
3229
3229
|
|
|
3230
3230
|
/**
|
|
3231
|
-
*
|
|
3231
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3232
3232
|
*/
|
|
3233
|
-
|
|
3233
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3234
3234
|
|
|
3235
3235
|
/**
|
|
3236
|
-
*
|
|
3236
|
+
* Projektleiter vom Auftraggeber
|
|
3237
3237
|
*/
|
|
3238
|
-
|
|
3238
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3239
3239
|
|
|
3240
3240
|
/**
|
|
3241
3241
|
* Übergeordnete CRM-Objekte
|
|
@@ -3424,14 +3424,14 @@ export interface CrmState {
|
|
|
3424
3424
|
readyToBill: boolean;
|
|
3425
3425
|
|
|
3426
3426
|
/**
|
|
3427
|
-
*
|
|
3427
|
+
* Handelt es sich um einen Anfang-Status
|
|
3428
3428
|
*/
|
|
3429
|
-
|
|
3429
|
+
startState: boolean;
|
|
3430
3430
|
|
|
3431
3431
|
/**
|
|
3432
|
-
*
|
|
3432
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3433
3433
|
*/
|
|
3434
|
-
|
|
3434
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3435
3435
|
|
|
3436
3436
|
/**
|
|
3437
3437
|
* MetaInformations for this Object
|
|
@@ -3480,14 +3480,14 @@ export interface CrmSubType {
|
|
|
3480
3480
|
export interface CrmTask {
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
|
-
*
|
|
3483
|
+
* Liste von Erinnerungen
|
|
3484
3484
|
*/
|
|
3485
|
-
|
|
3485
|
+
reminders: Array<CrmReminder>;
|
|
3486
3486
|
|
|
3487
3487
|
/**
|
|
3488
|
-
*
|
|
3488
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3489
3489
|
*/
|
|
3490
|
-
|
|
3490
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3491
3491
|
|
|
3492
3492
|
/**
|
|
3493
3493
|
* Angebot
|
|
@@ -3685,14 +3685,14 @@ export interface CrmTask {
|
|
|
3685
3685
|
parentRefs: Array<CrmObjectRef>;
|
|
3686
3686
|
|
|
3687
3687
|
/**
|
|
3688
|
-
*
|
|
3688
|
+
* Beauftragte Zeit in Sekunden
|
|
3689
3689
|
*/
|
|
3690
|
-
|
|
3690
|
+
effortCommissioned: number;
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
3693
|
-
*
|
|
3693
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3694
3694
|
*/
|
|
3695
|
-
|
|
3695
|
+
externalRecordedTimes: number;
|
|
3696
3696
|
|
|
3697
3697
|
/**
|
|
3698
3698
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3864,14 +3864,14 @@ export interface CurrencyReference {
|
|
|
3864
3864
|
export interface Customer {
|
|
3865
3865
|
|
|
3866
3866
|
/**
|
|
3867
|
-
*
|
|
3867
|
+
* reference to customer group
|
|
3868
3868
|
*/
|
|
3869
|
-
|
|
3869
|
+
customerGroupRef: ApiObjectReference;
|
|
3870
3870
|
|
|
3871
3871
|
/**
|
|
3872
|
-
*
|
|
3872
|
+
* Option für die Stapelverarbeitung
|
|
3873
3873
|
*/
|
|
3874
|
-
|
|
3874
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3875
3875
|
|
|
3876
3876
|
/**
|
|
3877
3877
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3889,14 +3889,14 @@ export interface Customer {
|
|
|
3889
3889
|
dueDate: ScriptingDate;
|
|
3890
3890
|
|
|
3891
3891
|
/**
|
|
3892
|
-
*
|
|
3892
|
+
* collective billable
|
|
3893
3893
|
*/
|
|
3894
|
-
|
|
3894
|
+
collectiveBillable: boolean;
|
|
3895
3895
|
|
|
3896
3896
|
/**
|
|
3897
|
-
*
|
|
3897
|
+
* Maximal mögliche Lieferungen
|
|
3898
3898
|
*/
|
|
3899
|
-
|
|
3899
|
+
maxDeliveries: number;
|
|
3900
3900
|
|
|
3901
3901
|
/**
|
|
3902
3902
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4108,14 +4108,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4108
4108
|
export interface DeliveryMethod {
|
|
4109
4109
|
|
|
4110
4110
|
/**
|
|
4111
|
-
*
|
|
4111
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4112
4112
|
*/
|
|
4113
|
-
|
|
4113
|
+
splitIntoNewDocument: boolean;
|
|
4114
4114
|
|
|
4115
4115
|
/**
|
|
4116
|
-
*
|
|
4116
|
+
* E-Mail an Versender übergeben
|
|
4117
4117
|
*/
|
|
4118
|
-
|
|
4118
|
+
forwardEmailToShipper: boolean;
|
|
4119
4119
|
|
|
4120
4120
|
/**
|
|
4121
4121
|
* Min. Gewicht pro Paket
|
|
@@ -4178,14 +4178,14 @@ export interface DeliveryMethod {
|
|
|
4178
4178
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4179
4179
|
|
|
4180
4180
|
/**
|
|
4181
|
-
*
|
|
4181
|
+
* Versand-Anbieter
|
|
4182
4182
|
*/
|
|
4183
|
-
|
|
4183
|
+
vdsCarrierId: number;
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
4186
|
-
*
|
|
4186
|
+
* Gültige Ländercodes
|
|
4187
4187
|
*/
|
|
4188
|
-
|
|
4188
|
+
validCountryCodes: Array<string>;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
4191
|
* Standardgewichtseinheit
|
|
@@ -4246,14 +4246,14 @@ export interface DeliveryTerm {
|
|
|
4246
4246
|
label: string;
|
|
4247
4247
|
|
|
4248
4248
|
/**
|
|
4249
|
-
*
|
|
4249
|
+
* information, when the shipping charges should be calculated
|
|
4250
4250
|
*/
|
|
4251
|
-
|
|
4251
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4252
4252
|
|
|
4253
4253
|
/**
|
|
4254
|
-
*
|
|
4254
|
+
* Sprache des Accounts
|
|
4255
4255
|
*/
|
|
4256
|
-
|
|
4256
|
+
languageCode: string;
|
|
4257
4257
|
|
|
4258
4258
|
/**
|
|
4259
4259
|
* calculate shipping charges per parcel
|
|
@@ -4286,14 +4286,14 @@ export interface DeliveryTerm {
|
|
|
4286
4286
|
id: number;
|
|
4287
4287
|
|
|
4288
4288
|
/**
|
|
4289
|
-
*
|
|
4289
|
+
* free shipping net value
|
|
4290
4290
|
*/
|
|
4291
|
-
|
|
4291
|
+
freeShippingNetValue: number;
|
|
4292
4292
|
|
|
4293
4293
|
/**
|
|
4294
|
-
*
|
|
4294
|
+
* Versandkostenartikel
|
|
4295
4295
|
*/
|
|
4296
|
-
|
|
4296
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4297
4297
|
|
|
4298
4298
|
/**
|
|
4299
4299
|
* MetaInformations for this Object
|
|
@@ -4316,14 +4316,14 @@ export interface DmsOutputStream {
|
|
|
4316
4316
|
export interface Document {
|
|
4317
4317
|
|
|
4318
4318
|
/**
|
|
4319
|
-
*
|
|
4319
|
+
* Referenz zum Rechnungskonto
|
|
4320
4320
|
*/
|
|
4321
|
-
|
|
4321
|
+
billingAccountRef: ApiObjectReference;
|
|
4322
4322
|
|
|
4323
4323
|
/**
|
|
4324
|
-
*
|
|
4324
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4325
4325
|
*/
|
|
4326
|
-
|
|
4326
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4327
4327
|
|
|
4328
4328
|
/**
|
|
4329
4329
|
* Externe Belegnummer
|
|
@@ -4403,6 +4403,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4403
4403
|
*/
|
|
4404
4404
|
deliveryQuantityPackages: number;
|
|
4405
4405
|
|
|
4406
|
+
/**
|
|
4407
|
+
* Leitweg-ID
|
|
4408
|
+
*/
|
|
4409
|
+
buyerReference: string;
|
|
4410
|
+
|
|
4406
4411
|
/**
|
|
4407
4412
|
* Bestellnummer aus Vorbeleg
|
|
4408
4413
|
*/
|
|
@@ -4413,11 +4418,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4413
4418
|
*/
|
|
4414
4419
|
taxable: boolean;
|
|
4415
4420
|
|
|
4416
|
-
/**
|
|
4417
|
-
* Leitweg-ID
|
|
4418
|
-
*/
|
|
4419
|
-
buyerReference: string;
|
|
4420
|
-
|
|
4421
4421
|
/**
|
|
4422
4422
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4423
4423
|
*/
|
|
@@ -4469,14 +4469,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4469
4469
|
accountId: number;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
|
-
* Länderkennzeichen
|
|
4472
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4473
4473
|
*/
|
|
4474
|
-
|
|
4474
|
+
sourceCountryCode: string;
|
|
4475
4475
|
|
|
4476
4476
|
/**
|
|
4477
|
-
* Länderkennzeichen
|
|
4477
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4478
4478
|
*/
|
|
4479
|
-
|
|
4479
|
+
performanceCountryCode: string;
|
|
4480
4480
|
|
|
4481
4481
|
/**
|
|
4482
4482
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4538,6 +4538,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4538
4538
|
*/
|
|
4539
4539
|
posPayments: Array<DocumentPosPayment>;
|
|
4540
4540
|
|
|
4541
|
+
/**
|
|
4542
|
+
* Ist die Quittung bezahlt
|
|
4543
|
+
true wenn die Quittung bezahlt ist
|
|
4544
|
+
|
|
4545
|
+
*/
|
|
4546
|
+
posReceiptPayed: boolean;
|
|
4547
|
+
|
|
4541
4548
|
/**
|
|
4542
4549
|
* Kundennummer beim Lieferanten
|
|
4543
4550
|
*/
|
|
@@ -4548,13 +4555,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4548
4555
|
*/
|
|
4549
4556
|
maxDeliveries: number;
|
|
4550
4557
|
|
|
4551
|
-
/**
|
|
4552
|
-
* Ist die Quittung bezahlt
|
|
4553
|
-
true wenn die Quittung bezahlt ist
|
|
4554
|
-
|
|
4555
|
-
*/
|
|
4556
|
-
posReceiptPayed: boolean;
|
|
4557
|
-
|
|
4558
4558
|
/**
|
|
4559
4559
|
* Quittung: Summe Zahlbetrag
|
|
4560
4560
|
*/
|
|
@@ -4611,14 +4611,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4611
4611
|
paymentTermRef: PaymentTermRef;
|
|
4612
4612
|
|
|
4613
4613
|
/**
|
|
4614
|
-
*
|
|
4614
|
+
* Telefon an Versender übergeben
|
|
4615
4615
|
*/
|
|
4616
|
-
|
|
4616
|
+
forwardPhoneToShipper: boolean;
|
|
4617
4617
|
|
|
4618
4618
|
/**
|
|
4619
|
-
*
|
|
4619
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4620
4620
|
*/
|
|
4621
|
-
|
|
4621
|
+
baseTotalDocumentPriceModifier: number;
|
|
4622
4622
|
|
|
4623
4623
|
/**
|
|
4624
4624
|
* Liste der Belegtexte
|
|
@@ -4836,14 +4836,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4836
4836
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4837
4837
|
|
|
4838
4838
|
/**
|
|
4839
|
-
* Rückgeld
|
|
4840
|
-
*/
|
|
4841
|
-
posReceiptChangeAmount: number;
|
|
4842
|
-
|
|
4843
|
-
/**
|
|
4844
|
-
* Referenz auf Lieferbedingung
|
|
4839
|
+
* Rückgeld
|
|
4845
4840
|
*/
|
|
4846
|
-
|
|
4841
|
+
posReceiptChangeAmount: number;
|
|
4847
4842
|
|
|
4848
4843
|
/**
|
|
4849
4844
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4852,6 +4847,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4852
4847
|
*/
|
|
4853
4848
|
posReceiptBalanced: boolean;
|
|
4854
4849
|
|
|
4850
|
+
/**
|
|
4851
|
+
* Referenz auf Lieferbedingung
|
|
4852
|
+
*/
|
|
4853
|
+
deliveryTermRef: ApiObjectReference;
|
|
4854
|
+
|
|
4855
4855
|
/**
|
|
4856
4856
|
* Gesamtbruttogewicht
|
|
4857
4857
|
*/
|
|
@@ -4872,25 +4872,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4872
4872
|
*/
|
|
4873
4873
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4874
4874
|
|
|
4875
|
-
/**
|
|
4876
|
-
* Status der USt-ID-Prüfung
|
|
4877
|
-
*/
|
|
4878
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4879
|
-
|
|
4880
4875
|
/**
|
|
4881
4876
|
* Rechnungsadresse
|
|
4882
4877
|
*/
|
|
4883
4878
|
billingAddress: DocumentAddress;
|
|
4884
4879
|
|
|
4885
4880
|
/**
|
|
4886
|
-
*
|
|
4881
|
+
* Status der USt-ID-Prüfung
|
|
4887
4882
|
*/
|
|
4888
|
-
|
|
4883
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4889
4884
|
|
|
4890
4885
|
/**
|
|
4891
4886
|
* Bestellt durch Ansprechpartner
|
|
4892
4887
|
*/
|
|
4893
4888
|
orderedByPersonRef: ApiObjectReference;
|
|
4889
|
+
|
|
4890
|
+
/**
|
|
4891
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4892
|
+
*/
|
|
4893
|
+
reportGroupRef: ApiObjectReference;
|
|
4894
4894
|
}
|
|
4895
4895
|
|
|
4896
4896
|
export interface DocumentAdditionalInfo {
|
|
@@ -4921,14 +4921,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4921
4921
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4922
4922
|
|
|
4923
4923
|
/**
|
|
4924
|
-
*
|
|
4924
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4925
4925
|
*/
|
|
4926
|
-
|
|
4926
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4927
4927
|
|
|
4928
4928
|
/**
|
|
4929
|
-
*
|
|
4929
|
+
* Herkunft des Berechnungsmodus
|
|
4930
4930
|
*/
|
|
4931
|
-
|
|
4931
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4932
4932
|
|
|
4933
4933
|
/**
|
|
4934
4934
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5023,14 +5023,14 @@ export interface DocumentAddress {
|
|
|
5023
5023
|
postOfficeBox: string;
|
|
5024
5024
|
|
|
5025
5025
|
/**
|
|
5026
|
-
*
|
|
5026
|
+
* country code IsoAlpha3
|
|
5027
5027
|
*/
|
|
5028
|
-
|
|
5028
|
+
countryCode: string;
|
|
5029
5029
|
|
|
5030
5030
|
/**
|
|
5031
|
-
*
|
|
5031
|
+
* Street
|
|
5032
5032
|
*/
|
|
5033
|
-
|
|
5033
|
+
street: string;
|
|
5034
5034
|
|
|
5035
5035
|
/**
|
|
5036
5036
|
* Unique identifier of the Object
|
|
@@ -5048,14 +5048,14 @@ export interface DocumentAddress {
|
|
|
5048
5048
|
info: MetaInfo;
|
|
5049
5049
|
|
|
5050
5050
|
/**
|
|
5051
|
-
*
|
|
5051
|
+
* GLN
|
|
5052
5052
|
*/
|
|
5053
|
-
|
|
5053
|
+
globalLocationNumber: string;
|
|
5054
5054
|
|
|
5055
5055
|
/**
|
|
5056
|
-
*
|
|
5056
|
+
* Lieferart
|
|
5057
5057
|
*/
|
|
5058
|
-
|
|
5058
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5059
5059
|
|
|
5060
5060
|
/**
|
|
5061
5061
|
* Postcode
|
|
@@ -5274,14 +5274,14 @@ export interface DocumentFabricationDetail {
|
|
|
5274
5274
|
targetStorageRef: ApiObjectReference;
|
|
5275
5275
|
|
|
5276
5276
|
/**
|
|
5277
|
-
*
|
|
5277
|
+
* Material-Lager
|
|
5278
5278
|
*/
|
|
5279
|
-
|
|
5279
|
+
componentsStorageRef: ApiObjectReference;
|
|
5280
5280
|
|
|
5281
5281
|
/**
|
|
5282
|
-
*
|
|
5282
|
+
* Notiz
|
|
5283
5283
|
*/
|
|
5284
|
-
|
|
5284
|
+
note: string;
|
|
5285
5285
|
|
|
5286
5286
|
/**
|
|
5287
5287
|
* QS-Lager
|
|
@@ -5509,14 +5509,14 @@ export interface DocumentLine {
|
|
|
5509
5509
|
serialType: ArticleSerialType;
|
|
5510
5510
|
|
|
5511
5511
|
/**
|
|
5512
|
-
*
|
|
5512
|
+
* Preiseinheit
|
|
5513
5513
|
*/
|
|
5514
|
-
|
|
5514
|
+
priceUnit: number;
|
|
5515
5515
|
|
|
5516
5516
|
/**
|
|
5517
|
-
*
|
|
5517
|
+
* Steuerschema
|
|
5518
5518
|
*/
|
|
5519
|
-
|
|
5519
|
+
taxSchemaRef: ApiObjectReference;
|
|
5520
5520
|
|
|
5521
5521
|
/**
|
|
5522
5522
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -6217,14 +6217,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6217
6217
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6218
6218
|
|
|
6219
6219
|
/**
|
|
6220
|
-
*
|
|
6220
|
+
* Abweichende Herstellungskosten
|
|
6221
6221
|
*/
|
|
6222
|
-
|
|
6222
|
+
deviatingUnitPrice: number;
|
|
6223
6223
|
|
|
6224
6224
|
/**
|
|
6225
|
-
*
|
|
6225
|
+
* Menge
|
|
6226
6226
|
*/
|
|
6227
|
-
|
|
6227
|
+
quantity: number;
|
|
6228
6228
|
|
|
6229
6229
|
/**
|
|
6230
6230
|
* Beschreibung
|
|
@@ -6285,14 +6285,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6285
6285
|
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6286
6286
|
|
|
6287
6287
|
/**
|
|
6288
|
-
*
|
|
6288
|
+
* Menge defekt
|
|
6289
6289
|
*/
|
|
6290
|
-
|
|
6290
|
+
quantityDefective: number;
|
|
6291
6291
|
|
|
6292
6292
|
/**
|
|
6293
|
-
*
|
|
6293
|
+
* Freifeld
|
|
6294
6294
|
*/
|
|
6295
|
-
|
|
6295
|
+
custom: EavFabricationline;
|
|
6296
6296
|
|
|
6297
6297
|
/**
|
|
6298
6298
|
* Menge produziert
|
|
@@ -6659,14 +6659,14 @@ export interface DocumentPosPayment {
|
|
|
6659
6659
|
version: number;
|
|
6660
6660
|
|
|
6661
6661
|
/**
|
|
6662
|
-
*
|
|
6662
|
+
* Zahlungsart
|
|
6663
6663
|
*/
|
|
6664
|
-
|
|
6664
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6665
6665
|
|
|
6666
6666
|
/**
|
|
6667
|
-
*
|
|
6667
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6668
6668
|
*/
|
|
6669
|
-
|
|
6669
|
+
withdrawalAmount: number;
|
|
6670
6670
|
|
|
6671
6671
|
/**
|
|
6672
6672
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6949,14 +6949,14 @@ export interface DocumentText {
|
|
|
6949
6949
|
transferableIntoSubsequentDocuments: boolean;
|
|
6950
6950
|
|
|
6951
6951
|
/**
|
|
6952
|
-
*
|
|
6952
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6953
6953
|
*/
|
|
6954
|
-
|
|
6954
|
+
deleted: boolean;
|
|
6955
6955
|
|
|
6956
6956
|
/**
|
|
6957
|
-
*
|
|
6957
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6958
6958
|
*/
|
|
6959
|
-
|
|
6959
|
+
textPosition: TextPosition;
|
|
6960
6960
|
|
|
6961
6961
|
/**
|
|
6962
6962
|
* textBaustein Vorlage
|
|
@@ -7254,14 +7254,14 @@ export const enum DropShippingPolicy {
|
|
|
7254
7254
|
export interface DummySerialNumberStockTransferApi {
|
|
7255
7255
|
|
|
7256
7256
|
/**
|
|
7257
|
-
*
|
|
7257
|
+
* Ziel-Lager
|
|
7258
7258
|
*/
|
|
7259
|
-
|
|
7259
|
+
targetStorageId: number;
|
|
7260
7260
|
|
|
7261
7261
|
/**
|
|
7262
|
-
*
|
|
7262
|
+
* Seriennummer
|
|
7263
7263
|
*/
|
|
7264
|
-
|
|
7264
|
+
serialNumberId: number;
|
|
7265
7265
|
|
|
7266
7266
|
/**
|
|
7267
7267
|
* Bemerkung
|
|
@@ -7274,14 +7274,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7274
7274
|
bookDate: ScriptingDate;
|
|
7275
7275
|
|
|
7276
7276
|
/**
|
|
7277
|
-
*
|
|
7277
|
+
* Die gültige Seriennummer
|
|
7278
7278
|
*/
|
|
7279
|
-
|
|
7279
|
+
targetSerialNumber: string;
|
|
7280
7280
|
|
|
7281
7281
|
/**
|
|
7282
|
-
*
|
|
7282
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7283
7283
|
*/
|
|
7284
|
-
|
|
7284
|
+
targetExpiryDate: ScriptingDate;
|
|
7285
7285
|
|
|
7286
7286
|
/**
|
|
7287
7287
|
* Quell-Lagerplatz
|
|
@@ -7529,14 +7529,14 @@ export interface ExternalDocumentWithTaxesLine {
|
|
|
7529
7529
|
quantity: number;
|
|
7530
7530
|
|
|
7531
7531
|
/**
|
|
7532
|
-
*
|
|
7532
|
+
* Zeilen-Netto
|
|
7533
7533
|
*/
|
|
7534
|
-
|
|
7534
|
+
netAmount: number;
|
|
7535
7535
|
|
|
7536
7536
|
/**
|
|
7537
|
-
*
|
|
7537
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7538
7538
|
*/
|
|
7539
|
-
|
|
7539
|
+
taxValue: number;
|
|
7540
7540
|
|
|
7541
7541
|
/**
|
|
7542
7542
|
* Netto-Einzelpreis
|
|
@@ -7595,14 +7595,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7595
7595
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7596
7596
|
|
|
7597
7597
|
/**
|
|
7598
|
-
*
|
|
7598
|
+
* Key der Belegart
|
|
7599
7599
|
*/
|
|
7600
|
-
|
|
7600
|
+
documentTypeKey: string;
|
|
7601
7601
|
|
|
7602
7602
|
/**
|
|
7603
|
-
*
|
|
7603
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7604
7604
|
*/
|
|
7605
|
-
|
|
7605
|
+
taxIdentificationNumber: string;
|
|
7606
7606
|
}
|
|
7607
7607
|
|
|
7608
7608
|
export interface FabricationComponentForProduction {
|
|
@@ -7656,14 +7656,14 @@ export const enum FabricationOfComponents {
|
|
|
7656
7656
|
export interface FabricationProduceRequest {
|
|
7657
7657
|
|
|
7658
7658
|
/**
|
|
7659
|
-
*
|
|
7659
|
+
* Material automatisch bestätigen
|
|
7660
7660
|
*/
|
|
7661
|
-
|
|
7661
|
+
autoCommitComponents: boolean;
|
|
7662
7662
|
|
|
7663
7663
|
/**
|
|
7664
|
-
*
|
|
7664
|
+
* Zu produzierende Menge
|
|
7665
7665
|
*/
|
|
7666
|
-
|
|
7666
|
+
quantity: number;
|
|
7667
7667
|
|
|
7668
7668
|
/**
|
|
7669
7669
|
* Für die Produktion zu verwendendes Material
|
|
@@ -7717,14 +7717,14 @@ export interface FabricationRevertRequest {
|
|
|
7717
7717
|
quantity: number;
|
|
7718
7718
|
|
|
7719
7719
|
/**
|
|
7720
|
-
*
|
|
7720
|
+
* Material automatisch stornieren
|
|
7721
7721
|
*/
|
|
7722
|
-
|
|
7722
|
+
autoRevertComponents: boolean;
|
|
7723
7723
|
|
|
7724
7724
|
/**
|
|
7725
|
-
*
|
|
7725
|
+
* ID der zu stornierenden Position
|
|
7726
7726
|
*/
|
|
7727
|
-
|
|
7727
|
+
documentLineId: number;
|
|
7728
7728
|
|
|
7729
7729
|
/**
|
|
7730
7730
|
* Zu stornierende Seriennummern
|
|
@@ -8067,26 +8067,26 @@ export interface OpenItem {
|
|
|
8067
8067
|
*/
|
|
8068
8068
|
paymentDueDate: ScriptingDate;
|
|
8069
8069
|
|
|
8070
|
-
/**
|
|
8071
|
-
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8072
|
-
*/
|
|
8073
|
-
performanceCountryCode: string;
|
|
8074
|
-
|
|
8075
8070
|
/**
|
|
8076
8071
|
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8077
8072
|
*/
|
|
8078
8073
|
sourceCountryCode: string;
|
|
8079
8074
|
|
|
8080
8075
|
/**
|
|
8081
|
-
*
|
|
8076
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8082
8077
|
*/
|
|
8083
|
-
|
|
8078
|
+
performanceCountryCode: string;
|
|
8084
8079
|
|
|
8085
8080
|
/**
|
|
8086
8081
|
* agreed Deposit payment date
|
|
8087
8082
|
*/
|
|
8088
8083
|
depositPaymentDate: ScriptingDate;
|
|
8089
8084
|
|
|
8085
|
+
/**
|
|
8086
|
+
* Valutadatum schreibgeschützt
|
|
8087
|
+
*/
|
|
8088
|
+
valueDateReadOnly: boolean;
|
|
8089
|
+
|
|
8090
8090
|
/**
|
|
8091
8091
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8092
8092
|
*/
|
|
@@ -8183,14 +8183,14 @@ export interface OpenItem {
|
|
|
8183
8183
|
sumFee: number;
|
|
8184
8184
|
|
|
8185
8185
|
/**
|
|
8186
|
-
*
|
|
8186
|
+
* The full amount of the payment
|
|
8187
8187
|
*/
|
|
8188
|
-
|
|
8188
|
+
fullPaymentAmount: number;
|
|
8189
8189
|
|
|
8190
8190
|
/**
|
|
8191
|
-
*
|
|
8191
|
+
* Zahlungsplan
|
|
8192
8192
|
*/
|
|
8193
|
-
|
|
8193
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8194
8194
|
|
|
8195
8195
|
/**
|
|
8196
8196
|
* Zahlungssperre
|
|
@@ -8223,14 +8223,14 @@ export interface OpenItem {
|
|
|
8223
8223
|
baseSumDiscount: number;
|
|
8224
8224
|
|
|
8225
8225
|
/**
|
|
8226
|
-
*
|
|
8226
|
+
* Zahlungsvorlage
|
|
8227
8227
|
*/
|
|
8228
|
-
|
|
8228
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8229
8229
|
|
|
8230
8230
|
/**
|
|
8231
|
-
*
|
|
8231
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8232
8232
|
*/
|
|
8233
|
-
|
|
8233
|
+
baseSumDunnings: number;
|
|
8234
8234
|
|
|
8235
8235
|
/**
|
|
8236
8236
|
* Rechnungsbetrag
|
|
@@ -8243,14 +8243,14 @@ export interface OpenItem {
|
|
|
8243
8243
|
taxRateRef: ApiObjectReference;
|
|
8244
8244
|
|
|
8245
8245
|
/**
|
|
8246
|
-
*
|
|
8246
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8247
8247
|
*/
|
|
8248
|
-
|
|
8248
|
+
baseCurrencyCode: string;
|
|
8249
8249
|
|
|
8250
8250
|
/**
|
|
8251
|
-
*
|
|
8251
|
+
* Anzahlungsrechnung
|
|
8252
8252
|
*/
|
|
8253
|
-
|
|
8253
|
+
depositInvoice: ApiObjectReference;
|
|
8254
8254
|
|
|
8255
8255
|
/**
|
|
8256
8256
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8526,14 +8526,14 @@ export interface OpenItemRecord {
|
|
|
8526
8526
|
version: number;
|
|
8527
8527
|
|
|
8528
8528
|
/**
|
|
8529
|
-
*
|
|
8529
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8530
8530
|
*/
|
|
8531
|
-
|
|
8531
|
+
transactionId: number;
|
|
8532
8532
|
|
|
8533
8533
|
/**
|
|
8534
|
-
*
|
|
8534
|
+
* Buchungsbetrag in Basiswährung
|
|
8535
8535
|
*/
|
|
8536
|
-
|
|
8536
|
+
baseAmount: number;
|
|
8537
8537
|
|
|
8538
8538
|
/**
|
|
8539
8539
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8693,14 +8693,14 @@ export interface PaymentMethod {
|
|
|
8693
8693
|
dunnable: boolean;
|
|
8694
8694
|
|
|
8695
8695
|
/**
|
|
8696
|
-
*
|
|
8696
|
+
* Debitoren-OP abschließen?
|
|
8697
8697
|
*/
|
|
8698
|
-
|
|
8698
|
+
closeCustomerAccountType: boolean;
|
|
8699
8699
|
|
|
8700
8700
|
/**
|
|
8701
|
-
*
|
|
8701
|
+
* translations
|
|
8702
8702
|
*/
|
|
8703
|
-
|
|
8703
|
+
translations: Array<DocumentTypeTerm>;
|
|
8704
8704
|
|
|
8705
8705
|
/**
|
|
8706
8706
|
* +Tage für Folgelastschrift
|
|
@@ -8798,26 +8798,26 @@ export interface PaymentTerm {
|
|
|
8798
8798
|
*/
|
|
8799
8799
|
paymentDiscount2: number;
|
|
8800
8800
|
|
|
8801
|
-
/**
|
|
8802
|
-
* Percent for Discount 1
|
|
8803
|
-
*/
|
|
8804
|
-
paymentDiscount1: number;
|
|
8805
|
-
|
|
8806
8801
|
/**
|
|
8807
8802
|
* printDescription
|
|
8808
8803
|
*/
|
|
8809
8804
|
printDescription: string;
|
|
8810
8805
|
|
|
8811
8806
|
/**
|
|
8812
|
-
*
|
|
8807
|
+
* Percent for Discount 1
|
|
8813
8808
|
*/
|
|
8814
|
-
|
|
8809
|
+
paymentDiscount1: number;
|
|
8815
8810
|
|
|
8816
8811
|
/**
|
|
8817
8812
|
* for deposit: remaining term
|
|
8818
8813
|
*/
|
|
8819
8814
|
remainingTermRef: ApiObjectReference;
|
|
8820
8815
|
|
|
8816
|
+
/**
|
|
8817
|
+
* Days for Discount 1
|
|
8818
|
+
*/
|
|
8819
|
+
paymentDays1: number;
|
|
8820
|
+
|
|
8821
8821
|
/**
|
|
8822
8822
|
* Days for Discount 2
|
|
8823
8823
|
*/
|
|
@@ -9172,14 +9172,14 @@ export interface PicklistLine {
|
|
|
9172
9172
|
components: Array<PicklistLineComponent>;
|
|
9173
9173
|
|
|
9174
9174
|
/**
|
|
9175
|
-
*
|
|
9175
|
+
* Artikelbezeichnung
|
|
9176
9176
|
*/
|
|
9177
|
-
|
|
9177
|
+
articleName: string;
|
|
9178
9178
|
|
|
9179
9179
|
/**
|
|
9180
|
-
*
|
|
9180
|
+
* Menge der Position
|
|
9181
9181
|
*/
|
|
9182
|
-
|
|
9182
|
+
quantity: number;
|
|
9183
9183
|
|
|
9184
9184
|
/**
|
|
9185
9185
|
* Artikelbeschreibung
|
|
@@ -9318,14 +9318,14 @@ export interface PicklistLineComponent {
|
|
|
9318
9318
|
quantityCollected: number;
|
|
9319
9319
|
|
|
9320
9320
|
/**
|
|
9321
|
-
*
|
|
9321
|
+
* Artikelbezeichnung
|
|
9322
9322
|
*/
|
|
9323
|
-
|
|
9323
|
+
articleName: string;
|
|
9324
9324
|
|
|
9325
9325
|
/**
|
|
9326
|
-
*
|
|
9326
|
+
* Menge der Position
|
|
9327
9327
|
*/
|
|
9328
|
-
|
|
9328
|
+
quantity: number;
|
|
9329
9329
|
|
|
9330
9330
|
/**
|
|
9331
9331
|
* Artikelbeschreibung
|
|
@@ -9363,14 +9363,14 @@ export interface PicklistLineComponent {
|
|
|
9363
9363
|
targetDocumentLineComponentId: number;
|
|
9364
9364
|
|
|
9365
9365
|
/**
|
|
9366
|
-
*
|
|
9366
|
+
* abweichende Artikelbezeichnung
|
|
9367
9367
|
*/
|
|
9368
|
-
|
|
9368
|
+
articleAlternativeName: string;
|
|
9369
9369
|
|
|
9370
9370
|
/**
|
|
9371
|
-
*
|
|
9371
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9372
9372
|
*/
|
|
9373
|
-
|
|
9373
|
+
quantityPerAssemblyGroup: number;
|
|
9374
9374
|
|
|
9375
9375
|
/**
|
|
9376
9376
|
* Verpackte Menge der Position
|
|
@@ -9538,26 +9538,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9538
9538
|
*/
|
|
9539
9539
|
maxArticleCountPerOrder: number;
|
|
9540
9540
|
|
|
9541
|
-
/**
|
|
9542
|
-
* Maximaler Auftragswert
|
|
9543
|
-
*/
|
|
9544
|
-
maxOrderValue: number;
|
|
9545
|
-
|
|
9546
9541
|
/**
|
|
9547
9542
|
* Alternative Selektion in VQL
|
|
9548
9543
|
*/
|
|
9549
9544
|
alternativeSelectionInVql: string;
|
|
9550
9545
|
|
|
9551
9546
|
/**
|
|
9552
|
-
*
|
|
9547
|
+
* Maximaler Auftragswert
|
|
9553
9548
|
*/
|
|
9554
|
-
|
|
9549
|
+
maxOrderValue: number;
|
|
9555
9550
|
|
|
9556
9551
|
/**
|
|
9557
9552
|
* Selektion über den Bereich vom Lieferdatum
|
|
9558
9553
|
*/
|
|
9559
9554
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9560
9555
|
|
|
9556
|
+
/**
|
|
9557
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9558
|
+
*/
|
|
9559
|
+
maxOrderCount: number;
|
|
9560
|
+
|
|
9561
9561
|
/**
|
|
9562
9562
|
* Nur vollständig lieferbare Positionen
|
|
9563
9563
|
*/
|
|
@@ -9569,14 +9569,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9569
9569
|
documentDateRange: PicklistTemplate$DateRange;
|
|
9570
9570
|
|
|
9571
9571
|
/**
|
|
9572
|
-
*
|
|
9572
|
+
* Liste von gültigen Lagerbereichen
|
|
9573
9573
|
*/
|
|
9574
|
-
|
|
9574
|
+
storageAreaRefs: Array<ApiObjectReference>;
|
|
9575
9575
|
|
|
9576
9576
|
/**
|
|
9577
|
-
*
|
|
9577
|
+
* Id des salesChannels der bei der Selektion berücksichtigt wird
|
|
9578
9578
|
*/
|
|
9579
|
-
|
|
9579
|
+
salesChannelId: number;
|
|
9580
9580
|
|
|
9581
9581
|
/**
|
|
9582
9582
|
* Nur vollständig lieferbare Aufträge
|
|
@@ -9641,6 +9641,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9641
9641
|
*/
|
|
9642
9642
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9643
9643
|
|
|
9644
|
+
/**
|
|
9645
|
+
* Lagerplätze vorgeben
|
|
9646
|
+
*/
|
|
9647
|
+
specifyStorageBins: boolean;
|
|
9648
|
+
|
|
9644
9649
|
/**
|
|
9645
9650
|
* Der zu verwendende Pickwagen
|
|
9646
9651
|
*/
|
|
@@ -9652,20 +9657,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9652
9657
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9653
9658
|
|
|
9654
9659
|
/**
|
|
9655
|
-
*
|
|
9660
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9656
9661
|
*/
|
|
9657
|
-
|
|
9662
|
+
sortByRoutePosition: boolean;
|
|
9658
9663
|
|
|
9659
9664
|
/**
|
|
9660
9665
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9661
9666
|
*/
|
|
9662
9667
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
9663
9668
|
|
|
9664
|
-
/**
|
|
9665
|
-
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9666
|
-
*/
|
|
9667
|
-
sortByRoutePosition: boolean;
|
|
9668
|
-
|
|
9669
9669
|
/**
|
|
9670
9670
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9671
9671
|
*/
|
|
@@ -9724,11 +9724,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9724
9724
|
*/
|
|
9725
9725
|
showShippingFormOnPickingFinish: boolean;
|
|
9726
9726
|
|
|
9727
|
-
/**
|
|
9728
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9729
|
-
*/
|
|
9730
|
-
useDigitalPicklist: boolean;
|
|
9731
|
-
|
|
9732
9727
|
/**
|
|
9733
9728
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9734
9729
|
*/
|
|
@@ -9739,6 +9734,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9739
9734
|
*/
|
|
9740
9735
|
allowPickingOfServiceArticles: boolean;
|
|
9741
9736
|
|
|
9737
|
+
/**
|
|
9738
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9739
|
+
*/
|
|
9740
|
+
useDigitalPicklist: boolean;
|
|
9741
|
+
|
|
9742
9742
|
/**
|
|
9743
9743
|
* Sammelbestätigung erlauben
|
|
9744
9744
|
*/
|
|
@@ -9760,14 +9760,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9760
9760
|
printLabelOnCompleteOrder: boolean;
|
|
9761
9761
|
|
|
9762
9762
|
/**
|
|
9763
|
-
*
|
|
9763
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9764
9764
|
*/
|
|
9765
|
-
|
|
9765
|
+
printLabelAfterPicking: boolean;
|
|
9766
9766
|
|
|
9767
9767
|
/**
|
|
9768
|
-
*
|
|
9768
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9769
9769
|
*/
|
|
9770
|
-
|
|
9770
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9771
9771
|
|
|
9772
9772
|
/**
|
|
9773
9773
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -9859,14 +9859,14 @@ export interface PriceSelectionCriteria {
|
|
|
9859
9859
|
quantity: number;
|
|
9860
9860
|
|
|
9861
9861
|
/**
|
|
9862
|
-
* Liste von
|
|
9862
|
+
* Liste von Artikel-IDs
|
|
9863
9863
|
*/
|
|
9864
|
-
|
|
9864
|
+
articleIds: Array<number>;
|
|
9865
9865
|
|
|
9866
9866
|
/**
|
|
9867
|
-
* Liste von
|
|
9867
|
+
* Liste von Account-IDs
|
|
9868
9868
|
*/
|
|
9869
|
-
|
|
9869
|
+
accountIds: Array<number>;
|
|
9870
9870
|
|
|
9871
9871
|
/**
|
|
9872
9872
|
* ein qualifier
|
|
@@ -9892,14 +9892,14 @@ export interface PriceSelectionCriteria {
|
|
|
9892
9892
|
export interface Product {
|
|
9893
9893
|
|
|
9894
9894
|
/**
|
|
9895
|
-
*
|
|
9895
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
9896
9896
|
*/
|
|
9897
|
-
|
|
9897
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
9898
9898
|
|
|
9899
9899
|
/**
|
|
9900
|
-
*
|
|
9900
|
+
* Zolltarifnummer
|
|
9901
9901
|
*/
|
|
9902
|
-
|
|
9902
|
+
customsTariffNumber: string;
|
|
9903
9903
|
|
|
9904
9904
|
/**
|
|
9905
9905
|
* Gebindeschema dieses Produkts
|
|
@@ -10033,14 +10033,14 @@ export interface ProductArticleRef {
|
|
|
10033
10033
|
export interface ProductDiscount {
|
|
10034
10034
|
|
|
10035
10035
|
/**
|
|
10036
|
-
*
|
|
10036
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10037
10037
|
*/
|
|
10038
|
-
|
|
10038
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10039
10039
|
|
|
10040
10040
|
/**
|
|
10041
|
-
*
|
|
10041
|
+
* Kundengruppe
|
|
10042
10042
|
*/
|
|
10043
|
-
|
|
10043
|
+
customerGroupRef: ApiObjectReference;
|
|
10044
10044
|
|
|
10045
10045
|
/**
|
|
10046
10046
|
* Lieferantengruppe
|
|
@@ -10063,14 +10063,14 @@ export interface ProductDiscount {
|
|
|
10063
10063
|
validFrom: ScriptingDate;
|
|
10064
10064
|
|
|
10065
10065
|
/**
|
|
10066
|
-
*
|
|
10066
|
+
* Warengruppe
|
|
10067
10067
|
*/
|
|
10068
|
-
|
|
10068
|
+
productGroupRef: ApiObjectReference;
|
|
10069
10069
|
|
|
10070
10070
|
/**
|
|
10071
|
-
*
|
|
10071
|
+
* Bestimmt die Art des Rabatts
|
|
10072
10072
|
*/
|
|
10073
|
-
|
|
10073
|
+
modifierType: PriceModifierType;
|
|
10074
10074
|
|
|
10075
10075
|
/**
|
|
10076
10076
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10088,14 +10088,14 @@ export interface ProductDiscount {
|
|
|
10088
10088
|
currencyRef: CurrencyReference;
|
|
10089
10089
|
|
|
10090
10090
|
/**
|
|
10091
|
-
*
|
|
10091
|
+
* Wert des Rabatts
|
|
10092
10092
|
*/
|
|
10093
|
-
|
|
10093
|
+
modifierValue: number;
|
|
10094
10094
|
|
|
10095
10095
|
/**
|
|
10096
|
-
*
|
|
10096
|
+
* Preisgruppe
|
|
10097
10097
|
*/
|
|
10098
|
-
|
|
10098
|
+
priceGroupRef: ApiObjectReference;
|
|
10099
10099
|
|
|
10100
10100
|
/**
|
|
10101
10101
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10103,14 +10103,14 @@ export interface ProductDiscount {
|
|
|
10103
10103
|
qualifier: ProductPriceQualifier;
|
|
10104
10104
|
|
|
10105
10105
|
/**
|
|
10106
|
-
*
|
|
10106
|
+
* Aktionpreis
|
|
10107
10107
|
*/
|
|
10108
|
-
|
|
10108
|
+
specialOfferPrice: boolean;
|
|
10109
10109
|
|
|
10110
10110
|
/**
|
|
10111
|
-
*
|
|
10111
|
+
* Gültig bis
|
|
10112
10112
|
*/
|
|
10113
|
-
|
|
10113
|
+
validUntil: ScriptingDate;
|
|
10114
10114
|
|
|
10115
10115
|
/**
|
|
10116
10116
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10118,14 +10118,14 @@ export interface ProductDiscount {
|
|
|
10118
10118
|
modifierValueType: ValueType;
|
|
10119
10119
|
|
|
10120
10120
|
/**
|
|
10121
|
-
*
|
|
10121
|
+
* Name des Rabatts
|
|
10122
10122
|
*/
|
|
10123
|
-
|
|
10123
|
+
modifierName: string;
|
|
10124
10124
|
|
|
10125
10125
|
/**
|
|
10126
|
-
*
|
|
10126
|
+
* Account, für den der Rabatt gültig ist
|
|
10127
10127
|
*/
|
|
10128
|
-
|
|
10128
|
+
accountRef: ApiObjectReference;
|
|
10129
10129
|
|
|
10130
10130
|
/**
|
|
10131
10131
|
* Unique identifier of the Object
|
|
@@ -10242,14 +10242,14 @@ export interface ProductMainGroup {
|
|
|
10242
10242
|
export interface ProductPrice {
|
|
10243
10243
|
|
|
10244
10244
|
/**
|
|
10245
|
-
*
|
|
10245
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10246
10246
|
*/
|
|
10247
|
-
|
|
10247
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* Kundengruppe
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
customerGroupRef: ApiObjectReference;
|
|
10253
10253
|
|
|
10254
10254
|
/**
|
|
10255
10255
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10336,11 +10336,6 @@ export interface ProductPrice {
|
|
|
10336
10336
|
*/
|
|
10337
10337
|
qualifier: ProductPriceQualifier;
|
|
10338
10338
|
|
|
10339
|
-
/**
|
|
10340
|
-
* Gültig bis
|
|
10341
|
-
*/
|
|
10342
|
-
validUntil: ScriptingDate;
|
|
10343
|
-
|
|
10344
10339
|
/**
|
|
10345
10340
|
* Aktionpreis
|
|
10346
10341
|
*/
|
|
@@ -10351,6 +10346,11 @@ export interface ProductPrice {
|
|
|
10351
10346
|
*/
|
|
10352
10347
|
priceBase: ArticlePriceBase;
|
|
10353
10348
|
|
|
10349
|
+
/**
|
|
10350
|
+
* Gültig bis
|
|
10351
|
+
*/
|
|
10352
|
+
validUntil: ScriptingDate;
|
|
10353
|
+
|
|
10354
10354
|
/**
|
|
10355
10355
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10356
10356
|
*/
|
|
@@ -10451,15 +10451,20 @@ export const enum RegulationSet {
|
|
|
10451
10451
|
|
|
10452
10452
|
export interface RequestDocument {
|
|
10453
10453
|
|
|
10454
|
+
/**
|
|
10455
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10456
|
+
*/
|
|
10457
|
+
incomingGoodsStorageBinId: number;
|
|
10458
|
+
|
|
10454
10459
|
/**
|
|
10455
10460
|
* Belegdatum
|
|
10456
10461
|
*/
|
|
10457
10462
|
documentDate: ScriptingDate;
|
|
10458
10463
|
|
|
10459
10464
|
/**
|
|
10460
|
-
* ID
|
|
10465
|
+
* ID der Kassenschublade (bei POS)
|
|
10461
10466
|
*/
|
|
10462
|
-
|
|
10467
|
+
cashDrawerId: number;
|
|
10463
10468
|
|
|
10464
10469
|
/**
|
|
10465
10470
|
* Der Anzahlungsbetrag
|
|
@@ -10471,11 +10476,6 @@ export interface RequestDocument {
|
|
|
10471
10476
|
*/
|
|
10472
10477
|
performanceDate: ScriptingDate;
|
|
10473
10478
|
|
|
10474
|
-
/**
|
|
10475
|
-
* ID der Kassenschublade (bei POS)
|
|
10476
|
-
*/
|
|
10477
|
-
cashDrawerId: number;
|
|
10478
|
-
|
|
10479
10479
|
/**
|
|
10480
10480
|
* Für interne Zwecke: Liefermethode für das Document
|
|
10481
10481
|
*/
|
|
@@ -10537,14 +10537,14 @@ export interface RequestDocument {
|
|
|
10537
10537
|
lines: Array<RequestDocumentLine>;
|
|
10538
10538
|
|
|
10539
10539
|
/**
|
|
10540
|
-
*
|
|
10540
|
+
* ID der Kasse (bei POS)
|
|
10541
10541
|
*/
|
|
10542
|
-
|
|
10542
|
+
posRegisterId: number;
|
|
10543
10543
|
|
|
10544
10544
|
/**
|
|
10545
|
-
*
|
|
10545
|
+
* Die Vertragsdetails
|
|
10546
10546
|
*/
|
|
10547
|
-
|
|
10547
|
+
contractDetail: DocumentContractDetail;
|
|
10548
10548
|
|
|
10549
10549
|
/**
|
|
10550
10550
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10602,14 +10602,14 @@ export interface RequestDocument {
|
|
|
10602
10602
|
texts: Array<DocumentText>;
|
|
10603
10603
|
|
|
10604
10604
|
/**
|
|
10605
|
-
*
|
|
10605
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10606
10606
|
*/
|
|
10607
|
-
|
|
10607
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10608
10608
|
|
|
10609
10609
|
/**
|
|
10610
|
-
*
|
|
10610
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10611
10611
|
*/
|
|
10612
|
-
|
|
10612
|
+
processedByPicklistProcessing: boolean;
|
|
10613
10613
|
|
|
10614
10614
|
/**
|
|
10615
10615
|
* Die Rabatte des Beleges
|
|
@@ -10705,14 +10705,14 @@ export interface RequestDocumentLine {
|
|
|
10705
10705
|
supplierAccountId: number;
|
|
10706
10706
|
|
|
10707
10707
|
/**
|
|
10708
|
-
*
|
|
10708
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
10709
10709
|
*/
|
|
10710
|
-
|
|
10710
|
+
mainArticleLinePosition: number;
|
|
10711
10711
|
|
|
10712
10712
|
/**
|
|
10713
|
-
*
|
|
10713
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
10714
10714
|
*/
|
|
10715
|
-
|
|
10715
|
+
quantity: number;
|
|
10716
10716
|
|
|
10717
10717
|
/**
|
|
10718
10718
|
* Versandkosten mit Bedingungen
|
|
@@ -10779,6 +10779,11 @@ export interface RequestDocumentLine {
|
|
|
10779
10779
|
*/
|
|
10780
10780
|
name: string;
|
|
10781
10781
|
|
|
10782
|
+
/**
|
|
10783
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10784
|
+
*/
|
|
10785
|
+
externalArticleNumber: string;
|
|
10786
|
+
|
|
10782
10787
|
/**
|
|
10783
10788
|
* ID der Quell-Belegposition
|
|
10784
10789
|
*/
|
|
@@ -10790,19 +10795,14 @@ export interface RequestDocumentLine {
|
|
|
10790
10795
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10791
10796
|
|
|
10792
10797
|
/**
|
|
10793
|
-
*
|
|
10798
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10794
10799
|
*/
|
|
10795
|
-
|
|
10800
|
+
doLabelPrint: boolean;
|
|
10796
10801
|
|
|
10797
10802
|
/**
|
|
10798
10803
|
* (optional) Preis des Artikels dieser Position
|
|
10799
10804
|
*/
|
|
10800
10805
|
productPrice: number;
|
|
10801
|
-
|
|
10802
|
-
/**
|
|
10803
|
-
* Zu der Zeile Etikettendruck anstoßen
|
|
10804
|
-
*/
|
|
10805
|
-
doLabelPrint: boolean;
|
|
10806
10806
|
}
|
|
10807
10807
|
|
|
10808
10808
|
export interface RequestDocumentLineBooking {
|
|
@@ -10959,14 +10959,14 @@ export interface SalesAgent {
|
|
|
10959
10959
|
note: string;
|
|
10960
10960
|
|
|
10961
10961
|
/**
|
|
10962
|
-
*
|
|
10962
|
+
* is sales agent taxable
|
|
10963
10963
|
*/
|
|
10964
|
-
|
|
10964
|
+
taxable: boolean;
|
|
10965
10965
|
|
|
10966
10966
|
/**
|
|
10967
|
-
*
|
|
10967
|
+
* reference to the delivery method
|
|
10968
10968
|
*/
|
|
10969
|
-
|
|
10969
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10970
10970
|
|
|
10971
10971
|
/**
|
|
10972
10972
|
* Freifelder
|
|
@@ -11443,14 +11443,14 @@ export interface ShelfDocument {
|
|
|
11443
11443
|
tags: Array<TagDto>;
|
|
11444
11444
|
|
|
11445
11445
|
/**
|
|
11446
|
-
*
|
|
11446
|
+
* Mehrsprachige Bezeichnungen
|
|
11447
11447
|
*/
|
|
11448
|
-
|
|
11448
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11449
11449
|
|
|
11450
11450
|
/**
|
|
11451
|
-
*
|
|
11451
|
+
* share informations
|
|
11452
11452
|
*/
|
|
11453
|
-
|
|
11453
|
+
shares: Array<ShelfShare>;
|
|
11454
11454
|
|
|
11455
11455
|
/**
|
|
11456
11456
|
* Automatische Löschung ab
|
|
@@ -11582,14 +11582,14 @@ export interface ShelfDocumentType {
|
|
|
11582
11582
|
active: boolean;
|
|
11583
11583
|
|
|
11584
11584
|
/**
|
|
11585
|
-
*
|
|
11585
|
+
* access level or reading
|
|
11586
11586
|
*/
|
|
11587
|
-
|
|
11587
|
+
accessLevelRead: number;
|
|
11588
11588
|
|
|
11589
11589
|
/**
|
|
11590
|
-
*
|
|
11590
|
+
* label of type
|
|
11591
11591
|
*/
|
|
11592
|
-
|
|
11592
|
+
label: string;
|
|
11593
11593
|
|
|
11594
11594
|
/**
|
|
11595
11595
|
* storage rule for revisions
|
|
@@ -11635,14 +11635,14 @@ export interface ShelfFile {
|
|
|
11635
11635
|
subFiles: Array<SubFileInfo>;
|
|
11636
11636
|
|
|
11637
11637
|
/**
|
|
11638
|
-
*
|
|
11638
|
+
* revision number of this file
|
|
11639
11639
|
*/
|
|
11640
|
-
|
|
11640
|
+
revisionNumber: number;
|
|
11641
11641
|
|
|
11642
11642
|
/**
|
|
11643
|
-
*
|
|
11643
|
+
* fileSize
|
|
11644
11644
|
*/
|
|
11645
|
-
|
|
11645
|
+
fileSize: number;
|
|
11646
11646
|
|
|
11647
11647
|
/**
|
|
11648
11648
|
* file-extension of this entry
|
|
@@ -11670,14 +11670,14 @@ export interface ShelfFile {
|
|
|
11670
11670
|
version: number;
|
|
11671
11671
|
|
|
11672
11672
|
/**
|
|
11673
|
-
*
|
|
11673
|
+
* meta data
|
|
11674
11674
|
*/
|
|
11675
|
-
|
|
11675
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11676
11676
|
|
|
11677
11677
|
/**
|
|
11678
|
-
*
|
|
11678
|
+
* current reference of this file in our storage
|
|
11679
11679
|
*/
|
|
11680
|
-
|
|
11680
|
+
storageHandle: string;
|
|
11681
11681
|
|
|
11682
11682
|
/**
|
|
11683
11683
|
* MetaInformations for this Object
|
|
@@ -11724,14 +11724,14 @@ export interface ShelfShare {
|
|
|
11724
11724
|
publishState: ShelfSharePublishState;
|
|
11725
11725
|
|
|
11726
11726
|
/**
|
|
11727
|
-
*
|
|
11727
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11728
11728
|
*/
|
|
11729
|
-
|
|
11729
|
+
publicUrlDurationInMinutes: number;
|
|
11730
11730
|
|
|
11731
11731
|
/**
|
|
11732
|
-
*
|
|
11732
|
+
* Freifelder
|
|
11733
11733
|
*/
|
|
11734
|
-
|
|
11734
|
+
custom: EavShelfshare;
|
|
11735
11735
|
|
|
11736
11736
|
/**
|
|
11737
11737
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11943,14 +11943,14 @@ export interface StockMovementManualApi {
|
|
|
11943
11943
|
export interface StockTransferApi {
|
|
11944
11944
|
|
|
11945
11945
|
/**
|
|
11946
|
-
*
|
|
11946
|
+
* Ziel-Lager
|
|
11947
11947
|
*/
|
|
11948
|
-
|
|
11948
|
+
targetStorageId: number;
|
|
11949
11949
|
|
|
11950
11950
|
/**
|
|
11951
|
-
*
|
|
11951
|
+
* Seriennummer
|
|
11952
11952
|
*/
|
|
11953
|
-
|
|
11953
|
+
serialNumberId: number;
|
|
11954
11954
|
|
|
11955
11955
|
/**
|
|
11956
11956
|
* Bemerkung
|
|
@@ -12165,6 +12165,11 @@ export interface Supplier {
|
|
|
12165
12165
|
*/
|
|
12166
12166
|
info: MetaInfo;
|
|
12167
12167
|
|
|
12168
|
+
/**
|
|
12169
|
+
* Lieferantengruppe
|
|
12170
|
+
*/
|
|
12171
|
+
supplierGroupRef: ApiObjectReference;
|
|
12172
|
+
|
|
12168
12173
|
/**
|
|
12169
12174
|
* reference to the delivery method
|
|
12170
12175
|
*/
|
|
@@ -12175,11 +12180,6 @@ export interface Supplier {
|
|
|
12175
12180
|
*/
|
|
12176
12181
|
taxable: boolean;
|
|
12177
12182
|
|
|
12178
|
-
/**
|
|
12179
|
-
* Lieferantengruppe
|
|
12180
|
-
*/
|
|
12181
|
-
supplierGroupRef: ApiObjectReference;
|
|
12182
|
-
|
|
12183
12183
|
/**
|
|
12184
12184
|
* Mahnen?
|
|
12185
12185
|
*/
|
|
@@ -12264,14 +12264,14 @@ export interface TagDto {
|
|
|
12264
12264
|
editColor: string;
|
|
12265
12265
|
|
|
12266
12266
|
/**
|
|
12267
|
-
* Farbe
|
|
12267
|
+
* Farbe in Such-GUI
|
|
12268
12268
|
*/
|
|
12269
|
-
|
|
12269
|
+
searchColor: string;
|
|
12270
12270
|
|
|
12271
12271
|
/**
|
|
12272
|
-
* Farbe
|
|
12272
|
+
* Farbe für die Anzeige des Tags
|
|
12273
12273
|
*/
|
|
12274
|
-
|
|
12274
|
+
color: string;
|
|
12275
12275
|
|
|
12276
12276
|
/**
|
|
12277
12277
|
* Beschriftung des Tags
|
|
@@ -12315,14 +12315,14 @@ export const enum TagType {
|
|
|
12315
12315
|
export interface TaxIdForeignCountry {
|
|
12316
12316
|
|
|
12317
12317
|
/**
|
|
12318
|
-
*
|
|
12318
|
+
* Tax ID of the company in the associated country
|
|
12319
12319
|
*/
|
|
12320
|
-
|
|
12320
|
+
taxId: string;
|
|
12321
12321
|
|
|
12322
12322
|
/**
|
|
12323
|
-
*
|
|
12323
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12324
12324
|
*/
|
|
12325
|
-
|
|
12325
|
+
countryCode: string;
|
|
12326
12326
|
|
|
12327
12327
|
/**
|
|
12328
12328
|
* Unique identifier of the Object
|
|
@@ -12513,14 +12513,14 @@ export interface TextTemplate {
|
|
|
12513
12513
|
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12514
12514
|
|
|
12515
12515
|
/**
|
|
12516
|
-
*
|
|
12516
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12517
12517
|
*/
|
|
12518
|
-
|
|
12518
|
+
separateLine: boolean;
|
|
12519
12519
|
|
|
12520
12520
|
/**
|
|
12521
|
-
*
|
|
12521
|
+
* article für den diese Templates gelten
|
|
12522
12522
|
*/
|
|
12523
|
-
|
|
12523
|
+
articleId: number;
|
|
12524
12524
|
|
|
12525
12525
|
/**
|
|
12526
12526
|
* Wann wird ein UI-Hint angezeigt
|
|
@@ -12707,14 +12707,14 @@ export interface User {
|
|
|
12707
12707
|
version: number;
|
|
12708
12708
|
|
|
12709
12709
|
/**
|
|
12710
|
-
*
|
|
12710
|
+
* is the email verified
|
|
12711
12711
|
*/
|
|
12712
|
-
|
|
12712
|
+
emailVerified: boolean;
|
|
12713
12713
|
|
|
12714
12714
|
/**
|
|
12715
|
-
*
|
|
12715
|
+
* first-name
|
|
12716
12716
|
*/
|
|
12717
|
-
|
|
12717
|
+
firstName: string;
|
|
12718
12718
|
|
|
12719
12719
|
/**
|
|
12720
12720
|
* email-address
|