@vario-software/types 2026.15.3 → 2026.15.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +30 -0
- package/scripting/services.d.ts +31 -31
- package/scripting/types.d.ts +269 -259
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -183,14 +183,14 @@ export interface Account {
|
|
|
183
183
|
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Sprache des Accounts
|
|
192
192
|
*/
|
|
193
|
-
|
|
193
|
+
languageCode: string;
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
196
|
* Has this Account a possible duplicate
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -361,14 +361,14 @@ export interface AccountAddress {
|
|
|
361
361
|
defaultForType: boolean;
|
|
362
362
|
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
364
|
+
* calculation mode of this address
|
|
365
365
|
*/
|
|
366
|
-
|
|
366
|
+
calculationMode: CalculationMode;
|
|
367
367
|
|
|
368
368
|
/**
|
|
369
|
-
*
|
|
369
|
+
* Sprache der Adresse
|
|
370
370
|
*/
|
|
371
|
-
|
|
371
|
+
languageCode: string;
|
|
372
372
|
|
|
373
373
|
/**
|
|
374
374
|
* Version Identifier for this Object (for PUT)
|
|
@@ -401,14 +401,14 @@ export interface AccountAddress {
|
|
|
401
401
|
streetAddressNumber: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
|
-
*
|
|
404
|
+
* Parcel station customer number
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
parcelStationCustomerNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
414
|
* Name3
|
|
@@ -483,26 +483,26 @@ export interface AccountBankdetail {
|
|
|
483
483
|
*/
|
|
484
484
|
version: number;
|
|
485
485
|
|
|
486
|
-
/**
|
|
487
|
-
* Hauptbankverbindung für
|
|
488
|
-
*/
|
|
489
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
490
|
-
|
|
491
486
|
/**
|
|
492
487
|
* city of the bank
|
|
493
488
|
*/
|
|
494
489
|
bankCity: string;
|
|
495
490
|
|
|
496
491
|
/**
|
|
497
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
498
493
|
*/
|
|
499
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
497
|
* origin type
|
|
503
498
|
*/
|
|
504
499
|
originType: AccountBankdetail$OriginType;
|
|
505
500
|
|
|
501
|
+
/**
|
|
502
|
+
* Is default bank?
|
|
503
|
+
*/
|
|
504
|
+
defaultBank: boolean;
|
|
505
|
+
|
|
506
506
|
/**
|
|
507
507
|
* IBAN
|
|
508
508
|
*/
|
|
@@ -971,14 +971,14 @@ export interface Article {
|
|
|
971
971
|
sellableWithoutStock: boolean;
|
|
972
972
|
|
|
973
973
|
/**
|
|
974
|
-
*
|
|
974
|
+
* Seriennummern Auszeichnungsart
|
|
975
975
|
*/
|
|
976
|
-
|
|
976
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
977
977
|
|
|
978
978
|
/**
|
|
979
|
-
*
|
|
979
|
+
* Durchschnittl. EKP (Startwert)
|
|
980
980
|
*/
|
|
981
|
-
|
|
981
|
+
initialAvgPurchasePrice: number;
|
|
982
982
|
|
|
983
983
|
/**
|
|
984
984
|
* gross Volume in cubic meters
|
|
@@ -1146,14 +1146,14 @@ export interface Article {
|
|
|
1146
1146
|
workUnitInMinutes: number;
|
|
1147
1147
|
|
|
1148
1148
|
/**
|
|
1149
|
-
*
|
|
1149
|
+
* Frei kommissionierbar
|
|
1150
1150
|
*/
|
|
1151
|
-
|
|
1151
|
+
freelyPickable: boolean;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* description custom data
|
|
1155
1155
|
*/
|
|
1156
|
-
|
|
1156
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1157
1157
|
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1216,14 +1216,14 @@ export interface Article {
|
|
|
1216
1216
|
permissibleForOrderProposal: boolean;
|
|
1217
1217
|
|
|
1218
1218
|
/**
|
|
1219
|
-
*
|
|
1219
|
+
* reference to Product
|
|
1220
1220
|
*/
|
|
1221
|
-
|
|
1221
|
+
productRef: ApiObjectReference;
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* Versandlabeldruck
|
|
1225
1225
|
*/
|
|
1226
|
-
|
|
1226
|
+
shippingLabelPrinting: boolean;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
1229
|
* Artikel ist Gefahrgut
|
|
@@ -1271,14 +1271,14 @@ export interface Article {
|
|
|
1271
1271
|
custom: EavArticle;
|
|
1272
1272
|
|
|
1273
1273
|
/**
|
|
1274
|
-
*
|
|
1274
|
+
* Art des Haltbarkeitsdatums
|
|
1275
1275
|
*/
|
|
1276
|
-
|
|
1276
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1277
1277
|
|
|
1278
1278
|
/**
|
|
1279
|
-
*
|
|
1279
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1280
1280
|
*/
|
|
1281
|
-
|
|
1281
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1282
1282
|
|
|
1283
1283
|
/**
|
|
1284
1284
|
* net sales prices
|
|
@@ -1301,14 +1301,14 @@ export interface Article {
|
|
|
1301
1301
|
listed: boolean;
|
|
1302
1302
|
|
|
1303
1303
|
/**
|
|
1304
|
-
*
|
|
1304
|
+
* provisionsberechtiger Artikel?
|
|
1305
1305
|
*/
|
|
1306
|
-
|
|
1306
|
+
commissionable: boolean;
|
|
1307
1307
|
|
|
1308
1308
|
/**
|
|
1309
|
-
*
|
|
1309
|
+
* Nur manuelle Produktion
|
|
1310
1310
|
*/
|
|
1311
|
-
|
|
1311
|
+
onlyManualFabrication: boolean;
|
|
1312
1312
|
|
|
1313
1313
|
/**
|
|
1314
1314
|
* Preisbasis
|
|
@@ -1671,14 +1671,14 @@ export interface ArticleSupplier {
|
|
|
1671
1671
|
accountDisplayName: string;
|
|
1672
1672
|
|
|
1673
1673
|
/**
|
|
1674
|
-
*
|
|
1674
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1675
1675
|
*/
|
|
1676
|
-
|
|
1676
|
+
useSupplierArticleDescription: boolean;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
*
|
|
1679
|
+
* Lieferanten-Meldebestand
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
supplierReportingStock: number;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
1684
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1736,14 +1736,14 @@ export interface ArticleSupplier {
|
|
|
1736
1736
|
info: MetaInfo;
|
|
1737
1737
|
|
|
1738
1738
|
/**
|
|
1739
|
-
*
|
|
1739
|
+
* Referenced Article name
|
|
1740
1740
|
*/
|
|
1741
|
-
|
|
1741
|
+
articleName: string;
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
|
-
*
|
|
1744
|
+
* Verpackungseinheit
|
|
1745
1745
|
*/
|
|
1746
|
-
|
|
1746
|
+
packagingUnit: number;
|
|
1747
1747
|
|
|
1748
1748
|
/**
|
|
1749
1749
|
* Lieferanten-Preise
|
|
@@ -1776,20 +1776,25 @@ export interface ArticleSupplier {
|
|
|
1776
1776
|
dropShippingAllowed: boolean;
|
|
1777
1777
|
|
|
1778
1778
|
/**
|
|
1779
|
-
* Abweichende
|
|
1779
|
+
* Abweichende Produktbeschreibung
|
|
1780
1780
|
*/
|
|
1781
|
-
|
|
1781
|
+
supplierArticleDescription: string;
|
|
1782
1782
|
|
|
1783
1783
|
/**
|
|
1784
|
-
* Abweichende
|
|
1784
|
+
* Abweichende Produktbezeichnung
|
|
1785
1785
|
*/
|
|
1786
|
-
|
|
1786
|
+
supplierArticleName: string;
|
|
1787
1787
|
|
|
1788
1788
|
/**
|
|
1789
1789
|
* Standardpreis Netto
|
|
1790
1790
|
*/
|
|
1791
1791
|
defaultNetPrice: number;
|
|
1792
1792
|
|
|
1793
|
+
/**
|
|
1794
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1795
|
+
*/
|
|
1796
|
+
orderOnComponentBase: boolean;
|
|
1797
|
+
|
|
1793
1798
|
/**
|
|
1794
1799
|
* Einkaufseinheit
|
|
1795
1800
|
*/
|
|
@@ -1800,11 +1805,6 @@ export interface ArticleSupplier {
|
|
|
1800
1805
|
*/
|
|
1801
1806
|
accountId: number;
|
|
1802
1807
|
|
|
1803
|
-
/**
|
|
1804
|
-
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1805
|
-
*/
|
|
1806
|
-
orderOnComponentBase: boolean;
|
|
1807
|
-
|
|
1808
1808
|
/**
|
|
1809
1809
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1810
1810
|
*/
|
|
@@ -2046,14 +2046,14 @@ export interface CrmActivity {
|
|
|
2046
2046
|
info: MetaInfo;
|
|
2047
2047
|
|
|
2048
2048
|
/**
|
|
2049
|
-
*
|
|
2049
|
+
* Aktivität intern abgerechnet?
|
|
2050
2050
|
*/
|
|
2051
|
-
|
|
2051
|
+
internalBilled: boolean;
|
|
2052
2052
|
|
|
2053
2053
|
/**
|
|
2054
|
-
*
|
|
2054
|
+
* geplante Dauer
|
|
2055
2055
|
*/
|
|
2056
|
-
|
|
2056
|
+
plannedDurationInSeconds: number;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
2059
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2091,14 +2091,14 @@ export interface CrmActivity {
|
|
|
2091
2091
|
userRef: ApiObjectReference;
|
|
2092
2092
|
|
|
2093
2093
|
/**
|
|
2094
|
-
*
|
|
2094
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2095
2095
|
*/
|
|
2096
|
-
|
|
2096
|
+
system: boolean;
|
|
2097
2097
|
|
|
2098
2098
|
/**
|
|
2099
|
-
*
|
|
2099
|
+
* tatsächliche Startzeit
|
|
2100
2100
|
*/
|
|
2101
|
-
|
|
2101
|
+
startDateTime: ScriptingDateTime;
|
|
2102
2102
|
|
|
2103
2103
|
/**
|
|
2104
2104
|
* Inhalt dieser Aktivität
|
|
@@ -2205,14 +2205,14 @@ export interface CrmActivityType {
|
|
|
2205
2205
|
export interface CrmChecklistItem {
|
|
2206
2206
|
|
|
2207
2207
|
/**
|
|
2208
|
-
*
|
|
2208
|
+
* Ist das Element "angehakt"?
|
|
2209
2209
|
*/
|
|
2210
|
-
|
|
2210
|
+
checked: boolean;
|
|
2211
2211
|
|
|
2212
2212
|
/**
|
|
2213
|
-
*
|
|
2213
|
+
* Text des Checklisten-Elements
|
|
2214
2214
|
*/
|
|
2215
|
-
|
|
2215
|
+
memo: string;
|
|
2216
2216
|
|
|
2217
2217
|
/**
|
|
2218
2218
|
* Unique identifier of the Object
|
|
@@ -2604,14 +2604,14 @@ export interface CrmProject {
|
|
|
2604
2604
|
priorityRef: ApiObjectReference;
|
|
2605
2605
|
|
|
2606
2606
|
/**
|
|
2607
|
-
*
|
|
2607
|
+
* Phase
|
|
2608
2608
|
*/
|
|
2609
|
-
|
|
2609
|
+
phaseRef: ApiObjectReference;
|
|
2610
2610
|
|
|
2611
2611
|
/**
|
|
2612
|
-
*
|
|
2612
|
+
* Projektleiter vom Auftragnehmer
|
|
2613
2613
|
*/
|
|
2614
|
-
|
|
2614
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2615
2615
|
|
|
2616
2616
|
/**
|
|
2617
2617
|
* Aufgaben-Nummer
|
|
@@ -2629,14 +2629,14 @@ export interface CrmProject {
|
|
|
2629
2629
|
billedTimes: number;
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
|
-
*
|
|
2632
|
+
* Einkaufsbelege
|
|
2633
2633
|
*/
|
|
2634
|
-
|
|
2634
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* Geplanter Projektzeitraum (von)
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
2642
|
* Verkaufsbelege
|
|
@@ -2854,14 +2854,14 @@ export interface CrmState {
|
|
|
2854
2854
|
readyToBill: boolean;
|
|
2855
2855
|
|
|
2856
2856
|
/**
|
|
2857
|
-
*
|
|
2857
|
+
* Handelt es sich um einen Anfang-Status
|
|
2858
2858
|
*/
|
|
2859
|
-
|
|
2859
|
+
startState: boolean;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
*
|
|
2862
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
2863
2863
|
*/
|
|
2864
|
-
|
|
2864
|
+
needsCommentOnNegativeFinish: boolean;
|
|
2865
2865
|
|
|
2866
2866
|
/**
|
|
2867
2867
|
* MetaInformations for this Object
|
|
@@ -2910,14 +2910,14 @@ export interface CrmSubType {
|
|
|
2910
2910
|
export interface CrmTask {
|
|
2911
2911
|
|
|
2912
2912
|
/**
|
|
2913
|
-
*
|
|
2913
|
+
* Liste von Erinnerungen
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2915
|
+
reminders: Array<CrmReminder>;
|
|
2916
2916
|
|
|
2917
2917
|
/**
|
|
2918
|
-
*
|
|
2918
|
+
* Angebot
|
|
2919
2919
|
*/
|
|
2920
|
-
|
|
2920
|
+
customerOfferRef: DocumentRef;
|
|
2921
2921
|
|
|
2922
2922
|
/**
|
|
2923
2923
|
* Notizen
|
|
@@ -3085,14 +3085,14 @@ export interface CrmTask {
|
|
|
3085
3085
|
assignedUserRef: ApiObjectReference;
|
|
3086
3086
|
|
|
3087
3087
|
/**
|
|
3088
|
-
*
|
|
3088
|
+
* Beauftragte Zeit in Sekunden
|
|
3089
3089
|
*/
|
|
3090
|
-
|
|
3090
|
+
effortCommissioned: number;
|
|
3091
3091
|
|
|
3092
3092
|
/**
|
|
3093
|
-
*
|
|
3093
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3094
3094
|
*/
|
|
3095
|
-
|
|
3095
|
+
externalRecordedTimes: number;
|
|
3096
3096
|
|
|
3097
3097
|
/**
|
|
3098
3098
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3226,14 +3226,14 @@ export interface CurrencyReference {
|
|
|
3226
3226
|
export interface Customer {
|
|
3227
3227
|
|
|
3228
3228
|
/**
|
|
3229
|
-
*
|
|
3229
|
+
* reference to customer group
|
|
3230
3230
|
*/
|
|
3231
|
-
|
|
3231
|
+
customerGroupRef: ApiObjectReference;
|
|
3232
3232
|
|
|
3233
3233
|
/**
|
|
3234
|
-
*
|
|
3234
|
+
* Option für die Stapelverarbeitung
|
|
3235
3235
|
*/
|
|
3236
|
-
|
|
3236
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3237
3237
|
|
|
3238
3238
|
/**
|
|
3239
3239
|
* Kreditlimit
|
|
@@ -3421,14 +3421,14 @@ export interface DeliveryMethod {
|
|
|
3421
3421
|
defaultSizeUnit: UnitTypeReference;
|
|
3422
3422
|
|
|
3423
3423
|
/**
|
|
3424
|
-
*
|
|
3424
|
+
* translations
|
|
3425
3425
|
*/
|
|
3426
|
-
|
|
3426
|
+
translations: Array<DocumentTypeTerm>;
|
|
3427
3427
|
|
|
3428
3428
|
/**
|
|
3429
|
-
*
|
|
3429
|
+
* Quelle für Paketgewicht
|
|
3430
3430
|
*/
|
|
3431
|
-
|
|
3431
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3432
3432
|
|
|
3433
3433
|
/**
|
|
3434
3434
|
* Versand-Anbieter
|
|
@@ -3539,14 +3539,14 @@ export interface DeliveryTerm {
|
|
|
3539
3539
|
id: number;
|
|
3540
3540
|
|
|
3541
3541
|
/**
|
|
3542
|
-
*
|
|
3542
|
+
* free shipping net value
|
|
3543
3543
|
*/
|
|
3544
|
-
|
|
3544
|
+
freeShippingNetValue: number;
|
|
3545
3545
|
|
|
3546
3546
|
/**
|
|
3547
|
-
*
|
|
3547
|
+
* Versandkostenartikel
|
|
3548
3548
|
*/
|
|
3549
|
-
|
|
3549
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3550
3550
|
|
|
3551
3551
|
/**
|
|
3552
3552
|
* MetaInformations for this Object
|
|
@@ -3645,14 +3645,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3645
3645
|
deliveryQuantityPackages: number;
|
|
3646
3646
|
|
|
3647
3647
|
/**
|
|
3648
|
-
*
|
|
3648
|
+
* Leitweg-ID
|
|
3649
3649
|
*/
|
|
3650
|
-
|
|
3650
|
+
buyerReference: string;
|
|
3651
3651
|
|
|
3652
3652
|
/**
|
|
3653
|
-
*
|
|
3653
|
+
* Bestellnummer aus Vorbeleg
|
|
3654
3654
|
*/
|
|
3655
|
-
|
|
3655
|
+
referencedOrderNumber: string;
|
|
3656
3656
|
|
|
3657
3657
|
/**
|
|
3658
3658
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -3705,14 +3705,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3705
3705
|
accountId: number;
|
|
3706
3706
|
|
|
3707
3707
|
/**
|
|
3708
|
-
* Länderkennzeichen
|
|
3708
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3709
3709
|
*/
|
|
3710
|
-
|
|
3710
|
+
sourceCountryCode: string;
|
|
3711
3711
|
|
|
3712
3712
|
/**
|
|
3713
|
-
* Länderkennzeichen
|
|
3713
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3714
3714
|
*/
|
|
3715
|
-
|
|
3715
|
+
performanceCountryCode: string;
|
|
3716
3716
|
|
|
3717
3717
|
/**
|
|
3718
3718
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -3822,14 +3822,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3822
3822
|
fabricationDetail: DocumentFabricationDetail;
|
|
3823
3823
|
|
|
3824
3824
|
/**
|
|
3825
|
-
*
|
|
3825
|
+
* Berechnungsmodus
|
|
3826
3826
|
*/
|
|
3827
|
-
|
|
3827
|
+
calculationMode: CalculationMode;
|
|
3828
3828
|
|
|
3829
3829
|
/**
|
|
3830
|
-
*
|
|
3830
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
3831
3831
|
*/
|
|
3832
|
-
|
|
3832
|
+
accountNumber: string;
|
|
3833
3833
|
|
|
3834
3834
|
/**
|
|
3835
3835
|
* Referenz auf Zahlungsbedingung
|
|
@@ -3937,14 +3937,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3937
3937
|
dropShipping: boolean;
|
|
3938
3938
|
|
|
3939
3939
|
/**
|
|
3940
|
-
*
|
|
3940
|
+
* Gesamtpreis netto
|
|
3941
3941
|
*/
|
|
3942
|
-
|
|
3942
|
+
totalNetPrice: number;
|
|
3943
3943
|
|
|
3944
3944
|
/**
|
|
3945
|
-
*
|
|
3945
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
3946
3946
|
*/
|
|
3947
|
-
|
|
3947
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
3948
3948
|
|
|
3949
3949
|
/**
|
|
3950
3950
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4066,6 +4066,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4066
4066
|
*/
|
|
4067
4067
|
documentState: DocumentTypeState;
|
|
4068
4068
|
|
|
4069
|
+
/**
|
|
4070
|
+
* Rückgeld
|
|
4071
|
+
*/
|
|
4072
|
+
posReceiptChangeAmount: number;
|
|
4073
|
+
|
|
4069
4074
|
/**
|
|
4070
4075
|
* Referenz auf Lieferbedingung
|
|
4071
4076
|
*/
|
|
@@ -4078,11 +4083,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4078
4083
|
*/
|
|
4079
4084
|
posReceiptBalanced: boolean;
|
|
4080
4085
|
|
|
4081
|
-
/**
|
|
4082
|
-
* Rückgeld
|
|
4083
|
-
*/
|
|
4084
|
-
posReceiptChangeAmount: number;
|
|
4085
|
-
|
|
4086
4086
|
/**
|
|
4087
4087
|
* Gesamtbruttogewicht
|
|
4088
4088
|
*/
|
|
@@ -4104,14 +4104,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4104
4104
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4105
4105
|
|
|
4106
4106
|
/**
|
|
4107
|
-
*
|
|
4107
|
+
* Rechnungsadresse
|
|
4108
4108
|
*/
|
|
4109
|
-
|
|
4109
|
+
billingAddress: DocumentAddress;
|
|
4110
4110
|
|
|
4111
4111
|
/**
|
|
4112
|
-
*
|
|
4112
|
+
* Status der USt-ID-Prüfung
|
|
4113
4113
|
*/
|
|
4114
|
-
|
|
4114
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4115
4115
|
|
|
4116
4116
|
/**
|
|
4117
4117
|
* Bestellt durch Ansprechpartner
|
|
@@ -4132,14 +4132,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4132
4132
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4133
4133
|
|
|
4134
4134
|
/**
|
|
4135
|
-
*
|
|
4135
|
+
* Herkunft der Sprache
|
|
4136
4136
|
*/
|
|
4137
|
-
|
|
4137
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4138
4138
|
|
|
4139
4139
|
/**
|
|
4140
|
-
*
|
|
4140
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4141
4141
|
*/
|
|
4142
|
-
|
|
4142
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4143
4143
|
|
|
4144
4144
|
/**
|
|
4145
4145
|
* Herkunft der Käufer-Referenz
|
|
@@ -4272,14 +4272,14 @@ export interface DocumentAddress {
|
|
|
4272
4272
|
postOfficeBox: string;
|
|
4273
4273
|
|
|
4274
4274
|
/**
|
|
4275
|
-
*
|
|
4275
|
+
* Street
|
|
4276
4276
|
*/
|
|
4277
|
-
|
|
4277
|
+
street: string;
|
|
4278
4278
|
|
|
4279
4279
|
/**
|
|
4280
|
-
*
|
|
4280
|
+
* country code IsoAlpha3
|
|
4281
4281
|
*/
|
|
4282
|
-
|
|
4282
|
+
countryCode: string;
|
|
4283
4283
|
|
|
4284
4284
|
/**
|
|
4285
4285
|
* Unique identifier of the Object
|
|
@@ -4478,14 +4478,14 @@ export interface DocumentContractDetail {
|
|
|
4478
4478
|
runtimeToDate: ScriptingDate;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
|
-
*
|
|
4481
|
+
* Nächste Fälligkeit
|
|
4482
4482
|
*/
|
|
4483
|
-
|
|
4483
|
+
nextDueDate: ScriptingDate;
|
|
4484
4484
|
|
|
4485
4485
|
/**
|
|
4486
|
-
*
|
|
4486
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4487
4487
|
*/
|
|
4488
|
-
|
|
4488
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4489
4489
|
|
|
4490
4490
|
/**
|
|
4491
4491
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4715,14 +4715,14 @@ export interface DocumentLine {
|
|
|
4715
4715
|
number: string;
|
|
4716
4716
|
|
|
4717
4717
|
/**
|
|
4718
|
-
*
|
|
4718
|
+
* Referenz zur Kundenauftragszeile
|
|
4719
4719
|
*/
|
|
4720
|
-
|
|
4720
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4721
4721
|
|
|
4722
4722
|
/**
|
|
4723
|
-
*
|
|
4723
|
+
* Gesamtbruttogewicht
|
|
4724
4724
|
*/
|
|
4725
|
-
|
|
4725
|
+
totalGrossWeight: number;
|
|
4726
4726
|
|
|
4727
4727
|
/**
|
|
4728
4728
|
* skontierbare Position?
|
|
@@ -4739,11 +4739,6 @@ export interface DocumentLine {
|
|
|
4739
4739
|
*/
|
|
4740
4740
|
price: number;
|
|
4741
4741
|
|
|
4742
|
-
/**
|
|
4743
|
-
* Positionstyp
|
|
4744
|
-
*/
|
|
4745
|
-
lineType: DocumentLineType;
|
|
4746
|
-
|
|
4747
4742
|
/**
|
|
4748
4743
|
* Gesamtpreis Position in Basiswährung
|
|
4749
4744
|
*/
|
|
@@ -4754,6 +4749,11 @@ export interface DocumentLine {
|
|
|
4754
4749
|
*/
|
|
4755
4750
|
financeBooking: DocumentFinanceBooking;
|
|
4756
4751
|
|
|
4752
|
+
/**
|
|
4753
|
+
* Positionstyp
|
|
4754
|
+
*/
|
|
4755
|
+
lineType: DocumentLineType;
|
|
4756
|
+
|
|
4757
4757
|
/**
|
|
4758
4758
|
* vorgeorderte Menge in Pickvorgang
|
|
4759
4759
|
*/
|
|
@@ -4785,24 +4785,24 @@ export interface DocumentLine {
|
|
|
4785
4785
|
id: number;
|
|
4786
4786
|
|
|
4787
4787
|
/**
|
|
4788
|
-
*
|
|
4788
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
4789
4789
|
*/
|
|
4790
|
-
|
|
4790
|
+
positionOfArticleLine: number;
|
|
4791
4791
|
|
|
4792
4792
|
/**
|
|
4793
|
-
*
|
|
4793
|
+
* Externe Referenz zum VDS-Paket
|
|
4794
4794
|
*/
|
|
4795
|
-
|
|
4795
|
+
externalReferenceVds: string;
|
|
4796
4796
|
|
|
4797
4797
|
/**
|
|
4798
|
-
*
|
|
4798
|
+
* Preis pro Einheit in Basiswährung
|
|
4799
4799
|
*/
|
|
4800
|
-
|
|
4800
|
+
basePrice: number;
|
|
4801
4801
|
|
|
4802
4802
|
/**
|
|
4803
|
-
*
|
|
4803
|
+
* Serientyp
|
|
4804
4804
|
*/
|
|
4805
|
-
|
|
4805
|
+
serialType: ArticleSerialType;
|
|
4806
4806
|
|
|
4807
4807
|
/**
|
|
4808
4808
|
* MetaInformations for this Object
|
|
@@ -4810,14 +4810,14 @@ export interface DocumentLine {
|
|
|
4810
4810
|
info: MetaInfo;
|
|
4811
4811
|
|
|
4812
4812
|
/**
|
|
4813
|
-
*
|
|
4813
|
+
* Steuerschema
|
|
4814
4814
|
*/
|
|
4815
|
-
|
|
4815
|
+
taxSchemaRef: ApiObjectReference;
|
|
4816
4816
|
|
|
4817
4817
|
/**
|
|
4818
|
-
*
|
|
4818
|
+
* Preiseinheit
|
|
4819
4819
|
*/
|
|
4820
|
-
|
|
4820
|
+
priceUnit: number;
|
|
4821
4821
|
|
|
4822
4822
|
/**
|
|
4823
4823
|
* Lieferart
|
|
@@ -4960,14 +4960,14 @@ export interface DocumentLine {
|
|
|
4960
4960
|
totalLinePrice: number;
|
|
4961
4961
|
|
|
4962
4962
|
/**
|
|
4963
|
-
*
|
|
4963
|
+
* Referenz zur Basiszeile
|
|
4964
4964
|
*/
|
|
4965
|
-
|
|
4965
|
+
baseLineId: number;
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Zubehör Einfügeart
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
insertTerm: AccessoryInsertTerm;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
4973
|
* Einheit Bruttogewicht
|
|
@@ -5000,14 +5000,14 @@ export interface DocumentLine {
|
|
|
5000
5000
|
baseSalesValueNet: number;
|
|
5001
5001
|
|
|
5002
5002
|
/**
|
|
5003
|
-
*
|
|
5003
|
+
* Vertragsinformationen
|
|
5004
5004
|
*/
|
|
5005
|
-
|
|
5005
|
+
contractDetail: DocumentContractDetail;
|
|
5006
5006
|
|
|
5007
5007
|
/**
|
|
5008
|
-
*
|
|
5008
|
+
* Einheit Nettogewicht
|
|
5009
5009
|
*/
|
|
5010
|
-
|
|
5010
|
+
netWeightUnit: UnitTypeReference;
|
|
5011
5011
|
|
|
5012
5012
|
/**
|
|
5013
5013
|
* Menge
|
|
@@ -5239,14 +5239,14 @@ export interface DocumentLineComponent {
|
|
|
5239
5239
|
custom: EavDocumentlinecomponent;
|
|
5240
5240
|
|
|
5241
5241
|
/**
|
|
5242
|
-
*
|
|
5242
|
+
* Gelieferte Menge
|
|
5243
5243
|
*/
|
|
5244
|
-
|
|
5244
|
+
quantityCommitted: number;
|
|
5245
5245
|
|
|
5246
5246
|
/**
|
|
5247
|
-
*
|
|
5247
|
+
* Referenz auf den Artikel der Komponente
|
|
5248
5248
|
*/
|
|
5249
|
-
|
|
5249
|
+
articleId: number;
|
|
5250
5250
|
|
|
5251
5251
|
/**
|
|
5252
5252
|
* Beschreibung des Artikels
|
|
@@ -5542,14 +5542,14 @@ export interface DocumentLineRef {
|
|
|
5542
5542
|
documentId: number;
|
|
5543
5543
|
|
|
5544
5544
|
/**
|
|
5545
|
-
*
|
|
5545
|
+
* Positions-Nummer
|
|
5546
5546
|
*/
|
|
5547
|
-
|
|
5547
|
+
position: number;
|
|
5548
5548
|
|
|
5549
5549
|
/**
|
|
5550
|
-
*
|
|
5550
|
+
* Id der Dokumentzeile
|
|
5551
5551
|
*/
|
|
5552
|
-
|
|
5552
|
+
id: number;
|
|
5553
5553
|
|
|
5554
5554
|
/**
|
|
5555
5555
|
* Belegtyp
|
|
@@ -6489,14 +6489,14 @@ export interface FabricationRevertRequest {
|
|
|
6489
6489
|
quantity: number;
|
|
6490
6490
|
|
|
6491
6491
|
/**
|
|
6492
|
-
*
|
|
6492
|
+
* ID der zu stornierenden Position
|
|
6493
6493
|
*/
|
|
6494
|
-
|
|
6494
|
+
documentLineId: number;
|
|
6495
6495
|
|
|
6496
6496
|
/**
|
|
6497
|
-
*
|
|
6497
|
+
* Material automatisch stornieren
|
|
6498
6498
|
*/
|
|
6499
|
-
|
|
6499
|
+
autoRevertComponents: boolean;
|
|
6500
6500
|
|
|
6501
6501
|
/**
|
|
6502
6502
|
* Zu stornierende Seriennummern
|
|
@@ -6512,14 +6512,14 @@ export interface FabricationRevertRequest {
|
|
|
6512
6512
|
export interface FabricationSerialNumber {
|
|
6513
6513
|
|
|
6514
6514
|
/**
|
|
6515
|
-
*
|
|
6515
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6516
6516
|
*/
|
|
6517
|
-
|
|
6517
|
+
serialNumberId: number;
|
|
6518
6518
|
|
|
6519
6519
|
/**
|
|
6520
|
-
*
|
|
6520
|
+
* MHD / Verfallsdatum
|
|
6521
6521
|
*/
|
|
6522
|
-
|
|
6522
|
+
expiryDate: ScriptingDate;
|
|
6523
6523
|
|
|
6524
6524
|
/**
|
|
6525
6525
|
* Bemerkung
|
|
@@ -6726,14 +6726,14 @@ export interface PaymentMethod {
|
|
|
6726
6726
|
daysToAddForFollowup: number;
|
|
6727
6727
|
|
|
6728
6728
|
/**
|
|
6729
|
-
*
|
|
6729
|
+
* external Payment Id
|
|
6730
6730
|
*/
|
|
6731
|
-
|
|
6731
|
+
externalPaymentId: string;
|
|
6732
6732
|
|
|
6733
6733
|
/**
|
|
6734
|
-
*
|
|
6734
|
+
* Die Business Transaction
|
|
6735
6735
|
*/
|
|
6736
|
-
|
|
6736
|
+
businessTransaction: ApiObjectReference;
|
|
6737
6737
|
|
|
6738
6738
|
/**
|
|
6739
6739
|
* Unique identifier of the Object
|
|
@@ -6758,26 +6758,26 @@ export interface PaymentTerm {
|
|
|
6758
6758
|
*/
|
|
6759
6759
|
paymentDiscount2: number;
|
|
6760
6760
|
|
|
6761
|
-
/**
|
|
6762
|
-
* Percent for Discount 1
|
|
6763
|
-
*/
|
|
6764
|
-
paymentDiscount1: number;
|
|
6765
|
-
|
|
6766
6761
|
/**
|
|
6767
6762
|
* printDescription
|
|
6768
6763
|
*/
|
|
6769
6764
|
printDescription: string;
|
|
6770
6765
|
|
|
6771
6766
|
/**
|
|
6772
|
-
*
|
|
6767
|
+
* Percent for Discount 1
|
|
6773
6768
|
*/
|
|
6774
|
-
|
|
6769
|
+
paymentDiscount1: number;
|
|
6775
6770
|
|
|
6776
6771
|
/**
|
|
6777
6772
|
* for deposit: remaining term
|
|
6778
6773
|
*/
|
|
6779
6774
|
remainingTermRef: ApiObjectReference;
|
|
6780
6775
|
|
|
6776
|
+
/**
|
|
6777
|
+
* Days for Discount 1
|
|
6778
|
+
*/
|
|
6779
|
+
paymentDays1: number;
|
|
6780
|
+
|
|
6781
6781
|
/**
|
|
6782
6782
|
* Days for Discount 2
|
|
6783
6783
|
*/
|
|
@@ -7490,9 +7490,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7490
7490
|
alternativeSelectionInVql: string;
|
|
7491
7491
|
|
|
7492
7492
|
/**
|
|
7493
|
-
*
|
|
7493
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7494
7494
|
*/
|
|
7495
|
-
|
|
7495
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7496
7496
|
|
|
7497
7497
|
/**
|
|
7498
7498
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -7500,9 +7500,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7500
7500
|
maxOrderCount: number;
|
|
7501
7501
|
|
|
7502
7502
|
/**
|
|
7503
|
-
*
|
|
7503
|
+
* Nur vollständig lieferbare Positionen
|
|
7504
7504
|
*/
|
|
7505
|
-
|
|
7505
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7506
7506
|
|
|
7507
7507
|
/**
|
|
7508
7508
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7572,11 +7572,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7572
7572
|
*/
|
|
7573
7573
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7574
7574
|
|
|
7575
|
-
/**
|
|
7576
|
-
* Lagerplätze vorgeben
|
|
7577
|
-
*/
|
|
7578
|
-
specifyStorageBins: boolean;
|
|
7579
|
-
|
|
7580
7575
|
/**
|
|
7581
7576
|
* Der zu verwendende Pickwagen
|
|
7582
7577
|
*/
|
|
@@ -7587,6 +7582,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7587
7582
|
*/
|
|
7588
7583
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7589
7584
|
|
|
7585
|
+
/**
|
|
7586
|
+
* Lagerplätze vorgeben
|
|
7587
|
+
*/
|
|
7588
|
+
specifyStorageBins: boolean;
|
|
7589
|
+
|
|
7590
7590
|
/**
|
|
7591
7591
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7592
7592
|
*/
|
|
@@ -7655,11 +7655,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7655
7655
|
*/
|
|
7656
7656
|
showShippingFormOnPickingFinish: boolean;
|
|
7657
7657
|
|
|
7658
|
-
/**
|
|
7659
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
7660
|
-
*/
|
|
7661
|
-
allowPickingOfServiceArticles: boolean;
|
|
7662
|
-
|
|
7663
7658
|
/**
|
|
7664
7659
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7665
7660
|
*/
|
|
@@ -7670,6 +7665,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7670
7665
|
*/
|
|
7671
7666
|
allowFullConfirmation: boolean;
|
|
7672
7667
|
|
|
7668
|
+
/**
|
|
7669
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7670
|
+
*/
|
|
7671
|
+
allowPickingOfServiceArticles: boolean;
|
|
7672
|
+
|
|
7673
7673
|
/**
|
|
7674
7674
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
7675
7675
|
*/
|
|
@@ -7744,14 +7744,14 @@ export interface PriceSelectionCriteria {
|
|
|
7744
7744
|
quantity: number;
|
|
7745
7745
|
|
|
7746
7746
|
/**
|
|
7747
|
-
* Liste von
|
|
7747
|
+
* Liste von Account-IDs
|
|
7748
7748
|
*/
|
|
7749
|
-
|
|
7749
|
+
accountIds: Array<number>;
|
|
7750
7750
|
|
|
7751
7751
|
/**
|
|
7752
|
-
* Liste von
|
|
7752
|
+
* Liste von Artikel-IDs
|
|
7753
7753
|
*/
|
|
7754
|
-
|
|
7754
|
+
articleIds: Array<number>;
|
|
7755
7755
|
|
|
7756
7756
|
/**
|
|
7757
7757
|
* ein qualifier
|
|
@@ -7867,14 +7867,14 @@ export interface Product {
|
|
|
7867
7867
|
bundle: boolean;
|
|
7868
7868
|
|
|
7869
7869
|
/**
|
|
7870
|
-
*
|
|
7870
|
+
* Variantenwerte
|
|
7871
7871
|
*/
|
|
7872
|
-
|
|
7872
|
+
variantValues: Array<VariantValueReference>;
|
|
7873
7873
|
|
|
7874
7874
|
/**
|
|
7875
|
-
*
|
|
7875
|
+
* Serientyp
|
|
7876
7876
|
*/
|
|
7877
|
-
|
|
7877
|
+
serialType: ArticleSerialType;
|
|
7878
7878
|
|
|
7879
7879
|
/**
|
|
7880
7880
|
* MetaInformations for this Object
|
|
@@ -7928,14 +7928,14 @@ export interface ProductDiscount {
|
|
|
7928
7928
|
validFrom: ScriptingDate;
|
|
7929
7929
|
|
|
7930
7930
|
/**
|
|
7931
|
-
*
|
|
7931
|
+
* Bestimmt die Art des Rabatts
|
|
7932
7932
|
*/
|
|
7933
|
-
|
|
7933
|
+
modifierType: PriceModifierType;
|
|
7934
7934
|
|
|
7935
7935
|
/**
|
|
7936
|
-
*
|
|
7936
|
+
* Warengruppe
|
|
7937
7937
|
*/
|
|
7938
|
-
|
|
7938
|
+
productGroupRef: ApiObjectReference;
|
|
7939
7939
|
|
|
7940
7940
|
/**
|
|
7941
7941
|
* Version Identifier for this Object (for PUT)
|
|
@@ -7953,14 +7953,14 @@ export interface ProductDiscount {
|
|
|
7953
7953
|
currencyRef: CurrencyReference;
|
|
7954
7954
|
|
|
7955
7955
|
/**
|
|
7956
|
-
*
|
|
7956
|
+
* Wert des Rabatts
|
|
7957
7957
|
*/
|
|
7958
|
-
|
|
7958
|
+
modifierValue: number;
|
|
7959
7959
|
|
|
7960
7960
|
/**
|
|
7961
|
-
*
|
|
7961
|
+
* Preisgruppe
|
|
7962
7962
|
*/
|
|
7963
|
-
|
|
7963
|
+
priceGroupRef: ApiObjectReference;
|
|
7964
7964
|
|
|
7965
7965
|
/**
|
|
7966
7966
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -8331,14 +8331,14 @@ export interface RequestDocument {
|
|
|
8331
8331
|
contractDetail: DocumentContractDetail;
|
|
8332
8332
|
|
|
8333
8333
|
/**
|
|
8334
|
-
*
|
|
8334
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8335
8335
|
*/
|
|
8336
|
-
|
|
8336
|
+
supplierAccountId: number;
|
|
8337
8337
|
|
|
8338
8338
|
/**
|
|
8339
|
-
*
|
|
8339
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8340
8340
|
*/
|
|
8341
|
-
|
|
8341
|
+
paymentTermId: number;
|
|
8342
8342
|
|
|
8343
8343
|
/**
|
|
8344
8344
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -8351,14 +8351,14 @@ export interface RequestDocument {
|
|
|
8351
8351
|
custom: EavDocument;
|
|
8352
8352
|
|
|
8353
8353
|
/**
|
|
8354
|
-
*
|
|
8354
|
+
* target document type for document copy
|
|
8355
8355
|
*/
|
|
8356
|
-
|
|
8356
|
+
targetDocumentType: DocumentType;
|
|
8357
8357
|
|
|
8358
8358
|
/**
|
|
8359
|
-
*
|
|
8359
|
+
* reference to the corresponding document in an external system
|
|
8360
8360
|
*/
|
|
8361
|
-
|
|
8361
|
+
externalId: string;
|
|
8362
8362
|
|
|
8363
8363
|
/**
|
|
8364
8364
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -8444,14 +8444,14 @@ export interface RequestDocumentLine {
|
|
|
8444
8444
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8445
8445
|
|
|
8446
8446
|
/**
|
|
8447
|
-
*
|
|
8447
|
+
* FiBu-Angaben
|
|
8448
8448
|
*/
|
|
8449
|
-
|
|
8449
|
+
financeBooking: DocumentFinanceBooking;
|
|
8450
8450
|
|
|
8451
8451
|
/**
|
|
8452
|
-
*
|
|
8452
|
+
* Typ dieser Position
|
|
8453
8453
|
*/
|
|
8454
|
-
|
|
8454
|
+
lineType: DocumentLineType;
|
|
8455
8455
|
|
|
8456
8456
|
/**
|
|
8457
8457
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8491,7 +8491,7 @@ export interface RequestDocumentLine {
|
|
|
8491
8491
|
/**
|
|
8492
8492
|
* Für interne Zwecke: Freifelder
|
|
8493
8493
|
*/
|
|
8494
|
-
custom:
|
|
8494
|
+
custom: EavDocumentline;
|
|
8495
8495
|
|
|
8496
8496
|
/**
|
|
8497
8497
|
* (optional) ID des Artikels dieser Position
|
|
@@ -8662,14 +8662,14 @@ export interface RequestDocumentText {
|
|
|
8662
8662
|
export interface RevenueCalculation {
|
|
8663
8663
|
|
|
8664
8664
|
/**
|
|
8665
|
-
*
|
|
8665
|
+
* Netto Umsatz
|
|
8666
8666
|
*/
|
|
8667
|
-
|
|
8667
|
+
salesValue: number;
|
|
8668
8668
|
|
|
8669
8669
|
/**
|
|
8670
|
-
*
|
|
8670
|
+
* Deckungsbeitrag (absolut)
|
|
8671
8671
|
*/
|
|
8672
|
-
|
|
8672
|
+
revenue: number;
|
|
8673
8673
|
|
|
8674
8674
|
/**
|
|
8675
8675
|
* Einkaufspreis
|
|
@@ -9807,14 +9807,14 @@ export const enum TagType {
|
|
|
9807
9807
|
export interface TaxIdForeignCountry {
|
|
9808
9808
|
|
|
9809
9809
|
/**
|
|
9810
|
-
*
|
|
9810
|
+
* Tax ID of the company in the associated country
|
|
9811
9811
|
*/
|
|
9812
|
-
|
|
9812
|
+
taxId: string;
|
|
9813
9813
|
|
|
9814
9814
|
/**
|
|
9815
|
-
*
|
|
9815
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
9816
9816
|
*/
|
|
9817
|
-
|
|
9817
|
+
countryCode: string;
|
|
9818
9818
|
|
|
9819
9819
|
/**
|
|
9820
9820
|
* Unique identifier of the Object
|
|
@@ -9903,6 +9903,11 @@ export const enum TaxSituationOrigin {
|
|
|
9903
9903
|
|
|
9904
9904
|
export interface TextEnumCreate {
|
|
9905
9905
|
|
|
9906
|
+
/**
|
|
9907
|
+
* Sichtbar
|
|
9908
|
+
*/
|
|
9909
|
+
visible: boolean;
|
|
9910
|
+
|
|
9906
9911
|
/**
|
|
9907
9912
|
* Custom data
|
|
9908
9913
|
*/
|
|
@@ -9926,6 +9931,11 @@ export interface TextEnumCreate {
|
|
|
9926
9931
|
|
|
9927
9932
|
export interface TextEnumGet {
|
|
9928
9933
|
|
|
9934
|
+
/**
|
|
9935
|
+
* Sichtbar
|
|
9936
|
+
*/
|
|
9937
|
+
visible: boolean;
|
|
9938
|
+
|
|
9929
9939
|
/**
|
|
9930
9940
|
* Custom data
|
|
9931
9941
|
*/
|