@vario-software/types 2026.32.5 → 2026.32.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +19 -19
- package/scripting/types.d.ts +415 -415
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
accountZoneId: AccountZoneId;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* first contact type for this account
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -144,14 +144,14 @@ export interface Account {
|
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Kostenstelle
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
costCenter: string;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Summe Forderungen
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
receivablesSum: number;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* companyLegal for this account
|
|
@@ -179,14 +179,14 @@ export interface Account {
|
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* calculation mode of this document
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
calculationMode: CalculationMode;
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* Erstkontakt am
|
|
188
188
|
*/
|
|
189
|
-
|
|
189
|
+
initialContactAt: ScriptingDate;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* Sprache des Accounts
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Standard-Ansprechpartner
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
defaultPerson: AccountPerson;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* Leitweg-ID
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
buyerReference: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* GLN/ILN as location identifier for this address
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
globalLocationNumber: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* abweichende Zahlungsart
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* Contacts
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
contacts: Array<Contact>;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* abweichende Zahlungsbedingungen
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
|
|
|
505
505
|
bankCity: string;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
|
-
*
|
|
508
|
+
* Is default bank?
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
defaultBank: boolean;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* origin type
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
originType: AccountBankdetail$OriginType;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Kreditlimit
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
maximalLoan: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
payablesSum: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1225,19 +1225,19 @@ export interface Article {
|
|
|
1225
1225
|
countryOfOriginRef: CountryReference;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
|
-
*
|
|
1228
|
+
* Frei kommissionierbar
|
|
1229
1229
|
*/
|
|
1230
|
-
|
|
1230
|
+
freelyPickable: boolean;
|
|
1231
1231
|
|
|
1232
1232
|
/**
|
|
1233
|
-
*
|
|
1233
|
+
* description custom data
|
|
1234
1234
|
*/
|
|
1235
|
-
|
|
1235
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1236
1236
|
|
|
1237
1237
|
/**
|
|
1238
|
-
*
|
|
1238
|
+
* Notiz
|
|
1239
1239
|
*/
|
|
1240
|
-
|
|
1240
|
+
note: string;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
1243
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
@@ -1245,9 +1245,9 @@ export interface Article {
|
|
|
1245
1245
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
taxLiabilityReversed: boolean;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1290,14 +1290,14 @@ export interface Article {
|
|
|
1290
1290
|
defaultFabricationCost: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
|
-
*
|
|
1298
|
+
* gross sales prices
|
|
1299
1299
|
*/
|
|
1300
|
-
|
|
1300
|
+
grossSalesPrice: number;
|
|
1301
1301
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
@@ -1310,19 +1310,19 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* Versandlabeldruck
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
shippingLabelPrinting: boolean;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* reference to Product
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
*
|
|
1323
|
+
* alternative name of this product
|
|
1324
1324
|
*/
|
|
1325
|
-
|
|
1325
|
+
alternativeName: string;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
1328
|
* Kontingentartikel
|
|
@@ -1330,9 +1330,9 @@ export interface Article {
|
|
|
1330
1330
|
contingentArticleRef: ApiObjectReference;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* rabattierbarer Artikel?
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
discountable: boolean;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* weight unit
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
weightUnit: UnitTypeReference;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* size
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
sizeZ: number;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1568,14 +1568,14 @@ export interface ArticleCustomer {
|
|
|
1568
1568
|
productPrices: Array<ProductPrice>;
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
|
-
*
|
|
1571
|
+
* Referenced Article
|
|
1572
1572
|
*/
|
|
1573
|
-
|
|
1573
|
+
articleId: number;
|
|
1574
1574
|
|
|
1575
1575
|
/**
|
|
1576
|
-
*
|
|
1576
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1577
1577
|
*/
|
|
1578
|
-
|
|
1578
|
+
useDeviatingArticleDescription: boolean;
|
|
1579
1579
|
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Aktiv?
|
|
@@ -1612,6 +1612,11 @@ export interface ArticleCustomer {
|
|
|
1612
1612
|
*/
|
|
1613
1613
|
defaultGrossPrice: number;
|
|
1614
1614
|
|
|
1615
|
+
/**
|
|
1616
|
+
* Artikelnummer
|
|
1617
|
+
*/
|
|
1618
|
+
articleNumber: string;
|
|
1619
|
+
|
|
1615
1620
|
/**
|
|
1616
1621
|
* Abweichende Produktnummer
|
|
1617
1622
|
*/
|
|
@@ -1622,11 +1627,6 @@ export interface ArticleCustomer {
|
|
|
1622
1627
|
*/
|
|
1623
1628
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1624
1629
|
|
|
1625
|
-
/**
|
|
1626
|
-
* Artikelnummer
|
|
1627
|
-
*/
|
|
1628
|
-
articleNumber: string;
|
|
1629
|
-
|
|
1630
1630
|
/**
|
|
1631
1631
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1632
1632
|
*/
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
*
|
|
1738
|
+
* der Sales Channel
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
salesChannelRef: ApiObjectReference;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
* der
|
|
1743
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
customLowestPriceGross: number;
|
|
1746
1746
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* soll der Artikel gelistet werden
|
|
@@ -1957,11 +1957,6 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
-
/**
|
|
1961
|
-
* Meldebestand
|
|
1962
|
-
*/
|
|
1963
|
-
reorderPoint: number;
|
|
1964
|
-
|
|
1965
1960
|
/**
|
|
1966
1961
|
* Bestellte Menge
|
|
1967
1962
|
*/
|
|
@@ -1972,6 +1967,11 @@ export interface ArticleStorage {
|
|
|
1972
1967
|
*/
|
|
1973
1968
|
quantityInPicking: number;
|
|
1974
1969
|
|
|
1970
|
+
/**
|
|
1971
|
+
* Meldebestand
|
|
1972
|
+
*/
|
|
1973
|
+
reorderPoint: number;
|
|
1974
|
+
|
|
1975
1975
|
/**
|
|
1976
1976
|
* Nachschub auf
|
|
1977
1977
|
*/
|
|
@@ -2050,11 +2050,6 @@ export interface ArticleStorage {
|
|
|
2050
2050
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
|
-
/**
|
|
2054
|
-
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2055
|
-
*/
|
|
2056
|
-
useSupplierArticleDescription: boolean;
|
|
2057
|
-
|
|
2058
2053
|
/**
|
|
2059
2054
|
* Lieferanten-Meldebestand
|
|
2060
2055
|
*/
|
|
@@ -2065,6 +2060,11 @@ export interface ArticleSupplier {
|
|
|
2065
2060
|
*/
|
|
2066
2061
|
accountDisplayName: string;
|
|
2067
2062
|
|
|
2063
|
+
/**
|
|
2064
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2065
|
+
*/
|
|
2066
|
+
useSupplierArticleDescription: boolean;
|
|
2067
|
+
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Lieferzeit in (Werk-)Tagen
|
|
2070
2070
|
*/
|
|
@@ -2121,14 +2121,14 @@ export interface ArticleSupplier {
|
|
|
2121
2121
|
info: MetaInfo;
|
|
2122
2122
|
|
|
2123
2123
|
/**
|
|
2124
|
-
*
|
|
2124
|
+
* Verpackungseinheit
|
|
2125
2125
|
*/
|
|
2126
|
-
|
|
2126
|
+
packagingUnit: number;
|
|
2127
2127
|
|
|
2128
2128
|
/**
|
|
2129
|
-
*
|
|
2129
|
+
* Referenced Article name
|
|
2130
2130
|
*/
|
|
2131
|
-
|
|
2131
|
+
articleName: string;
|
|
2132
2132
|
|
|
2133
2133
|
/**
|
|
2134
2134
|
* Lieferanten-Preise
|
|
@@ -2181,14 +2181,14 @@ export interface ArticleSupplier {
|
|
|
2181
2181
|
purchaseUnit: number;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Referenced Supplier-Account
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
accountId: number;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
|
-
*
|
|
2189
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2190
2190
|
*/
|
|
2191
|
-
|
|
2191
|
+
orderOnComponentBase: boolean;
|
|
2192
2192
|
|
|
2193
2193
|
/**
|
|
2194
2194
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* Aktivität intern abgerechnet?
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
internalBilled: boolean;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* geplante Dauer
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
plannedDurationInSeconds: number;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
system: boolean;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* tatsächliche Startzeit
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
startDateTime: ScriptingDateTime;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -2793,14 +2793,14 @@ export interface CrmActivityType {
|
|
|
2793
2793
|
export interface CrmChecklistItem {
|
|
2794
2794
|
|
|
2795
2795
|
/**
|
|
2796
|
-
*
|
|
2796
|
+
* Ist das Element "angehakt"?
|
|
2797
2797
|
*/
|
|
2798
|
-
|
|
2798
|
+
checked: boolean;
|
|
2799
2799
|
|
|
2800
2800
|
/**
|
|
2801
|
-
*
|
|
2801
|
+
* Text des Checklisten-Elements
|
|
2802
2802
|
*/
|
|
2803
|
-
|
|
2803
|
+
memo: string;
|
|
2804
2804
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* Unique identifier of the Object
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
assignedUserRef: ApiObjectReference;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3227,14 +3227,14 @@ export interface CrmProject {
|
|
|
3227
3227
|
billedTimes: number;
|
|
3228
3228
|
|
|
3229
3229
|
/**
|
|
3230
|
-
*
|
|
3230
|
+
* Geplanter Projektzeitraum (von)
|
|
3231
3231
|
*/
|
|
3232
|
-
|
|
3232
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3233
3233
|
|
|
3234
3234
|
/**
|
|
3235
|
-
*
|
|
3235
|
+
* Einkaufsbelege
|
|
3236
3236
|
*/
|
|
3237
|
-
|
|
3237
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3238
3238
|
|
|
3239
3239
|
/**
|
|
3240
3240
|
* Verkaufsbelege
|
|
@@ -3365,14 +3365,14 @@ export const enum CrmReferenceType {
|
|
|
3365
3365
|
export interface CrmReminder {
|
|
3366
3366
|
|
|
3367
3367
|
/**
|
|
3368
|
-
*
|
|
3368
|
+
* Notiz zur Erinnerung
|
|
3369
3369
|
*/
|
|
3370
|
-
|
|
3370
|
+
note: string;
|
|
3371
3371
|
|
|
3372
3372
|
/**
|
|
3373
|
-
*
|
|
3373
|
+
* ID des CRM Objekts
|
|
3374
3374
|
*/
|
|
3375
|
-
|
|
3375
|
+
crmId: number;
|
|
3376
3376
|
|
|
3377
3377
|
/**
|
|
3378
3378
|
* Wer soll erinnert werden
|
|
@@ -3928,14 +3928,14 @@ export interface Customer {
|
|
|
3928
3928
|
dueDate: ScriptingDate;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
*
|
|
3931
|
+
* Maximal mögliche Lieferungen
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
maxDeliveries: number;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
|
-
*
|
|
3936
|
+
* collective billable
|
|
3937
3937
|
*/
|
|
3938
|
-
|
|
3938
|
+
collectiveBillable: boolean;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
collectiveInvoiceManually: boolean;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* reference to product price group
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the Object
|
|
@@ -4147,14 +4147,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4147
4147
|
export interface DeliveryMethod {
|
|
4148
4148
|
|
|
4149
4149
|
/**
|
|
4150
|
-
*
|
|
4150
|
+
* E-Mail an Versender übergeben
|
|
4151
4151
|
*/
|
|
4152
|
-
|
|
4152
|
+
forwardEmailToShipper: boolean;
|
|
4153
4153
|
|
|
4154
4154
|
/**
|
|
4155
|
-
*
|
|
4155
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4156
4156
|
*/
|
|
4157
|
-
|
|
4157
|
+
splitIntoNewDocument: boolean;
|
|
4158
4158
|
|
|
4159
4159
|
/**
|
|
4160
4160
|
* Min. Gewicht pro Paket
|
|
@@ -4355,14 +4355,14 @@ export interface DmsOutputStream {
|
|
|
4355
4355
|
export interface Document {
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Referenz zum Rechnungskonto
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
billingAccountRef: ApiObjectReference;
|
|
4366
4366
|
|
|
4367
4367
|
/**
|
|
4368
4368
|
* Externe Belegnummer
|
|
@@ -4400,14 +4400,14 @@ export interface Document {
|
|
|
4400
4400
|
totalVat: number;
|
|
4401
4401
|
|
|
4402
4402
|
/**
|
|
4403
|
-
*
|
|
4403
|
+
* Name der bestellenden Person
|
|
4404
4404
|
*/
|
|
4405
|
-
|
|
4405
|
+
orderedBy: string;
|
|
4406
4406
|
|
|
4407
4407
|
/**
|
|
4408
|
-
*
|
|
4408
|
+
* Standardlager für neue Positionen
|
|
4409
4409
|
*/
|
|
4410
|
-
|
|
4410
|
+
defaultStorageRef: ApiObjectReference;
|
|
4411
4411
|
|
|
4412
4412
|
/**
|
|
4413
4413
|
* Lieferadresse
|
|
@@ -4448,9 +4448,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
4451
|
-
*
|
|
4451
|
+
* Bestellnummer aus Vorbeleg
|
|
4452
4452
|
*/
|
|
4453
|
-
|
|
4453
|
+
referencedOrderNumber: string;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
4456
|
* Leitweg-ID
|
|
@@ -4458,9 +4458,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4458
4458
|
buyerReference: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
|
-
*
|
|
4461
|
+
* Steuerpflichtig oder steuerfrei
|
|
4462
4462
|
*/
|
|
4463
|
-
|
|
4463
|
+
taxable: boolean;
|
|
4464
4464
|
|
|
4465
4465
|
/**
|
|
4466
4466
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4513,14 +4513,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4513
|
accountId: number;
|
|
4514
4514
|
|
|
4515
4515
|
/**
|
|
4516
|
-
* Länderkennzeichen
|
|
4516
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4517
4517
|
*/
|
|
4518
|
-
|
|
4518
|
+
performanceCountryCode: string;
|
|
4519
4519
|
|
|
4520
4520
|
/**
|
|
4521
|
-
* Länderkennzeichen
|
|
4521
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4522
4522
|
*/
|
|
4523
|
-
|
|
4523
|
+
sourceCountryCode: string;
|
|
4524
4524
|
|
|
4525
4525
|
/**
|
|
4526
4526
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4582,13 +4582,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4582
4582
|
*/
|
|
4583
4583
|
posPayments: Array<DocumentPosPayment>;
|
|
4584
4584
|
|
|
4585
|
-
/**
|
|
4586
|
-
* Ist die Quittung bezahlt
|
|
4587
|
-
true wenn die Quittung bezahlt ist
|
|
4588
|
-
|
|
4589
|
-
*/
|
|
4590
|
-
posReceiptPayed: boolean;
|
|
4591
|
-
|
|
4592
4585
|
/**
|
|
4593
4586
|
* Kundennummer beim Lieferanten
|
|
4594
4587
|
*/
|
|
@@ -4599,6 +4592,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4599
4592
|
*/
|
|
4600
4593
|
maxDeliveries: number;
|
|
4601
4594
|
|
|
4595
|
+
/**
|
|
4596
|
+
* Ist die Quittung bezahlt
|
|
4597
|
+
true wenn die Quittung bezahlt ist
|
|
4598
|
+
|
|
4599
|
+
*/
|
|
4600
|
+
posReceiptPayed: boolean;
|
|
4601
|
+
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Quittung: Summe Zahlbetrag
|
|
4604
4604
|
*/
|
|
@@ -4634,26 +4634,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4634
4634
|
*/
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
|
-
/**
|
|
4638
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4639
|
-
*/
|
|
4640
|
-
accountNumber: string;
|
|
4641
|
-
|
|
4642
4637
|
/**
|
|
4643
4638
|
* Berechnungsmodus
|
|
4644
4639
|
*/
|
|
4645
4640
|
calculationMode: CalculationMode;
|
|
4646
4641
|
|
|
4647
4642
|
/**
|
|
4648
|
-
*
|
|
4643
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4649
4644
|
*/
|
|
4650
|
-
|
|
4645
|
+
accountNumber: string;
|
|
4651
4646
|
|
|
4652
4647
|
/**
|
|
4653
4648
|
* Wird vom Workflow verarbeitet?
|
|
4654
4649
|
*/
|
|
4655
4650
|
processedByWorkflow: boolean;
|
|
4656
4651
|
|
|
4652
|
+
/**
|
|
4653
|
+
* Referenz auf Zahlungsbedingung
|
|
4654
|
+
*/
|
|
4655
|
+
paymentTermRef: PaymentTermRef;
|
|
4656
|
+
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
4659
4659
|
*/
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Verarbeitungsoption für Stapel
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Leistungsdatum
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
performanceDate: ScriptingDate;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4720,14 +4720,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4720
4720
|
additionalInfo: DocumentAdditionalInfo;
|
|
4721
4721
|
|
|
4722
4722
|
/**
|
|
4723
|
-
*
|
|
4723
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4724
4724
|
*/
|
|
4725
|
-
|
|
4725
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4726
4726
|
|
|
4727
4727
|
/**
|
|
4728
|
-
*
|
|
4728
|
+
* Bestelldatum
|
|
4729
4729
|
*/
|
|
4730
|
-
|
|
4730
|
+
orderedOn: ScriptingDate;
|
|
4731
4731
|
|
|
4732
4732
|
/**
|
|
4733
4733
|
* MetaInformations for this Object
|
|
@@ -4884,6 +4884,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4884
4884
|
*/
|
|
4885
4885
|
posReceiptChangeAmount: number;
|
|
4886
4886
|
|
|
4887
|
+
/**
|
|
4888
|
+
* Referenz auf Lieferbedingung
|
|
4889
|
+
*/
|
|
4890
|
+
deliveryTermRef: ApiObjectReference;
|
|
4891
|
+
|
|
4887
4892
|
/**
|
|
4888
4893
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4889
4894
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4891,11 +4896,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4891
4896
|
*/
|
|
4892
4897
|
posReceiptBalanced: boolean;
|
|
4893
4898
|
|
|
4894
|
-
/**
|
|
4895
|
-
* Referenz auf Lieferbedingung
|
|
4896
|
-
*/
|
|
4897
|
-
deliveryTermRef: ApiObjectReference;
|
|
4898
|
-
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
4901
4901
|
*/
|
|
@@ -4927,14 +4927,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4927
4927
|
billingAddress: DocumentAddress;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
|
-
*
|
|
4930
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4931
4931
|
*/
|
|
4932
|
-
|
|
4932
|
+
reportGroupRef: ApiObjectReference;
|
|
4933
4933
|
|
|
4934
4934
|
/**
|
|
4935
|
-
*
|
|
4935
|
+
* Bestellt durch Ansprechpartner
|
|
4936
4936
|
*/
|
|
4937
|
-
|
|
4937
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4938
4938
|
}
|
|
4939
4939
|
|
|
4940
4940
|
export interface DocumentAdditionalInfo {
|
|
@@ -5287,14 +5287,14 @@ export interface DocumentContractDetail {
|
|
|
5287
5287
|
runtimeToDate: ScriptingDate;
|
|
5288
5288
|
|
|
5289
5289
|
/**
|
|
5290
|
-
*
|
|
5290
|
+
* Nächste Fälligkeit
|
|
5291
5291
|
*/
|
|
5292
|
-
|
|
5292
|
+
nextDueDate: ScriptingDate;
|
|
5293
5293
|
|
|
5294
5294
|
/**
|
|
5295
|
-
*
|
|
5295
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5296
5296
|
*/
|
|
5297
|
-
|
|
5297
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5298
5298
|
|
|
5299
5299
|
/**
|
|
5300
5300
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5495,14 +5495,14 @@ export interface DocumentLine {
|
|
|
5495
5495
|
number: string;
|
|
5496
5496
|
|
|
5497
5497
|
/**
|
|
5498
|
-
*
|
|
5498
|
+
* Gesamtbruttogewicht
|
|
5499
5499
|
*/
|
|
5500
|
-
|
|
5500
|
+
totalGrossWeight: number;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Referenz zur Kundenauftragszeile
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
5508
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5544,6 +5544,11 @@ export interface DocumentLine {
|
|
|
5544
5544
|
*/
|
|
5545
5545
|
id: number;
|
|
5546
5546
|
|
|
5547
|
+
/**
|
|
5548
|
+
* Serientyp
|
|
5549
|
+
*/
|
|
5550
|
+
serialType: ArticleSerialType;
|
|
5551
|
+
|
|
5547
5552
|
/**
|
|
5548
5553
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5549
5554
|
*/
|
|
@@ -5555,20 +5560,15 @@ export interface DocumentLine {
|
|
|
5555
5560
|
basePrice: number;
|
|
5556
5561
|
|
|
5557
5562
|
/**
|
|
5558
|
-
*
|
|
5563
|
+
* Preiseinheit
|
|
5559
5564
|
*/
|
|
5560
|
-
|
|
5565
|
+
priceUnit: number;
|
|
5561
5566
|
|
|
5562
5567
|
/**
|
|
5563
5568
|
* Steuerschema
|
|
5564
5569
|
*/
|
|
5565
5570
|
taxSchemaRef: ApiObjectReference;
|
|
5566
5571
|
|
|
5567
|
-
/**
|
|
5568
|
-
* Preiseinheit
|
|
5569
|
-
*/
|
|
5570
|
-
priceUnit: number;
|
|
5571
|
-
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
5574
5574
|
*/
|
|
@@ -5664,11 +5664,6 @@ export interface DocumentLine {
|
|
|
5664
5664
|
*/
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
|
-
/**
|
|
5668
|
-
* Nettoverkaufswert der Position in Basiswährung
|
|
5669
|
-
*/
|
|
5670
|
-
baseSalesValueNet: number;
|
|
5671
|
-
|
|
5672
5667
|
/**
|
|
5673
5668
|
* Vertragsinformationen
|
|
5674
5669
|
*/
|
|
@@ -5679,6 +5674,11 @@ export interface DocumentLine {
|
|
|
5679
5674
|
*/
|
|
5680
5675
|
netWeightUnit: UnitTypeReference;
|
|
5681
5676
|
|
|
5677
|
+
/**
|
|
5678
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5679
|
+
*/
|
|
5680
|
+
baseSalesValueNet: number;
|
|
5681
|
+
|
|
5682
5682
|
/**
|
|
5683
5683
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5684
5684
|
*/
|
|
@@ -5765,14 +5765,14 @@ export interface DocumentLine {
|
|
|
5765
5765
|
commissions: Array<DocumentLineCommission>;
|
|
5766
5766
|
|
|
5767
5767
|
/**
|
|
5768
|
-
*
|
|
5768
|
+
* Positionstyp
|
|
5769
5769
|
*/
|
|
5770
|
-
|
|
5770
|
+
lineType: DocumentLineType;
|
|
5771
5771
|
|
|
5772
5772
|
/**
|
|
5773
|
-
*
|
|
5773
|
+
* Gesamtpreis Position in Basiswährung
|
|
5774
5774
|
*/
|
|
5775
|
-
|
|
5775
|
+
baseTotalLinePrice: number;
|
|
5776
5776
|
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5810,14 +5810,14 @@ export interface DocumentLine {
|
|
|
5810
5810
|
countryRegion: ApiObjectReference;
|
|
5811
5811
|
|
|
5812
5812
|
/**
|
|
5813
|
-
*
|
|
5813
|
+
* Nettogewicht
|
|
5814
5814
|
*/
|
|
5815
|
-
|
|
5815
|
+
netWeight: number;
|
|
5816
5816
|
|
|
5817
5817
|
/**
|
|
5818
|
-
*
|
|
5818
|
+
* Provisionsursprung
|
|
5819
5819
|
*/
|
|
5820
|
-
|
|
5820
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5821
5821
|
|
|
5822
5822
|
/**
|
|
5823
5823
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -5835,14 +5835,14 @@ export interface DocumentLine {
|
|
|
5835
5835
|
position: number;
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
|
-
*
|
|
5838
|
+
* Buchungen
|
|
5839
5839
|
*/
|
|
5840
|
-
|
|
5840
|
+
bookings: Array<DocumentLineBooking>;
|
|
5841
5841
|
|
|
5842
5842
|
/**
|
|
5843
|
-
*
|
|
5843
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5844
5844
|
*/
|
|
5845
|
-
|
|
5845
|
+
recalcLinePriceViaComponents: boolean;
|
|
5846
5846
|
|
|
5847
5847
|
/**
|
|
5848
5848
|
* unit gross Volume in cubic meters
|
|
@@ -5870,14 +5870,14 @@ export interface DocumentLine {
|
|
|
5870
5870
|
description: string;
|
|
5871
5871
|
|
|
5872
5872
|
/**
|
|
5873
|
-
*
|
|
5873
|
+
* Referenz zum Lager
|
|
5874
5874
|
*/
|
|
5875
|
-
|
|
5875
|
+
storage: ApiObjectReference;
|
|
5876
5876
|
|
|
5877
5877
|
/**
|
|
5878
|
-
*
|
|
5878
|
+
* Preisherkunft
|
|
5879
5879
|
*/
|
|
5880
|
-
|
|
5880
|
+
priceOrigin: ProductPriceOrigin;
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
5883
5883
|
* Rohertragsermittlung
|
|
@@ -5935,14 +5935,14 @@ export interface DocumentLine {
|
|
|
5935
5935
|
custom: EavDocumentline;
|
|
5936
5936
|
|
|
5937
5937
|
/**
|
|
5938
|
-
*
|
|
5938
|
+
* Artikel
|
|
5939
5939
|
*/
|
|
5940
|
-
|
|
5940
|
+
articleId: number;
|
|
5941
5941
|
|
|
5942
5942
|
/**
|
|
5943
|
-
*
|
|
5943
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5944
5944
|
*/
|
|
5945
|
-
|
|
5945
|
+
settledOpenItemComment: string;
|
|
5946
5946
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Interne Preisänderungsinformationen
|
|
@@ -6336,14 +6336,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6336
6336
|
quantityFinished: number;
|
|
6337
6337
|
|
|
6338
6338
|
/**
|
|
6339
|
-
*
|
|
6339
|
+
* Produzierte Seriennummern
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6342
6342
|
|
|
6343
6343
|
/**
|
|
6344
|
-
*
|
|
6344
|
+
* Menge defekt
|
|
6345
6345
|
*/
|
|
6346
|
-
|
|
6346
|
+
quantityDefective: number;
|
|
6347
6347
|
|
|
6348
6348
|
/**
|
|
6349
6349
|
* Freifeld
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Status der externen Zahlung
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Typ der Einlage/Ausgabe
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
depositExpenseTypeId: number;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6608,14 +6608,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6608
6608
|
customerShareOnReduction: number;
|
|
6609
6609
|
|
|
6610
6610
|
/**
|
|
6611
|
-
*
|
|
6611
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6612
6612
|
*/
|
|
6613
|
-
|
|
6613
|
+
deliveryTermRef: ApiObjectReference;
|
|
6614
6614
|
|
|
6615
6615
|
/**
|
|
6616
|
-
*
|
|
6616
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6617
6617
|
*/
|
|
6618
|
-
|
|
6618
|
+
waitForReturnBeforeExchange: boolean;
|
|
6619
6619
|
|
|
6620
6620
|
/**
|
|
6621
6621
|
* Referenz auf Retourengrund
|
|
@@ -6793,14 +6793,14 @@ export interface DocumentPosPayment {
|
|
|
6793
6793
|
version: number;
|
|
6794
6794
|
|
|
6795
6795
|
/**
|
|
6796
|
-
*
|
|
6796
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6797
6797
|
*/
|
|
6798
|
-
|
|
6798
|
+
withdrawalAmount: number;
|
|
6799
6799
|
|
|
6800
6800
|
/**
|
|
6801
|
-
*
|
|
6801
|
+
* Zahlungsart
|
|
6802
6802
|
*/
|
|
6803
|
-
|
|
6803
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6804
6804
|
|
|
6805
6805
|
/**
|
|
6806
6806
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6979,14 +6979,14 @@ export interface DocumentShippingCost {
|
|
|
6979
6979
|
manualCosts: boolean;
|
|
6980
6980
|
|
|
6981
6981
|
/**
|
|
6982
|
-
*
|
|
6982
|
+
* Texte
|
|
6983
6983
|
*/
|
|
6984
|
-
|
|
6984
|
+
texts: Array<DocumentText>;
|
|
6985
6985
|
|
|
6986
6986
|
/**
|
|
6987
|
-
*
|
|
6987
|
+
* Keine Versandkosten (freier Versand)
|
|
6988
6988
|
*/
|
|
6989
|
-
|
|
6989
|
+
freeShipping: boolean;
|
|
6990
6990
|
|
|
6991
6991
|
/**
|
|
6992
6992
|
* skontierbar
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
textPosition: TextPosition;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
deleted: boolean;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Seriennummer
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
serialNumberId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Ziel-Lager
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
targetStorageId: number;
|
|
7410
7410
|
|
|
7411
7411
|
/**
|
|
7412
7412
|
* Bemerkung
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Die gültige Seriennummer
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetSerialNumber: string;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -7677,14 +7677,14 @@ export interface ExternalDocumentWithTaxesLine {
|
|
|
7677
7677
|
quantity: number;
|
|
7678
7678
|
|
|
7679
7679
|
/**
|
|
7680
|
-
*
|
|
7680
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7681
7681
|
*/
|
|
7682
|
-
|
|
7682
|
+
taxValue: number;
|
|
7683
7683
|
|
|
7684
7684
|
/**
|
|
7685
|
-
*
|
|
7685
|
+
* Zeilen-Netto
|
|
7686
7686
|
*/
|
|
7687
|
-
|
|
7687
|
+
netAmount: number;
|
|
7688
7688
|
|
|
7689
7689
|
/**
|
|
7690
7690
|
* Netto-Einzelpreis
|
|
@@ -7743,14 +7743,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7743
7743
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7744
7744
|
|
|
7745
7745
|
/**
|
|
7746
|
-
*
|
|
7746
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7747
7747
|
*/
|
|
7748
|
-
|
|
7748
|
+
taxIdentificationNumber: string;
|
|
7749
7749
|
|
|
7750
7750
|
/**
|
|
7751
|
-
*
|
|
7751
|
+
* Key der Belegart
|
|
7752
7752
|
*/
|
|
7753
|
-
|
|
7753
|
+
documentTypeKey: string;
|
|
7754
7754
|
}
|
|
7755
7755
|
|
|
7756
7756
|
export interface FabricationComponentForProduction {
|
|
@@ -8217,14 +8217,14 @@ export interface OpenItem {
|
|
|
8217
8217
|
paymentDueDate: ScriptingDate;
|
|
8218
8218
|
|
|
8219
8219
|
/**
|
|
8220
|
-
* Länderkennzeichen
|
|
8220
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8221
8221
|
*/
|
|
8222
|
-
|
|
8222
|
+
performanceCountryCode: string;
|
|
8223
8223
|
|
|
8224
8224
|
/**
|
|
8225
|
-
* Länderkennzeichen
|
|
8225
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8226
8226
|
*/
|
|
8227
|
-
|
|
8227
|
+
sourceCountryCode: string;
|
|
8228
8228
|
|
|
8229
8229
|
/**
|
|
8230
8230
|
* Valutadatum schreibgeschützt
|
|
@@ -8302,14 +8302,14 @@ export interface OpenItem {
|
|
|
8302
8302
|
paymentAmount: number;
|
|
8303
8303
|
|
|
8304
8304
|
/**
|
|
8305
|
-
*
|
|
8305
|
+
* Rechnungskorrektur
|
|
8306
8306
|
*/
|
|
8307
|
-
|
|
8307
|
+
creditNote: ApiObjectReference;
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* how should a refund be done?
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
8315
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* Zahlungsplan
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* The full amount of the payment
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
fullPaymentAmount: number;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -8372,14 +8372,14 @@ export interface OpenItem {
|
|
|
8372
8372
|
baseSumDiscount: number;
|
|
8373
8373
|
|
|
8374
8374
|
/**
|
|
8375
|
-
*
|
|
8375
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8376
8376
|
*/
|
|
8377
|
-
|
|
8377
|
+
baseSumDunnings: number;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Zahlungsvorlage
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Rechnungsbetrag
|
|
@@ -8392,14 +8392,14 @@ export interface OpenItem {
|
|
|
8392
8392
|
taxRateRef: ApiObjectReference;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
|
-
*
|
|
8395
|
+
* Anzahlungsrechnung
|
|
8396
8396
|
*/
|
|
8397
|
-
|
|
8397
|
+
depositInvoice: ApiObjectReference;
|
|
8398
8398
|
|
|
8399
8399
|
/**
|
|
8400
|
-
*
|
|
8400
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8401
8401
|
*/
|
|
8402
|
-
|
|
8402
|
+
baseCurrencyCode: string;
|
|
8403
8403
|
|
|
8404
8404
|
/**
|
|
8405
8405
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8615,14 +8615,14 @@ export interface OpenItemRecord {
|
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
8617
|
/**
|
|
8618
|
-
*
|
|
8618
|
+
* record discountable amount
|
|
8619
8619
|
*/
|
|
8620
|
-
|
|
8620
|
+
discountableAmount: number;
|
|
8621
8621
|
|
|
8622
8622
|
/**
|
|
8623
|
-
*
|
|
8623
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8624
8624
|
*/
|
|
8625
|
-
|
|
8625
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8626
8626
|
|
|
8627
8627
|
/**
|
|
8628
8628
|
* record date
|
|
@@ -8705,14 +8705,14 @@ export interface OpenItemRecord {
|
|
|
8705
8705
|
totalAmount: number;
|
|
8706
8706
|
|
|
8707
8707
|
/**
|
|
8708
|
-
*
|
|
8708
|
+
* id des records, der diesen storniert hat
|
|
8709
8709
|
*/
|
|
8710
|
-
|
|
8710
|
+
revertedByRecordId: number;
|
|
8711
8711
|
|
|
8712
8712
|
/**
|
|
8713
|
-
*
|
|
8713
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8714
8714
|
*/
|
|
8715
|
-
|
|
8715
|
+
baseCurrencyCode: string;
|
|
8716
8716
|
|
|
8717
8717
|
/**
|
|
8718
8718
|
* qualifier of open item
|
|
@@ -8965,26 +8965,26 @@ export interface PaymentTerm {
|
|
|
8965
8965
|
*/
|
|
8966
8966
|
paymentDiscount2: number;
|
|
8967
8967
|
|
|
8968
|
-
/**
|
|
8969
|
-
* printDescription
|
|
8970
|
-
*/
|
|
8971
|
-
printDescription: string;
|
|
8972
|
-
|
|
8973
8968
|
/**
|
|
8974
8969
|
* Percent for Discount 1
|
|
8975
8970
|
*/
|
|
8976
8971
|
paymentDiscount1: number;
|
|
8977
8972
|
|
|
8978
8973
|
/**
|
|
8979
|
-
*
|
|
8974
|
+
* printDescription
|
|
8980
8975
|
*/
|
|
8981
|
-
|
|
8976
|
+
printDescription: string;
|
|
8982
8977
|
|
|
8983
8978
|
/**
|
|
8984
8979
|
* Days for Discount 1
|
|
8985
8980
|
*/
|
|
8986
8981
|
paymentDays1: number;
|
|
8987
8982
|
|
|
8983
|
+
/**
|
|
8984
|
+
* for deposit: remaining term
|
|
8985
|
+
*/
|
|
8986
|
+
remainingTermRef: ApiObjectReference;
|
|
8987
|
+
|
|
8988
8988
|
/**
|
|
8989
8989
|
* Days for Discount 2
|
|
8990
8990
|
*/
|
|
@@ -9104,14 +9104,14 @@ export interface PickTrolley {
|
|
|
9104
9104
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9105
9105
|
|
|
9106
9106
|
/**
|
|
9107
|
-
*
|
|
9107
|
+
* Bearbeiter der Pickliste
|
|
9108
9108
|
*/
|
|
9109
|
-
|
|
9109
|
+
processedByUserRef: ApiObjectReference;
|
|
9110
9110
|
|
|
9111
9111
|
/**
|
|
9112
|
-
*
|
|
9112
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9113
9113
|
*/
|
|
9114
|
-
|
|
9114
|
+
storageBinRef: StorageBinRef;
|
|
9115
9115
|
|
|
9116
9116
|
/**
|
|
9117
9117
|
* Beschreibung des Wagens
|
|
@@ -9455,14 +9455,14 @@ export interface PicklistLineComponent {
|
|
|
9455
9455
|
quantityCollected: number;
|
|
9456
9456
|
|
|
9457
9457
|
/**
|
|
9458
|
-
*
|
|
9458
|
+
* Menge der Position
|
|
9459
9459
|
*/
|
|
9460
|
-
|
|
9460
|
+
quantity: number;
|
|
9461
9461
|
|
|
9462
9462
|
/**
|
|
9463
|
-
*
|
|
9463
|
+
* Artikelbezeichnung
|
|
9464
9464
|
*/
|
|
9465
|
-
|
|
9465
|
+
articleName: string;
|
|
9466
9466
|
|
|
9467
9467
|
/**
|
|
9468
9468
|
* Artikelbeschreibung
|
|
@@ -9685,11 +9685,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9685
9685
|
*/
|
|
9686
9686
|
maxOrderValue: number;
|
|
9687
9687
|
|
|
9688
|
-
/**
|
|
9689
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9690
|
-
*/
|
|
9691
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9692
|
-
|
|
9693
9688
|
/**
|
|
9694
9689
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9695
9690
|
*/
|
|
@@ -9700,6 +9695,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9700
9695
|
*/
|
|
9701
9696
|
onlyFullDeliverableOrderLines: boolean;
|
|
9702
9697
|
|
|
9698
|
+
/**
|
|
9699
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9700
|
+
*/
|
|
9701
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9702
|
+
|
|
9703
9703
|
/**
|
|
9704
9704
|
* Selektion über den Bereich vom Belegdatum
|
|
9705
9705
|
*/
|
|
@@ -9783,26 +9783,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9783
9783
|
*/
|
|
9784
9784
|
specifyStorageBins: boolean;
|
|
9785
9785
|
|
|
9786
|
-
/**
|
|
9787
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9788
|
-
*/
|
|
9789
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9790
|
-
|
|
9791
9786
|
/**
|
|
9792
9787
|
* Der zu verwendende Pickwagen
|
|
9793
9788
|
*/
|
|
9794
9789
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9795
9790
|
|
|
9796
9791
|
/**
|
|
9797
|
-
*
|
|
9792
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9798
9793
|
*/
|
|
9799
|
-
|
|
9794
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9800
9795
|
|
|
9801
9796
|
/**
|
|
9802
9797
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9803
9798
|
*/
|
|
9804
9799
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
9805
9800
|
|
|
9801
|
+
/**
|
|
9802
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9803
|
+
*/
|
|
9804
|
+
sortByRoutePosition: boolean;
|
|
9805
|
+
|
|
9806
9806
|
/**
|
|
9807
9807
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9808
9808
|
*/
|
|
@@ -9862,9 +9862,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9862
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9863
|
|
|
9864
9864
|
/**
|
|
9865
|
-
*
|
|
9865
|
+
* Sammelbestätigung erlauben
|
|
9866
9866
|
*/
|
|
9867
|
-
|
|
9867
|
+
allowFullConfirmation: boolean;
|
|
9868
9868
|
|
|
9869
9869
|
/**
|
|
9870
9870
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -9872,14 +9872,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9872
9872
|
useDigitalPicklist: boolean;
|
|
9873
9873
|
|
|
9874
9874
|
/**
|
|
9875
|
-
*
|
|
9875
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9876
9876
|
*/
|
|
9877
|
-
|
|
9877
|
+
printLabelOnScan: boolean;
|
|
9878
9878
|
|
|
9879
9879
|
/**
|
|
9880
|
-
* Sollen
|
|
9880
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9881
9881
|
*/
|
|
9882
|
-
|
|
9882
|
+
allowPickingOfServiceArticles: boolean;
|
|
9883
9883
|
|
|
9884
9884
|
/**
|
|
9885
9885
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9986,14 +9986,14 @@ export interface PriceSelectionCriteria {
|
|
|
9986
9986
|
date: ScriptingDate;
|
|
9987
9987
|
|
|
9988
9988
|
/**
|
|
9989
|
-
*
|
|
9989
|
+
* Eine Menge
|
|
9990
9990
|
*/
|
|
9991
|
-
|
|
9991
|
+
quantity: number;
|
|
9992
9992
|
|
|
9993
9993
|
/**
|
|
9994
|
-
*
|
|
9994
|
+
* Die Preisgruppe
|
|
9995
9995
|
*/
|
|
9996
|
-
|
|
9996
|
+
priceGroupId: number;
|
|
9997
9997
|
|
|
9998
9998
|
/**
|
|
9999
9999
|
* Liste von Account-IDs
|
|
@@ -10029,14 +10029,14 @@ export interface PriceSelectionCriteria {
|
|
|
10029
10029
|
export interface Product {
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
|
-
*
|
|
10032
|
+
* Zolltarifnummer
|
|
10033
10033
|
*/
|
|
10034
|
-
|
|
10034
|
+
customsTariffNumber: string;
|
|
10035
10035
|
|
|
10036
10036
|
/**
|
|
10037
|
-
*
|
|
10037
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10038
10038
|
*/
|
|
10039
|
-
|
|
10039
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10040
10040
|
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Gebindeschema dieses Produkts
|
|
@@ -10185,14 +10185,14 @@ export interface ProductArticleRef {
|
|
|
10185
10185
|
export interface ProductDiscount {
|
|
10186
10186
|
|
|
10187
10187
|
/**
|
|
10188
|
-
*
|
|
10188
|
+
* Kundengruppe
|
|
10189
10189
|
*/
|
|
10190
|
-
|
|
10190
|
+
customerGroupRef: ApiObjectReference;
|
|
10191
10191
|
|
|
10192
10192
|
/**
|
|
10193
|
-
*
|
|
10193
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10194
10194
|
*/
|
|
10195
|
-
|
|
10195
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10196
10196
|
|
|
10197
10197
|
/**
|
|
10198
10198
|
* Lieferantengruppe
|
|
@@ -10205,14 +10205,14 @@ export interface ProductDiscount {
|
|
|
10205
10205
|
fromQuantity: number;
|
|
10206
10206
|
|
|
10207
10207
|
/**
|
|
10208
|
-
*
|
|
10208
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10209
10209
|
*/
|
|
10210
|
-
|
|
10210
|
+
articleRef: ApiObjectReference;
|
|
10211
10211
|
|
|
10212
10212
|
/**
|
|
10213
|
-
*
|
|
10213
|
+
* Hersteller
|
|
10214
10214
|
*/
|
|
10215
|
-
|
|
10215
|
+
manufacturerRef: ApiObjectReference;
|
|
10216
10216
|
|
|
10217
10217
|
/**
|
|
10218
10218
|
* Gültig von
|
|
@@ -10220,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10220
10220
|
validFrom: ScriptingDate;
|
|
10221
10221
|
|
|
10222
10222
|
/**
|
|
10223
|
-
*
|
|
10223
|
+
* Warengruppe
|
|
10224
10224
|
*/
|
|
10225
|
-
|
|
10225
|
+
productGroupRef: ApiObjectReference;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* Bestimmt die Art des Rabatts
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
modifierType: PriceModifierType;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10245,14 +10245,14 @@ export interface ProductDiscount {
|
|
|
10245
10245
|
currencyRef: CurrencyReference;
|
|
10246
10246
|
|
|
10247
10247
|
/**
|
|
10248
|
-
*
|
|
10248
|
+
* Preisgruppe
|
|
10249
10249
|
*/
|
|
10250
|
-
|
|
10250
|
+
priceGroupRef: ApiObjectReference;
|
|
10251
10251
|
|
|
10252
10252
|
/**
|
|
10253
|
-
*
|
|
10253
|
+
* Wert des Rabatts
|
|
10254
10254
|
*/
|
|
10255
|
-
|
|
10255
|
+
modifierValue: number;
|
|
10256
10256
|
|
|
10257
10257
|
/**
|
|
10258
10258
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10260,14 +10260,14 @@ export interface ProductDiscount {
|
|
|
10260
10260
|
qualifier: ProductPriceQualifier;
|
|
10261
10261
|
|
|
10262
10262
|
/**
|
|
10263
|
-
*
|
|
10263
|
+
* Gültig bis
|
|
10264
10264
|
*/
|
|
10265
|
-
|
|
10265
|
+
validUntil: ScriptingDate;
|
|
10266
10266
|
|
|
10267
10267
|
/**
|
|
10268
|
-
*
|
|
10268
|
+
* Aktionpreis
|
|
10269
10269
|
*/
|
|
10270
|
-
|
|
10270
|
+
specialOfferPrice: boolean;
|
|
10271
10271
|
|
|
10272
10272
|
/**
|
|
10273
10273
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -10275,14 +10275,14 @@ export interface ProductDiscount {
|
|
|
10275
10275
|
modifierValueType: ValueType;
|
|
10276
10276
|
|
|
10277
10277
|
/**
|
|
10278
|
-
*
|
|
10278
|
+
* Account, für den der Rabatt gültig ist
|
|
10279
10279
|
*/
|
|
10280
|
-
|
|
10280
|
+
accountRef: ApiObjectReference;
|
|
10281
10281
|
|
|
10282
10282
|
/**
|
|
10283
|
-
*
|
|
10283
|
+
* Name des Rabatts
|
|
10284
10284
|
*/
|
|
10285
|
-
|
|
10285
|
+
modifierName: string;
|
|
10286
10286
|
|
|
10287
10287
|
/**
|
|
10288
10288
|
* Unique identifier of the Object
|
|
@@ -10399,14 +10399,14 @@ export interface ProductMainGroup {
|
|
|
10399
10399
|
export interface ProductPrice {
|
|
10400
10400
|
|
|
10401
10401
|
/**
|
|
10402
|
-
*
|
|
10402
|
+
* Kundengruppe
|
|
10403
10403
|
*/
|
|
10404
|
-
|
|
10404
|
+
customerGroupRef: ApiObjectReference;
|
|
10405
10405
|
|
|
10406
10406
|
/**
|
|
10407
|
-
*
|
|
10407
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10408
10408
|
*/
|
|
10409
|
-
|
|
10409
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10410
10410
|
|
|
10411
10411
|
/**
|
|
10412
10412
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10469,14 +10469,14 @@ export interface ProductPrice {
|
|
|
10469
10469
|
supplierGroupRef: ApiObjectReference;
|
|
10470
10470
|
|
|
10471
10471
|
/**
|
|
10472
|
-
*
|
|
10472
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10473
10473
|
*/
|
|
10474
|
-
|
|
10474
|
+
articleRef: ApiObjectReference;
|
|
10475
10475
|
|
|
10476
10476
|
/**
|
|
10477
|
-
*
|
|
10477
|
+
* Hersteller
|
|
10478
10478
|
*/
|
|
10479
|
-
|
|
10479
|
+
manufacturerRef: ApiObjectReference;
|
|
10480
10480
|
|
|
10481
10481
|
/**
|
|
10482
10482
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10498,6 +10498,11 @@ export interface ProductPrice {
|
|
|
10498
10498
|
*/
|
|
10499
10499
|
qualifier: ProductPriceQualifier;
|
|
10500
10500
|
|
|
10501
|
+
/**
|
|
10502
|
+
* Gültig bis
|
|
10503
|
+
*/
|
|
10504
|
+
validUntil: ScriptingDate;
|
|
10505
|
+
|
|
10501
10506
|
/**
|
|
10502
10507
|
* Aktionpreis
|
|
10503
10508
|
*/
|
|
@@ -10508,11 +10513,6 @@ export interface ProductPrice {
|
|
|
10508
10513
|
*/
|
|
10509
10514
|
priceBase: ArticlePriceBase;
|
|
10510
10515
|
|
|
10511
|
-
/**
|
|
10512
|
-
* Gültig bis
|
|
10513
|
-
*/
|
|
10514
|
-
validUntil: ScriptingDate;
|
|
10515
|
-
|
|
10516
10516
|
/**
|
|
10517
10517
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
10518
10518
|
*/
|
|
@@ -10614,19 +10614,19 @@ export const enum RegulationSet {
|
|
|
10614
10614
|
export interface RequestDocument {
|
|
10615
10615
|
|
|
10616
10616
|
/**
|
|
10617
|
-
*
|
|
10617
|
+
* Belegdatum
|
|
10618
10618
|
*/
|
|
10619
|
-
|
|
10619
|
+
documentDate: ScriptingDate;
|
|
10620
10620
|
|
|
10621
10621
|
/**
|
|
10622
|
-
*
|
|
10622
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10623
10623
|
*/
|
|
10624
|
-
|
|
10624
|
+
incomingGoodsStorageBinId: number;
|
|
10625
10625
|
|
|
10626
10626
|
/**
|
|
10627
|
-
*
|
|
10627
|
+
* Der Anzahlungsbetrag
|
|
10628
10628
|
*/
|
|
10629
|
-
|
|
10629
|
+
depositPaymentAmount: number;
|
|
10630
10630
|
|
|
10631
10631
|
/**
|
|
10632
10632
|
* Leistungsdatum
|
|
@@ -10634,9 +10634,9 @@ export interface RequestDocument {
|
|
|
10634
10634
|
performanceDate: ScriptingDate;
|
|
10635
10635
|
|
|
10636
10636
|
/**
|
|
10637
|
-
*
|
|
10637
|
+
* ID der Kassenschublade (bei POS)
|
|
10638
10638
|
*/
|
|
10639
|
-
|
|
10639
|
+
cashDrawerId: number;
|
|
10640
10640
|
|
|
10641
10641
|
/**
|
|
10642
10642
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10714,14 +10714,14 @@ export interface RequestDocument {
|
|
|
10714
10714
|
posRegisterId: number;
|
|
10715
10715
|
|
|
10716
10716
|
/**
|
|
10717
|
-
*
|
|
10717
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10718
10718
|
*/
|
|
10719
|
-
|
|
10719
|
+
paymentTermId: number;
|
|
10720
10720
|
|
|
10721
10721
|
/**
|
|
10722
|
-
*
|
|
10722
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10723
10723
|
*/
|
|
10724
|
-
|
|
10724
|
+
supplierAccountId: number;
|
|
10725
10725
|
|
|
10726
10726
|
/**
|
|
10727
10727
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10734,14 +10734,14 @@ export interface RequestDocument {
|
|
|
10734
10734
|
custom: EavDocument;
|
|
10735
10735
|
|
|
10736
10736
|
/**
|
|
10737
|
-
*
|
|
10737
|
+
* reference to the corresponding document in an external system
|
|
10738
10738
|
*/
|
|
10739
|
-
|
|
10739
|
+
externalId: string;
|
|
10740
10740
|
|
|
10741
10741
|
/**
|
|
10742
|
-
*
|
|
10742
|
+
* target document type for document copy
|
|
10743
10743
|
*/
|
|
10744
|
-
|
|
10744
|
+
targetDocumentType: DocumentType;
|
|
10745
10745
|
|
|
10746
10746
|
/**
|
|
10747
10747
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10812,14 +10812,14 @@ export interface RequestDocumentLine {
|
|
|
10812
10812
|
description: string;
|
|
10813
10813
|
|
|
10814
10814
|
/**
|
|
10815
|
-
*
|
|
10815
|
+
* Quittungsdetails zur Belegposition
|
|
10816
10816
|
*/
|
|
10817
|
-
|
|
10817
|
+
posDetail: DocumentLinePosDetail;
|
|
10818
10818
|
|
|
10819
10819
|
/**
|
|
10820
|
-
*
|
|
10820
|
+
* Herkunft des Preises
|
|
10821
10821
|
*/
|
|
10822
|
-
|
|
10822
|
+
priceOrigin: ProductPriceOrigin;
|
|
10823
10823
|
|
|
10824
10824
|
/**
|
|
10825
10825
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10837,14 +10837,14 @@ export interface RequestDocumentLine {
|
|
|
10837
10837
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10838
10838
|
|
|
10839
10839
|
/**
|
|
10840
|
-
*
|
|
10840
|
+
* Typ dieser Position
|
|
10841
10841
|
*/
|
|
10842
|
-
|
|
10842
|
+
lineType: DocumentLineType;
|
|
10843
10843
|
|
|
10844
10844
|
/**
|
|
10845
|
-
*
|
|
10845
|
+
* FiBu-Angaben
|
|
10846
10846
|
*/
|
|
10847
|
-
|
|
10847
|
+
financeBooking: DocumentFinanceBooking;
|
|
10848
10848
|
|
|
10849
10849
|
/**
|
|
10850
10850
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10877,14 +10877,14 @@ export interface RequestDocumentLine {
|
|
|
10877
10877
|
supplierAccountId: number;
|
|
10878
10878
|
|
|
10879
10879
|
/**
|
|
10880
|
-
*
|
|
10880
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
10881
10881
|
*/
|
|
10882
|
-
|
|
10882
|
+
quantity: number;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
mainArticleLinePosition: number;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
10890
|
* Versandkosten mit Bedingungen
|
|
@@ -10902,14 +10902,14 @@ export interface RequestDocumentLine {
|
|
|
10902
10902
|
custom: EavDocumentline;
|
|
10903
10903
|
|
|
10904
10904
|
/**
|
|
10905
|
-
*
|
|
10905
|
+
* (optional) ID des Artikels dieser Position
|
|
10906
10906
|
*/
|
|
10907
|
-
|
|
10907
|
+
articleId: number;
|
|
10908
10908
|
|
|
10909
10909
|
/**
|
|
10910
|
-
*
|
|
10910
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10911
10911
|
*/
|
|
10912
|
-
|
|
10912
|
+
settledOpenItemComment: string;
|
|
10913
10913
|
|
|
10914
10914
|
/**
|
|
10915
10915
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10951,11 +10951,6 @@ export interface RequestDocumentLine {
|
|
|
10951
10951
|
*/
|
|
10952
10952
|
name: string;
|
|
10953
10953
|
|
|
10954
|
-
/**
|
|
10955
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
10956
|
-
*/
|
|
10957
|
-
externalArticleNumber: string;
|
|
10958
|
-
|
|
10959
10954
|
/**
|
|
10960
10955
|
* ID der Quell-Belegposition
|
|
10961
10956
|
*/
|
|
@@ -10967,14 +10962,19 @@ export interface RequestDocumentLine {
|
|
|
10967
10962
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10968
10963
|
|
|
10969
10964
|
/**
|
|
10970
|
-
*
|
|
10965
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10971
10966
|
*/
|
|
10972
|
-
|
|
10967
|
+
externalArticleNumber: string;
|
|
10973
10968
|
|
|
10974
10969
|
/**
|
|
10975
10970
|
* (optional) Preis des Artikels dieser Position
|
|
10976
10971
|
*/
|
|
10977
10972
|
productPrice: number;
|
|
10973
|
+
|
|
10974
|
+
/**
|
|
10975
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10976
|
+
*/
|
|
10977
|
+
doLabelPrint: boolean;
|
|
10978
10978
|
}
|
|
10979
10979
|
|
|
10980
10980
|
export interface RequestDocumentLineBooking {
|
|
@@ -11139,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11139
11139
|
note: string;
|
|
11140
11140
|
|
|
11141
11141
|
/**
|
|
11142
|
-
*
|
|
11142
|
+
* reference to the delivery method
|
|
11143
11143
|
*/
|
|
11144
|
-
|
|
11144
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11145
11145
|
|
|
11146
11146
|
/**
|
|
11147
|
-
*
|
|
11147
|
+
* is sales agent taxable
|
|
11148
11148
|
*/
|
|
11149
|
-
|
|
11149
|
+
taxable: boolean;
|
|
11150
11150
|
|
|
11151
11151
|
/**
|
|
11152
11152
|
* Freifelder
|
|
@@ -11395,14 +11395,14 @@ export interface ScenarioDimensionValue {
|
|
|
11395
11395
|
export interface ScenarioFactDef {
|
|
11396
11396
|
|
|
11397
11397
|
/**
|
|
11398
|
-
* Attribut
|
|
11398
|
+
* Attribut Typ
|
|
11399
11399
|
*/
|
|
11400
|
-
|
|
11400
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11401
11401
|
|
|
11402
11402
|
/**
|
|
11403
|
-
* Attribut
|
|
11403
|
+
* Attribut Name
|
|
11404
11404
|
*/
|
|
11405
|
-
|
|
11405
|
+
factAttribute: string;
|
|
11406
11406
|
|
|
11407
11407
|
/**
|
|
11408
11408
|
* Unique identifier of the Object
|
|
@@ -11815,14 +11815,14 @@ export interface ShelfFile {
|
|
|
11815
11815
|
subFiles: Array<SubFileInfo>;
|
|
11816
11816
|
|
|
11817
11817
|
/**
|
|
11818
|
-
*
|
|
11818
|
+
* revision number of this file
|
|
11819
11819
|
*/
|
|
11820
|
-
|
|
11820
|
+
revisionNumber: number;
|
|
11821
11821
|
|
|
11822
11822
|
/**
|
|
11823
|
-
*
|
|
11823
|
+
* fileSize
|
|
11824
11824
|
*/
|
|
11825
|
-
|
|
11825
|
+
fileSize: number;
|
|
11826
11826
|
|
|
11827
11827
|
/**
|
|
11828
11828
|
* file-extension of this entry
|
|
@@ -11850,14 +11850,14 @@ export interface ShelfFile {
|
|
|
11850
11850
|
version: number;
|
|
11851
11851
|
|
|
11852
11852
|
/**
|
|
11853
|
-
*
|
|
11853
|
+
* meta data
|
|
11854
11854
|
*/
|
|
11855
|
-
|
|
11855
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11856
11856
|
|
|
11857
11857
|
/**
|
|
11858
|
-
*
|
|
11858
|
+
* current reference of this file in our storage
|
|
11859
11859
|
*/
|
|
11860
|
-
|
|
11860
|
+
storageHandle: string;
|
|
11861
11861
|
|
|
11862
11862
|
/**
|
|
11863
11863
|
* MetaInformations for this Object
|
|
@@ -12123,14 +12123,14 @@ export interface StockMovementManualApi {
|
|
|
12123
12123
|
export interface StockTransferApi {
|
|
12124
12124
|
|
|
12125
12125
|
/**
|
|
12126
|
-
*
|
|
12126
|
+
* Seriennummer
|
|
12127
12127
|
*/
|
|
12128
|
-
|
|
12128
|
+
serialNumberId: number;
|
|
12129
12129
|
|
|
12130
12130
|
/**
|
|
12131
|
-
*
|
|
12131
|
+
* Ziel-Lager
|
|
12132
12132
|
*/
|
|
12133
|
-
|
|
12133
|
+
targetStorageId: number;
|
|
12134
12134
|
|
|
12135
12135
|
/**
|
|
12136
12136
|
* Bemerkung
|