@vario-software/types 2026.12.3 → 2026.13.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/readme.md +15 -0
- package/schema/erp.d.ts +15653 -5637
- package/scripting/eav_types.d.ts +12 -0
- package/scripting/services.d.ts +644 -70
- package/scripting/types.d.ts +1120 -329
package/scripting/types.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
EavDocumentline, EavDocumentlinecomponent, EavFabrication,
|
|
6
6
|
EavFabricationline, EavFabricationlinecomponent, EavProductgroup,
|
|
7
7
|
EavProductmaingroup, EavSalesagent, EavShelfdocument, EavShelfshare,
|
|
8
|
-
EavTextenumeration
|
|
8
|
+
EavTextenumeration, EavVariantattributelisting, EavVariantvaluelisting
|
|
9
9
|
} from "./eav_types"
|
|
10
10
|
|
|
11
11
|
export const enum AccessoryInsertTerm {
|
|
@@ -173,14 +173,14 @@ export interface Account {
|
|
|
173
173
|
responsibleUserRef: ApiObjectReference;
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
|
-
*
|
|
176
|
+
* Erstkontakt am
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
initialContactAt: ScriptingDate;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
186
|
* Sprache des Accounts
|
|
@@ -208,14 +208,14 @@ export interface Account {
|
|
|
208
208
|
persons: Array<AccountPerson>;
|
|
209
209
|
|
|
210
210
|
/**
|
|
211
|
-
*
|
|
211
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
212
212
|
*/
|
|
213
|
-
|
|
213
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
221
|
* Account-Beziehungen
|
|
@@ -286,14 +286,14 @@ export interface AccountAddress {
|
|
|
286
286
|
regionRef: ApiObjectReference;
|
|
287
287
|
|
|
288
288
|
/**
|
|
289
|
-
*
|
|
289
|
+
* Post office box
|
|
290
290
|
*/
|
|
291
|
-
|
|
291
|
+
postOfficeBox: string;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
299
|
* Street
|
|
@@ -326,14 +326,14 @@ export interface AccountAddress {
|
|
|
326
326
|
types: Array<AccountAddressType>;
|
|
327
327
|
|
|
328
328
|
/**
|
|
329
|
-
*
|
|
329
|
+
* GLN/ILN as location identifier for this address
|
|
330
330
|
*/
|
|
331
|
-
|
|
331
|
+
globalLocationNumber: string;
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
*
|
|
334
|
+
* Leitweg-ID
|
|
335
335
|
*/
|
|
336
|
-
|
|
336
|
+
buyerReference: string;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
339
|
* abweichende Zahlungsart
|
|
@@ -454,6 +454,84 @@ export const enum AccountAddressType {
|
|
|
454
454
|
OTHER = 'OTHER'
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
+
export interface AccountBankdetail {
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* Is active?
|
|
461
|
+
*/
|
|
462
|
+
active: boolean;
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* name of the bank
|
|
466
|
+
*/
|
|
467
|
+
bankName: string;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* post-code of the bank
|
|
471
|
+
*/
|
|
472
|
+
bankPostCode: string;
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* account from, if differs from account-address
|
|
476
|
+
*/
|
|
477
|
+
accountFrom: string;
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* Version Identifier for this Object (for PUT)
|
|
481
|
+
*/
|
|
482
|
+
version: number;
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* Hauptbankverbindung für
|
|
486
|
+
*/
|
|
487
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* city of the bank
|
|
491
|
+
*/
|
|
492
|
+
bankCity: string;
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* origin type
|
|
496
|
+
*/
|
|
497
|
+
originType: AccountBankdetail$OriginType;
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* Is default bank?
|
|
501
|
+
*/
|
|
502
|
+
defaultBank: boolean;
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* IBAN
|
|
506
|
+
*/
|
|
507
|
+
iban: string;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* origin info
|
|
511
|
+
*/
|
|
512
|
+
originInfo: string;
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* Unique identifier of the Object
|
|
516
|
+
*/
|
|
517
|
+
id: number;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* BIC
|
|
521
|
+
*/
|
|
522
|
+
bic: string;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* MetaInformations for this Object
|
|
526
|
+
*/
|
|
527
|
+
info: MetaInfo;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
export const enum AccountBankdetail$OriginType {
|
|
531
|
+
FRONTEND = 'FRONTEND',
|
|
532
|
+
IMPORT = 'IMPORT'
|
|
533
|
+
}
|
|
534
|
+
|
|
457
535
|
export const enum AccountBillingType {
|
|
458
536
|
GROSS = 'GROSS',
|
|
459
537
|
NET = 'NET'
|
|
@@ -462,14 +540,14 @@ export const enum AccountBillingType {
|
|
|
462
540
|
export interface AccountLoanValue {
|
|
463
541
|
|
|
464
542
|
/**
|
|
465
|
-
*
|
|
543
|
+
* Account
|
|
466
544
|
*/
|
|
467
|
-
|
|
545
|
+
accountId: number;
|
|
468
546
|
|
|
469
547
|
/**
|
|
470
|
-
*
|
|
548
|
+
* Nicht berücksichtigter Betrag
|
|
471
549
|
*/
|
|
472
|
-
|
|
550
|
+
unconsideredAmount: number;
|
|
473
551
|
|
|
474
552
|
/**
|
|
475
553
|
* Betrag aus Aufträgen
|
|
@@ -818,6 +896,11 @@ export interface Article {
|
|
|
818
896
|
*/
|
|
819
897
|
baseCapacityUnit: UnitTypeReference;
|
|
820
898
|
|
|
899
|
+
/**
|
|
900
|
+
* Durchschnittl. EKP (Startwert)
|
|
901
|
+
*/
|
|
902
|
+
initialAvgPurchasePrice: number;
|
|
903
|
+
|
|
821
904
|
/**
|
|
822
905
|
* is this product sellable without any quantity at the stock
|
|
823
906
|
*/
|
|
@@ -828,11 +911,6 @@ export interface Article {
|
|
|
828
911
|
*/
|
|
829
912
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
830
913
|
|
|
831
|
-
/**
|
|
832
|
-
* Durchschnittl. EKP (Startwert)
|
|
833
|
-
*/
|
|
834
|
-
initialAvgPurchasePrice: number;
|
|
835
|
-
|
|
836
914
|
/**
|
|
837
915
|
* gross Volume in cubic meters
|
|
838
916
|
*/
|
|
@@ -929,14 +1007,14 @@ export interface Article {
|
|
|
929
1007
|
deliveryMethodRef: ApiObjectReference;
|
|
930
1008
|
|
|
931
1009
|
/**
|
|
932
|
-
*
|
|
1010
|
+
* Soll-Handelsspanne
|
|
933
1011
|
*/
|
|
934
|
-
|
|
1012
|
+
targetTradingMargin: number;
|
|
935
1013
|
|
|
936
1014
|
/**
|
|
937
|
-
*
|
|
1015
|
+
* Produktion
|
|
938
1016
|
*/
|
|
939
|
-
|
|
1017
|
+
fabrication: boolean;
|
|
940
1018
|
|
|
941
1019
|
/**
|
|
942
1020
|
* active
|
|
@@ -988,26 +1066,26 @@ export interface Article {
|
|
|
988
1066
|
*/
|
|
989
1067
|
listingStateChangeTime: ScriptingDateTime;
|
|
990
1068
|
|
|
991
|
-
/**
|
|
992
|
-
* Country code
|
|
993
|
-
*/
|
|
994
|
-
countryOfOriginRef: CountryReference;
|
|
995
|
-
|
|
996
1069
|
/**
|
|
997
1070
|
* Arbeitseinheit in Minuten
|
|
998
1071
|
*/
|
|
999
1072
|
workUnitInMinutes: number;
|
|
1000
1073
|
|
|
1001
1074
|
/**
|
|
1002
|
-
*
|
|
1075
|
+
* Country code
|
|
1003
1076
|
*/
|
|
1004
|
-
|
|
1077
|
+
countryOfOriginRef: CountryReference;
|
|
1005
1078
|
|
|
1006
1079
|
/**
|
|
1007
1080
|
* Frei kommissionierbar
|
|
1008
1081
|
*/
|
|
1009
1082
|
freelyPickable: boolean;
|
|
1010
1083
|
|
|
1084
|
+
/**
|
|
1085
|
+
* description custom data
|
|
1086
|
+
*/
|
|
1087
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1088
|
+
|
|
1011
1089
|
/**
|
|
1012
1090
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1013
1091
|
*/
|
|
@@ -1069,9 +1147,9 @@ export interface Article {
|
|
|
1069
1147
|
permissibleForOrderProposal: boolean;
|
|
1070
1148
|
|
|
1071
1149
|
/**
|
|
1072
|
-
*
|
|
1150
|
+
* Artikel ist Gefahrgut
|
|
1073
1151
|
*/
|
|
1074
|
-
|
|
1152
|
+
isDangerousGood: boolean;
|
|
1075
1153
|
|
|
1076
1154
|
/**
|
|
1077
1155
|
* Versandlabeldruck
|
|
@@ -1079,19 +1157,19 @@ export interface Article {
|
|
|
1079
1157
|
shippingLabelPrinting: boolean;
|
|
1080
1158
|
|
|
1081
1159
|
/**
|
|
1082
|
-
*
|
|
1160
|
+
* reference to Product
|
|
1083
1161
|
*/
|
|
1084
|
-
|
|
1162
|
+
productRef: ApiObjectReference;
|
|
1085
1163
|
|
|
1086
1164
|
/**
|
|
1087
|
-
*
|
|
1165
|
+
* Kontingentartikel
|
|
1088
1166
|
*/
|
|
1089
|
-
|
|
1167
|
+
contingentArticleRef: ApiObjectReference;
|
|
1090
1168
|
|
|
1091
1169
|
/**
|
|
1092
|
-
*
|
|
1170
|
+
* alternative name of this product
|
|
1093
1171
|
*/
|
|
1094
|
-
|
|
1172
|
+
alternativeName: string;
|
|
1095
1173
|
|
|
1096
1174
|
/**
|
|
1097
1175
|
* rabattierbarer Artikel?
|
|
@@ -1123,6 +1201,11 @@ export interface Article {
|
|
|
1123
1201
|
*/
|
|
1124
1202
|
custom: EavArticle;
|
|
1125
1203
|
|
|
1204
|
+
/**
|
|
1205
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1206
|
+
*/
|
|
1207
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1208
|
+
|
|
1126
1209
|
/**
|
|
1127
1210
|
* Hersteller des Produkts
|
|
1128
1211
|
*/
|
|
@@ -1133,11 +1216,6 @@ export interface Article {
|
|
|
1133
1216
|
*/
|
|
1134
1217
|
expiryDateType: ArticleSerialExpiryDateType;
|
|
1135
1218
|
|
|
1136
|
-
/**
|
|
1137
|
-
* Bedarfsermittlung nur über Reservierungen
|
|
1138
|
-
*/
|
|
1139
|
-
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1140
|
-
|
|
1141
1219
|
/**
|
|
1142
1220
|
* net sales prices
|
|
1143
1221
|
*/
|
|
@@ -1357,14 +1435,14 @@ export interface ArticleListing {
|
|
|
1357
1435
|
alternativeName: WithDefaults<String>;
|
|
1358
1436
|
|
|
1359
1437
|
/**
|
|
1360
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1438
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1361
1439
|
*/
|
|
1362
|
-
|
|
1440
|
+
customLowestPriceNet: number;
|
|
1363
1441
|
|
|
1364
1442
|
/**
|
|
1365
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1443
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1366
1444
|
*/
|
|
1367
|
-
|
|
1445
|
+
proposedLowestPriceNet: number;
|
|
1368
1446
|
|
|
1369
1447
|
/**
|
|
1370
1448
|
* der aktuelle listing stand
|
|
@@ -1529,14 +1607,14 @@ export interface ArticleSupplier {
|
|
|
1529
1607
|
accountDisplayName: string;
|
|
1530
1608
|
|
|
1531
1609
|
/**
|
|
1532
|
-
*
|
|
1610
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1533
1611
|
*/
|
|
1534
|
-
|
|
1612
|
+
useSupplierArticleDescription: boolean;
|
|
1535
1613
|
|
|
1536
1614
|
/**
|
|
1537
|
-
*
|
|
1615
|
+
* Lieferanten-Meldebestand
|
|
1538
1616
|
*/
|
|
1539
|
-
|
|
1617
|
+
supplierReportingStock: number;
|
|
1540
1618
|
|
|
1541
1619
|
/**
|
|
1542
1620
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1594,14 +1672,14 @@ export interface ArticleSupplier {
|
|
|
1594
1672
|
info: MetaInfo;
|
|
1595
1673
|
|
|
1596
1674
|
/**
|
|
1597
|
-
*
|
|
1675
|
+
* Referenced Article name
|
|
1598
1676
|
*/
|
|
1599
|
-
|
|
1677
|
+
articleName: string;
|
|
1600
1678
|
|
|
1601
1679
|
/**
|
|
1602
|
-
*
|
|
1680
|
+
* Verpackungseinheit
|
|
1603
1681
|
*/
|
|
1604
|
-
|
|
1682
|
+
packagingUnit: number;
|
|
1605
1683
|
|
|
1606
1684
|
/**
|
|
1607
1685
|
* Lieferanten-Preise
|
|
@@ -1634,20 +1712,25 @@ export interface ArticleSupplier {
|
|
|
1634
1712
|
dropShippingAllowed: boolean;
|
|
1635
1713
|
|
|
1636
1714
|
/**
|
|
1637
|
-
* Abweichende
|
|
1715
|
+
* Abweichende Produktbezeichnung
|
|
1638
1716
|
*/
|
|
1639
|
-
|
|
1717
|
+
supplierArticleName: string;
|
|
1640
1718
|
|
|
1641
1719
|
/**
|
|
1642
|
-
* Abweichende
|
|
1720
|
+
* Abweichende Produktbeschreibung
|
|
1643
1721
|
*/
|
|
1644
|
-
|
|
1722
|
+
supplierArticleDescription: string;
|
|
1645
1723
|
|
|
1646
1724
|
/**
|
|
1647
1725
|
* Standardpreis Netto
|
|
1648
1726
|
*/
|
|
1649
1727
|
defaultNetPrice: number;
|
|
1650
1728
|
|
|
1729
|
+
/**
|
|
1730
|
+
* Referenced Supplier-Account
|
|
1731
|
+
*/
|
|
1732
|
+
accountId: number;
|
|
1733
|
+
|
|
1651
1734
|
/**
|
|
1652
1735
|
* Einkaufseinheit
|
|
1653
1736
|
*/
|
|
@@ -1658,11 +1741,6 @@ export interface ArticleSupplier {
|
|
|
1658
1741
|
*/
|
|
1659
1742
|
orderOnComponentBase: boolean;
|
|
1660
1743
|
|
|
1661
|
-
/**
|
|
1662
|
-
* Referenced Supplier-Account
|
|
1663
|
-
*/
|
|
1664
|
-
accountId: number;
|
|
1665
|
-
|
|
1666
1744
|
/**
|
|
1667
1745
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1668
1746
|
*/
|
|
@@ -1949,14 +2027,14 @@ export interface CrmActivity {
|
|
|
1949
2027
|
userRef: ApiObjectReference;
|
|
1950
2028
|
|
|
1951
2029
|
/**
|
|
1952
|
-
*
|
|
2030
|
+
* Handelt es sich um eine System-Aktivität?
|
|
1953
2031
|
*/
|
|
1954
|
-
|
|
2032
|
+
system: boolean;
|
|
1955
2033
|
|
|
1956
2034
|
/**
|
|
1957
|
-
*
|
|
2035
|
+
* tatsächliche Startzeit
|
|
1958
2036
|
*/
|
|
1959
|
-
|
|
2037
|
+
startDateTime: ScriptingDateTime;
|
|
1960
2038
|
|
|
1961
2039
|
/**
|
|
1962
2040
|
* Inhalt dieser Aktivität
|
|
@@ -2005,14 +2083,14 @@ export interface CrmActivityType {
|
|
|
2005
2083
|
description: string;
|
|
2006
2084
|
|
|
2007
2085
|
/**
|
|
2008
|
-
*
|
|
2086
|
+
* Bezeichnung
|
|
2009
2087
|
*/
|
|
2010
|
-
|
|
2088
|
+
label: string;
|
|
2011
2089
|
|
|
2012
2090
|
/**
|
|
2013
|
-
*
|
|
2091
|
+
* Für "E-Mail-Archivieren"?
|
|
2014
2092
|
*/
|
|
2015
|
-
|
|
2093
|
+
emailArchiving: boolean;
|
|
2016
2094
|
|
|
2017
2095
|
/**
|
|
2018
2096
|
* Abrechenbar?
|
|
@@ -2063,14 +2141,14 @@ export interface CrmActivityType {
|
|
|
2063
2141
|
export interface CrmChecklistItem {
|
|
2064
2142
|
|
|
2065
2143
|
/**
|
|
2066
|
-
*
|
|
2144
|
+
* Ist das Element "angehakt"?
|
|
2067
2145
|
*/
|
|
2068
|
-
|
|
2146
|
+
checked: boolean;
|
|
2069
2147
|
|
|
2070
2148
|
/**
|
|
2071
|
-
*
|
|
2149
|
+
* Text des Checklisten-Elements
|
|
2072
2150
|
*/
|
|
2073
|
-
|
|
2151
|
+
memo: string;
|
|
2074
2152
|
|
|
2075
2153
|
/**
|
|
2076
2154
|
* Unique identifier of the Object
|
|
@@ -2487,14 +2565,14 @@ export interface CrmProject {
|
|
|
2487
2565
|
billedTimes: number;
|
|
2488
2566
|
|
|
2489
2567
|
/**
|
|
2490
|
-
*
|
|
2568
|
+
* Einkaufsbelege
|
|
2491
2569
|
*/
|
|
2492
|
-
|
|
2570
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2493
2571
|
|
|
2494
2572
|
/**
|
|
2495
|
-
*
|
|
2573
|
+
* Geplanter Projektzeitraum (von)
|
|
2496
2574
|
*/
|
|
2497
|
-
|
|
2575
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2498
2576
|
|
|
2499
2577
|
/**
|
|
2500
2578
|
* Verkaufsbelege
|
|
@@ -2619,14 +2697,14 @@ export const enum CrmReferenceType {
|
|
|
2619
2697
|
export interface CrmReminder {
|
|
2620
2698
|
|
|
2621
2699
|
/**
|
|
2622
|
-
*
|
|
2700
|
+
* Notiz zur Erinnerung
|
|
2623
2701
|
*/
|
|
2624
|
-
|
|
2702
|
+
note: string;
|
|
2625
2703
|
|
|
2626
2704
|
/**
|
|
2627
|
-
*
|
|
2705
|
+
* ID des CRM Objekts
|
|
2628
2706
|
*/
|
|
2629
|
-
|
|
2707
|
+
crmId: number;
|
|
2630
2708
|
|
|
2631
2709
|
/**
|
|
2632
2710
|
* Wer soll erinnert werden
|
|
@@ -2712,14 +2790,14 @@ export interface CrmState {
|
|
|
2712
2790
|
readyToBill: boolean;
|
|
2713
2791
|
|
|
2714
2792
|
/**
|
|
2715
|
-
*
|
|
2793
|
+
* Handelt es sich um einen Anfang-Status
|
|
2716
2794
|
*/
|
|
2717
|
-
|
|
2795
|
+
startState: boolean;
|
|
2718
2796
|
|
|
2719
2797
|
/**
|
|
2720
|
-
*
|
|
2798
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
2721
2799
|
*/
|
|
2722
|
-
|
|
2800
|
+
needsCommentOnNegativeFinish: boolean;
|
|
2723
2801
|
|
|
2724
2802
|
/**
|
|
2725
2803
|
* MetaInformations for this Object
|
|
@@ -3099,14 +3177,14 @@ export interface Customer {
|
|
|
3099
3177
|
maximalLoan: number;
|
|
3100
3178
|
|
|
3101
3179
|
/**
|
|
3102
|
-
*
|
|
3180
|
+
* collective billable
|
|
3103
3181
|
*/
|
|
3104
|
-
|
|
3182
|
+
collectiveBillable: boolean;
|
|
3105
3183
|
|
|
3106
3184
|
/**
|
|
3107
|
-
*
|
|
3185
|
+
* Maximal mögliche Lieferungen
|
|
3108
3186
|
*/
|
|
3109
|
-
|
|
3187
|
+
maxDeliveries: number;
|
|
3110
3188
|
|
|
3111
3189
|
/**
|
|
3112
3190
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3148,18 +3226,18 @@ export interface Customer {
|
|
|
3148
3226
|
*/
|
|
3149
3227
|
info: MetaInfo;
|
|
3150
3228
|
|
|
3151
|
-
/**
|
|
3152
|
-
* reference to the delivery method
|
|
3153
|
-
*/
|
|
3154
|
-
deliveryMethodRef: ApiObjectReference;
|
|
3155
|
-
|
|
3156
3229
|
/**
|
|
3157
3230
|
* tax able or tax free
|
|
3158
3231
|
*/
|
|
3159
3232
|
taxable: boolean;
|
|
3160
3233
|
|
|
3161
3234
|
/**
|
|
3162
|
-
*
|
|
3235
|
+
* reference to the delivery method
|
|
3236
|
+
*/
|
|
3237
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3238
|
+
|
|
3239
|
+
/**
|
|
3240
|
+
* active true/false
|
|
3163
3241
|
*/
|
|
3164
3242
|
active: boolean;
|
|
3165
3243
|
|
|
@@ -3219,14 +3297,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3219
3297
|
export interface DeliveryMethod {
|
|
3220
3298
|
|
|
3221
3299
|
/**
|
|
3222
|
-
*
|
|
3300
|
+
* E-Mail an Versender übergeben
|
|
3223
3301
|
*/
|
|
3224
|
-
|
|
3302
|
+
forwardEmailToShipper: boolean;
|
|
3225
3303
|
|
|
3226
3304
|
/**
|
|
3227
|
-
*
|
|
3305
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3228
3306
|
*/
|
|
3229
|
-
|
|
3307
|
+
splitIntoNewDocument: boolean;
|
|
3230
3308
|
|
|
3231
3309
|
/**
|
|
3232
3310
|
* Min. Gewicht pro Paket
|
|
@@ -3289,14 +3367,14 @@ export interface DeliveryMethod {
|
|
|
3289
3367
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3290
3368
|
|
|
3291
3369
|
/**
|
|
3292
|
-
*
|
|
3370
|
+
* Versand-Anbieter
|
|
3293
3371
|
*/
|
|
3294
|
-
|
|
3372
|
+
vdsCarrierId: number;
|
|
3295
3373
|
|
|
3296
3374
|
/**
|
|
3297
|
-
*
|
|
3375
|
+
* Gültige Ländercodes
|
|
3298
3376
|
*/
|
|
3299
|
-
|
|
3377
|
+
validCountryCodes: Array<string>;
|
|
3300
3378
|
|
|
3301
3379
|
/**
|
|
3302
3380
|
* Standardgewichtseinheit
|
|
@@ -3357,14 +3435,14 @@ export interface DeliveryTerm {
|
|
|
3357
3435
|
label: string;
|
|
3358
3436
|
|
|
3359
3437
|
/**
|
|
3360
|
-
*
|
|
3438
|
+
* Sprache des Accounts
|
|
3361
3439
|
*/
|
|
3362
|
-
|
|
3440
|
+
languageCode: string;
|
|
3363
3441
|
|
|
3364
3442
|
/**
|
|
3365
|
-
*
|
|
3443
|
+
* information, when the shipping charges should be calculated
|
|
3366
3444
|
*/
|
|
3367
|
-
|
|
3445
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
3368
3446
|
|
|
3369
3447
|
/**
|
|
3370
3448
|
* calculate shipping charges per parcel
|
|
@@ -3377,14 +3455,14 @@ export interface DeliveryTerm {
|
|
|
3377
3455
|
version: number;
|
|
3378
3456
|
|
|
3379
3457
|
/**
|
|
3380
|
-
*
|
|
3458
|
+
* translations
|
|
3381
3459
|
*/
|
|
3382
|
-
|
|
3460
|
+
translations: Array<DocumentTypeTerm>;
|
|
3383
3461
|
|
|
3384
3462
|
/**
|
|
3385
|
-
*
|
|
3463
|
+
* information, how the shipping charges should be calculated
|
|
3386
3464
|
*/
|
|
3387
|
-
|
|
3465
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3388
3466
|
|
|
3389
3467
|
/**
|
|
3390
3468
|
* Lieferarten
|
|
@@ -3415,14 +3493,14 @@ export interface DeliveryTerm {
|
|
|
3415
3493
|
export interface Document {
|
|
3416
3494
|
|
|
3417
3495
|
/**
|
|
3418
|
-
*
|
|
3496
|
+
* Referenz zum Rechnungskonto
|
|
3419
3497
|
*/
|
|
3420
|
-
|
|
3498
|
+
billingAccountRef: ApiObjectReference;
|
|
3421
3499
|
|
|
3422
3500
|
/**
|
|
3423
|
-
*
|
|
3501
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3424
3502
|
*/
|
|
3425
|
-
|
|
3503
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3426
3504
|
|
|
3427
3505
|
/**
|
|
3428
3506
|
* Externe Belegnummer
|
|
@@ -3503,14 +3581,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3503
3581
|
deliveryQuantityPackages: number;
|
|
3504
3582
|
|
|
3505
3583
|
/**
|
|
3506
|
-
*
|
|
3584
|
+
* Leitweg-ID
|
|
3507
3585
|
*/
|
|
3508
|
-
|
|
3586
|
+
buyerReference: string;
|
|
3509
3587
|
|
|
3510
3588
|
/**
|
|
3511
|
-
*
|
|
3589
|
+
* Bestellnummer aus Vorbeleg
|
|
3512
3590
|
*/
|
|
3513
|
-
|
|
3591
|
+
referencedOrderNumber: string;
|
|
3514
3592
|
|
|
3515
3593
|
/**
|
|
3516
3594
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -3679,20 +3757,15 @@ true wenn die Quittung bezahlt ist
|
|
|
3679
3757
|
*/
|
|
3680
3758
|
fabricationDetail: DocumentFabricationDetail;
|
|
3681
3759
|
|
|
3682
|
-
/**
|
|
3683
|
-
* Berechnungsmodus
|
|
3684
|
-
*/
|
|
3685
|
-
calculationMode: CalculationMode;
|
|
3686
|
-
|
|
3687
3760
|
/**
|
|
3688
3761
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
3689
3762
|
*/
|
|
3690
3763
|
accountNumber: string;
|
|
3691
3764
|
|
|
3692
3765
|
/**
|
|
3693
|
-
*
|
|
3766
|
+
* Berechnungsmodus
|
|
3694
3767
|
*/
|
|
3695
|
-
|
|
3768
|
+
calculationMode: CalculationMode;
|
|
3696
3769
|
|
|
3697
3770
|
/**
|
|
3698
3771
|
* Referenz auf Zahlungsbedingung
|
|
@@ -3700,15 +3773,20 @@ true wenn die Quittung bezahlt ist
|
|
|
3700
3773
|
paymentTermRef: PaymentTermRef;
|
|
3701
3774
|
|
|
3702
3775
|
/**
|
|
3703
|
-
*
|
|
3776
|
+
* Wird vom Workflow verarbeitet?
|
|
3704
3777
|
*/
|
|
3705
|
-
|
|
3778
|
+
processedByWorkflow: boolean;
|
|
3706
3779
|
|
|
3707
3780
|
/**
|
|
3708
3781
|
* Telefon an Versender übergeben
|
|
3709
3782
|
*/
|
|
3710
3783
|
forwardPhoneToShipper: boolean;
|
|
3711
3784
|
|
|
3785
|
+
/**
|
|
3786
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
3787
|
+
*/
|
|
3788
|
+
baseTotalDocumentPriceModifier: number;
|
|
3789
|
+
|
|
3712
3790
|
/**
|
|
3713
3791
|
* Liste der Belegtexte
|
|
3714
3792
|
*/
|
|
@@ -3730,14 +3808,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3730
3808
|
defaultAddress: DocumentAddress;
|
|
3731
3809
|
|
|
3732
3810
|
/**
|
|
3733
|
-
*
|
|
3811
|
+
* Leistungsdatum
|
|
3734
3812
|
*/
|
|
3735
|
-
|
|
3813
|
+
performanceDate: ScriptingDate;
|
|
3736
3814
|
|
|
3737
3815
|
/**
|
|
3738
|
-
*
|
|
3816
|
+
* Verarbeitungsoption für Stapel
|
|
3739
3817
|
*/
|
|
3740
|
-
|
|
3818
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3741
3819
|
|
|
3742
3820
|
/**
|
|
3743
3821
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -3909,6 +3987,11 @@ true wenn die Quittung bezahlt ist
|
|
|
3909
3987
|
*/
|
|
3910
3988
|
customerNumber: string;
|
|
3911
3989
|
|
|
3990
|
+
/**
|
|
3991
|
+
* Versandkostenpositionen
|
|
3992
|
+
*/
|
|
3993
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
3994
|
+
|
|
3912
3995
|
/**
|
|
3913
3996
|
* Umsatzsteuer-Identifikationsnummer
|
|
3914
3997
|
*/
|
|
@@ -3919,11 +4002,6 @@ true wenn die Quittung bezahlt ist
|
|
|
3919
4002
|
*/
|
|
3920
4003
|
documentState: DocumentTypeState;
|
|
3921
4004
|
|
|
3922
|
-
/**
|
|
3923
|
-
* Versandkostenpositionen
|
|
3924
|
-
*/
|
|
3925
|
-
shippingCosts: Array<DocumentShippingCost>;
|
|
3926
|
-
|
|
3927
4005
|
/**
|
|
3928
4006
|
* Rückgeld
|
|
3929
4007
|
*/
|
|
@@ -3962,14 +4040,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
3962
4040
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
3963
4041
|
|
|
3964
4042
|
/**
|
|
3965
|
-
*
|
|
4043
|
+
* Rechnungsadresse
|
|
3966
4044
|
*/
|
|
3967
|
-
|
|
4045
|
+
billingAddress: DocumentAddress;
|
|
3968
4046
|
|
|
3969
4047
|
/**
|
|
3970
|
-
*
|
|
4048
|
+
* Status der USt-ID-Prüfung
|
|
3971
4049
|
*/
|
|
3972
|
-
|
|
4050
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
3973
4051
|
|
|
3974
4052
|
/**
|
|
3975
4053
|
* Bestellt durch Ansprechpartner
|
|
@@ -4155,14 +4233,14 @@ export interface DocumentAddress {
|
|
|
4155
4233
|
info: MetaInfo;
|
|
4156
4234
|
|
|
4157
4235
|
/**
|
|
4158
|
-
*
|
|
4236
|
+
* GLN
|
|
4159
4237
|
*/
|
|
4160
|
-
|
|
4238
|
+
globalLocationNumber: string;
|
|
4161
4239
|
|
|
4162
4240
|
/**
|
|
4163
|
-
*
|
|
4241
|
+
* Lieferart
|
|
4164
4242
|
*/
|
|
4165
|
-
|
|
4243
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4166
4244
|
|
|
4167
4245
|
/**
|
|
4168
4246
|
* Postcode
|
|
@@ -4195,14 +4273,14 @@ export interface DocumentAddress {
|
|
|
4195
4273
|
additionalAddressLine2: string;
|
|
4196
4274
|
|
|
4197
4275
|
/**
|
|
4198
|
-
*
|
|
4276
|
+
* Street address number
|
|
4199
4277
|
*/
|
|
4200
|
-
|
|
4278
|
+
streetAddressNumber: string;
|
|
4201
4279
|
|
|
4202
4280
|
/**
|
|
4203
|
-
*
|
|
4281
|
+
* Lieferbedingungen
|
|
4204
4282
|
*/
|
|
4205
|
-
|
|
4283
|
+
deliveryTermRef: ApiObjectReference;
|
|
4206
4284
|
|
|
4207
4285
|
/**
|
|
4208
4286
|
* address line 3
|
|
@@ -4336,14 +4414,14 @@ export interface DocumentContractDetail {
|
|
|
4336
4414
|
runtimeToDate: ScriptingDate;
|
|
4337
4415
|
|
|
4338
4416
|
/**
|
|
4339
|
-
*
|
|
4417
|
+
* Nächste Fälligkeit
|
|
4340
4418
|
*/
|
|
4341
|
-
|
|
4419
|
+
nextDueDate: ScriptingDate;
|
|
4342
4420
|
|
|
4343
4421
|
/**
|
|
4344
|
-
*
|
|
4422
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4345
4423
|
*/
|
|
4346
|
-
|
|
4424
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4347
4425
|
|
|
4348
4426
|
/**
|
|
4349
4427
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4403,11 +4481,31 @@ export interface DocumentFabricationDetail {
|
|
|
4403
4481
|
*/
|
|
4404
4482
|
version: number;
|
|
4405
4483
|
|
|
4484
|
+
/**
|
|
4485
|
+
* Defekt-Lagerplatz (wenn das Lager mit Lagerplätzen ist)
|
|
4486
|
+
*/
|
|
4487
|
+
defectiveStorageBinRef: ApiObjectReference;
|
|
4488
|
+
|
|
4489
|
+
/**
|
|
4490
|
+
* QS-Lagerplatz (wenn das Lager mit Lagerplätzen ist)
|
|
4491
|
+
*/
|
|
4492
|
+
qualityAssuranceStorageBinRef: ApiObjectReference;
|
|
4493
|
+
|
|
4406
4494
|
/**
|
|
4407
4495
|
* Defekt-Lager
|
|
4408
4496
|
*/
|
|
4409
4497
|
defectiveStorageRef: ApiObjectReference;
|
|
4410
4498
|
|
|
4499
|
+
/**
|
|
4500
|
+
* Ziel-Lagerplatz (wenn das Lager mit Lagerplätzen ist)
|
|
4501
|
+
*/
|
|
4502
|
+
targetStorageBinRef: ApiObjectReference;
|
|
4503
|
+
|
|
4504
|
+
/**
|
|
4505
|
+
* Werkbank-Lagerplatz (wenn das Lager mit Lagerplätzen ist)
|
|
4506
|
+
*/
|
|
4507
|
+
workbenchStorageBinRef: ApiObjectReference;
|
|
4508
|
+
|
|
4411
4509
|
/**
|
|
4412
4510
|
* Unique identifier of the Object
|
|
4413
4511
|
*/
|
|
@@ -4488,14 +4586,14 @@ export const enum DocumentImportType {
|
|
|
4488
4586
|
export interface DocumentLine {
|
|
4489
4587
|
|
|
4490
4588
|
/**
|
|
4491
|
-
*
|
|
4589
|
+
* Zolltarifnummer
|
|
4492
4590
|
*/
|
|
4493
|
-
|
|
4591
|
+
customsTariffNumber: string;
|
|
4494
4592
|
|
|
4495
4593
|
/**
|
|
4496
|
-
*
|
|
4594
|
+
* Leistungsdatum
|
|
4497
4595
|
*/
|
|
4498
|
-
|
|
4596
|
+
performanceDate: ScriptingDate;
|
|
4499
4597
|
|
|
4500
4598
|
/**
|
|
4501
4599
|
* Land der Herkunft
|
|
@@ -4503,14 +4601,14 @@ export interface DocumentLine {
|
|
|
4503
4601
|
country: CountryReference;
|
|
4504
4602
|
|
|
4505
4603
|
/**
|
|
4506
|
-
*
|
|
4604
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4507
4605
|
*/
|
|
4508
|
-
|
|
4606
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4509
4607
|
|
|
4510
4608
|
/**
|
|
4511
|
-
*
|
|
4609
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4512
4610
|
*/
|
|
4513
|
-
|
|
4611
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4514
4612
|
|
|
4515
4613
|
/**
|
|
4516
4614
|
* verarbeitete Menge
|
|
@@ -4577,11 +4675,6 @@ export interface DocumentLine {
|
|
|
4577
4675
|
*/
|
|
4578
4676
|
price: number;
|
|
4579
4677
|
|
|
4580
|
-
/**
|
|
4581
|
-
* Positionstyp
|
|
4582
|
-
*/
|
|
4583
|
-
lineType: DocumentLineType;
|
|
4584
|
-
|
|
4585
4678
|
/**
|
|
4586
4679
|
* Gesamtpreis Position in Basiswährung
|
|
4587
4680
|
*/
|
|
@@ -4592,6 +4685,11 @@ export interface DocumentLine {
|
|
|
4592
4685
|
*/
|
|
4593
4686
|
financeBooking: DocumentFinanceBooking;
|
|
4594
4687
|
|
|
4688
|
+
/**
|
|
4689
|
+
* Positionstyp
|
|
4690
|
+
*/
|
|
4691
|
+
lineType: DocumentLineType;
|
|
4692
|
+
|
|
4595
4693
|
/**
|
|
4596
4694
|
* vorgeorderte Menge in Pickvorgang
|
|
4597
4695
|
*/
|
|
@@ -4622,11 +4720,6 @@ export interface DocumentLine {
|
|
|
4622
4720
|
*/
|
|
4623
4721
|
id: number;
|
|
4624
4722
|
|
|
4625
|
-
/**
|
|
4626
|
-
* Preis pro Einheit in Basiswährung
|
|
4627
|
-
*/
|
|
4628
|
-
basePrice: number;
|
|
4629
|
-
|
|
4630
4723
|
/**
|
|
4631
4724
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
4632
4725
|
*/
|
|
@@ -4637,6 +4730,11 @@ export interface DocumentLine {
|
|
|
4637
4730
|
*/
|
|
4638
4731
|
externalReferenceVds: string;
|
|
4639
4732
|
|
|
4733
|
+
/**
|
|
4734
|
+
* Preis pro Einheit in Basiswährung
|
|
4735
|
+
*/
|
|
4736
|
+
basePrice: number;
|
|
4737
|
+
|
|
4640
4738
|
/**
|
|
4641
4739
|
* Serientyp
|
|
4642
4740
|
*/
|
|
@@ -4648,14 +4746,14 @@ export interface DocumentLine {
|
|
|
4648
4746
|
info: MetaInfo;
|
|
4649
4747
|
|
|
4650
4748
|
/**
|
|
4651
|
-
*
|
|
4749
|
+
* Steuerschema
|
|
4652
4750
|
*/
|
|
4653
|
-
|
|
4751
|
+
taxSchemaRef: ApiObjectReference;
|
|
4654
4752
|
|
|
4655
4753
|
/**
|
|
4656
|
-
*
|
|
4754
|
+
* Preiseinheit
|
|
4657
4755
|
*/
|
|
4658
|
-
|
|
4756
|
+
priceUnit: number;
|
|
4659
4757
|
|
|
4660
4758
|
/**
|
|
4661
4759
|
* Lieferart
|
|
@@ -4787,26 +4885,26 @@ export interface DocumentLine {
|
|
|
4787
4885
|
*/
|
|
4788
4886
|
revenueCalculation: RevenueCalculation;
|
|
4789
4887
|
|
|
4790
|
-
/**
|
|
4791
|
-
* Einheitentyp
|
|
4792
|
-
*/
|
|
4793
|
-
unitType: UnitTypeReference;
|
|
4794
|
-
|
|
4795
4888
|
/**
|
|
4796
4889
|
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
4797
4890
|
*/
|
|
4798
4891
|
totalLinePrice: number;
|
|
4799
4892
|
|
|
4800
4893
|
/**
|
|
4801
|
-
*
|
|
4894
|
+
* Einheitentyp
|
|
4802
4895
|
*/
|
|
4803
|
-
|
|
4896
|
+
unitType: UnitTypeReference;
|
|
4804
4897
|
|
|
4805
4898
|
/**
|
|
4806
4899
|
* Referenz zur Basiszeile
|
|
4807
4900
|
*/
|
|
4808
4901
|
baseLineId: number;
|
|
4809
4902
|
|
|
4903
|
+
/**
|
|
4904
|
+
* Zubehör Einfügeart
|
|
4905
|
+
*/
|
|
4906
|
+
insertTerm: AccessoryInsertTerm;
|
|
4907
|
+
|
|
4810
4908
|
/**
|
|
4811
4909
|
* Einheit Bruttogewicht
|
|
4812
4910
|
*/
|
|
@@ -4833,14 +4931,14 @@ export interface DocumentLine {
|
|
|
4833
4931
|
productType: ProductType;
|
|
4834
4932
|
|
|
4835
4933
|
/**
|
|
4836
|
-
*
|
|
4934
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
4837
4935
|
*/
|
|
4838
|
-
|
|
4936
|
+
baseSalesValueNet: number;
|
|
4839
4937
|
|
|
4840
4938
|
/**
|
|
4841
|
-
*
|
|
4939
|
+
* Vertragsinformationen
|
|
4842
4940
|
*/
|
|
4843
|
-
|
|
4941
|
+
contractDetail: DocumentContractDetail;
|
|
4844
4942
|
|
|
4845
4943
|
/**
|
|
4846
4944
|
* Einheit Nettogewicht
|
|
@@ -5077,14 +5175,14 @@ export interface DocumentLineComponent {
|
|
|
5077
5175
|
custom: EavDocumentlinecomponent;
|
|
5078
5176
|
|
|
5079
5177
|
/**
|
|
5080
|
-
*
|
|
5178
|
+
* Gelieferte Menge
|
|
5081
5179
|
*/
|
|
5082
|
-
|
|
5180
|
+
quantityCommitted: number;
|
|
5083
5181
|
|
|
5084
5182
|
/**
|
|
5085
|
-
*
|
|
5183
|
+
* Referenz auf den Artikel der Komponente
|
|
5086
5184
|
*/
|
|
5087
|
-
|
|
5185
|
+
articleId: number;
|
|
5088
5186
|
|
|
5089
5187
|
/**
|
|
5090
5188
|
* Beschreibung des Artikels
|
|
@@ -5170,45 +5268,65 @@ export interface DocumentLineComponentFabricationDetail {
|
|
|
5170
5268
|
info: MetaInfo;
|
|
5171
5269
|
}
|
|
5172
5270
|
|
|
5173
|
-
export interface
|
|
5271
|
+
export interface DocumentLineFabricationBookedComponent {
|
|
5174
5272
|
|
|
5175
5273
|
/**
|
|
5176
|
-
*
|
|
5274
|
+
* Nummer des Artikels
|
|
5177
5275
|
*/
|
|
5178
|
-
|
|
5276
|
+
number: string;
|
|
5179
5277
|
|
|
5180
5278
|
/**
|
|
5181
|
-
*
|
|
5279
|
+
* Seriennummer
|
|
5182
5280
|
*/
|
|
5183
|
-
|
|
5281
|
+
serialNumberRef: ApiObjectReference;
|
|
5184
5282
|
|
|
5185
5283
|
/**
|
|
5186
|
-
*
|
|
5284
|
+
* Verwendete Menge
|
|
5187
5285
|
*/
|
|
5188
|
-
|
|
5286
|
+
quantity: number;
|
|
5189
5287
|
|
|
5190
5288
|
/**
|
|
5191
|
-
*
|
|
5289
|
+
* ID des Artikels
|
|
5192
5290
|
*/
|
|
5193
|
-
|
|
5291
|
+
articleId: number;
|
|
5292
|
+
|
|
5293
|
+
/**
|
|
5294
|
+
* Name des Artikels
|
|
5295
|
+
*/
|
|
5296
|
+
name: string;
|
|
5297
|
+
|
|
5298
|
+
/**
|
|
5299
|
+
* Beschreibung des Artikels
|
|
5300
|
+
*/
|
|
5301
|
+
description: string;
|
|
5194
5302
|
}
|
|
5195
5303
|
|
|
5196
|
-
export interface
|
|
5304
|
+
export interface DocumentLineFabricationDetail {
|
|
5197
5305
|
|
|
5198
5306
|
/**
|
|
5199
|
-
*
|
|
5307
|
+
* Menge abgeschlossen
|
|
5200
5308
|
*/
|
|
5201
|
-
|
|
5309
|
+
quantityFinished: number;
|
|
5202
5310
|
|
|
5203
5311
|
/**
|
|
5204
|
-
*
|
|
5312
|
+
* Menge defekt
|
|
5205
5313
|
*/
|
|
5206
|
-
|
|
5314
|
+
quantityDefective: number;
|
|
5207
5315
|
|
|
5208
5316
|
/**
|
|
5209
|
-
*
|
|
5317
|
+
* Produzierte Seriennummern
|
|
5210
5318
|
*/
|
|
5211
|
-
|
|
5319
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5320
|
+
|
|
5321
|
+
/**
|
|
5322
|
+
* Freifeld
|
|
5323
|
+
*/
|
|
5324
|
+
custom: EavFabricationline;
|
|
5325
|
+
|
|
5326
|
+
/**
|
|
5327
|
+
* Menge produziert
|
|
5328
|
+
*/
|
|
5329
|
+
quantityCommitted: number;
|
|
5212
5330
|
|
|
5213
5331
|
/**
|
|
5214
5332
|
* Unique identifier of the Object
|
|
@@ -5220,21 +5338,112 @@ export interface DocumentLinePosDetail {
|
|
|
5220
5338
|
*/
|
|
5221
5339
|
version: number;
|
|
5222
5340
|
|
|
5341
|
+
/**
|
|
5342
|
+
* Menge in QS
|
|
5343
|
+
*/
|
|
5344
|
+
quantityInQA: number;
|
|
5345
|
+
|
|
5223
5346
|
/**
|
|
5224
5347
|
* MetaInformations for this Object
|
|
5225
5348
|
*/
|
|
5226
5349
|
info: MetaInfo;
|
|
5227
5350
|
}
|
|
5228
5351
|
|
|
5229
|
-
export interface
|
|
5352
|
+
export interface DocumentLineFabricationDetailSerialNumber {
|
|
5230
5353
|
|
|
5231
5354
|
/**
|
|
5232
|
-
*
|
|
5355
|
+
* Menge abgeschlossen
|
|
5233
5356
|
*/
|
|
5234
|
-
|
|
5357
|
+
quantityFinished: number;
|
|
5235
5358
|
|
|
5236
5359
|
/**
|
|
5237
|
-
*
|
|
5360
|
+
* Produzierte/geplante Menge
|
|
5361
|
+
*/
|
|
5362
|
+
quantity: number;
|
|
5363
|
+
|
|
5364
|
+
/**
|
|
5365
|
+
* Produzierte Seriennummer
|
|
5366
|
+
*/
|
|
5367
|
+
serialNumber: ArticleSerialNumber;
|
|
5368
|
+
|
|
5369
|
+
/**
|
|
5370
|
+
* Gebuchte Komponenten
|
|
5371
|
+
*/
|
|
5372
|
+
bookedComponents: Array<DocumentLineFabricationBookedComponent>;
|
|
5373
|
+
|
|
5374
|
+
/**
|
|
5375
|
+
* Menge defekt
|
|
5376
|
+
*/
|
|
5377
|
+
quantityDefective: number;
|
|
5378
|
+
|
|
5379
|
+
/**
|
|
5380
|
+
* Tatsächlich produzierte Menge
|
|
5381
|
+
*/
|
|
5382
|
+
quantityCommitted: number;
|
|
5383
|
+
|
|
5384
|
+
/**
|
|
5385
|
+
* Unique identifier of the Object
|
|
5386
|
+
*/
|
|
5387
|
+
id: number;
|
|
5388
|
+
|
|
5389
|
+
/**
|
|
5390
|
+
* Version Identifier for this Object (for PUT)
|
|
5391
|
+
*/
|
|
5392
|
+
version: number;
|
|
5393
|
+
|
|
5394
|
+
/**
|
|
5395
|
+
* Menge in QS
|
|
5396
|
+
*/
|
|
5397
|
+
quantityInQA: number;
|
|
5398
|
+
|
|
5399
|
+
/**
|
|
5400
|
+
* MetaInformations for this Object
|
|
5401
|
+
*/
|
|
5402
|
+
info: MetaInfo;
|
|
5403
|
+
}
|
|
5404
|
+
|
|
5405
|
+
export interface DocumentLinePosDetail {
|
|
5406
|
+
|
|
5407
|
+
/**
|
|
5408
|
+
* Zahlungsart
|
|
5409
|
+
*/
|
|
5410
|
+
paymentMethodId: number;
|
|
5411
|
+
|
|
5412
|
+
/**
|
|
5413
|
+
* Typ der Einlage/Ausgabe
|
|
5414
|
+
*/
|
|
5415
|
+
depositExpenseTypeId: number;
|
|
5416
|
+
|
|
5417
|
+
/**
|
|
5418
|
+
* Typ der Position
|
|
5419
|
+
*/
|
|
5420
|
+
posLineType: PosLineType;
|
|
5421
|
+
|
|
5422
|
+
/**
|
|
5423
|
+
* Unique identifier of the Object
|
|
5424
|
+
*/
|
|
5425
|
+
id: number;
|
|
5426
|
+
|
|
5427
|
+
/**
|
|
5428
|
+
* Version Identifier for this Object (for PUT)
|
|
5429
|
+
*/
|
|
5430
|
+
version: number;
|
|
5431
|
+
|
|
5432
|
+
/**
|
|
5433
|
+
* MetaInformations for this Object
|
|
5434
|
+
*/
|
|
5435
|
+
info: MetaInfo;
|
|
5436
|
+
}
|
|
5437
|
+
|
|
5438
|
+
export interface DocumentLineRef {
|
|
5439
|
+
|
|
5440
|
+
/**
|
|
5441
|
+
* Belegnummer
|
|
5442
|
+
*/
|
|
5443
|
+
number: string;
|
|
5444
|
+
|
|
5445
|
+
/**
|
|
5446
|
+
* quantity
|
|
5238
5447
|
*/
|
|
5239
5448
|
quantity: number;
|
|
5240
5449
|
|
|
@@ -5486,14 +5695,14 @@ export interface DocumentRef {
|
|
|
5486
5695
|
export interface DocumentShippingCost {
|
|
5487
5696
|
|
|
5488
5697
|
/**
|
|
5489
|
-
*
|
|
5698
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
5490
5699
|
*/
|
|
5491
|
-
|
|
5700
|
+
manualCosts: boolean;
|
|
5492
5701
|
|
|
5493
5702
|
/**
|
|
5494
|
-
*
|
|
5703
|
+
* Die Versandkosten
|
|
5495
5704
|
*/
|
|
5496
|
-
|
|
5705
|
+
costs: number;
|
|
5497
5706
|
|
|
5498
5707
|
/**
|
|
5499
5708
|
* Keine Versandkosten (freier Versand)
|
|
@@ -5620,8 +5829,6 @@ export interface DocumentText {
|
|
|
5620
5829
|
*/
|
|
5621
5830
|
transferableIntoSubsequentDocuments: boolean;
|
|
5622
5831
|
|
|
5623
|
-
textTemplateId: number;
|
|
5624
|
-
|
|
5625
5832
|
/**
|
|
5626
5833
|
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
5627
5834
|
*/
|
|
@@ -5632,6 +5839,16 @@ export interface DocumentText {
|
|
|
5632
5839
|
*/
|
|
5633
5840
|
textPosition: TextPosition;
|
|
5634
5841
|
|
|
5842
|
+
/**
|
|
5843
|
+
* textBaustein Vorlage
|
|
5844
|
+
*/
|
|
5845
|
+
textTemplateRef: ApiObjectReference;
|
|
5846
|
+
|
|
5847
|
+
/**
|
|
5848
|
+
* ist der content befüllt?
|
|
5849
|
+
*/
|
|
5850
|
+
initialized: boolean;
|
|
5851
|
+
|
|
5635
5852
|
/**
|
|
5636
5853
|
* Unique identifier of the Object
|
|
5637
5854
|
*/
|
|
@@ -5730,14 +5947,14 @@ export interface DocumentType {
|
|
|
5730
5947
|
labels: Array<DocumentTypeLabel>;
|
|
5731
5948
|
|
|
5732
5949
|
/**
|
|
5733
|
-
*
|
|
5950
|
+
* nächste Belegnummer
|
|
5734
5951
|
*/
|
|
5735
|
-
|
|
5952
|
+
nextNumber: string;
|
|
5736
5953
|
|
|
5737
5954
|
/**
|
|
5738
|
-
*
|
|
5955
|
+
* Zählerkreis
|
|
5739
5956
|
*/
|
|
5740
|
-
|
|
5957
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
5741
5958
|
|
|
5742
5959
|
/**
|
|
5743
5960
|
* Sortierung
|
|
@@ -6012,14 +6229,22 @@ export const enum EDocumentTransition {
|
|
|
6012
6229
|
DISSOLVE = 'DISSOLVE',
|
|
6013
6230
|
/**Produktion starten **/
|
|
6014
6231
|
START_FABRICATION = 'START_FABRICATION',
|
|
6232
|
+
/**Produktion stornieren **/
|
|
6233
|
+
CANCEL_FABRICATION = 'CANCEL_FABRICATION',
|
|
6234
|
+
UPDATE_WHILE_IN_FABRICATION = 'UPDATE_WHILE_IN_FABRICATION',
|
|
6015
6235
|
/**Produktion pausieren **/
|
|
6016
6236
|
PAUSE_FABRICATION = 'PAUSE_FABRICATION',
|
|
6017
6237
|
/**Produktion fortsetzen **/
|
|
6018
6238
|
RESUME_FABRICATION = 'RESUME_FABRICATION',
|
|
6019
|
-
/**Produktion
|
|
6239
|
+
/**Produktion fertigstellen **/
|
|
6020
6240
|
COMPLETE_FABRICATION = 'COMPLETE_FABRICATION',
|
|
6241
|
+
/**Produktion fortsetzen **/
|
|
6242
|
+
RESTART_FABRICATION = 'RESTART_FABRICATION',
|
|
6021
6243
|
/**QS-Prüfung starten **/
|
|
6022
6244
|
START_FABRICATION_QA = 'START_FABRICATION_QA',
|
|
6245
|
+
START_PROCESSING_FABRICATION_QA = 'START_PROCESSING_FABRICATION_QA',
|
|
6246
|
+
PROCESSING_FABRICATION_QA = 'PROCESSING_FABRICATION_QA',
|
|
6247
|
+
FINISH_PROCESSING_FABRICATION_QA = 'FINISH_PROCESSING_FABRICATION_QA',
|
|
6023
6248
|
/**QS-Prüfung abbrechen **/
|
|
6024
6249
|
CANCEL_FABRICATION_QA = 'CANCEL_FABRICATION_QA',
|
|
6025
6250
|
/**QS-Prüfung abschließen **/
|
|
@@ -6047,6 +6272,18 @@ export const enum EN16931Profile {
|
|
|
6047
6272
|
NO_EN_PROFILE = 'NO_EN_PROFILE'
|
|
6048
6273
|
}
|
|
6049
6274
|
|
|
6275
|
+
export const enum EScriptingAuthenticationType {
|
|
6276
|
+
BASIC_AUTH = 'BASIC_AUTH',
|
|
6277
|
+
BEARER_TOKEN = 'BEARER_TOKEN'
|
|
6278
|
+
}
|
|
6279
|
+
|
|
6280
|
+
export const enum EShelfDocumentDeletionState {
|
|
6281
|
+
NOT_YET = 'NOT_YET',
|
|
6282
|
+
PREPARE_DELETE = 'PREPARE_DELETE',
|
|
6283
|
+
FILE_DELETED = 'FILE_DELETED',
|
|
6284
|
+
MANUALLY_RETAIN = 'MANUALLY_RETAIN'
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6050
6287
|
export const enum EWorkflowInstanceState {
|
|
6051
6288
|
/**Erstellt **/
|
|
6052
6289
|
CREATED = 'CREATED',
|
|
@@ -6076,6 +6313,47 @@ export const enum ExchangeRateOrigin {
|
|
|
6076
6313
|
USER_DEFINED = 'USER_DEFINED'
|
|
6077
6314
|
}
|
|
6078
6315
|
|
|
6316
|
+
export interface FabricationComponentForProduction {
|
|
6317
|
+
|
|
6318
|
+
/**
|
|
6319
|
+
* Zu produzierende Seriennummer, für die die Komponente verwendet werden
|
|
6320
|
+
*/
|
|
6321
|
+
serialNumberId: number;
|
|
6322
|
+
|
|
6323
|
+
/**
|
|
6324
|
+
* Zu verwendende Menge
|
|
6325
|
+
*/
|
|
6326
|
+
quantity: number;
|
|
6327
|
+
|
|
6328
|
+
/**
|
|
6329
|
+
* ID der Komponente
|
|
6330
|
+
*/
|
|
6331
|
+
documentLineComponentId: number;
|
|
6332
|
+
|
|
6333
|
+
/**
|
|
6334
|
+
* ID einer Seriennummer
|
|
6335
|
+
*/
|
|
6336
|
+
articleSerialNumberId: number;
|
|
6337
|
+
}
|
|
6338
|
+
|
|
6339
|
+
export interface FabricationDefectiveRequest {
|
|
6340
|
+
|
|
6341
|
+
/**
|
|
6342
|
+
* (Nicht mehr) defekte Menge
|
|
6343
|
+
*/
|
|
6344
|
+
quantity: number;
|
|
6345
|
+
|
|
6346
|
+
/**
|
|
6347
|
+
* (Nicht mehr) defekte Seriennummern
|
|
6348
|
+
*/
|
|
6349
|
+
serialNumberIdsWithQuantity: Array<SerialNumberWithQuantityApi>;
|
|
6350
|
+
|
|
6351
|
+
/**
|
|
6352
|
+
* Soll eine neue Position zur Nachproduktion der defekten Artikel erstellt werden?
|
|
6353
|
+
*/
|
|
6354
|
+
createLineForReproduction: boolean;
|
|
6355
|
+
}
|
|
6356
|
+
|
|
6079
6357
|
export const enum FabricationOfComponents {
|
|
6080
6358
|
NEVER = 'NEVER',
|
|
6081
6359
|
COMPLETELY_IF_NECESSARY = 'COMPLETELY_IF_NECESSARY',
|
|
@@ -6083,6 +6361,131 @@ export const enum FabricationOfComponents {
|
|
|
6083
6361
|
ALWAYS = 'ALWAYS'
|
|
6084
6362
|
}
|
|
6085
6363
|
|
|
6364
|
+
export interface FabricationProduceRequest {
|
|
6365
|
+
|
|
6366
|
+
/**
|
|
6367
|
+
* Material automatisch bestätigen
|
|
6368
|
+
*/
|
|
6369
|
+
autoCommitComponents: boolean;
|
|
6370
|
+
|
|
6371
|
+
/**
|
|
6372
|
+
* Zu produzierende Menge
|
|
6373
|
+
*/
|
|
6374
|
+
quantity: number;
|
|
6375
|
+
|
|
6376
|
+
/**
|
|
6377
|
+
* Für die Produktion zu verwendendes Material
|
|
6378
|
+
*/
|
|
6379
|
+
componentsForProduction: Array<FabricationComponentForProduction>;
|
|
6380
|
+
|
|
6381
|
+
/**
|
|
6382
|
+
* ID der zu produzierenden Position
|
|
6383
|
+
*/
|
|
6384
|
+
documentLineId: number;
|
|
6385
|
+
|
|
6386
|
+
/**
|
|
6387
|
+
* Zu produzierende Seriennummern
|
|
6388
|
+
*/
|
|
6389
|
+
serialNumbers: Array<FabricationSerialNumber>;
|
|
6390
|
+
}
|
|
6391
|
+
|
|
6392
|
+
export interface FabricationRemainingComponent {
|
|
6393
|
+
|
|
6394
|
+
/**
|
|
6395
|
+
* Zu produzierende Seriennummer, zu der die Komponente gehört
|
|
6396
|
+
*/
|
|
6397
|
+
lineSerialNumber: ArticleSerialNumber;
|
|
6398
|
+
|
|
6399
|
+
/**
|
|
6400
|
+
* Offene Menge
|
|
6401
|
+
*/
|
|
6402
|
+
quantity: number;
|
|
6403
|
+
|
|
6404
|
+
/**
|
|
6405
|
+
* ID der Komponente
|
|
6406
|
+
*/
|
|
6407
|
+
documentLineComponentId: number;
|
|
6408
|
+
|
|
6409
|
+
/**
|
|
6410
|
+
* Artikel
|
|
6411
|
+
*/
|
|
6412
|
+
articleRef: ApiObjectReference;
|
|
6413
|
+
|
|
6414
|
+
/**
|
|
6415
|
+
* Serientyp
|
|
6416
|
+
*/
|
|
6417
|
+
serialType: ArticleSerialType;
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
export interface FabricationRevertRequest {
|
|
6421
|
+
|
|
6422
|
+
/**
|
|
6423
|
+
* Zu stornierende Menge
|
|
6424
|
+
*/
|
|
6425
|
+
quantity: number;
|
|
6426
|
+
|
|
6427
|
+
/**
|
|
6428
|
+
* ID der zu stornierenden Position
|
|
6429
|
+
*/
|
|
6430
|
+
documentLineId: number;
|
|
6431
|
+
|
|
6432
|
+
/**
|
|
6433
|
+
* Material automatisch stornieren
|
|
6434
|
+
*/
|
|
6435
|
+
autoRevertComponents: boolean;
|
|
6436
|
+
|
|
6437
|
+
/**
|
|
6438
|
+
* Zu stornierende Seriennummern
|
|
6439
|
+
*/
|
|
6440
|
+
serialNumbers: Array<FabricationSerialNumber>;
|
|
6441
|
+
|
|
6442
|
+
/**
|
|
6443
|
+
* Zu stornierendes Material
|
|
6444
|
+
*/
|
|
6445
|
+
componentsToRevert: Array<FabricationComponentForProduction>;
|
|
6446
|
+
}
|
|
6447
|
+
|
|
6448
|
+
export interface FabricationSerialNumber {
|
|
6449
|
+
|
|
6450
|
+
/**
|
|
6451
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6452
|
+
*/
|
|
6453
|
+
serialNumberId: number;
|
|
6454
|
+
|
|
6455
|
+
/**
|
|
6456
|
+
* MHD / Verfallsdatum
|
|
6457
|
+
*/
|
|
6458
|
+
expiryDate: ScriptingDate;
|
|
6459
|
+
|
|
6460
|
+
/**
|
|
6461
|
+
* Bemerkung
|
|
6462
|
+
*/
|
|
6463
|
+
note: string;
|
|
6464
|
+
|
|
6465
|
+
/**
|
|
6466
|
+
* Abweichende Menge für Chargen
|
|
6467
|
+
*/
|
|
6468
|
+
quantity: number;
|
|
6469
|
+
|
|
6470
|
+
/**
|
|
6471
|
+
* Seriennummer 2
|
|
6472
|
+
*/
|
|
6473
|
+
serialNumber2: string;
|
|
6474
|
+
|
|
6475
|
+
/**
|
|
6476
|
+
* Seriennummer 1
|
|
6477
|
+
*/
|
|
6478
|
+
serialNumber1: string;
|
|
6479
|
+
}
|
|
6480
|
+
|
|
6481
|
+
export const enum FabricationSerialNumberLabelingType {
|
|
6482
|
+
QUERY_ON_START = 'QUERY_ON_START',
|
|
6483
|
+
QUERY_ON_FINISH = 'QUERY_ON_FINISH',
|
|
6484
|
+
INHERITANCE = 'INHERITANCE',
|
|
6485
|
+
AUTOMATICALLY_ON_START = 'AUTOMATICALLY_ON_START',
|
|
6486
|
+
AUTOMATICALLY_ON_FINISH = 'AUTOMATICALLY_ON_FINISH'
|
|
6487
|
+
}
|
|
6488
|
+
|
|
6086
6489
|
export interface Group {
|
|
6087
6490
|
|
|
6088
6491
|
/**
|
|
@@ -6430,14 +6833,14 @@ export interface PickTrolley {
|
|
|
6430
6833
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
6431
6834
|
|
|
6432
6835
|
/**
|
|
6433
|
-
*
|
|
6836
|
+
* Bearbeiter der Pickliste
|
|
6434
6837
|
*/
|
|
6435
|
-
|
|
6838
|
+
processedByUserRef: ApiObjectReference;
|
|
6436
6839
|
|
|
6437
6840
|
/**
|
|
6438
|
-
*
|
|
6841
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
6439
6842
|
*/
|
|
6440
|
-
|
|
6843
|
+
storageBinRef: StorageBinRef;
|
|
6441
6844
|
|
|
6442
6845
|
/**
|
|
6443
6846
|
* Beschreibung des Wagens
|
|
@@ -6590,14 +6993,14 @@ export const enum PickingType {
|
|
|
6590
6993
|
export interface Picklist {
|
|
6591
6994
|
|
|
6592
6995
|
/**
|
|
6593
|
-
*
|
|
6996
|
+
* Ziellager für Nachschub
|
|
6594
6997
|
*/
|
|
6595
|
-
|
|
6998
|
+
targetStorageRef: ApiObjectReference;
|
|
6596
6999
|
|
|
6597
7000
|
/**
|
|
6598
|
-
*
|
|
7001
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
6599
7002
|
*/
|
|
6600
|
-
|
|
7003
|
+
usedTemplate: PicklistTemplate;
|
|
6601
7004
|
|
|
6602
7005
|
/**
|
|
6603
7006
|
* Nummer der Pickliste
|
|
@@ -7012,30 +7415,30 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7012
7415
|
*/
|
|
7013
7416
|
maxArticleCountPerOrder: number;
|
|
7014
7417
|
|
|
7015
|
-
/**
|
|
7016
|
-
* Alternative Selektion in VQL
|
|
7017
|
-
*/
|
|
7018
|
-
alternativeSelectionInVql: string;
|
|
7019
|
-
|
|
7020
7418
|
/**
|
|
7021
7419
|
* Maximaler Auftragswert
|
|
7022
7420
|
*/
|
|
7023
7421
|
maxOrderValue: number;
|
|
7024
7422
|
|
|
7025
7423
|
/**
|
|
7026
|
-
*
|
|
7424
|
+
* Alternative Selektion in VQL
|
|
7027
7425
|
*/
|
|
7028
|
-
|
|
7426
|
+
alternativeSelectionInVql: string;
|
|
7029
7427
|
|
|
7030
7428
|
/**
|
|
7031
|
-
*
|
|
7429
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7430
|
+
*/
|
|
7431
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7432
|
+
|
|
7433
|
+
/**
|
|
7434
|
+
* Nur vollständig lieferbare Positionen
|
|
7032
7435
|
*/
|
|
7033
7436
|
onlyFullDeliverableOrderLines: boolean;
|
|
7034
7437
|
|
|
7035
7438
|
/**
|
|
7036
|
-
*
|
|
7439
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7037
7440
|
*/
|
|
7038
|
-
|
|
7441
|
+
maxOrderCount: number;
|
|
7039
7442
|
|
|
7040
7443
|
/**
|
|
7041
7444
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7105,11 +7508,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7105
7508
|
*/
|
|
7106
7509
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7107
7510
|
|
|
7108
|
-
/**
|
|
7109
|
-
* Lagerplätze vorgeben
|
|
7110
|
-
*/
|
|
7111
|
-
specifyStorageBins: boolean;
|
|
7112
|
-
|
|
7113
7511
|
/**
|
|
7114
7512
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7115
7513
|
*/
|
|
@@ -7121,15 +7519,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7121
7519
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7122
7520
|
|
|
7123
7521
|
/**
|
|
7124
|
-
*
|
|
7522
|
+
* Lagerplätze vorgeben
|
|
7125
7523
|
*/
|
|
7126
|
-
|
|
7524
|
+
specifyStorageBins: boolean;
|
|
7127
7525
|
|
|
7128
7526
|
/**
|
|
7129
7527
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7130
7528
|
*/
|
|
7131
7529
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
7132
7530
|
|
|
7531
|
+
/**
|
|
7532
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7533
|
+
*/
|
|
7534
|
+
sortByRoutePosition: boolean;
|
|
7535
|
+
|
|
7133
7536
|
/**
|
|
7134
7537
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
7135
7538
|
*/
|
|
@@ -7174,14 +7577,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7174
7577
|
alwaysShowDeliveryMethod: boolean;
|
|
7175
7578
|
|
|
7176
7579
|
/**
|
|
7177
|
-
*
|
|
7580
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7178
7581
|
*/
|
|
7179
|
-
|
|
7582
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7180
7583
|
|
|
7181
7584
|
/**
|
|
7182
|
-
*
|
|
7585
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7183
7586
|
*/
|
|
7184
|
-
|
|
7587
|
+
autoPrintDeliveryDocument: boolean;
|
|
7185
7588
|
|
|
7186
7589
|
/**
|
|
7187
7590
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7194,14 +7597,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7194
7597
|
allowPickingOfServiceArticles: boolean;
|
|
7195
7598
|
|
|
7196
7599
|
/**
|
|
7197
|
-
*
|
|
7600
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7198
7601
|
*/
|
|
7199
|
-
|
|
7602
|
+
useDigitalPicklist: boolean;
|
|
7200
7603
|
|
|
7201
7604
|
/**
|
|
7202
|
-
*
|
|
7605
|
+
* Sammelbestätigung erlauben
|
|
7203
7606
|
*/
|
|
7204
|
-
|
|
7607
|
+
allowFullConfirmation: boolean;
|
|
7205
7608
|
|
|
7206
7609
|
/**
|
|
7207
7610
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -7267,14 +7670,14 @@ export interface PriceSelectionCriteria {
|
|
|
7267
7670
|
date: ScriptingDate;
|
|
7268
7671
|
|
|
7269
7672
|
/**
|
|
7270
|
-
*
|
|
7673
|
+
* Eine Menge
|
|
7271
7674
|
*/
|
|
7272
|
-
|
|
7675
|
+
quantity: number;
|
|
7273
7676
|
|
|
7274
7677
|
/**
|
|
7275
|
-
*
|
|
7678
|
+
* Die Preisgruppe
|
|
7276
7679
|
*/
|
|
7277
|
-
|
|
7680
|
+
priceGroupId: number;
|
|
7278
7681
|
|
|
7279
7682
|
/**
|
|
7280
7683
|
* Liste von Artikel-IDs
|
|
@@ -7292,14 +7695,14 @@ export interface PriceSelectionCriteria {
|
|
|
7292
7695
|
qualifier: ProductPriceQualifier;
|
|
7293
7696
|
|
|
7294
7697
|
/**
|
|
7295
|
-
*
|
|
7698
|
+
* Ein Herstellet
|
|
7296
7699
|
*/
|
|
7297
|
-
|
|
7700
|
+
manufacturerId: number;
|
|
7298
7701
|
|
|
7299
7702
|
/**
|
|
7300
|
-
*
|
|
7703
|
+
* Die Warengruppe
|
|
7301
7704
|
*/
|
|
7302
|
-
|
|
7705
|
+
productGroupId: number;
|
|
7303
7706
|
|
|
7304
7707
|
/**
|
|
7305
7708
|
* soll nur der Standardpreis selektiert werden?
|
|
@@ -7312,6 +7715,132 @@ export interface PriceSelectionCriteria {
|
|
|
7312
7715
|
noteSpecialOfferPrice: boolean;
|
|
7313
7716
|
}
|
|
7314
7717
|
|
|
7718
|
+
export interface Product {
|
|
7719
|
+
|
|
7720
|
+
/**
|
|
7721
|
+
* Variantenhauptartikel
|
|
7722
|
+
*/
|
|
7723
|
+
mainVariantProductRef: ApiObjectReference;
|
|
7724
|
+
|
|
7725
|
+
/**
|
|
7726
|
+
* Zolltarifnummer
|
|
7727
|
+
*/
|
|
7728
|
+
customsTariffNumber: string;
|
|
7729
|
+
|
|
7730
|
+
/**
|
|
7731
|
+
* Variantenschema
|
|
7732
|
+
*/
|
|
7733
|
+
variantSchemaRef: ApiObjectReference;
|
|
7734
|
+
|
|
7735
|
+
/**
|
|
7736
|
+
* Eigener Zählerkreis für Seriennummern
|
|
7737
|
+
*/
|
|
7738
|
+
serialSequencerConfiguration: SequencerConfiguration;
|
|
7739
|
+
|
|
7740
|
+
/**
|
|
7741
|
+
* Gebindeschema dieses Produkts
|
|
7742
|
+
*/
|
|
7743
|
+
bundleSchemaRef: ApiObjectReference;
|
|
7744
|
+
|
|
7745
|
+
/**
|
|
7746
|
+
* Seriennummern Auszeichnungsart
|
|
7747
|
+
*/
|
|
7748
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
7749
|
+
|
|
7750
|
+
/**
|
|
7751
|
+
* Art des Haltbarkeitsdatums
|
|
7752
|
+
*/
|
|
7753
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
7754
|
+
|
|
7755
|
+
/**
|
|
7756
|
+
* Ursprungsregion
|
|
7757
|
+
*/
|
|
7758
|
+
regionOfOrigin: ApiObjectReference;
|
|
7759
|
+
|
|
7760
|
+
/**
|
|
7761
|
+
* Produkt-Art
|
|
7762
|
+
*/
|
|
7763
|
+
type: ProductType;
|
|
7764
|
+
|
|
7765
|
+
/**
|
|
7766
|
+
* Version Identifier for this Object (for PUT)
|
|
7767
|
+
*/
|
|
7768
|
+
version: number;
|
|
7769
|
+
|
|
7770
|
+
/**
|
|
7771
|
+
* Garantie in Monaten
|
|
7772
|
+
*/
|
|
7773
|
+
warrantyInMonths: number;
|
|
7774
|
+
|
|
7775
|
+
/**
|
|
7776
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
7777
|
+
*/
|
|
7778
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
7779
|
+
|
|
7780
|
+
/**
|
|
7781
|
+
* alle artikel, die zu diesem Produkt gehören
|
|
7782
|
+
*/
|
|
7783
|
+
articleRefs: Array<ProductArticleRef>;
|
|
7784
|
+
|
|
7785
|
+
/**
|
|
7786
|
+
* Soll ein eigener Zählerkreis für Seriennummern verwendet werden?
|
|
7787
|
+
*/
|
|
7788
|
+
useSerialSequencerConfiguration: boolean;
|
|
7789
|
+
|
|
7790
|
+
/**
|
|
7791
|
+
* Produktions-S/N-Auszeichnungsart
|
|
7792
|
+
*/
|
|
7793
|
+
fabricationSerialNumberLabelingType: FabricationSerialNumberLabelingType;
|
|
7794
|
+
|
|
7795
|
+
/**
|
|
7796
|
+
* Country code
|
|
7797
|
+
*/
|
|
7798
|
+
countryOfOrigin: CountryReference;
|
|
7799
|
+
|
|
7800
|
+
/**
|
|
7801
|
+
* Unique identifier of the Object
|
|
7802
|
+
*/
|
|
7803
|
+
id: number;
|
|
7804
|
+
|
|
7805
|
+
/**
|
|
7806
|
+
* Handelt es sich um ein Gebinde?
|
|
7807
|
+
*/
|
|
7808
|
+
bundle: boolean;
|
|
7809
|
+
|
|
7810
|
+
/**
|
|
7811
|
+
* Serientyp
|
|
7812
|
+
*/
|
|
7813
|
+
serialType: ArticleSerialType;
|
|
7814
|
+
|
|
7815
|
+
/**
|
|
7816
|
+
* Variantenwerte
|
|
7817
|
+
*/
|
|
7818
|
+
variantValues: Array<VariantValueReference>;
|
|
7819
|
+
|
|
7820
|
+
/**
|
|
7821
|
+
* MetaInformations for this Object
|
|
7822
|
+
*/
|
|
7823
|
+
info: MetaInfo;
|
|
7824
|
+
}
|
|
7825
|
+
|
|
7826
|
+
export interface ProductArticleRef {
|
|
7827
|
+
|
|
7828
|
+
/**
|
|
7829
|
+
* Article number
|
|
7830
|
+
*/
|
|
7831
|
+
number: string;
|
|
7832
|
+
|
|
7833
|
+
/**
|
|
7834
|
+
* named unit of this article (piece, palette, container)
|
|
7835
|
+
*/
|
|
7836
|
+
unit: UnitTypeReference;
|
|
7837
|
+
|
|
7838
|
+
/**
|
|
7839
|
+
* Article ID
|
|
7840
|
+
*/
|
|
7841
|
+
id: number;
|
|
7842
|
+
}
|
|
7843
|
+
|
|
7315
7844
|
export interface ProductDiscount {
|
|
7316
7845
|
|
|
7317
7846
|
/**
|
|
@@ -7330,14 +7859,14 @@ export interface ProductDiscount {
|
|
|
7330
7859
|
fromQuantity: number;
|
|
7331
7860
|
|
|
7332
7861
|
/**
|
|
7333
|
-
*
|
|
7862
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
7334
7863
|
*/
|
|
7335
|
-
|
|
7864
|
+
articleRef: ApiObjectReference;
|
|
7336
7865
|
|
|
7337
7866
|
/**
|
|
7338
|
-
*
|
|
7867
|
+
* Hersteller
|
|
7339
7868
|
*/
|
|
7340
|
-
|
|
7869
|
+
manufacturerRef: ApiObjectReference;
|
|
7341
7870
|
|
|
7342
7871
|
/**
|
|
7343
7872
|
* Gültig von
|
|
@@ -7370,14 +7899,14 @@ export interface ProductDiscount {
|
|
|
7370
7899
|
currencyRef: CurrencyReference;
|
|
7371
7900
|
|
|
7372
7901
|
/**
|
|
7373
|
-
*
|
|
7902
|
+
* Wert des Rabatts
|
|
7374
7903
|
*/
|
|
7375
|
-
|
|
7904
|
+
modifierValue: number;
|
|
7376
7905
|
|
|
7377
7906
|
/**
|
|
7378
|
-
*
|
|
7907
|
+
* Preisgruppe
|
|
7379
7908
|
*/
|
|
7380
|
-
|
|
7909
|
+
priceGroupRef: ApiObjectReference;
|
|
7381
7910
|
|
|
7382
7911
|
/**
|
|
7383
7912
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -7400,14 +7929,14 @@ export interface ProductDiscount {
|
|
|
7400
7929
|
validUntil: ScriptingDate;
|
|
7401
7930
|
|
|
7402
7931
|
/**
|
|
7403
|
-
*
|
|
7932
|
+
* Account, für den der Rabatt gültig ist
|
|
7404
7933
|
*/
|
|
7405
|
-
|
|
7934
|
+
accountRef: ApiObjectReference;
|
|
7406
7935
|
|
|
7407
7936
|
/**
|
|
7408
|
-
*
|
|
7937
|
+
* Name des Rabatts
|
|
7409
7938
|
*/
|
|
7410
|
-
|
|
7939
|
+
modifierName: string;
|
|
7411
7940
|
|
|
7412
7941
|
/**
|
|
7413
7942
|
* Unique identifier of the Object
|
|
@@ -7544,14 +8073,14 @@ export interface ProductPrice {
|
|
|
7544
8073
|
fromQuantity: number;
|
|
7545
8074
|
|
|
7546
8075
|
/**
|
|
7547
|
-
*
|
|
8076
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
7548
8077
|
*/
|
|
7549
|
-
|
|
8078
|
+
articleRef: ApiObjectReference;
|
|
7550
8079
|
|
|
7551
8080
|
/**
|
|
7552
|
-
*
|
|
8081
|
+
* Hersteller
|
|
7553
8082
|
*/
|
|
7554
|
-
|
|
8083
|
+
manufacturerRef: ApiObjectReference;
|
|
7555
8084
|
|
|
7556
8085
|
/**
|
|
7557
8086
|
* Netto-Preis
|
|
@@ -7866,14 +8395,14 @@ export interface RequestDocumentLine {
|
|
|
7866
8395
|
commissions: Array<RequestDocumentLineCommission>;
|
|
7867
8396
|
|
|
7868
8397
|
/**
|
|
7869
|
-
*
|
|
8398
|
+
* FiBu-Angaben
|
|
7870
8399
|
*/
|
|
7871
|
-
|
|
8400
|
+
financeBooking: DocumentFinanceBooking;
|
|
7872
8401
|
|
|
7873
8402
|
/**
|
|
7874
|
-
*
|
|
8403
|
+
* Typ dieser Position
|
|
7875
8404
|
*/
|
|
7876
|
-
|
|
8405
|
+
lineType: DocumentLineType;
|
|
7877
8406
|
|
|
7878
8407
|
/**
|
|
7879
8408
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -7905,6 +8434,11 @@ export interface RequestDocumentLine {
|
|
|
7905
8434
|
*/
|
|
7906
8435
|
quantity: number;
|
|
7907
8436
|
|
|
8437
|
+
/**
|
|
8438
|
+
* Details Produktionsbelegen
|
|
8439
|
+
*/
|
|
8440
|
+
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
8441
|
+
|
|
7908
8442
|
/**
|
|
7909
8443
|
* Für interne Zwecke: Freifelder
|
|
7910
8444
|
*/
|
|
@@ -7956,14 +8490,14 @@ export interface RequestDocumentLine {
|
|
|
7956
8490
|
externalArticleNumber: string;
|
|
7957
8491
|
|
|
7958
8492
|
/**
|
|
7959
|
-
*
|
|
8493
|
+
* ID der Quell-Belegposition
|
|
7960
8494
|
*/
|
|
7961
|
-
|
|
8495
|
+
sourceLineId: number;
|
|
7962
8496
|
|
|
7963
8497
|
/**
|
|
7964
|
-
*
|
|
8498
|
+
* Buchungen zu dieser Belegposition
|
|
7965
8499
|
*/
|
|
7966
|
-
|
|
8500
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
7967
8501
|
|
|
7968
8502
|
/**
|
|
7969
8503
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -8027,6 +8561,14 @@ export interface RequestDocumentLineCommission {
|
|
|
8027
8561
|
value: number;
|
|
8028
8562
|
}
|
|
8029
8563
|
|
|
8564
|
+
export interface RequestDocumentLineFabricationDetail {
|
|
8565
|
+
|
|
8566
|
+
/**
|
|
8567
|
+
* Nur füllen, wenn die Seriennummern vor der Start der Produktion manuell bestimmt werden sollen
|
|
8568
|
+
*/
|
|
8569
|
+
fabricationSerialNumbers: Array<FabricationSerialNumber>;
|
|
8570
|
+
}
|
|
8571
|
+
|
|
8030
8572
|
export interface RequestDocumentPriceModifier {
|
|
8031
8573
|
|
|
8032
8574
|
/**
|
|
@@ -8071,14 +8613,14 @@ export interface RequestDocumentText {
|
|
|
8071
8613
|
export interface RevenueCalculation {
|
|
8072
8614
|
|
|
8073
8615
|
/**
|
|
8074
|
-
*
|
|
8616
|
+
* Netto Umsatz
|
|
8075
8617
|
*/
|
|
8076
|
-
|
|
8618
|
+
salesValue: number;
|
|
8077
8619
|
|
|
8078
8620
|
/**
|
|
8079
|
-
*
|
|
8621
|
+
* Deckungsbeitrag (absolut)
|
|
8080
8622
|
*/
|
|
8081
|
-
|
|
8623
|
+
revenue: number;
|
|
8082
8624
|
|
|
8083
8625
|
/**
|
|
8084
8626
|
* Einkaufspreis
|
|
@@ -8403,7 +8945,7 @@ export interface ScriptingDateTime {
|
|
|
8403
8945
|
/**
|
|
8404
8946
|
* HTTP-Client fürs Scripting
|
|
8405
8947
|
*/
|
|
8406
|
-
export interface
|
|
8948
|
+
export interface SecureHttpClient {
|
|
8407
8949
|
}
|
|
8408
8950
|
|
|
8409
8951
|
export const enum SequenceAssignmentMode {
|
|
@@ -8505,6 +9047,19 @@ export interface SequencerConfigurationDetail {
|
|
|
8505
9047
|
initialValue: number;
|
|
8506
9048
|
}
|
|
8507
9049
|
|
|
9050
|
+
export interface SerialNumberWithQuantityApi {
|
|
9051
|
+
|
|
9052
|
+
/**
|
|
9053
|
+
* Menge
|
|
9054
|
+
*/
|
|
9055
|
+
quantity: number;
|
|
9056
|
+
|
|
9057
|
+
/**
|
|
9058
|
+
* Seriennummer
|
|
9059
|
+
*/
|
|
9060
|
+
serialNumber: ArticleSerialNumber;
|
|
9061
|
+
}
|
|
9062
|
+
|
|
8508
9063
|
export interface ShelfDocument {
|
|
8509
9064
|
|
|
8510
9065
|
/**
|
|
@@ -8553,14 +9108,14 @@ export interface ShelfDocument {
|
|
|
8553
9108
|
tags: Array<TagDto>;
|
|
8554
9109
|
|
|
8555
9110
|
/**
|
|
8556
|
-
*
|
|
9111
|
+
* share informations
|
|
8557
9112
|
*/
|
|
8558
|
-
|
|
9113
|
+
shares: Array<ShelfShare>;
|
|
8559
9114
|
|
|
8560
9115
|
/**
|
|
8561
|
-
*
|
|
9116
|
+
* Mehrsprachige Bezeichnungen
|
|
8562
9117
|
*/
|
|
8563
|
-
|
|
9118
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
8564
9119
|
|
|
8565
9120
|
/**
|
|
8566
9121
|
* Automatische Löschung ab
|
|
@@ -8692,14 +9247,14 @@ export interface ShelfDocumentType {
|
|
|
8692
9247
|
active: boolean;
|
|
8693
9248
|
|
|
8694
9249
|
/**
|
|
8695
|
-
*
|
|
9250
|
+
* label of type
|
|
8696
9251
|
*/
|
|
8697
|
-
|
|
9252
|
+
label: string;
|
|
8698
9253
|
|
|
8699
9254
|
/**
|
|
8700
|
-
*
|
|
9255
|
+
* access level or reading
|
|
8701
9256
|
*/
|
|
8702
|
-
|
|
9257
|
+
accessLevelRead: number;
|
|
8703
9258
|
|
|
8704
9259
|
/**
|
|
8705
9260
|
* storage rule for revisions
|
|
@@ -8745,14 +9300,14 @@ export interface ShelfFile {
|
|
|
8745
9300
|
subFiles: Array<SubFileInfo>;
|
|
8746
9301
|
|
|
8747
9302
|
/**
|
|
8748
|
-
*
|
|
9303
|
+
* fileSize
|
|
8749
9304
|
*/
|
|
8750
|
-
|
|
9305
|
+
fileSize: number;
|
|
8751
9306
|
|
|
8752
9307
|
/**
|
|
8753
|
-
*
|
|
9308
|
+
* revision number of this file
|
|
8754
9309
|
*/
|
|
8755
|
-
|
|
9310
|
+
revisionNumber: number;
|
|
8756
9311
|
|
|
8757
9312
|
/**
|
|
8758
9313
|
* file-extension of this entry
|
|
@@ -8831,14 +9386,14 @@ export interface ShelfShare {
|
|
|
8831
9386
|
publishState: ShelfSharePublishState;
|
|
8832
9387
|
|
|
8833
9388
|
/**
|
|
8834
|
-
*
|
|
9389
|
+
* Freifelder
|
|
8835
9390
|
*/
|
|
8836
|
-
|
|
9391
|
+
custom: EavShelfshare;
|
|
8837
9392
|
|
|
8838
9393
|
/**
|
|
8839
|
-
*
|
|
9394
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
8840
9395
|
*/
|
|
8841
|
-
|
|
9396
|
+
publicUrlDurationInMinutes: number;
|
|
8842
9397
|
|
|
8843
9398
|
/**
|
|
8844
9399
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9064,14 +9619,14 @@ export interface Supplier {
|
|
|
9064
9619
|
supplierGroupRef: ApiObjectReference;
|
|
9065
9620
|
|
|
9066
9621
|
/**
|
|
9067
|
-
*
|
|
9622
|
+
* tax able or tax free
|
|
9068
9623
|
*/
|
|
9069
|
-
|
|
9624
|
+
taxable: boolean;
|
|
9070
9625
|
|
|
9071
9626
|
/**
|
|
9072
|
-
*
|
|
9627
|
+
* reference to the delivery method
|
|
9073
9628
|
*/
|
|
9074
|
-
|
|
9629
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9075
9630
|
|
|
9076
9631
|
/**
|
|
9077
9632
|
* Mahnen?
|
|
@@ -9152,14 +9707,14 @@ export interface TagDto {
|
|
|
9152
9707
|
editColor: string;
|
|
9153
9708
|
|
|
9154
9709
|
/**
|
|
9155
|
-
* Farbe
|
|
9710
|
+
* Farbe für die Anzeige des Tags
|
|
9156
9711
|
*/
|
|
9157
|
-
|
|
9712
|
+
color: string;
|
|
9158
9713
|
|
|
9159
9714
|
/**
|
|
9160
|
-
* Farbe
|
|
9715
|
+
* Farbe in Such-GUI
|
|
9161
9716
|
*/
|
|
9162
|
-
|
|
9717
|
+
searchColor: string;
|
|
9163
9718
|
|
|
9164
9719
|
/**
|
|
9165
9720
|
* Beschriftung des Tags
|
|
@@ -9203,14 +9758,14 @@ export const enum TagType {
|
|
|
9203
9758
|
export interface TaxIdForeignCountry {
|
|
9204
9759
|
|
|
9205
9760
|
/**
|
|
9206
|
-
*
|
|
9761
|
+
* Tax ID of the company in the associated country
|
|
9207
9762
|
*/
|
|
9208
|
-
|
|
9763
|
+
taxId: string;
|
|
9209
9764
|
|
|
9210
9765
|
/**
|
|
9211
|
-
*
|
|
9766
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
9212
9767
|
*/
|
|
9213
|
-
|
|
9768
|
+
countryCode: string;
|
|
9214
9769
|
|
|
9215
9770
|
/**
|
|
9216
9771
|
* Unique identifier of the Object
|
|
@@ -9508,6 +10063,242 @@ export const enum ValueType {
|
|
|
9508
10063
|
FIX = 'FIX'
|
|
9509
10064
|
}
|
|
9510
10065
|
|
|
10066
|
+
export interface VariantAttribute {
|
|
10067
|
+
|
|
10068
|
+
/**
|
|
10069
|
+
* Aktiv?
|
|
10070
|
+
*/
|
|
10071
|
+
active: boolean;
|
|
10072
|
+
|
|
10073
|
+
/**
|
|
10074
|
+
* Beschreibung
|
|
10075
|
+
*/
|
|
10076
|
+
description: string;
|
|
10077
|
+
|
|
10078
|
+
/**
|
|
10079
|
+
* Unique identifier of the Object
|
|
10080
|
+
*/
|
|
10081
|
+
id: number;
|
|
10082
|
+
|
|
10083
|
+
/**
|
|
10084
|
+
* Version Identifier for this Object (for PUT)
|
|
10085
|
+
*/
|
|
10086
|
+
version: number;
|
|
10087
|
+
|
|
10088
|
+
/**
|
|
10089
|
+
* Bezeichnung (mehrsprachig)
|
|
10090
|
+
*/
|
|
10091
|
+
labels: Array<VariantDescription>;
|
|
10092
|
+
|
|
10093
|
+
/**
|
|
10094
|
+
* MetaInformations for this Object
|
|
10095
|
+
*/
|
|
10096
|
+
info: MetaInfo;
|
|
10097
|
+
}
|
|
10098
|
+
|
|
10099
|
+
export interface VariantAttributeListing {
|
|
10100
|
+
|
|
10101
|
+
/**
|
|
10102
|
+
* Verkaufskanal
|
|
10103
|
+
*/
|
|
10104
|
+
salesChannelRef: ApiObjectReference;
|
|
10105
|
+
|
|
10106
|
+
/**
|
|
10107
|
+
* Variantenattribut
|
|
10108
|
+
*/
|
|
10109
|
+
variantAttributeRef: ApiObjectReference;
|
|
10110
|
+
|
|
10111
|
+
/**
|
|
10112
|
+
* Freifelder
|
|
10113
|
+
*/
|
|
10114
|
+
custom: EavVariantattributelisting;
|
|
10115
|
+
|
|
10116
|
+
/**
|
|
10117
|
+
* Unique identifier of the Object
|
|
10118
|
+
*/
|
|
10119
|
+
id: number;
|
|
10120
|
+
|
|
10121
|
+
/**
|
|
10122
|
+
* Version Identifier for this Object (for PUT)
|
|
10123
|
+
*/
|
|
10124
|
+
version: number;
|
|
10125
|
+
|
|
10126
|
+
/**
|
|
10127
|
+
* MetaInformations for this Object
|
|
10128
|
+
*/
|
|
10129
|
+
info: MetaInfo;
|
|
10130
|
+
}
|
|
10131
|
+
|
|
10132
|
+
export interface VariantDescription {
|
|
10133
|
+
|
|
10134
|
+
/**
|
|
10135
|
+
* Bezeichnung
|
|
10136
|
+
*/
|
|
10137
|
+
label: string;
|
|
10138
|
+
|
|
10139
|
+
/**
|
|
10140
|
+
* Unique identifier of the Object
|
|
10141
|
+
*/
|
|
10142
|
+
id: number;
|
|
10143
|
+
|
|
10144
|
+
/**
|
|
10145
|
+
* Sprache
|
|
10146
|
+
*/
|
|
10147
|
+
languageCode: string;
|
|
10148
|
+
|
|
10149
|
+
/**
|
|
10150
|
+
* Version Identifier for this Object (for PUT)
|
|
10151
|
+
*/
|
|
10152
|
+
version: number;
|
|
10153
|
+
|
|
10154
|
+
/**
|
|
10155
|
+
* MetaInformations for this Object
|
|
10156
|
+
*/
|
|
10157
|
+
info: MetaInfo;
|
|
10158
|
+
}
|
|
10159
|
+
|
|
10160
|
+
export interface VariantSchema {
|
|
10161
|
+
|
|
10162
|
+
/**
|
|
10163
|
+
* Wählbare Werte
|
|
10164
|
+
*/
|
|
10165
|
+
eligibleValueRefs: Array<ApiObjectReference>;
|
|
10166
|
+
|
|
10167
|
+
/**
|
|
10168
|
+
* Zugeordnete Attribute
|
|
10169
|
+
*/
|
|
10170
|
+
attributeRefs: Array<ApiObjectReference>;
|
|
10171
|
+
|
|
10172
|
+
/**
|
|
10173
|
+
* Aktiv?
|
|
10174
|
+
*/
|
|
10175
|
+
active: boolean;
|
|
10176
|
+
|
|
10177
|
+
/**
|
|
10178
|
+
* Beschreibung
|
|
10179
|
+
*/
|
|
10180
|
+
description: string;
|
|
10181
|
+
|
|
10182
|
+
/**
|
|
10183
|
+
* Bezeichnung
|
|
10184
|
+
*/
|
|
10185
|
+
label: string;
|
|
10186
|
+
|
|
10187
|
+
/**
|
|
10188
|
+
* Unique identifier of the Object
|
|
10189
|
+
*/
|
|
10190
|
+
id: number;
|
|
10191
|
+
|
|
10192
|
+
/**
|
|
10193
|
+
* Version Identifier for this Object (for PUT)
|
|
10194
|
+
*/
|
|
10195
|
+
version: number;
|
|
10196
|
+
|
|
10197
|
+
/**
|
|
10198
|
+
* MetaInformations for this Object
|
|
10199
|
+
*/
|
|
10200
|
+
info: MetaInfo;
|
|
10201
|
+
}
|
|
10202
|
+
|
|
10203
|
+
export interface VariantValue {
|
|
10204
|
+
|
|
10205
|
+
/**
|
|
10206
|
+
* Sortierung
|
|
10207
|
+
*/
|
|
10208
|
+
sortOrder: number;
|
|
10209
|
+
|
|
10210
|
+
/**
|
|
10211
|
+
* Aktiv?
|
|
10212
|
+
*/
|
|
10213
|
+
active: boolean;
|
|
10214
|
+
|
|
10215
|
+
/**
|
|
10216
|
+
* Unique identifier of the Object
|
|
10217
|
+
*/
|
|
10218
|
+
id: number;
|
|
10219
|
+
|
|
10220
|
+
/**
|
|
10221
|
+
* Abkürzung
|
|
10222
|
+
*/
|
|
10223
|
+
abbreviation: string;
|
|
10224
|
+
|
|
10225
|
+
/**
|
|
10226
|
+
* Version Identifier for this Object (for PUT)
|
|
10227
|
+
*/
|
|
10228
|
+
version: number;
|
|
10229
|
+
|
|
10230
|
+
/**
|
|
10231
|
+
* Variantenattribut
|
|
10232
|
+
*/
|
|
10233
|
+
attributeRef: ApiObjectReference;
|
|
10234
|
+
|
|
10235
|
+
/**
|
|
10236
|
+
* Mehrsprachige Bezeichnungen
|
|
10237
|
+
*/
|
|
10238
|
+
labels: Array<VariantDescription>;
|
|
10239
|
+
|
|
10240
|
+
/**
|
|
10241
|
+
* MetaInformations for this Object
|
|
10242
|
+
*/
|
|
10243
|
+
info: MetaInfo;
|
|
10244
|
+
}
|
|
10245
|
+
|
|
10246
|
+
export interface VariantValueListing {
|
|
10247
|
+
|
|
10248
|
+
/**
|
|
10249
|
+
* Variantenattributwert
|
|
10250
|
+
*/
|
|
10251
|
+
variantValueRef: ApiObjectReference;
|
|
10252
|
+
|
|
10253
|
+
/**
|
|
10254
|
+
* Verkaufskanal
|
|
10255
|
+
*/
|
|
10256
|
+
salesChannelRef: ApiObjectReference;
|
|
10257
|
+
|
|
10258
|
+
/**
|
|
10259
|
+
* Freifelder
|
|
10260
|
+
*/
|
|
10261
|
+
custom: EavVariantvaluelisting;
|
|
10262
|
+
|
|
10263
|
+
/**
|
|
10264
|
+
* Unique identifier of the Object
|
|
10265
|
+
*/
|
|
10266
|
+
id: number;
|
|
10267
|
+
|
|
10268
|
+
/**
|
|
10269
|
+
* Version Identifier for this Object (for PUT)
|
|
10270
|
+
*/
|
|
10271
|
+
version: number;
|
|
10272
|
+
|
|
10273
|
+
/**
|
|
10274
|
+
* MetaInformations for this Object
|
|
10275
|
+
*/
|
|
10276
|
+
info: MetaInfo;
|
|
10277
|
+
}
|
|
10278
|
+
|
|
10279
|
+
export interface VariantValueReference {
|
|
10280
|
+
|
|
10281
|
+
/**
|
|
10282
|
+
* Variantenattribut
|
|
10283
|
+
*/
|
|
10284
|
+
variantAttributeRef: ApiObjectReference;
|
|
10285
|
+
|
|
10286
|
+
/**
|
|
10287
|
+
* Beschreibung
|
|
10288
|
+
*/
|
|
10289
|
+
description: string;
|
|
10290
|
+
|
|
10291
|
+
/**
|
|
10292
|
+
* Bezeichnung
|
|
10293
|
+
*/
|
|
10294
|
+
label: string;
|
|
10295
|
+
|
|
10296
|
+
/**
|
|
10297
|
+
* Identifier
|
|
10298
|
+
*/
|
|
10299
|
+
id: number;
|
|
10300
|
+
}
|
|
10301
|
+
|
|
9511
10302
|
export interface WithDefaults<List<ArticleIdentifier>> {
|
|
9512
10303
|
|
|
9513
10304
|
/**
|