@vario-software/types 2026.20.3 → 2026.21.0
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/schema/erp.d.ts +2094 -1237
- package/scripting/services.d.ts +94 -53
- package/scripting/types.d.ts +468 -306
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
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
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Country code
|
|
@@ -335,26 +335,26 @@ export interface AccountAddress {
|
|
|
335
335
|
*/
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
|
-
/**
|
|
339
|
-
* Leitweg-ID
|
|
340
|
-
*/
|
|
341
|
-
buyerReference: string;
|
|
342
|
-
|
|
343
338
|
/**
|
|
344
339
|
* GLN/ILN as location identifier for this address
|
|
345
340
|
*/
|
|
346
341
|
globalLocationNumber: string;
|
|
347
342
|
|
|
348
343
|
/**
|
|
349
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
350
345
|
*/
|
|
351
|
-
|
|
346
|
+
buyerReference: string;
|
|
352
347
|
|
|
353
348
|
/**
|
|
354
349
|
* Custom data
|
|
355
350
|
*/
|
|
356
351
|
custom: EavAccountaddress;
|
|
357
352
|
|
|
353
|
+
/**
|
|
354
|
+
* abweichende Zahlungsart
|
|
355
|
+
*/
|
|
356
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
357
|
+
|
|
358
358
|
/**
|
|
359
359
|
* Postcode
|
|
360
360
|
*/
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* Hauptbankverbindung für
|
|
493
|
-
*/
|
|
494
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* city of the bank
|
|
498
493
|
*/
|
|
499
494
|
bankCity: string;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* origin type
|
|
508
503
|
*/
|
|
509
504
|
originType: AccountBankdetail$OriginType;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* Is default bank?
|
|
508
|
+
*/
|
|
509
|
+
defaultBank: boolean;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
payablesSum: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Kreditlimit
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
maximalLoan: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -652,6 +652,11 @@ export interface AccountManufacturer {
|
|
|
652
652
|
*/
|
|
653
653
|
id: number;
|
|
654
654
|
|
|
655
|
+
/**
|
|
656
|
+
* Ist der UVP verpflichtend?
|
|
657
|
+
*/
|
|
658
|
+
forcedRecommendedRetailPrice: boolean;
|
|
659
|
+
|
|
655
660
|
/**
|
|
656
661
|
* Version Identifier for this Object (for PUT)
|
|
657
662
|
*/
|
|
@@ -999,14 +1004,14 @@ export interface Article {
|
|
|
999
1004
|
customsTariffNumber: string;
|
|
1000
1005
|
|
|
1001
1006
|
/**
|
|
1002
|
-
*
|
|
1007
|
+
* is this product purchasable
|
|
1003
1008
|
*/
|
|
1004
|
-
|
|
1009
|
+
purchasable: boolean;
|
|
1005
1010
|
|
|
1006
1011
|
/**
|
|
1007
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1008
1013
|
*/
|
|
1009
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1010
1015
|
|
|
1011
1016
|
/**
|
|
1012
1017
|
* base capacity unit
|
|
@@ -1043,6 +1048,11 @@ export interface Article {
|
|
|
1043
1048
|
*/
|
|
1044
1049
|
productUnit: UnitTypeReference;
|
|
1045
1050
|
|
|
1051
|
+
/**
|
|
1052
|
+
* Ist der UVP verpflichtend?
|
|
1053
|
+
*/
|
|
1054
|
+
forcedRecommendedRetailPrice: boolean;
|
|
1055
|
+
|
|
1046
1056
|
/**
|
|
1047
1057
|
* Garantie in Monaten
|
|
1048
1058
|
*/
|
|
@@ -1208,6 +1218,11 @@ export interface Article {
|
|
|
1208
1218
|
*/
|
|
1209
1219
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1210
1220
|
|
|
1221
|
+
/**
|
|
1222
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1223
|
+
*/
|
|
1224
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1225
|
+
|
|
1211
1226
|
/**
|
|
1212
1227
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1213
1228
|
*/
|
|
@@ -1258,6 +1273,11 @@ export interface Article {
|
|
|
1258
1273
|
*/
|
|
1259
1274
|
grossSalesPrice: number;
|
|
1260
1275
|
|
|
1276
|
+
/**
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
|
+
*/
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
|
+
|
|
1261
1281
|
/**
|
|
1262
1282
|
* Letzter EKP (Startwert)
|
|
1263
1283
|
*/
|
|
@@ -1269,14 +1289,14 @@ export interface Article {
|
|
|
1269
1289
|
permissibleForOrderProposal: boolean;
|
|
1270
1290
|
|
|
1271
1291
|
/**
|
|
1272
|
-
*
|
|
1292
|
+
* Versandlabeldruck
|
|
1273
1293
|
*/
|
|
1274
|
-
|
|
1294
|
+
shippingLabelPrinting: boolean;
|
|
1275
1295
|
|
|
1276
1296
|
/**
|
|
1277
|
-
*
|
|
1297
|
+
* reference to Product
|
|
1278
1298
|
*/
|
|
1279
|
-
|
|
1299
|
+
productRef: ApiObjectReference;
|
|
1280
1300
|
|
|
1281
1301
|
/**
|
|
1282
1302
|
* Artikel ist Gefahrgut
|
|
@@ -1289,14 +1309,14 @@ export interface Article {
|
|
|
1289
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1290
1310
|
|
|
1291
1311
|
/**
|
|
1292
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1293
1313
|
*/
|
|
1294
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1295
1315
|
|
|
1296
1316
|
/**
|
|
1297
|
-
*
|
|
1317
|
+
* alternative name of this product
|
|
1298
1318
|
*/
|
|
1299
|
-
|
|
1319
|
+
alternativeName: string;
|
|
1300
1320
|
|
|
1301
1321
|
/**
|
|
1302
1322
|
* base capacity
|
|
@@ -1329,14 +1349,14 @@ export interface Article {
|
|
|
1329
1349
|
custom: EavArticle;
|
|
1330
1350
|
|
|
1331
1351
|
/**
|
|
1332
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1333
1353
|
*/
|
|
1334
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1335
1355
|
|
|
1336
1356
|
/**
|
|
1337
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1338
1358
|
*/
|
|
1339
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1340
1360
|
|
|
1341
1361
|
/**
|
|
1342
1362
|
* Hersteller
|
|
@@ -1373,6 +1393,11 @@ export interface Article {
|
|
|
1373
1393
|
*/
|
|
1374
1394
|
commissionable: boolean;
|
|
1375
1395
|
|
|
1396
|
+
/**
|
|
1397
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
1398
|
+
*/
|
|
1399
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
1400
|
+
|
|
1376
1401
|
/**
|
|
1377
1402
|
* Preisbasis
|
|
1378
1403
|
*/
|
|
@@ -1458,6 +1483,11 @@ export const enum ArticleAvailabilityDetermination$Operation {
|
|
|
1458
1483
|
|
|
1459
1484
|
export interface ArticleIdentifier {
|
|
1460
1485
|
|
|
1486
|
+
/**
|
|
1487
|
+
* Standard Artikel Kennung?
|
|
1488
|
+
*/
|
|
1489
|
+
defaultArticleIdentifier: boolean;
|
|
1490
|
+
|
|
1461
1491
|
/**
|
|
1462
1492
|
* identifier type
|
|
1463
1493
|
*/
|
|
@@ -1723,6 +1753,7 @@ export const enum ArticleSerialType {
|
|
|
1723
1753
|
NONE = 'NONE',
|
|
1724
1754
|
SERIAL_NUMBER = 'SERIAL_NUMBER',
|
|
1725
1755
|
LOT = 'LOT',
|
|
1756
|
+
BEST_BEFORE = 'BEST_BEFORE',
|
|
1726
1757
|
DOUBLE_SERIAL_NUMBER = 'DOUBLE_SERIAL_NUMBER'
|
|
1727
1758
|
}
|
|
1728
1759
|
|
|
@@ -1738,11 +1769,6 @@ export interface ArticleStorage {
|
|
|
1738
1769
|
*/
|
|
1739
1770
|
replenishmentFrom: number;
|
|
1740
1771
|
|
|
1741
|
-
/**
|
|
1742
|
-
* Aktuelle Menge in Kommissionierung
|
|
1743
|
-
*/
|
|
1744
|
-
quantityInPicking: number;
|
|
1745
|
-
|
|
1746
1772
|
/**
|
|
1747
1773
|
* Meldebestand
|
|
1748
1774
|
*/
|
|
@@ -1753,6 +1779,11 @@ export interface ArticleStorage {
|
|
|
1753
1779
|
*/
|
|
1754
1780
|
orderedQuantity: number;
|
|
1755
1781
|
|
|
1782
|
+
/**
|
|
1783
|
+
* Aktuelle Menge in Kommissionierung
|
|
1784
|
+
*/
|
|
1785
|
+
quantityInPicking: number;
|
|
1786
|
+
|
|
1756
1787
|
/**
|
|
1757
1788
|
* Nachschub auf
|
|
1758
1789
|
*/
|
|
@@ -1804,14 +1835,14 @@ export interface ArticleStorage {
|
|
|
1804
1835
|
storageRef: ApiObjectReference;
|
|
1805
1836
|
|
|
1806
1837
|
/**
|
|
1807
|
-
*
|
|
1838
|
+
* Vorgabe-Lagerplätze
|
|
1808
1839
|
*/
|
|
1809
|
-
|
|
1840
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1810
1841
|
|
|
1811
1842
|
/**
|
|
1812
|
-
*
|
|
1843
|
+
* Sollbestand
|
|
1813
1844
|
*/
|
|
1814
|
-
|
|
1845
|
+
targetStock: number;
|
|
1815
1846
|
|
|
1816
1847
|
/**
|
|
1817
1848
|
* Aktuelle Menge in Produktion
|
|
@@ -1902,14 +1933,14 @@ export interface ArticleSupplier {
|
|
|
1902
1933
|
info: MetaInfo;
|
|
1903
1934
|
|
|
1904
1935
|
/**
|
|
1905
|
-
*
|
|
1936
|
+
* Verpackungseinheit
|
|
1906
1937
|
*/
|
|
1907
|
-
|
|
1938
|
+
packagingUnit: number;
|
|
1908
1939
|
|
|
1909
1940
|
/**
|
|
1910
|
-
*
|
|
1941
|
+
* Referenced Article name
|
|
1911
1942
|
*/
|
|
1912
|
-
|
|
1943
|
+
articleName: string;
|
|
1913
1944
|
|
|
1914
1945
|
/**
|
|
1915
1946
|
* Lieferanten-Preise
|
|
@@ -1942,14 +1973,14 @@ export interface ArticleSupplier {
|
|
|
1942
1973
|
dropShippingAllowed: boolean;
|
|
1943
1974
|
|
|
1944
1975
|
/**
|
|
1945
|
-
* Abweichende
|
|
1976
|
+
* Abweichende Produktbezeichnung
|
|
1946
1977
|
*/
|
|
1947
|
-
|
|
1978
|
+
supplierArticleName: string;
|
|
1948
1979
|
|
|
1949
1980
|
/**
|
|
1950
|
-
* Abweichende
|
|
1981
|
+
* Abweichende Produktbeschreibung
|
|
1951
1982
|
*/
|
|
1952
|
-
|
|
1983
|
+
supplierArticleDescription: string;
|
|
1953
1984
|
|
|
1954
1985
|
/**
|
|
1955
1986
|
* Standardpreis Netto
|
|
@@ -2399,14 +2430,14 @@ export interface CrmActivityType {
|
|
|
2399
2430
|
export interface CrmChecklistItem {
|
|
2400
2431
|
|
|
2401
2432
|
/**
|
|
2402
|
-
*
|
|
2433
|
+
* Ist das Element "angehakt"?
|
|
2403
2434
|
*/
|
|
2404
|
-
|
|
2435
|
+
checked: boolean;
|
|
2405
2436
|
|
|
2406
2437
|
/**
|
|
2407
|
-
*
|
|
2438
|
+
* Text des Checklisten-Elements
|
|
2408
2439
|
*/
|
|
2409
|
-
|
|
2440
|
+
memo: string;
|
|
2410
2441
|
|
|
2411
2442
|
/**
|
|
2412
2443
|
* Unique identifier of the Object
|
|
@@ -2517,14 +2548,14 @@ export interface CrmDeal {
|
|
|
2517
2548
|
info: MetaInfo;
|
|
2518
2549
|
|
|
2519
2550
|
/**
|
|
2520
|
-
*
|
|
2551
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2521
2552
|
*/
|
|
2522
|
-
|
|
2553
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2523
2554
|
|
|
2524
2555
|
/**
|
|
2525
|
-
*
|
|
2556
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2526
2557
|
*/
|
|
2527
|
-
|
|
2558
|
+
assignedUserRef: ApiObjectReference;
|
|
2528
2559
|
|
|
2529
2560
|
/**
|
|
2530
2561
|
* Chance (in Prozent)
|
|
@@ -2798,14 +2829,14 @@ export interface CrmProject {
|
|
|
2798
2829
|
priorityRef: ApiObjectReference;
|
|
2799
2830
|
|
|
2800
2831
|
/**
|
|
2801
|
-
*
|
|
2832
|
+
* Phase
|
|
2802
2833
|
*/
|
|
2803
|
-
|
|
2834
|
+
phaseRef: ApiObjectReference;
|
|
2804
2835
|
|
|
2805
2836
|
/**
|
|
2806
|
-
*
|
|
2837
|
+
* Projektleiter vom Auftragnehmer
|
|
2807
2838
|
*/
|
|
2808
|
-
|
|
2839
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2809
2840
|
|
|
2810
2841
|
/**
|
|
2811
2842
|
* Aufgaben-Nummer
|
|
@@ -3109,9 +3140,9 @@ export interface CrmSubType {
|
|
|
3109
3140
|
export interface CrmTask {
|
|
3110
3141
|
|
|
3111
3142
|
/**
|
|
3112
|
-
*
|
|
3143
|
+
* Liste von Erinnerungen
|
|
3113
3144
|
*/
|
|
3114
|
-
|
|
3145
|
+
reminders: Array<CrmReminder>;
|
|
3115
3146
|
|
|
3116
3147
|
/**
|
|
3117
3148
|
* Angebot
|
|
@@ -3119,9 +3150,9 @@ export interface CrmTask {
|
|
|
3119
3150
|
customerOfferRef: DocumentRef;
|
|
3120
3151
|
|
|
3121
3152
|
/**
|
|
3122
|
-
*
|
|
3153
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3123
3154
|
*/
|
|
3124
|
-
|
|
3155
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3125
3156
|
|
|
3126
3157
|
/**
|
|
3127
3158
|
* Notizen
|
|
@@ -3304,14 +3335,14 @@ export interface CrmTask {
|
|
|
3304
3335
|
assignedUserRef: ApiObjectReference;
|
|
3305
3336
|
|
|
3306
3337
|
/**
|
|
3307
|
-
*
|
|
3338
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3308
3339
|
*/
|
|
3309
|
-
|
|
3340
|
+
externalRecordedTimes: number;
|
|
3310
3341
|
|
|
3311
3342
|
/**
|
|
3312
|
-
*
|
|
3343
|
+
* Beauftragte Zeit in Sekunden
|
|
3313
3344
|
*/
|
|
3314
|
-
|
|
3345
|
+
effortCommissioned: number;
|
|
3315
3346
|
|
|
3316
3347
|
/**
|
|
3317
3348
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3488,14 +3519,14 @@ export interface CurrencyReference {
|
|
|
3488
3519
|
export interface Customer {
|
|
3489
3520
|
|
|
3490
3521
|
/**
|
|
3491
|
-
*
|
|
3522
|
+
* reference to customer group
|
|
3492
3523
|
*/
|
|
3493
|
-
|
|
3524
|
+
customerGroupRef: ApiObjectReference;
|
|
3494
3525
|
|
|
3495
3526
|
/**
|
|
3496
|
-
*
|
|
3527
|
+
* Option für die Stapelverarbeitung
|
|
3497
3528
|
*/
|
|
3498
|
-
|
|
3529
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3499
3530
|
|
|
3500
3531
|
/**
|
|
3501
3532
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3513,14 +3544,14 @@ export interface Customer {
|
|
|
3513
3544
|
dueDate: ScriptingDate;
|
|
3514
3545
|
|
|
3515
3546
|
/**
|
|
3516
|
-
*
|
|
3547
|
+
* collective billable
|
|
3517
3548
|
*/
|
|
3518
|
-
|
|
3549
|
+
collectiveBillable: boolean;
|
|
3519
3550
|
|
|
3520
3551
|
/**
|
|
3521
|
-
*
|
|
3552
|
+
* Maximal mögliche Lieferungen
|
|
3522
3553
|
*/
|
|
3523
|
-
|
|
3554
|
+
maxDeliveries: number;
|
|
3524
3555
|
|
|
3525
3556
|
/**
|
|
3526
3557
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3548,14 +3579,14 @@ export interface Customer {
|
|
|
3548
3579
|
stackProcessingPriority: number;
|
|
3549
3580
|
|
|
3550
3581
|
/**
|
|
3551
|
-
*
|
|
3582
|
+
* reference to product price group
|
|
3552
3583
|
*/
|
|
3553
|
-
|
|
3584
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3554
3585
|
|
|
3555
3586
|
/**
|
|
3556
|
-
*
|
|
3587
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3557
3588
|
*/
|
|
3558
|
-
|
|
3589
|
+
collectiveInvoiceManually: boolean;
|
|
3559
3590
|
|
|
3560
3591
|
/**
|
|
3561
3592
|
* Unique identifier of the Object
|
|
@@ -3709,14 +3740,14 @@ export interface DeliveryMethod {
|
|
|
3709
3740
|
translations: Array<DocumentTypeTerm>;
|
|
3710
3741
|
|
|
3711
3742
|
/**
|
|
3712
|
-
*
|
|
3743
|
+
* Gültige Ländercodes
|
|
3713
3744
|
*/
|
|
3714
|
-
|
|
3745
|
+
validCountryCodes: Array<string>;
|
|
3715
3746
|
|
|
3716
3747
|
/**
|
|
3717
|
-
*
|
|
3748
|
+
* Versand-Anbieter
|
|
3718
3749
|
*/
|
|
3719
|
-
|
|
3750
|
+
vdsCarrierId: number;
|
|
3720
3751
|
|
|
3721
3752
|
/**
|
|
3722
3753
|
* Standardgewichtseinheit
|
|
@@ -3923,14 +3954,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3923
3954
|
deliveryQuantityPackages: number;
|
|
3924
3955
|
|
|
3925
3956
|
/**
|
|
3926
|
-
*
|
|
3957
|
+
* Leitweg-ID
|
|
3927
3958
|
*/
|
|
3928
|
-
|
|
3959
|
+
buyerReference: string;
|
|
3929
3960
|
|
|
3930
3961
|
/**
|
|
3931
|
-
*
|
|
3962
|
+
* Bestellnummer aus Vorbeleg
|
|
3932
3963
|
*/
|
|
3933
|
-
|
|
3964
|
+
referencedOrderNumber: string;
|
|
3934
3965
|
|
|
3935
3966
|
/**
|
|
3936
3967
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -3983,14 +4014,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3983
4014
|
accountId: number;
|
|
3984
4015
|
|
|
3985
4016
|
/**
|
|
3986
|
-
* Länderkennzeichen
|
|
4017
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3987
4018
|
*/
|
|
3988
|
-
|
|
4019
|
+
performanceCountryCode: string;
|
|
3989
4020
|
|
|
3990
4021
|
/**
|
|
3991
|
-
* Länderkennzeichen
|
|
4022
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3992
4023
|
*/
|
|
3993
|
-
|
|
4024
|
+
sourceCountryCode: string;
|
|
3994
4025
|
|
|
3995
4026
|
/**
|
|
3996
4027
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4033,14 +4064,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4033
4064
|
supplierNumber: string;
|
|
4034
4065
|
|
|
4035
4066
|
/**
|
|
4036
|
-
*
|
|
4067
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4037
4068
|
*/
|
|
4038
|
-
|
|
4069
|
+
deliveryApproved: boolean;
|
|
4039
4070
|
|
|
4040
4071
|
/**
|
|
4041
|
-
*
|
|
4072
|
+
* Gesamtpreis brutto
|
|
4042
4073
|
*/
|
|
4043
|
-
|
|
4074
|
+
totalGrossPrice: number;
|
|
4044
4075
|
|
|
4045
4076
|
/**
|
|
4046
4077
|
* Kassen-Zahlungspositionen
|
|
@@ -4099,26 +4130,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4099
4130
|
*/
|
|
4100
4131
|
fabricationDetail: DocumentFabricationDetail;
|
|
4101
4132
|
|
|
4102
|
-
/**
|
|
4103
|
-
* Berechnungsmodus
|
|
4104
|
-
*/
|
|
4105
|
-
calculationMode: CalculationMode;
|
|
4106
|
-
|
|
4107
4133
|
/**
|
|
4108
4134
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
4109
4135
|
*/
|
|
4110
4136
|
accountNumber: string;
|
|
4111
4137
|
|
|
4112
4138
|
/**
|
|
4113
|
-
*
|
|
4139
|
+
* Berechnungsmodus
|
|
4114
4140
|
*/
|
|
4115
|
-
|
|
4141
|
+
calculationMode: CalculationMode;
|
|
4116
4142
|
|
|
4117
4143
|
/**
|
|
4118
4144
|
* Referenz auf Zahlungsbedingung
|
|
4119
4145
|
*/
|
|
4120
4146
|
paymentTermRef: PaymentTermRef;
|
|
4121
4147
|
|
|
4148
|
+
/**
|
|
4149
|
+
* Wird vom Workflow verarbeitet?
|
|
4150
|
+
*/
|
|
4151
|
+
processedByWorkflow: boolean;
|
|
4152
|
+
|
|
4122
4153
|
/**
|
|
4123
4154
|
* Preisanpassungen - Beleg Basiswährung
|
|
4124
4155
|
*/
|
|
@@ -4150,14 +4181,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4150
4181
|
defaultAddress: DocumentAddress;
|
|
4151
4182
|
|
|
4152
4183
|
/**
|
|
4153
|
-
*
|
|
4184
|
+
* Leistungsdatum
|
|
4154
4185
|
*/
|
|
4155
|
-
|
|
4186
|
+
performanceDate: ScriptingDate;
|
|
4156
4187
|
|
|
4157
4188
|
/**
|
|
4158
|
-
*
|
|
4189
|
+
* Verarbeitungsoption für Stapel
|
|
4159
4190
|
*/
|
|
4160
|
-
|
|
4191
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4161
4192
|
|
|
4162
4193
|
/**
|
|
4163
4194
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4215,14 +4246,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4215
4246
|
dropShipping: boolean;
|
|
4216
4247
|
|
|
4217
4248
|
/**
|
|
4218
|
-
*
|
|
4249
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4219
4250
|
*/
|
|
4220
|
-
|
|
4251
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4221
4252
|
|
|
4222
4253
|
/**
|
|
4223
|
-
*
|
|
4254
|
+
* Gesamtpreis netto
|
|
4224
4255
|
*/
|
|
4225
|
-
|
|
4256
|
+
totalNetPrice: number;
|
|
4226
4257
|
|
|
4227
4258
|
/**
|
|
4228
4259
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4265,14 +4296,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4265
4296
|
documentTypeCategory: DocumentCategory;
|
|
4266
4297
|
|
|
4267
4298
|
/**
|
|
4268
|
-
*
|
|
4299
|
+
* Gesamtgewicht wurde manuell gesetzt
|
|
4269
4300
|
*/
|
|
4270
|
-
|
|
4301
|
+
userDefinedWeight: boolean;
|
|
4271
4302
|
|
|
4272
4303
|
/**
|
|
4273
|
-
*
|
|
4304
|
+
* Importmodus des Belegs
|
|
4274
4305
|
*/
|
|
4275
|
-
|
|
4306
|
+
importType: DocumentImportType;
|
|
4276
4307
|
|
|
4277
4308
|
/**
|
|
4278
4309
|
* Referenz zum zugeordneten Vertriebskanal
|
|
@@ -4330,9 +4361,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4330
4361
|
customerNumber: string;
|
|
4331
4362
|
|
|
4332
4363
|
/**
|
|
4333
|
-
*
|
|
4364
|
+
* Statusinstanz des Belegs
|
|
4334
4365
|
*/
|
|
4335
|
-
|
|
4366
|
+
documentState: DocumentTypeState;
|
|
4336
4367
|
|
|
4337
4368
|
/**
|
|
4338
4369
|
* Umsatzsteuer-Identifikationsnummer
|
|
@@ -4340,15 +4371,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4340
4371
|
taxIdentificationNumber: string;
|
|
4341
4372
|
|
|
4342
4373
|
/**
|
|
4343
|
-
*
|
|
4374
|
+
* Versandkostenpositionen
|
|
4344
4375
|
*/
|
|
4345
|
-
|
|
4376
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4346
4377
|
|
|
4347
4378
|
/**
|
|
4348
4379
|
* Rückgeld
|
|
4349
4380
|
*/
|
|
4350
4381
|
posReceiptChangeAmount: number;
|
|
4351
4382
|
|
|
4383
|
+
/**
|
|
4384
|
+
* Referenz auf Lieferbedingung
|
|
4385
|
+
*/
|
|
4386
|
+
deliveryTermRef: ApiObjectReference;
|
|
4387
|
+
|
|
4352
4388
|
/**
|
|
4353
4389
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4354
4390
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4356,11 +4392,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4356
4392
|
*/
|
|
4357
4393
|
posReceiptBalanced: boolean;
|
|
4358
4394
|
|
|
4359
|
-
/**
|
|
4360
|
-
* Referenz auf Lieferbedingung
|
|
4361
|
-
*/
|
|
4362
|
-
deliveryTermRef: ApiObjectReference;
|
|
4363
|
-
|
|
4364
4395
|
/**
|
|
4365
4396
|
* Gesamtbruttogewicht
|
|
4366
4397
|
*/
|
|
@@ -4410,14 +4441,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4410
4441
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4411
4442
|
|
|
4412
4443
|
/**
|
|
4413
|
-
*
|
|
4444
|
+
* Herkunft der Sprache
|
|
4414
4445
|
*/
|
|
4415
|
-
|
|
4446
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4416
4447
|
|
|
4417
4448
|
/**
|
|
4418
|
-
*
|
|
4449
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4419
4450
|
*/
|
|
4420
|
-
|
|
4451
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4421
4452
|
|
|
4422
4453
|
/**
|
|
4423
4454
|
* Herkunft der Käufer-Referenz
|
|
@@ -4575,14 +4606,14 @@ export interface DocumentAddress {
|
|
|
4575
4606
|
info: MetaInfo;
|
|
4576
4607
|
|
|
4577
4608
|
/**
|
|
4578
|
-
*
|
|
4609
|
+
* Lieferart
|
|
4579
4610
|
*/
|
|
4580
|
-
|
|
4611
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4581
4612
|
|
|
4582
4613
|
/**
|
|
4583
|
-
*
|
|
4614
|
+
* GLN
|
|
4584
4615
|
*/
|
|
4585
|
-
|
|
4616
|
+
globalLocationNumber: string;
|
|
4586
4617
|
|
|
4587
4618
|
/**
|
|
4588
4619
|
* Postcode
|
|
@@ -5004,14 +5035,14 @@ export interface DocumentLine {
|
|
|
5004
5035
|
number: string;
|
|
5005
5036
|
|
|
5006
5037
|
/**
|
|
5007
|
-
*
|
|
5038
|
+
* Referenz zur Kundenauftragszeile
|
|
5008
5039
|
*/
|
|
5009
|
-
|
|
5040
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5010
5041
|
|
|
5011
5042
|
/**
|
|
5012
|
-
*
|
|
5043
|
+
* Gesamtbruttogewicht
|
|
5013
5044
|
*/
|
|
5014
|
-
|
|
5045
|
+
totalGrossWeight: number;
|
|
5015
5046
|
|
|
5016
5047
|
/**
|
|
5017
5048
|
* skontierbare Position?
|
|
@@ -5028,11 +5059,6 @@ export interface DocumentLine {
|
|
|
5028
5059
|
*/
|
|
5029
5060
|
price: number;
|
|
5030
5061
|
|
|
5031
|
-
/**
|
|
5032
|
-
* Gesamtpreis Position in Basiswährung
|
|
5033
|
-
*/
|
|
5034
|
-
baseTotalLinePrice: number;
|
|
5035
|
-
|
|
5036
5062
|
/**
|
|
5037
5063
|
* FiBu-Buchung
|
|
5038
5064
|
*/
|
|
@@ -5043,6 +5069,11 @@ export interface DocumentLine {
|
|
|
5043
5069
|
*/
|
|
5044
5070
|
lineType: DocumentLineType;
|
|
5045
5071
|
|
|
5072
|
+
/**
|
|
5073
|
+
* Gesamtpreis Position in Basiswährung
|
|
5074
|
+
*/
|
|
5075
|
+
baseTotalLinePrice: number;
|
|
5076
|
+
|
|
5046
5077
|
/**
|
|
5047
5078
|
* vorgeorderte Menge in Pickvorgang
|
|
5048
5079
|
*/
|
|
@@ -5074,9 +5105,9 @@ export interface DocumentLine {
|
|
|
5074
5105
|
id: number;
|
|
5075
5106
|
|
|
5076
5107
|
/**
|
|
5077
|
-
*
|
|
5108
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5078
5109
|
*/
|
|
5079
|
-
|
|
5110
|
+
positionOfArticleLine: number;
|
|
5080
5111
|
|
|
5081
5112
|
/**
|
|
5082
5113
|
* Externe Referenz zum VDS-Paket
|
|
@@ -5089,9 +5120,9 @@ export interface DocumentLine {
|
|
|
5089
5120
|
basePrice: number;
|
|
5090
5121
|
|
|
5091
5122
|
/**
|
|
5092
|
-
*
|
|
5123
|
+
* Serientyp
|
|
5093
5124
|
*/
|
|
5094
|
-
|
|
5125
|
+
serialType: ArticleSerialType;
|
|
5095
5126
|
|
|
5096
5127
|
/**
|
|
5097
5128
|
* MetaInformations for this Object
|
|
@@ -5254,14 +5285,14 @@ export interface DocumentLine {
|
|
|
5254
5285
|
unitType: UnitTypeReference;
|
|
5255
5286
|
|
|
5256
5287
|
/**
|
|
5257
|
-
*
|
|
5288
|
+
* Referenz zur Basiszeile
|
|
5258
5289
|
*/
|
|
5259
|
-
|
|
5290
|
+
baseLineId: number;
|
|
5260
5291
|
|
|
5261
5292
|
/**
|
|
5262
|
-
*
|
|
5293
|
+
* Zubehör Einfügeart
|
|
5263
5294
|
*/
|
|
5264
|
-
|
|
5295
|
+
insertTerm: AccessoryInsertTerm;
|
|
5265
5296
|
|
|
5266
5297
|
/**
|
|
5267
5298
|
* Einheit Bruttogewicht
|
|
@@ -5288,11 +5319,6 @@ export interface DocumentLine {
|
|
|
5288
5319
|
*/
|
|
5289
5320
|
productType: ProductType;
|
|
5290
5321
|
|
|
5291
|
-
/**
|
|
5292
|
-
* Vertragsinformationen
|
|
5293
|
-
*/
|
|
5294
|
-
contractDetail: DocumentContractDetail;
|
|
5295
|
-
|
|
5296
5322
|
/**
|
|
5297
5323
|
* Nettoverkaufswert der Position in Basiswährung
|
|
5298
5324
|
*/
|
|
@@ -5303,6 +5329,11 @@ export interface DocumentLine {
|
|
|
5303
5329
|
*/
|
|
5304
5330
|
netWeightUnit: UnitTypeReference;
|
|
5305
5331
|
|
|
5332
|
+
/**
|
|
5333
|
+
* Vertragsinformationen
|
|
5334
|
+
*/
|
|
5335
|
+
contractDetail: DocumentContractDetail;
|
|
5336
|
+
|
|
5306
5337
|
/**
|
|
5307
5338
|
* Menge
|
|
5308
5339
|
*/
|
|
@@ -6148,14 +6179,14 @@ export interface DocumentRef {
|
|
|
6148
6179
|
export interface DocumentShippingCost {
|
|
6149
6180
|
|
|
6150
6181
|
/**
|
|
6151
|
-
*
|
|
6182
|
+
* Die Versandkosten
|
|
6152
6183
|
*/
|
|
6153
|
-
|
|
6184
|
+
costs: number;
|
|
6154
6185
|
|
|
6155
6186
|
/**
|
|
6156
|
-
*
|
|
6187
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6157
6188
|
*/
|
|
6158
|
-
|
|
6189
|
+
manualCosts: boolean;
|
|
6159
6190
|
|
|
6160
6191
|
/**
|
|
6161
6192
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6283,14 +6314,14 @@ export interface DocumentText {
|
|
|
6283
6314
|
transferableIntoSubsequentDocuments: boolean;
|
|
6284
6315
|
|
|
6285
6316
|
/**
|
|
6286
|
-
*
|
|
6317
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6287
6318
|
*/
|
|
6288
|
-
|
|
6319
|
+
deleted: boolean;
|
|
6289
6320
|
|
|
6290
6321
|
/**
|
|
6291
|
-
*
|
|
6322
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6292
6323
|
*/
|
|
6293
|
-
|
|
6324
|
+
textPosition: TextPosition;
|
|
6294
6325
|
|
|
6295
6326
|
/**
|
|
6296
6327
|
* textBaustein Vorlage
|
|
@@ -6400,14 +6431,14 @@ export interface DocumentType {
|
|
|
6400
6431
|
labels: Array<DocumentTypeLabel>;
|
|
6401
6432
|
|
|
6402
6433
|
/**
|
|
6403
|
-
*
|
|
6434
|
+
* Zählerkreis
|
|
6404
6435
|
*/
|
|
6405
|
-
|
|
6436
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6406
6437
|
|
|
6407
6438
|
/**
|
|
6408
|
-
*
|
|
6439
|
+
* nächste Belegnummer
|
|
6409
6440
|
*/
|
|
6410
|
-
|
|
6441
|
+
nextNumber: string;
|
|
6411
6442
|
|
|
6412
6443
|
/**
|
|
6413
6444
|
* Sortierung
|
|
@@ -6585,6 +6616,69 @@ export const enum DropShippingPolicy {
|
|
|
6585
6616
|
STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING = 'STORAGE_WITH_FALLBACK_TO_DROP_SHIPPING'
|
|
6586
6617
|
}
|
|
6587
6618
|
|
|
6619
|
+
export interface DummySerialNumberStockTransferApi {
|
|
6620
|
+
|
|
6621
|
+
/**
|
|
6622
|
+
* Ziel-Lager
|
|
6623
|
+
*/
|
|
6624
|
+
targetStorageId: number;
|
|
6625
|
+
|
|
6626
|
+
/**
|
|
6627
|
+
* Seriennummer
|
|
6628
|
+
*/
|
|
6629
|
+
serialNumberId: number;
|
|
6630
|
+
|
|
6631
|
+
/**
|
|
6632
|
+
* Bemerkung
|
|
6633
|
+
*/
|
|
6634
|
+
note: string;
|
|
6635
|
+
|
|
6636
|
+
/**
|
|
6637
|
+
* Buchungsdatum
|
|
6638
|
+
*/
|
|
6639
|
+
bookDate: ScriptingDate;
|
|
6640
|
+
|
|
6641
|
+
/**
|
|
6642
|
+
* Die gültige Seriennummer
|
|
6643
|
+
*/
|
|
6644
|
+
targetSerialNumber: string;
|
|
6645
|
+
|
|
6646
|
+
/**
|
|
6647
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6648
|
+
*/
|
|
6649
|
+
targetExpiryDate: ScriptingDate;
|
|
6650
|
+
|
|
6651
|
+
/**
|
|
6652
|
+
* Quell-Lagerplatz
|
|
6653
|
+
*/
|
|
6654
|
+
sourceStorageBinId: number;
|
|
6655
|
+
|
|
6656
|
+
/**
|
|
6657
|
+
* Menge
|
|
6658
|
+
*/
|
|
6659
|
+
quantity: number;
|
|
6660
|
+
|
|
6661
|
+
/**
|
|
6662
|
+
* Quell-Lager
|
|
6663
|
+
*/
|
|
6664
|
+
sourceStorageId: number;
|
|
6665
|
+
|
|
6666
|
+
/**
|
|
6667
|
+
* Ziel-Lagerplatz
|
|
6668
|
+
*/
|
|
6669
|
+
targetStorageBinId: number;
|
|
6670
|
+
|
|
6671
|
+
/**
|
|
6672
|
+
* Artikel
|
|
6673
|
+
*/
|
|
6674
|
+
articleId: number;
|
|
6675
|
+
|
|
6676
|
+
/**
|
|
6677
|
+
* Komponente einer Picklistenposition, falls dafür die Buchung stattfindet
|
|
6678
|
+
*/
|
|
6679
|
+
picklistLineComponentId: number;
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6588
6682
|
export const enum ECrmPriorityType {
|
|
6589
6683
|
CRITICAL = 'CRITICAL',
|
|
6590
6684
|
NORMAL = 'NORMAL',
|
|
@@ -6886,14 +6980,14 @@ export interface FabricationRevertRequest {
|
|
|
6886
6980
|
quantity: number;
|
|
6887
6981
|
|
|
6888
6982
|
/**
|
|
6889
|
-
*
|
|
6983
|
+
* ID der zu stornierenden Position
|
|
6890
6984
|
*/
|
|
6891
|
-
|
|
6985
|
+
documentLineId: number;
|
|
6892
6986
|
|
|
6893
6987
|
/**
|
|
6894
|
-
*
|
|
6988
|
+
* Material automatisch stornieren
|
|
6895
6989
|
*/
|
|
6896
|
-
|
|
6990
|
+
autoRevertComponents: boolean;
|
|
6897
6991
|
|
|
6898
6992
|
/**
|
|
6899
6993
|
* Zu stornierende Seriennummern
|
|
@@ -6909,14 +7003,14 @@ export interface FabricationRevertRequest {
|
|
|
6909
7003
|
export interface FabricationSerialNumber {
|
|
6910
7004
|
|
|
6911
7005
|
/**
|
|
6912
|
-
*
|
|
7006
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6913
7007
|
*/
|
|
6914
|
-
|
|
7008
|
+
serialNumberId: number;
|
|
6915
7009
|
|
|
6916
7010
|
/**
|
|
6917
|
-
*
|
|
7011
|
+
* MHD / Verfallsdatum
|
|
6918
7012
|
*/
|
|
6919
|
-
|
|
7013
|
+
expiryDate: ScriptingDate;
|
|
6920
7014
|
|
|
6921
7015
|
/**
|
|
6922
7016
|
* Bemerkung
|
|
@@ -7454,20 +7548,35 @@ export const enum PickingType {
|
|
|
7454
7548
|
export interface Picklist {
|
|
7455
7549
|
|
|
7456
7550
|
/**
|
|
7457
|
-
*
|
|
7551
|
+
* Ziellager für Nachschub
|
|
7458
7552
|
*/
|
|
7459
|
-
|
|
7553
|
+
targetStorageRef: ApiObjectReference;
|
|
7460
7554
|
|
|
7461
7555
|
/**
|
|
7462
|
-
*
|
|
7556
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7463
7557
|
*/
|
|
7464
|
-
|
|
7558
|
+
usedTemplate: PicklistTemplate;
|
|
7465
7559
|
|
|
7466
7560
|
/**
|
|
7467
7561
|
* Nummer der Pickliste
|
|
7468
7562
|
*/
|
|
7469
7563
|
number: string;
|
|
7470
7564
|
|
|
7565
|
+
/**
|
|
7566
|
+
* Zeitpunkt, zu dem der Pickvorgang beendet wurde
|
|
7567
|
+
*/
|
|
7568
|
+
pickingFinishedAt: ScriptingDateTime;
|
|
7569
|
+
|
|
7570
|
+
/**
|
|
7571
|
+
* Benutzer, welcher den Pickvorgang durchführt
|
|
7572
|
+
*/
|
|
7573
|
+
pickingUserRef: ApiObjectReference;
|
|
7574
|
+
|
|
7575
|
+
/**
|
|
7576
|
+
* Zeitpunkt, zu dem der Pickvorgang gestartet wurde
|
|
7577
|
+
*/
|
|
7578
|
+
pickingStartedAt: ScriptingDateTime;
|
|
7579
|
+
|
|
7471
7580
|
/**
|
|
7472
7581
|
* Status der Pickliste
|
|
7473
7582
|
*/
|
|
@@ -7876,15 +7985,20 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7876
7985
|
*/
|
|
7877
7986
|
maxArticleCountPerOrder: number;
|
|
7878
7987
|
|
|
7988
|
+
/**
|
|
7989
|
+
* Alternative Selektion in VQL
|
|
7990
|
+
*/
|
|
7991
|
+
alternativeSelectionInVql: string;
|
|
7992
|
+
|
|
7879
7993
|
/**
|
|
7880
7994
|
* Maximaler Auftragswert
|
|
7881
7995
|
*/
|
|
7882
7996
|
maxOrderValue: number;
|
|
7883
7997
|
|
|
7884
7998
|
/**
|
|
7885
|
-
*
|
|
7999
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7886
8000
|
*/
|
|
7887
|
-
|
|
8001
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7888
8002
|
|
|
7889
8003
|
/**
|
|
7890
8004
|
* Nur vollständig lieferbare Positionen
|
|
@@ -7896,11 +8010,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7896
8010
|
*/
|
|
7897
8011
|
maxOrderCount: number;
|
|
7898
8012
|
|
|
7899
|
-
/**
|
|
7900
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
7901
|
-
*/
|
|
7902
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7903
|
-
|
|
7904
8013
|
/**
|
|
7905
8014
|
* Selektion über den Bereich vom Belegdatum
|
|
7906
8015
|
*/
|
|
@@ -7970,14 +8079,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7970
8079
|
maxPicklistLineCount: number;
|
|
7971
8080
|
|
|
7972
8081
|
/**
|
|
7973
|
-
*
|
|
8082
|
+
* Der zu verwendende Pickwagen
|
|
7974
8083
|
*/
|
|
7975
|
-
|
|
8084
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
7976
8085
|
|
|
7977
8086
|
/**
|
|
7978
|
-
*
|
|
8087
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7979
8088
|
*/
|
|
7980
|
-
|
|
8089
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7981
8090
|
|
|
7982
8091
|
/**
|
|
7983
8092
|
* Lagerplätze vorgeben
|
|
@@ -7985,14 +8094,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7985
8094
|
specifyStorageBins: boolean;
|
|
7986
8095
|
|
|
7987
8096
|
/**
|
|
7988
|
-
*
|
|
8097
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7989
8098
|
*/
|
|
7990
|
-
|
|
8099
|
+
sortByRoutePosition: boolean;
|
|
7991
8100
|
|
|
7992
8101
|
/**
|
|
7993
|
-
*
|
|
8102
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7994
8103
|
*/
|
|
7995
|
-
|
|
8104
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7996
8105
|
|
|
7997
8106
|
/**
|
|
7998
8107
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8053,14 +8162,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8053
8162
|
showShippingFormOnPickingFinish: boolean;
|
|
8054
8163
|
|
|
8055
8164
|
/**
|
|
8056
|
-
*
|
|
8165
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8057
8166
|
*/
|
|
8058
|
-
|
|
8167
|
+
allowPickingOfServiceArticles: boolean;
|
|
8059
8168
|
|
|
8060
8169
|
/**
|
|
8061
|
-
*
|
|
8170
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8062
8171
|
*/
|
|
8063
|
-
|
|
8172
|
+
useDigitalPicklist: boolean;
|
|
8064
8173
|
|
|
8065
8174
|
/**
|
|
8066
8175
|
* Sammelbestätigung erlauben
|
|
@@ -8198,25 +8307,15 @@ export interface PriceSelectionCriteria {
|
|
|
8198
8307
|
export interface Product {
|
|
8199
8308
|
|
|
8200
8309
|
/**
|
|
8201
|
-
*
|
|
8310
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
8202
8311
|
*/
|
|
8203
|
-
|
|
8312
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
8204
8313
|
|
|
8205
8314
|
/**
|
|
8206
8315
|
* Zolltarifnummer
|
|
8207
8316
|
*/
|
|
8208
8317
|
customsTariffNumber: string;
|
|
8209
8318
|
|
|
8210
|
-
/**
|
|
8211
|
-
* Variantenschema
|
|
8212
|
-
*/
|
|
8213
|
-
variantSchemaRef: ApiObjectReference;
|
|
8214
|
-
|
|
8215
|
-
/**
|
|
8216
|
-
* Eigener Zählerkreis für Seriennummern
|
|
8217
|
-
*/
|
|
8218
|
-
serialSequencerConfiguration: SequencerConfiguration;
|
|
8219
|
-
|
|
8220
8319
|
/**
|
|
8221
8320
|
* Gebindeschema dieses Produkts
|
|
8222
8321
|
*/
|
|
@@ -8227,11 +8326,6 @@ export interface Product {
|
|
|
8227
8326
|
*/
|
|
8228
8327
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
8229
8328
|
|
|
8230
|
-
/**
|
|
8231
|
-
* Art des Haltbarkeitsdatums
|
|
8232
|
-
*/
|
|
8233
|
-
expiryDateType: ArticleSerialExpiryDateType;
|
|
8234
|
-
|
|
8235
8329
|
/**
|
|
8236
8330
|
* Ursprungsregion
|
|
8237
8331
|
*/
|
|
@@ -8243,14 +8337,14 @@ export interface Product {
|
|
|
8243
8337
|
type: ProductType;
|
|
8244
8338
|
|
|
8245
8339
|
/**
|
|
8246
|
-
*
|
|
8340
|
+
* Garantie in Monaten
|
|
8247
8341
|
*/
|
|
8248
|
-
|
|
8342
|
+
warrantyInMonths: number;
|
|
8249
8343
|
|
|
8250
8344
|
/**
|
|
8251
|
-
*
|
|
8345
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
8252
8346
|
*/
|
|
8253
|
-
|
|
8347
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
8254
8348
|
|
|
8255
8349
|
/**
|
|
8256
8350
|
* Optionen zur Berechnung der Verfügbarkeit
|
|
@@ -8272,11 +8366,6 @@ export interface Product {
|
|
|
8272
8366
|
*/
|
|
8273
8367
|
fabricationSerialNumberLabelingType: FabricationSerialNumberLabelingType;
|
|
8274
8368
|
|
|
8275
|
-
/**
|
|
8276
|
-
* Country code
|
|
8277
|
-
*/
|
|
8278
|
-
countryOfOrigin: CountryReference;
|
|
8279
|
-
|
|
8280
8369
|
/**
|
|
8281
8370
|
* Unique identifier of the Object
|
|
8282
8371
|
*/
|
|
@@ -8293,14 +8382,49 @@ export interface Product {
|
|
|
8293
8382
|
serialType: ArticleSerialType;
|
|
8294
8383
|
|
|
8295
8384
|
/**
|
|
8296
|
-
*
|
|
8385
|
+
* MetaInformations for this Object
|
|
8297
8386
|
*/
|
|
8298
|
-
|
|
8387
|
+
info: MetaInfo;
|
|
8299
8388
|
|
|
8300
8389
|
/**
|
|
8301
|
-
*
|
|
8390
|
+
* Variantenhauptartikel
|
|
8302
8391
|
*/
|
|
8303
|
-
|
|
8392
|
+
mainVariantProductRef: ApiObjectReference;
|
|
8393
|
+
|
|
8394
|
+
/**
|
|
8395
|
+
* Variantenschema
|
|
8396
|
+
*/
|
|
8397
|
+
variantSchemaRef: ApiObjectReference;
|
|
8398
|
+
|
|
8399
|
+
/**
|
|
8400
|
+
* Eigener Zählerkreis für Seriennummern
|
|
8401
|
+
*/
|
|
8402
|
+
serialSequencerConfiguration: SequencerConfiguration;
|
|
8403
|
+
|
|
8404
|
+
/**
|
|
8405
|
+
* Art des Haltbarkeitsdatums
|
|
8406
|
+
*/
|
|
8407
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
8408
|
+
|
|
8409
|
+
/**
|
|
8410
|
+
* Version Identifier for this Object (for PUT)
|
|
8411
|
+
*/
|
|
8412
|
+
version: number;
|
|
8413
|
+
|
|
8414
|
+
/**
|
|
8415
|
+
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
8416
|
+
*/
|
|
8417
|
+
minimumRemainingDaysBeforeExpiryDateForGoodsIssued: number;
|
|
8418
|
+
|
|
8419
|
+
/**
|
|
8420
|
+
* Country code
|
|
8421
|
+
*/
|
|
8422
|
+
countryOfOrigin: CountryReference;
|
|
8423
|
+
|
|
8424
|
+
/**
|
|
8425
|
+
* Variantenwerte
|
|
8426
|
+
*/
|
|
8427
|
+
variantValues: Array<VariantValueReference>;
|
|
8304
8428
|
}
|
|
8305
8429
|
|
|
8306
8430
|
export interface ProductArticleRef {
|
|
@@ -8666,6 +8790,44 @@ export const enum PublishingPolicy {
|
|
|
8666
8790
|
MANUAL = 'MANUAL'
|
|
8667
8791
|
}
|
|
8668
8792
|
|
|
8793
|
+
export interface RecommendedRetailPrice {
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Land (Iso-A-2)
|
|
8797
|
+
*/
|
|
8798
|
+
countryCode: CountryReference;
|
|
8799
|
+
|
|
8800
|
+
/**
|
|
8801
|
+
* Verweis auf den Artikel
|
|
8802
|
+
*/
|
|
8803
|
+
articleRef: ApiObjectReference;
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Unique identifier of the Object
|
|
8807
|
+
*/
|
|
8808
|
+
id: number;
|
|
8809
|
+
|
|
8810
|
+
/**
|
|
8811
|
+
* Preis
|
|
8812
|
+
*/
|
|
8813
|
+
value: number;
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* Währung (Iso-A-3)
|
|
8817
|
+
*/
|
|
8818
|
+
currencyCode: CurrencyReference;
|
|
8819
|
+
|
|
8820
|
+
/**
|
|
8821
|
+
* Version Identifier for this Object (for PUT)
|
|
8822
|
+
*/
|
|
8823
|
+
version: number;
|
|
8824
|
+
|
|
8825
|
+
/**
|
|
8826
|
+
* MetaInformations for this Object
|
|
8827
|
+
*/
|
|
8828
|
+
info: MetaInfo;
|
|
8829
|
+
}
|
|
8830
|
+
|
|
8669
8831
|
export interface Referenceable {
|
|
8670
8832
|
}
|
|
8671
8833
|
|
|
@@ -8687,14 +8849,14 @@ export interface RequestDocument {
|
|
|
8687
8849
|
cashDrawerId: number;
|
|
8688
8850
|
|
|
8689
8851
|
/**
|
|
8690
|
-
*
|
|
8852
|
+
* Leistungsdatum
|
|
8691
8853
|
*/
|
|
8692
|
-
|
|
8854
|
+
performanceDate: ScriptingDate;
|
|
8693
8855
|
|
|
8694
8856
|
/**
|
|
8695
|
-
*
|
|
8857
|
+
* Der Anzahlungsbetrag
|
|
8696
8858
|
*/
|
|
8697
|
-
|
|
8859
|
+
depositPaymentAmount: number;
|
|
8698
8860
|
|
|
8699
8861
|
/**
|
|
8700
8862
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8757,14 +8919,14 @@ export interface RequestDocument {
|
|
|
8757
8919
|
lines: Array<RequestDocumentLine>;
|
|
8758
8920
|
|
|
8759
8921
|
/**
|
|
8760
|
-
*
|
|
8922
|
+
* ID der Kasse (bei POS)
|
|
8761
8923
|
*/
|
|
8762
|
-
|
|
8924
|
+
posRegisterId: number;
|
|
8763
8925
|
|
|
8764
8926
|
/**
|
|
8765
|
-
*
|
|
8927
|
+
* Die Vertragsdetails
|
|
8766
8928
|
*/
|
|
8767
|
-
|
|
8929
|
+
contractDetail: DocumentContractDetail;
|
|
8768
8930
|
|
|
8769
8931
|
/**
|
|
8770
8932
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -8817,14 +8979,14 @@ export interface RequestDocument {
|
|
|
8817
8979
|
accountId: number;
|
|
8818
8980
|
|
|
8819
8981
|
/**
|
|
8820
|
-
*
|
|
8982
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8821
8983
|
*/
|
|
8822
|
-
|
|
8984
|
+
processedByPicklistProcessing: boolean;
|
|
8823
8985
|
|
|
8824
8986
|
/**
|
|
8825
|
-
*
|
|
8987
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8826
8988
|
*/
|
|
8827
|
-
|
|
8989
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8828
8990
|
|
|
8829
8991
|
/**
|
|
8830
8992
|
* Die Rabatte des Beleges
|
|
@@ -8990,14 +9152,14 @@ export interface RequestDocumentLine {
|
|
|
8990
9152
|
externalArticleNumber: string;
|
|
8991
9153
|
|
|
8992
9154
|
/**
|
|
8993
|
-
*
|
|
9155
|
+
* Buchungen zu dieser Belegposition
|
|
8994
9156
|
*/
|
|
8995
|
-
|
|
9157
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
8996
9158
|
|
|
8997
9159
|
/**
|
|
8998
|
-
*
|
|
9160
|
+
* ID der Quell-Belegposition
|
|
8999
9161
|
*/
|
|
9000
|
-
|
|
9162
|
+
sourceLineId: number;
|
|
9001
9163
|
|
|
9002
9164
|
/**
|
|
9003
9165
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9113,14 +9275,14 @@ export interface RequestDocumentText {
|
|
|
9113
9275
|
export interface RevenueCalculation {
|
|
9114
9276
|
|
|
9115
9277
|
/**
|
|
9116
|
-
*
|
|
9278
|
+
* Deckungsbeitrag (absolut)
|
|
9117
9279
|
*/
|
|
9118
|
-
|
|
9280
|
+
revenue: number;
|
|
9119
9281
|
|
|
9120
9282
|
/**
|
|
9121
|
-
*
|
|
9283
|
+
* Netto Umsatz
|
|
9122
9284
|
*/
|
|
9123
|
-
|
|
9285
|
+
salesValue: number;
|
|
9124
9286
|
|
|
9125
9287
|
/**
|
|
9126
9288
|
* Einkaufspreis
|
|
@@ -9141,14 +9303,14 @@ export interface SalesAgent {
|
|
|
9141
9303
|
note: string;
|
|
9142
9304
|
|
|
9143
9305
|
/**
|
|
9144
|
-
*
|
|
9306
|
+
* is sales agent taxable
|
|
9145
9307
|
*/
|
|
9146
|
-
|
|
9308
|
+
taxable: boolean;
|
|
9147
9309
|
|
|
9148
9310
|
/**
|
|
9149
|
-
*
|
|
9311
|
+
* reference to the delivery method
|
|
9150
9312
|
*/
|
|
9151
|
-
|
|
9313
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9152
9314
|
|
|
9153
9315
|
/**
|
|
9154
9316
|
* Freifelder
|
|
@@ -9608,14 +9770,14 @@ export interface ShelfDocument {
|
|
|
9608
9770
|
tags: Array<TagDto>;
|
|
9609
9771
|
|
|
9610
9772
|
/**
|
|
9611
|
-
*
|
|
9773
|
+
* share informations
|
|
9612
9774
|
*/
|
|
9613
|
-
|
|
9775
|
+
shares: Array<ShelfShare>;
|
|
9614
9776
|
|
|
9615
9777
|
/**
|
|
9616
|
-
*
|
|
9778
|
+
* Mehrsprachige Bezeichnungen
|
|
9617
9779
|
*/
|
|
9618
|
-
|
|
9780
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9619
9781
|
|
|
9620
9782
|
/**
|
|
9621
9783
|
* Automatische Löschung ab
|
|
@@ -9835,14 +9997,14 @@ export interface ShelfFile {
|
|
|
9835
9997
|
version: number;
|
|
9836
9998
|
|
|
9837
9999
|
/**
|
|
9838
|
-
*
|
|
10000
|
+
* meta data
|
|
9839
10001
|
*/
|
|
9840
|
-
|
|
10002
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9841
10003
|
|
|
9842
10004
|
/**
|
|
9843
|
-
*
|
|
10005
|
+
* current reference of this file in our storage
|
|
9844
10006
|
*/
|
|
9845
|
-
|
|
10007
|
+
storageHandle: string;
|
|
9846
10008
|
|
|
9847
10009
|
/**
|
|
9848
10010
|
* MetaInformations for this Object
|
|
@@ -10322,14 +10484,14 @@ export interface Supplier {
|
|
|
10322
10484
|
info: MetaInfo;
|
|
10323
10485
|
|
|
10324
10486
|
/**
|
|
10325
|
-
*
|
|
10487
|
+
* Lieferantengruppe
|
|
10326
10488
|
*/
|
|
10327
|
-
|
|
10489
|
+
supplierGroupRef: ApiObjectReference;
|
|
10328
10490
|
|
|
10329
10491
|
/**
|
|
10330
|
-
*
|
|
10492
|
+
* reference to the delivery method
|
|
10331
10493
|
*/
|
|
10332
|
-
|
|
10494
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10333
10495
|
|
|
10334
10496
|
/**
|
|
10335
10497
|
* tax able or tax free
|
|
@@ -10387,14 +10549,14 @@ export interface Supplier {
|
|
|
10387
10549
|
performanceCountryCode: string;
|
|
10388
10550
|
|
|
10389
10551
|
/**
|
|
10390
|
-
*
|
|
10552
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10391
10553
|
*/
|
|
10392
|
-
|
|
10554
|
+
defaultDeliveryTime: number;
|
|
10393
10555
|
|
|
10394
10556
|
/**
|
|
10395
|
-
*
|
|
10557
|
+
* reference to the payment method
|
|
10396
10558
|
*/
|
|
10397
|
-
|
|
10559
|
+
paymentMethodRef: ApiObjectReference;
|
|
10398
10560
|
|
|
10399
10561
|
/**
|
|
10400
10562
|
* currency code IsoAlpha3
|
|
@@ -10415,14 +10577,14 @@ export interface TagDto {
|
|
|
10415
10577
|
editColor: string;
|
|
10416
10578
|
|
|
10417
10579
|
/**
|
|
10418
|
-
* Farbe
|
|
10580
|
+
* Farbe in Such-GUI
|
|
10419
10581
|
*/
|
|
10420
|
-
|
|
10582
|
+
searchColor: string;
|
|
10421
10583
|
|
|
10422
10584
|
/**
|
|
10423
|
-
* Farbe
|
|
10585
|
+
* Farbe für die Anzeige des Tags
|
|
10424
10586
|
*/
|
|
10425
|
-
|
|
10587
|
+
color: string;
|
|
10426
10588
|
|
|
10427
10589
|
/**
|
|
10428
10590
|
* Beschriftung des Tags
|
|
@@ -10466,14 +10628,14 @@ export const enum TagType {
|
|
|
10466
10628
|
export interface TaxIdForeignCountry {
|
|
10467
10629
|
|
|
10468
10630
|
/**
|
|
10469
|
-
*
|
|
10631
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10470
10632
|
*/
|
|
10471
|
-
|
|
10633
|
+
countryCode: string;
|
|
10472
10634
|
|
|
10473
10635
|
/**
|
|
10474
|
-
*
|
|
10636
|
+
* Tax ID of the company in the associated country
|
|
10475
10637
|
*/
|
|
10476
|
-
|
|
10638
|
+
taxId: string;
|
|
10477
10639
|
|
|
10478
10640
|
/**
|
|
10479
10641
|
* Unique identifier of the Object
|
|
@@ -10956,14 +11118,14 @@ export interface VariantValue {
|
|
|
10956
11118
|
version: number;
|
|
10957
11119
|
|
|
10958
11120
|
/**
|
|
10959
|
-
*
|
|
11121
|
+
* Mehrsprachige Bezeichnungen
|
|
10960
11122
|
*/
|
|
10961
|
-
|
|
11123
|
+
labels: Array<VariantDescription>;
|
|
10962
11124
|
|
|
10963
11125
|
/**
|
|
10964
|
-
*
|
|
11126
|
+
* Variantenattribut
|
|
10965
11127
|
*/
|
|
10966
|
-
|
|
11128
|
+
attributeRef: ApiObjectReference;
|
|
10967
11129
|
|
|
10968
11130
|
/**
|
|
10969
11131
|
* MetaInformations for this Object
|