@vario-software/types 2026.34.4 → 2026.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +15 -7
- package/scripting/services.d.ts +52 -35
- package/scripting/types.d.ts +320 -314
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
|
* Custom account data
|
|
@@ -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
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Street
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
street: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Country code
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
countryCode: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -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
|
* Custom data
|
|
@@ -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
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
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
|
|
@@ -596,14 +596,14 @@ export interface AccountListing {
|
|
|
596
596
|
export interface AccountLoanValue {
|
|
597
597
|
|
|
598
598
|
/**
|
|
599
|
-
*
|
|
599
|
+
* Account
|
|
600
600
|
*/
|
|
601
|
-
|
|
601
|
+
accountId: number;
|
|
602
602
|
|
|
603
603
|
/**
|
|
604
|
-
*
|
|
604
|
+
* Nicht berücksichtigter Betrag
|
|
605
605
|
*/
|
|
606
|
-
|
|
606
|
+
unconsideredAmount: number;
|
|
607
607
|
|
|
608
608
|
/**
|
|
609
609
|
* Betrag aus Aufträgen
|
|
@@ -1015,14 +1015,14 @@ export interface Article {
|
|
|
1015
1015
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* is this product purchasable
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
purchasable: boolean;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* Product custom data
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
@@ -1240,14 +1240,14 @@ export interface Article {
|
|
|
1240
1240
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
taxLiabilityReversed: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Notiz
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
note: string;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* gross sales prices
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
grossSalesPrice: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Vorgabe Herstellungskosten
|
|
@@ -1649,9 +1649,9 @@ export interface ArticleCustomer {
|
|
|
1649
1649
|
defaultGrossPrice: number;
|
|
1650
1650
|
|
|
1651
1651
|
/**
|
|
1652
|
-
*
|
|
1652
|
+
* Artikelnummer
|
|
1653
1653
|
*/
|
|
1654
|
-
|
|
1654
|
+
articleNumber: string;
|
|
1655
1655
|
|
|
1656
1656
|
/**
|
|
1657
1657
|
* Art der Preisermittlung
|
|
@@ -1659,9 +1659,9 @@ export interface ArticleCustomer {
|
|
|
1659
1659
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1660
1660
|
|
|
1661
1661
|
/**
|
|
1662
|
-
*
|
|
1662
|
+
* Abweichende Produktnummer
|
|
1663
1663
|
*/
|
|
1664
|
-
|
|
1664
|
+
deviatingArticleNumber: string;
|
|
1665
1665
|
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2092,14 +2092,14 @@ export interface ArticleSupplier {
|
|
|
2092
2092
|
accountDisplayName: string;
|
|
2093
2093
|
|
|
2094
2094
|
/**
|
|
2095
|
-
*
|
|
2095
|
+
* Lieferanten-Meldebestand
|
|
2096
2096
|
*/
|
|
2097
|
-
|
|
2097
|
+
supplierReportingStock: number;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
*
|
|
2100
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
useSupplierArticleDescription: boolean;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
2105
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2292,26 +2292,26 @@ export interface Asset {
|
|
|
2292
2292
|
*/
|
|
2293
2293
|
custom: EavAsset;
|
|
2294
2294
|
|
|
2295
|
-
/**
|
|
2296
|
-
* Artikel
|
|
2297
|
-
*/
|
|
2298
|
-
articleRef: ApiObjectReference;
|
|
2299
|
-
|
|
2300
2295
|
/**
|
|
2301
2296
|
* active
|
|
2302
2297
|
*/
|
|
2303
2298
|
active: boolean;
|
|
2304
2299
|
|
|
2305
2300
|
/**
|
|
2306
|
-
*
|
|
2301
|
+
* Artikel
|
|
2307
2302
|
*/
|
|
2308
|
-
|
|
2303
|
+
articleRef: ApiObjectReference;
|
|
2309
2304
|
|
|
2310
2305
|
/**
|
|
2311
2306
|
* Zugehörige Assets
|
|
2312
2307
|
*/
|
|
2313
2308
|
childAssetRefs: Array<ApiObjectReference>;
|
|
2314
2309
|
|
|
2310
|
+
/**
|
|
2311
|
+
* Ende Garantie
|
|
2312
|
+
*/
|
|
2313
|
+
warrantyEndDate: ScriptingDate;
|
|
2314
|
+
|
|
2315
2315
|
/**
|
|
2316
2316
|
* Asset-Bezeichnung
|
|
2317
2317
|
*/
|
|
@@ -2327,6 +2327,11 @@ export interface Asset {
|
|
|
2327
2327
|
*/
|
|
2328
2328
|
billingAddressRef: ApiObjectReference;
|
|
2329
2329
|
|
|
2330
|
+
/**
|
|
2331
|
+
* Tags zum Asset
|
|
2332
|
+
*/
|
|
2333
|
+
tags: Array<TagDto>;
|
|
2334
|
+
|
|
2330
2335
|
/**
|
|
2331
2336
|
* Vertrag
|
|
2332
2337
|
*/
|
|
@@ -2496,14 +2501,14 @@ export interface BundleSchema {
|
|
|
2496
2501
|
export interface BundleUnitTypeRatio {
|
|
2497
2502
|
|
|
2498
2503
|
/**
|
|
2499
|
-
* Mengeneinheit
|
|
2504
|
+
* Verhältnis-Mengeneinheit
|
|
2500
2505
|
*/
|
|
2501
|
-
|
|
2506
|
+
relationUnitTypeRef: UnitTypeReference;
|
|
2502
2507
|
|
|
2503
2508
|
/**
|
|
2504
|
-
*
|
|
2509
|
+
* Mengeneinheit
|
|
2505
2510
|
*/
|
|
2506
|
-
|
|
2511
|
+
baseUnitTypeRef: UnitTypeReference;
|
|
2507
2512
|
|
|
2508
2513
|
/**
|
|
2509
2514
|
* Unique identifier of the Object
|
|
@@ -2668,14 +2673,14 @@ export interface CountryReference {
|
|
|
2668
2673
|
export interface CreateNewDocumentRequest {
|
|
2669
2674
|
|
|
2670
2675
|
/**
|
|
2671
|
-
*
|
|
2676
|
+
* Belegart
|
|
2672
2677
|
*/
|
|
2673
|
-
|
|
2678
|
+
documentTypeLabel: string;
|
|
2674
2679
|
|
|
2675
2680
|
/**
|
|
2676
|
-
* Belegart
|
|
2681
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2677
2682
|
*/
|
|
2678
|
-
|
|
2683
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2679
2684
|
|
|
2680
2685
|
/**
|
|
2681
2686
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -2791,14 +2796,14 @@ export interface CrmActivity {
|
|
|
2791
2796
|
userRef: ApiObjectReference;
|
|
2792
2797
|
|
|
2793
2798
|
/**
|
|
2794
|
-
*
|
|
2799
|
+
* tatsächliche Startzeit
|
|
2795
2800
|
*/
|
|
2796
|
-
|
|
2801
|
+
startDateTime: ScriptingDateTime;
|
|
2797
2802
|
|
|
2798
2803
|
/**
|
|
2799
|
-
*
|
|
2804
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2800
2805
|
*/
|
|
2801
|
-
|
|
2806
|
+
system: boolean;
|
|
2802
2807
|
|
|
2803
2808
|
/**
|
|
2804
2809
|
* Inhalt dieser Aktivität
|
|
@@ -3836,14 +3841,14 @@ export interface CrmTask {
|
|
|
3836
3841
|
parentRefs: Array<CrmObjectRef>;
|
|
3837
3842
|
|
|
3838
3843
|
/**
|
|
3839
|
-
*
|
|
3844
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3840
3845
|
*/
|
|
3841
|
-
|
|
3846
|
+
externalRecordedTimes: number;
|
|
3842
3847
|
|
|
3843
3848
|
/**
|
|
3844
|
-
*
|
|
3849
|
+
* Beauftragte Zeit in Sekunden
|
|
3845
3850
|
*/
|
|
3846
|
-
|
|
3851
|
+
effortCommissioned: number;
|
|
3847
3852
|
|
|
3848
3853
|
/**
|
|
3849
3854
|
* Aufwandsschätzung in Sekunden
|
|
@@ -4015,14 +4020,14 @@ export interface CurrencyReference {
|
|
|
4015
4020
|
export interface Customer {
|
|
4016
4021
|
|
|
4017
4022
|
/**
|
|
4018
|
-
*
|
|
4023
|
+
* Option für die Stapelverarbeitung
|
|
4019
4024
|
*/
|
|
4020
|
-
|
|
4025
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
4021
4026
|
|
|
4022
4027
|
/**
|
|
4023
|
-
*
|
|
4028
|
+
* reference to customer group
|
|
4024
4029
|
*/
|
|
4025
|
-
|
|
4030
|
+
customerGroupRef: ApiObjectReference;
|
|
4026
4031
|
|
|
4027
4032
|
/**
|
|
4028
4033
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -4040,14 +4045,14 @@ export interface Customer {
|
|
|
4040
4045
|
dueDate: ScriptingDate;
|
|
4041
4046
|
|
|
4042
4047
|
/**
|
|
4043
|
-
*
|
|
4048
|
+
* Maximal mögliche Lieferungen
|
|
4044
4049
|
*/
|
|
4045
|
-
|
|
4050
|
+
maxDeliveries: number;
|
|
4046
4051
|
|
|
4047
4052
|
/**
|
|
4048
|
-
*
|
|
4053
|
+
* collective billable
|
|
4049
4054
|
*/
|
|
4050
|
-
|
|
4055
|
+
collectiveBillable: boolean;
|
|
4051
4056
|
|
|
4052
4057
|
/**
|
|
4053
4058
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4100,14 +4105,14 @@ export interface Customer {
|
|
|
4100
4105
|
info: MetaInfo;
|
|
4101
4106
|
|
|
4102
4107
|
/**
|
|
4103
|
-
*
|
|
4108
|
+
* tax able or tax free
|
|
4104
4109
|
*/
|
|
4105
|
-
|
|
4110
|
+
taxable: boolean;
|
|
4106
4111
|
|
|
4107
4112
|
/**
|
|
4108
|
-
*
|
|
4113
|
+
* reference to the delivery method
|
|
4109
4114
|
*/
|
|
4110
|
-
|
|
4115
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4111
4116
|
|
|
4112
4117
|
/**
|
|
4113
4118
|
* active true/false
|
|
@@ -4259,14 +4264,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4259
4264
|
export interface DeliveryMethod {
|
|
4260
4265
|
|
|
4261
4266
|
/**
|
|
4262
|
-
*
|
|
4267
|
+
* E-Mail an Versender übergeben
|
|
4263
4268
|
*/
|
|
4264
|
-
|
|
4269
|
+
forwardEmailToShipper: boolean;
|
|
4265
4270
|
|
|
4266
4271
|
/**
|
|
4267
|
-
*
|
|
4272
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4268
4273
|
*/
|
|
4269
|
-
|
|
4274
|
+
splitIntoNewDocument: boolean;
|
|
4270
4275
|
|
|
4271
4276
|
/**
|
|
4272
4277
|
* Barcode
|
|
@@ -4422,14 +4427,14 @@ export interface DeliveryTerm {
|
|
|
4422
4427
|
version: number;
|
|
4423
4428
|
|
|
4424
4429
|
/**
|
|
4425
|
-
*
|
|
4430
|
+
* information, how the shipping charges should be calculated
|
|
4426
4431
|
*/
|
|
4427
|
-
|
|
4432
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4428
4433
|
|
|
4429
4434
|
/**
|
|
4430
|
-
*
|
|
4435
|
+
* translations
|
|
4431
4436
|
*/
|
|
4432
|
-
|
|
4437
|
+
translations: Array<DocumentTypeTerm>;
|
|
4433
4438
|
|
|
4434
4439
|
/**
|
|
4435
4440
|
* Lieferarten
|
|
@@ -4472,14 +4477,14 @@ export interface DmsOutputStream {
|
|
|
4472
4477
|
export interface Document {
|
|
4473
4478
|
|
|
4474
4479
|
/**
|
|
4475
|
-
*
|
|
4480
|
+
* Referenz zum Rechnungskonto
|
|
4476
4481
|
*/
|
|
4477
|
-
|
|
4482
|
+
billingAccountRef: ApiObjectReference;
|
|
4478
4483
|
|
|
4479
4484
|
/**
|
|
4480
|
-
*
|
|
4485
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4481
4486
|
*/
|
|
4482
|
-
|
|
4487
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4483
4488
|
|
|
4484
4489
|
/**
|
|
4485
4490
|
* Externe Belegnummer
|
|
@@ -4517,14 +4522,14 @@ export interface Document {
|
|
|
4517
4522
|
totalVat: number;
|
|
4518
4523
|
|
|
4519
4524
|
/**
|
|
4520
|
-
*
|
|
4525
|
+
* Standardlager für neue Positionen
|
|
4521
4526
|
*/
|
|
4522
|
-
|
|
4527
|
+
defaultStorageRef: ApiObjectReference;
|
|
4523
4528
|
|
|
4524
4529
|
/**
|
|
4525
|
-
*
|
|
4530
|
+
* Name der bestellenden Person
|
|
4526
4531
|
*/
|
|
4527
|
-
|
|
4532
|
+
orderedBy: string;
|
|
4528
4533
|
|
|
4529
4534
|
/**
|
|
4530
4535
|
* Lieferadresse
|
|
@@ -4630,14 +4635,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4630
4635
|
accountId: number;
|
|
4631
4636
|
|
|
4632
4637
|
/**
|
|
4633
|
-
* Länderkennzeichen
|
|
4638
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4634
4639
|
*/
|
|
4635
|
-
|
|
4640
|
+
sourceCountryCode: string;
|
|
4636
4641
|
|
|
4637
4642
|
/**
|
|
4638
|
-
* Länderkennzeichen
|
|
4643
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4639
4644
|
*/
|
|
4640
|
-
|
|
4645
|
+
performanceCountryCode: string;
|
|
4641
4646
|
|
|
4642
4647
|
/**
|
|
4643
4648
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4699,6 +4704,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4699
4704
|
*/
|
|
4700
4705
|
posPayments: Array<DocumentPosPayment>;
|
|
4701
4706
|
|
|
4707
|
+
/**
|
|
4708
|
+
* Ist die Quittung bezahlt
|
|
4709
|
+
true wenn die Quittung bezahlt ist
|
|
4710
|
+
|
|
4711
|
+
*/
|
|
4712
|
+
posReceiptPayed: boolean;
|
|
4713
|
+
|
|
4702
4714
|
/**
|
|
4703
4715
|
* Kundennummer beim Lieferanten
|
|
4704
4716
|
*/
|
|
@@ -4709,13 +4721,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4709
4721
|
*/
|
|
4710
4722
|
maxDeliveries: number;
|
|
4711
4723
|
|
|
4712
|
-
/**
|
|
4713
|
-
* Ist die Quittung bezahlt
|
|
4714
|
-
true wenn die Quittung bezahlt ist
|
|
4715
|
-
|
|
4716
|
-
*/
|
|
4717
|
-
posReceiptPayed: boolean;
|
|
4718
|
-
|
|
4719
4724
|
/**
|
|
4720
4725
|
* Quittung: Summe Zahlbetrag
|
|
4721
4726
|
*/
|
|
@@ -4762,14 +4767,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4762
4767
|
calculationMode: CalculationMode;
|
|
4763
4768
|
|
|
4764
4769
|
/**
|
|
4765
|
-
*
|
|
4770
|
+
* Wird vom Workflow verarbeitet?
|
|
4766
4771
|
*/
|
|
4767
|
-
|
|
4772
|
+
processedByWorkflow: boolean;
|
|
4768
4773
|
|
|
4769
4774
|
/**
|
|
4770
|
-
*
|
|
4775
|
+
* Referenz auf Zahlungsbedingung
|
|
4771
4776
|
*/
|
|
4772
|
-
|
|
4777
|
+
paymentTermRef: PaymentTermRef;
|
|
4773
4778
|
|
|
4774
4779
|
/**
|
|
4775
4780
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -5006,11 +5011,6 @@ true wenn die Quittung bezahlt ist
|
|
|
5006
5011
|
*/
|
|
5007
5012
|
posReceiptChangeAmount: number;
|
|
5008
5013
|
|
|
5009
|
-
/**
|
|
5010
|
-
* Referenz auf Lieferbedingung
|
|
5011
|
-
*/
|
|
5012
|
-
deliveryTermRef: ApiObjectReference;
|
|
5013
|
-
|
|
5014
5014
|
/**
|
|
5015
5015
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5016
5016
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -5018,6 +5018,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5018
5018
|
*/
|
|
5019
5019
|
posReceiptBalanced: boolean;
|
|
5020
5020
|
|
|
5021
|
+
/**
|
|
5022
|
+
* Referenz auf Lieferbedingung
|
|
5023
|
+
*/
|
|
5024
|
+
deliveryTermRef: ApiObjectReference;
|
|
5025
|
+
|
|
5021
5026
|
/**
|
|
5022
5027
|
* Gesamtbruttogewicht
|
|
5023
5028
|
*/
|
|
@@ -5038,25 +5043,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5038
5043
|
*/
|
|
5039
5044
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
5040
5045
|
|
|
5041
|
-
/**
|
|
5042
|
-
* Rechnungsadresse
|
|
5043
|
-
*/
|
|
5044
|
-
billingAddress: DocumentAddress;
|
|
5045
|
-
|
|
5046
5046
|
/**
|
|
5047
5047
|
* Status der USt-ID-Prüfung
|
|
5048
5048
|
*/
|
|
5049
5049
|
taxIdVerificationState: TaxIdVerificationState;
|
|
5050
5050
|
|
|
5051
5051
|
/**
|
|
5052
|
-
*
|
|
5052
|
+
* Rechnungsadresse
|
|
5053
5053
|
*/
|
|
5054
|
-
|
|
5054
|
+
billingAddress: DocumentAddress;
|
|
5055
5055
|
|
|
5056
5056
|
/**
|
|
5057
5057
|
* Bestellt durch Ansprechpartner
|
|
5058
5058
|
*/
|
|
5059
5059
|
orderedByPersonRef: ApiObjectReference;
|
|
5060
|
+
|
|
5061
|
+
/**
|
|
5062
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
5063
|
+
*/
|
|
5064
|
+
reportGroupRef: ApiObjectReference;
|
|
5060
5065
|
}
|
|
5061
5066
|
|
|
5062
5067
|
export interface DocumentAdditionalInfo {
|
|
@@ -5072,14 +5077,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5072
5077
|
roundingMode: DocumentRounding;
|
|
5073
5078
|
|
|
5074
5079
|
/**
|
|
5075
|
-
*
|
|
5080
|
+
* Herkunft der Sprache
|
|
5076
5081
|
*/
|
|
5077
|
-
|
|
5082
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
5078
5083
|
|
|
5079
5084
|
/**
|
|
5080
|
-
*
|
|
5085
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
5081
5086
|
*/
|
|
5082
|
-
|
|
5087
|
+
contextParameters: Array<AdditionalParameter>;
|
|
5083
5088
|
|
|
5084
5089
|
/**
|
|
5085
5090
|
* Herkunft der Käufer-Referenz
|
|
@@ -5087,14 +5092,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5087
5092
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5088
5093
|
|
|
5089
5094
|
/**
|
|
5090
|
-
*
|
|
5095
|
+
* Herkunft des Berechnungsmodus
|
|
5091
5096
|
*/
|
|
5092
|
-
|
|
5097
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5093
5098
|
|
|
5094
5099
|
/**
|
|
5095
|
-
*
|
|
5100
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5096
5101
|
*/
|
|
5097
|
-
|
|
5102
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5098
5103
|
|
|
5099
5104
|
/**
|
|
5100
5105
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5194,14 +5199,14 @@ export interface DocumentAddress {
|
|
|
5194
5199
|
postOfficeBox: string;
|
|
5195
5200
|
|
|
5196
5201
|
/**
|
|
5197
|
-
*
|
|
5202
|
+
* Street
|
|
5198
5203
|
*/
|
|
5199
|
-
|
|
5204
|
+
street: string;
|
|
5200
5205
|
|
|
5201
5206
|
/**
|
|
5202
|
-
*
|
|
5207
|
+
* country code IsoAlpha3
|
|
5203
5208
|
*/
|
|
5204
|
-
|
|
5209
|
+
countryCode: string;
|
|
5205
5210
|
|
|
5206
5211
|
/**
|
|
5207
5212
|
* Unique identifier of the Object
|
|
@@ -5409,14 +5414,14 @@ export interface DocumentContractDetail {
|
|
|
5409
5414
|
runtimeToDate: ScriptingDate;
|
|
5410
5415
|
|
|
5411
5416
|
/**
|
|
5412
|
-
*
|
|
5417
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5413
5418
|
*/
|
|
5414
|
-
|
|
5419
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5415
5420
|
|
|
5416
5421
|
/**
|
|
5417
|
-
*
|
|
5422
|
+
* Nächste Fälligkeit
|
|
5418
5423
|
*/
|
|
5419
|
-
|
|
5424
|
+
nextDueDate: ScriptingDate;
|
|
5420
5425
|
|
|
5421
5426
|
/**
|
|
5422
5427
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5667,9 +5672,9 @@ export interface DocumentLine {
|
|
|
5667
5672
|
id: number;
|
|
5668
5673
|
|
|
5669
5674
|
/**
|
|
5670
|
-
*
|
|
5675
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5671
5676
|
*/
|
|
5672
|
-
|
|
5677
|
+
positionOfArticleLine: number;
|
|
5673
5678
|
|
|
5674
5679
|
/**
|
|
5675
5680
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5677,19 +5682,19 @@ export interface DocumentLine {
|
|
|
5677
5682
|
basePrice: number;
|
|
5678
5683
|
|
|
5679
5684
|
/**
|
|
5680
|
-
*
|
|
5685
|
+
* Serientyp
|
|
5681
5686
|
*/
|
|
5682
|
-
|
|
5687
|
+
serialType: ArticleSerialType;
|
|
5683
5688
|
|
|
5684
5689
|
/**
|
|
5685
|
-
*
|
|
5690
|
+
* Steuerschema
|
|
5686
5691
|
*/
|
|
5687
|
-
|
|
5692
|
+
taxSchemaRef: ApiObjectReference;
|
|
5688
5693
|
|
|
5689
5694
|
/**
|
|
5690
|
-
*
|
|
5695
|
+
* Preiseinheit
|
|
5691
5696
|
*/
|
|
5692
|
-
|
|
5697
|
+
priceUnit: number;
|
|
5693
5698
|
|
|
5694
5699
|
/**
|
|
5695
5700
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5797,14 +5802,14 @@ export interface DocumentLine {
|
|
|
5797
5802
|
netWeightUnit: UnitTypeReference;
|
|
5798
5803
|
|
|
5799
5804
|
/**
|
|
5800
|
-
*
|
|
5805
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5801
5806
|
*/
|
|
5802
|
-
|
|
5807
|
+
baseSalesValueNet: number;
|
|
5803
5808
|
|
|
5804
5809
|
/**
|
|
5805
|
-
*
|
|
5810
|
+
* Vertragsinformationen
|
|
5806
5811
|
*/
|
|
5807
|
-
|
|
5812
|
+
contractDetail: DocumentContractDetail;
|
|
5808
5813
|
|
|
5809
5814
|
/**
|
|
5810
5815
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
@@ -5892,14 +5897,14 @@ export interface DocumentLine {
|
|
|
5892
5897
|
commissions: Array<DocumentLineCommission>;
|
|
5893
5898
|
|
|
5894
5899
|
/**
|
|
5895
|
-
*
|
|
5900
|
+
* Gesamtpreis Position in Basiswährung
|
|
5896
5901
|
*/
|
|
5897
|
-
|
|
5902
|
+
baseTotalLinePrice: number;
|
|
5898
5903
|
|
|
5899
5904
|
/**
|
|
5900
|
-
*
|
|
5905
|
+
* Positionstyp
|
|
5901
5906
|
*/
|
|
5902
|
-
|
|
5907
|
+
lineType: DocumentLineType;
|
|
5903
5908
|
|
|
5904
5909
|
/**
|
|
5905
5910
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5997,14 +6002,14 @@ export interface DocumentLine {
|
|
|
5997
6002
|
description: string;
|
|
5998
6003
|
|
|
5999
6004
|
/**
|
|
6000
|
-
*
|
|
6005
|
+
* Preisherkunft
|
|
6001
6006
|
*/
|
|
6002
|
-
|
|
6007
|
+
priceOrigin: ProductPriceOrigin;
|
|
6003
6008
|
|
|
6004
6009
|
/**
|
|
6005
|
-
*
|
|
6010
|
+
* Referenz zum Lager
|
|
6006
6011
|
*/
|
|
6007
|
-
|
|
6012
|
+
storage: ApiObjectReference;
|
|
6008
6013
|
|
|
6009
6014
|
/**
|
|
6010
6015
|
* Rohertragsermittlung
|
|
@@ -6092,14 +6097,14 @@ export interface DocumentLine {
|
|
|
6092
6097
|
grossWeight: number;
|
|
6093
6098
|
|
|
6094
6099
|
/**
|
|
6095
|
-
*
|
|
6100
|
+
* Externe Artikelbeschreibung
|
|
6096
6101
|
*/
|
|
6097
|
-
|
|
6102
|
+
externalArticleDescription: string;
|
|
6098
6103
|
|
|
6099
6104
|
/**
|
|
6100
|
-
*
|
|
6105
|
+
* angewendete Preisänderungen
|
|
6101
6106
|
*/
|
|
6102
|
-
|
|
6107
|
+
priceModifiers: Array<DocumentPriceModifier>;
|
|
6103
6108
|
|
|
6104
6109
|
/**
|
|
6105
6110
|
* Enthält die Ergebnisse von vorherigen Entscheidungen des Benutzers zu dieser DocumentLine
|
|
@@ -6584,14 +6589,14 @@ export interface DocumentLinePosDetail {
|
|
|
6584
6589
|
deletable: boolean;
|
|
6585
6590
|
|
|
6586
6591
|
/**
|
|
6587
|
-
*
|
|
6592
|
+
* Typ der Einlage/Ausgabe
|
|
6588
6593
|
*/
|
|
6589
|
-
|
|
6594
|
+
depositExpenseTypeId: number;
|
|
6590
6595
|
|
|
6591
6596
|
/**
|
|
6592
|
-
*
|
|
6597
|
+
* Status der externen Zahlung
|
|
6593
6598
|
*/
|
|
6594
|
-
|
|
6599
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6595
6600
|
|
|
6596
6601
|
/**
|
|
6597
6602
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6629,14 +6634,14 @@ export interface DocumentLinePosDetail {
|
|
|
6629
6634
|
balanceBeforeWithdrawal: number;
|
|
6630
6635
|
|
|
6631
6636
|
/**
|
|
6632
|
-
*
|
|
6637
|
+
* Typ der Position
|
|
6633
6638
|
*/
|
|
6634
|
-
|
|
6639
|
+
posLineType: PosLineType;
|
|
6635
6640
|
|
|
6636
6641
|
/**
|
|
6637
|
-
*
|
|
6642
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6638
6643
|
*/
|
|
6639
|
-
|
|
6644
|
+
externalPaymentId: string;
|
|
6640
6645
|
|
|
6641
6646
|
/**
|
|
6642
6647
|
* Unique identifier of the Object
|
|
@@ -6750,14 +6755,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6750
6755
|
customerShareOnReduction: number;
|
|
6751
6756
|
|
|
6752
6757
|
/**
|
|
6753
|
-
*
|
|
6758
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6754
6759
|
*/
|
|
6755
|
-
|
|
6760
|
+
waitForReturnBeforeExchange: boolean;
|
|
6756
6761
|
|
|
6757
6762
|
/**
|
|
6758
|
-
*
|
|
6763
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6759
6764
|
*/
|
|
6760
|
-
|
|
6765
|
+
deliveryTermRef: ApiObjectReference;
|
|
6761
6766
|
|
|
6762
6767
|
/**
|
|
6763
6768
|
* Referenz auf Retourengrund
|
|
@@ -6937,18 +6942,18 @@ export interface DocumentPosPayment {
|
|
|
6937
6942
|
/**
|
|
6938
6943
|
* Version Identifier for this Object (for PUT)
|
|
6939
6944
|
*/
|
|
6940
|
-
version: number;
|
|
6941
|
-
|
|
6942
|
-
/**
|
|
6943
|
-
* Zahlungsart
|
|
6944
|
-
*/
|
|
6945
|
-
posPaymentMethodRef: ApiObjectReference;
|
|
6945
|
+
version: number;
|
|
6946
6946
|
|
|
6947
6947
|
/**
|
|
6948
6948
|
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6949
6949
|
*/
|
|
6950
6950
|
withdrawalAmount: number;
|
|
6951
6951
|
|
|
6952
|
+
/**
|
|
6953
|
+
* Zahlungsart
|
|
6954
|
+
*/
|
|
6955
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6956
|
+
|
|
6952
6957
|
/**
|
|
6953
6958
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
6954
6959
|
*/
|
|
@@ -6960,14 +6965,14 @@ export interface DocumentPosPayment {
|
|
|
6960
6965
|
balanceBeforeWithdrawal: number;
|
|
6961
6966
|
|
|
6962
6967
|
/**
|
|
6963
|
-
*
|
|
6968
|
+
* Typ der Position
|
|
6964
6969
|
*/
|
|
6965
|
-
|
|
6970
|
+
posLineType: PosLineType;
|
|
6966
6971
|
|
|
6967
6972
|
/**
|
|
6968
|
-
*
|
|
6973
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6969
6974
|
*/
|
|
6970
|
-
|
|
6975
|
+
externalPaymentId: string;
|
|
6971
6976
|
|
|
6972
6977
|
/**
|
|
6973
6978
|
* Unique identifier of the Object
|
|
@@ -7126,14 +7131,14 @@ export interface DocumentShippingCost {
|
|
|
7126
7131
|
manualCosts: boolean;
|
|
7127
7132
|
|
|
7128
7133
|
/**
|
|
7129
|
-
*
|
|
7134
|
+
* Keine Versandkosten (freier Versand)
|
|
7130
7135
|
*/
|
|
7131
|
-
|
|
7136
|
+
freeShipping: boolean;
|
|
7132
7137
|
|
|
7133
7138
|
/**
|
|
7134
|
-
*
|
|
7139
|
+
* Texte
|
|
7135
7140
|
*/
|
|
7136
|
-
|
|
7141
|
+
texts: Array<DocumentText>;
|
|
7137
7142
|
|
|
7138
7143
|
/**
|
|
7139
7144
|
* skontierbar
|
|
@@ -7241,14 +7246,14 @@ export interface DocumentText {
|
|
|
7241
7246
|
transferableIntoSubsequentDocuments: boolean;
|
|
7242
7247
|
|
|
7243
7248
|
/**
|
|
7244
|
-
*
|
|
7249
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7245
7250
|
*/
|
|
7246
|
-
|
|
7251
|
+
deleted: boolean;
|
|
7247
7252
|
|
|
7248
7253
|
/**
|
|
7249
|
-
*
|
|
7254
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7250
7255
|
*/
|
|
7251
|
-
|
|
7256
|
+
textPosition: TextPosition;
|
|
7252
7257
|
|
|
7253
7258
|
/**
|
|
7254
7259
|
* textBaustein Vorlage
|
|
@@ -7358,14 +7363,14 @@ export interface DocumentType {
|
|
|
7358
7363
|
labels: Array<DocumentTypeLabel>;
|
|
7359
7364
|
|
|
7360
7365
|
/**
|
|
7361
|
-
*
|
|
7366
|
+
* Zählerkreis
|
|
7362
7367
|
*/
|
|
7363
|
-
|
|
7368
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7364
7369
|
|
|
7365
7370
|
/**
|
|
7366
|
-
*
|
|
7371
|
+
* nächste Belegnummer
|
|
7367
7372
|
*/
|
|
7368
|
-
|
|
7373
|
+
nextNumber: string;
|
|
7369
7374
|
|
|
7370
7375
|
/**
|
|
7371
7376
|
* Sortierung
|
|
@@ -7951,14 +7956,14 @@ export const enum FabricationOfComponents {
|
|
|
7951
7956
|
export interface FabricationProduceRequest {
|
|
7952
7957
|
|
|
7953
7958
|
/**
|
|
7954
|
-
*
|
|
7959
|
+
* Material automatisch bestätigen
|
|
7955
7960
|
*/
|
|
7956
|
-
|
|
7961
|
+
autoCommitComponents: boolean;
|
|
7957
7962
|
|
|
7958
7963
|
/**
|
|
7959
|
-
*
|
|
7964
|
+
* Zu produzierende Menge
|
|
7960
7965
|
*/
|
|
7961
|
-
|
|
7966
|
+
quantity: number;
|
|
7962
7967
|
|
|
7963
7968
|
/**
|
|
7964
7969
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8012,14 +8017,14 @@ export interface FabricationRevertRequest {
|
|
|
8012
8017
|
quantity: number;
|
|
8013
8018
|
|
|
8014
8019
|
/**
|
|
8015
|
-
*
|
|
8020
|
+
* Material automatisch stornieren
|
|
8016
8021
|
*/
|
|
8017
|
-
|
|
8022
|
+
autoRevertComponents: boolean;
|
|
8018
8023
|
|
|
8019
8024
|
/**
|
|
8020
|
-
*
|
|
8025
|
+
* ID der zu stornierenden Position
|
|
8021
8026
|
*/
|
|
8022
|
-
|
|
8027
|
+
documentLineId: number;
|
|
8023
8028
|
|
|
8024
8029
|
/**
|
|
8025
8030
|
* Zu stornierende Seriennummern
|
|
@@ -8364,14 +8369,14 @@ export interface OpenItem {
|
|
|
8364
8369
|
paymentDueDate: ScriptingDate;
|
|
8365
8370
|
|
|
8366
8371
|
/**
|
|
8367
|
-
* Länderkennzeichen
|
|
8372
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8368
8373
|
*/
|
|
8369
|
-
|
|
8374
|
+
sourceCountryCode: string;
|
|
8370
8375
|
|
|
8371
8376
|
/**
|
|
8372
|
-
* Länderkennzeichen
|
|
8377
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8373
8378
|
*/
|
|
8374
|
-
|
|
8379
|
+
performanceCountryCode: string;
|
|
8375
8380
|
|
|
8376
8381
|
/**
|
|
8377
8382
|
* Valutadatum schreibgeschützt
|
|
@@ -8419,14 +8424,14 @@ export interface OpenItem {
|
|
|
8419
8424
|
depositPaymentAmount: number;
|
|
8420
8425
|
|
|
8421
8426
|
/**
|
|
8422
|
-
*
|
|
8427
|
+
* free payments
|
|
8423
8428
|
*/
|
|
8424
|
-
|
|
8429
|
+
records: Array<OpenItemRecord>;
|
|
8425
8430
|
|
|
8426
8431
|
/**
|
|
8427
|
-
*
|
|
8432
|
+
* Verwendungszweck
|
|
8428
8433
|
*/
|
|
8429
|
-
|
|
8434
|
+
purpose: string;
|
|
8430
8435
|
|
|
8431
8436
|
/**
|
|
8432
8437
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8479,14 +8484,14 @@ export interface OpenItem {
|
|
|
8479
8484
|
sumFee: number;
|
|
8480
8485
|
|
|
8481
8486
|
/**
|
|
8482
|
-
*
|
|
8487
|
+
* The full amount of the payment
|
|
8483
8488
|
*/
|
|
8484
|
-
|
|
8489
|
+
fullPaymentAmount: number;
|
|
8485
8490
|
|
|
8486
8491
|
/**
|
|
8487
|
-
*
|
|
8492
|
+
* Zahlungsplan
|
|
8488
8493
|
*/
|
|
8489
|
-
|
|
8494
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8490
8495
|
|
|
8491
8496
|
/**
|
|
8492
8497
|
* Zahlungssperre
|
|
@@ -8499,14 +8504,14 @@ export interface OpenItem {
|
|
|
8499
8504
|
originalPaymentDueDate: ScriptingDate;
|
|
8500
8505
|
|
|
8501
8506
|
/**
|
|
8502
|
-
*
|
|
8507
|
+
* Valutadatum
|
|
8503
8508
|
*/
|
|
8504
|
-
|
|
8509
|
+
valueDate: ScriptingDate;
|
|
8505
8510
|
|
|
8506
8511
|
/**
|
|
8507
|
-
*
|
|
8512
|
+
* whether this open item is balanced, partially paid or open
|
|
8508
8513
|
*/
|
|
8509
|
-
|
|
8514
|
+
balanceState: OpenItemBalanceState;
|
|
8510
8515
|
|
|
8511
8516
|
/**
|
|
8512
8517
|
* Skontobetrag 1
|
|
@@ -8519,14 +8524,14 @@ export interface OpenItem {
|
|
|
8519
8524
|
baseSumDiscount: number;
|
|
8520
8525
|
|
|
8521
8526
|
/**
|
|
8522
|
-
*
|
|
8527
|
+
* Zahlungsvorlage
|
|
8523
8528
|
*/
|
|
8524
|
-
|
|
8529
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8525
8530
|
|
|
8526
8531
|
/**
|
|
8527
|
-
*
|
|
8532
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8528
8533
|
*/
|
|
8529
|
-
|
|
8534
|
+
baseSumDunnings: number;
|
|
8530
8535
|
|
|
8531
8536
|
/**
|
|
8532
8537
|
* Rechnungsbetrag
|
|
@@ -8539,14 +8544,14 @@ export interface OpenItem {
|
|
|
8539
8544
|
taxRateRef: ApiObjectReference;
|
|
8540
8545
|
|
|
8541
8546
|
/**
|
|
8542
|
-
*
|
|
8547
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8543
8548
|
*/
|
|
8544
|
-
|
|
8549
|
+
baseCurrencyCode: string;
|
|
8545
8550
|
|
|
8546
8551
|
/**
|
|
8547
|
-
*
|
|
8552
|
+
* Anzahlungsrechnung
|
|
8548
8553
|
*/
|
|
8549
|
-
|
|
8554
|
+
depositInvoice: ApiObjectReference;
|
|
8550
8555
|
|
|
8551
8556
|
/**
|
|
8552
8557
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8827,14 +8832,14 @@ export interface OpenItemRecord {
|
|
|
8827
8832
|
version: number;
|
|
8828
8833
|
|
|
8829
8834
|
/**
|
|
8830
|
-
*
|
|
8835
|
+
* Buchungsbetrag in Basiswährung
|
|
8831
8836
|
*/
|
|
8832
|
-
|
|
8837
|
+
baseAmount: number;
|
|
8833
8838
|
|
|
8834
8839
|
/**
|
|
8835
|
-
*
|
|
8840
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8836
8841
|
*/
|
|
8837
|
-
|
|
8842
|
+
transactionId: number;
|
|
8838
8843
|
|
|
8839
8844
|
/**
|
|
8840
8845
|
* Abzugsbetrag in Basiswährung
|
|
@@ -9022,14 +9027,14 @@ export interface PaymentMethod {
|
|
|
9022
9027
|
daysToAddForFollowup: number;
|
|
9023
9028
|
|
|
9024
9029
|
/**
|
|
9025
|
-
*
|
|
9030
|
+
* Die Business Transaction
|
|
9026
9031
|
*/
|
|
9027
|
-
|
|
9032
|
+
businessTransaction: ApiObjectReference;
|
|
9028
9033
|
|
|
9029
9034
|
/**
|
|
9030
|
-
*
|
|
9035
|
+
* external Payment Id
|
|
9031
9036
|
*/
|
|
9032
|
-
|
|
9037
|
+
externalPaymentId: string;
|
|
9033
9038
|
|
|
9034
9039
|
/**
|
|
9035
9040
|
* Unique identifier of the Object
|
|
@@ -9123,14 +9128,14 @@ export interface PaymentTerm {
|
|
|
9123
9128
|
printDescription: string;
|
|
9124
9129
|
|
|
9125
9130
|
/**
|
|
9126
|
-
*
|
|
9131
|
+
* for deposit: remaining term
|
|
9127
9132
|
*/
|
|
9128
|
-
|
|
9133
|
+
remainingTermRef: ApiObjectReference;
|
|
9129
9134
|
|
|
9130
9135
|
/**
|
|
9131
|
-
* for
|
|
9136
|
+
* Days for Discount 1
|
|
9132
9137
|
*/
|
|
9133
|
-
|
|
9138
|
+
paymentDays1: number;
|
|
9134
9139
|
|
|
9135
9140
|
/**
|
|
9136
9141
|
* Days for Discount 2
|
|
@@ -9843,6 +9848,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9843
9848
|
*/
|
|
9844
9849
|
maxOrderValue: number;
|
|
9845
9850
|
|
|
9851
|
+
/**
|
|
9852
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9853
|
+
*/
|
|
9854
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9855
|
+
|
|
9846
9856
|
/**
|
|
9847
9857
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9848
9858
|
*/
|
|
@@ -9853,11 +9863,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9853
9863
|
*/
|
|
9854
9864
|
onlyFullDeliverableOrderLines: boolean;
|
|
9855
9865
|
|
|
9856
|
-
/**
|
|
9857
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
9858
|
-
*/
|
|
9859
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9860
|
-
|
|
9861
9866
|
/**
|
|
9862
9867
|
* Selektion über den Bereich vom Belegdatum
|
|
9863
9868
|
*/
|
|
@@ -10025,24 +10030,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10025
10030
|
showShippingFormOnPickingFinish: boolean;
|
|
10026
10031
|
|
|
10027
10032
|
/**
|
|
10028
|
-
*
|
|
10033
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
10029
10034
|
*/
|
|
10030
|
-
|
|
10035
|
+
useDigitalPicklist: boolean;
|
|
10031
10036
|
|
|
10032
10037
|
/**
|
|
10033
|
-
*
|
|
10038
|
+
* Sammelbestätigung erlauben
|
|
10034
10039
|
*/
|
|
10035
|
-
|
|
10040
|
+
allowFullConfirmation: boolean;
|
|
10036
10041
|
|
|
10037
10042
|
/**
|
|
10038
|
-
*
|
|
10043
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10039
10044
|
*/
|
|
10040
|
-
|
|
10045
|
+
printLabelOnScan: boolean;
|
|
10041
10046
|
|
|
10042
10047
|
/**
|
|
10043
|
-
*
|
|
10048
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
10044
10049
|
*/
|
|
10045
|
-
|
|
10050
|
+
allowPickingOfServiceArticles: boolean;
|
|
10046
10051
|
|
|
10047
10052
|
/**
|
|
10048
10053
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10782,14 +10787,14 @@ export const enum RegulationSet {
|
|
|
10782
10787
|
export interface RequestDocument {
|
|
10783
10788
|
|
|
10784
10789
|
/**
|
|
10785
|
-
*
|
|
10790
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10786
10791
|
*/
|
|
10787
|
-
|
|
10792
|
+
incomingGoodsStorageBinId: number;
|
|
10788
10793
|
|
|
10789
10794
|
/**
|
|
10790
|
-
*
|
|
10795
|
+
* Belegdatum
|
|
10791
10796
|
*/
|
|
10792
|
-
|
|
10797
|
+
documentDate: ScriptingDate;
|
|
10793
10798
|
|
|
10794
10799
|
/**
|
|
10795
10800
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10872,14 +10877,14 @@ export interface RequestDocument {
|
|
|
10872
10877
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10873
10878
|
|
|
10874
10879
|
/**
|
|
10875
|
-
*
|
|
10880
|
+
* Die Vertragsdetails
|
|
10876
10881
|
*/
|
|
10877
|
-
|
|
10882
|
+
contractDetail: DocumentContractDetail;
|
|
10878
10883
|
|
|
10879
10884
|
/**
|
|
10880
|
-
*
|
|
10885
|
+
* ID der Kasse (bei POS)
|
|
10881
10886
|
*/
|
|
10882
|
-
|
|
10887
|
+
posRegisterId: number;
|
|
10883
10888
|
|
|
10884
10889
|
/**
|
|
10885
10890
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10902,14 +10907,14 @@ export interface RequestDocument {
|
|
|
10902
10907
|
dropShipping: boolean;
|
|
10903
10908
|
|
|
10904
10909
|
/**
|
|
10905
|
-
*
|
|
10910
|
+
* target document type for document copy
|
|
10906
10911
|
*/
|
|
10907
|
-
|
|
10912
|
+
targetDocumentType: DocumentType;
|
|
10908
10913
|
|
|
10909
10914
|
/**
|
|
10910
|
-
*
|
|
10915
|
+
* reference to the corresponding document in an external system
|
|
10911
10916
|
*/
|
|
10912
|
-
|
|
10917
|
+
externalId: string;
|
|
10913
10918
|
|
|
10914
10919
|
/**
|
|
10915
10920
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10937,14 +10942,14 @@ export interface RequestDocument {
|
|
|
10937
10942
|
texts: Array<DocumentText>;
|
|
10938
10943
|
|
|
10939
10944
|
/**
|
|
10940
|
-
*
|
|
10945
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10941
10946
|
*/
|
|
10942
|
-
|
|
10947
|
+
processedByPicklistProcessing: boolean;
|
|
10943
10948
|
|
|
10944
10949
|
/**
|
|
10945
|
-
*
|
|
10950
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10946
10951
|
*/
|
|
10947
|
-
|
|
10952
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10948
10953
|
|
|
10949
10954
|
/**
|
|
10950
10955
|
* Die Rabatte des Beleges
|
|
@@ -10980,14 +10985,14 @@ export interface RequestDocumentLine {
|
|
|
10980
10985
|
description: string;
|
|
10981
10986
|
|
|
10982
10987
|
/**
|
|
10983
|
-
*
|
|
10988
|
+
* Herkunft des Preises
|
|
10984
10989
|
*/
|
|
10985
|
-
|
|
10990
|
+
priceOrigin: ProductPriceOrigin;
|
|
10986
10991
|
|
|
10987
10992
|
/**
|
|
10988
|
-
*
|
|
10993
|
+
* Quittungsdetails zur Belegposition
|
|
10989
10994
|
*/
|
|
10990
|
-
|
|
10995
|
+
posDetail: DocumentLinePosDetail;
|
|
10991
10996
|
|
|
10992
10997
|
/**
|
|
10993
10998
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -11005,14 +11010,14 @@ export interface RequestDocumentLine {
|
|
|
11005
11010
|
commissions: Array<RequestDocumentLineCommission>;
|
|
11006
11011
|
|
|
11007
11012
|
/**
|
|
11008
|
-
*
|
|
11013
|
+
* FiBu-Angaben
|
|
11009
11014
|
*/
|
|
11010
|
-
|
|
11015
|
+
financeBooking: DocumentFinanceBooking;
|
|
11011
11016
|
|
|
11012
11017
|
/**
|
|
11013
|
-
*
|
|
11018
|
+
* Typ dieser Position
|
|
11014
11019
|
*/
|
|
11015
|
-
|
|
11020
|
+
lineType: DocumentLineType;
|
|
11016
11021
|
|
|
11017
11022
|
/**
|
|
11018
11023
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -11080,14 +11085,14 @@ export interface RequestDocumentLine {
|
|
|
11080
11085
|
settledOpenItemComment: string;
|
|
11081
11086
|
|
|
11082
11087
|
/**
|
|
11083
|
-
*
|
|
11088
|
+
* ID der Belegposition im aktuellen Beleg
|
|
11084
11089
|
*/
|
|
11085
|
-
|
|
11090
|
+
lineId: number;
|
|
11086
11091
|
|
|
11087
11092
|
/**
|
|
11088
|
-
*
|
|
11093
|
+
* Referenz auf die zugehörige Position in einem externen System
|
|
11089
11094
|
*/
|
|
11090
|
-
|
|
11095
|
+
externalId: string;
|
|
11091
11096
|
|
|
11092
11097
|
/**
|
|
11093
11098
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
@@ -11357,14 +11362,14 @@ export interface SalesAgent {
|
|
|
11357
11362
|
taxRateRef: ApiObjectReference;
|
|
11358
11363
|
|
|
11359
11364
|
/**
|
|
11360
|
-
*
|
|
11365
|
+
* reference to the assigned user
|
|
11361
11366
|
*/
|
|
11362
|
-
|
|
11367
|
+
userRef: ApiObjectReference;
|
|
11363
11368
|
|
|
11364
11369
|
/**
|
|
11365
|
-
*
|
|
11370
|
+
* country code performance country IsoAlpha3
|
|
11366
11371
|
*/
|
|
11367
|
-
|
|
11372
|
+
performanceCountryCode: string;
|
|
11368
11373
|
|
|
11369
11374
|
/**
|
|
11370
11375
|
* billing type
|
|
@@ -12223,14 +12228,14 @@ export const enum StockJournalFactor {
|
|
|
12223
12228
|
export interface StockMovementManualApi {
|
|
12224
12229
|
|
|
12225
12230
|
/**
|
|
12226
|
-
*
|
|
12231
|
+
* Preiseinheit, auf die sich der EK bezieht
|
|
12227
12232
|
*/
|
|
12228
|
-
|
|
12233
|
+
priceUnit: number;
|
|
12229
12234
|
|
|
12230
12235
|
/**
|
|
12231
|
-
*
|
|
12236
|
+
* Bemerkung
|
|
12232
12237
|
*/
|
|
12233
|
-
|
|
12238
|
+
note: string;
|
|
12234
12239
|
|
|
12235
12240
|
/**
|
|
12236
12241
|
* Menge
|
|
@@ -12518,6 +12523,11 @@ export interface Supplier {
|
|
|
12518
12523
|
*/
|
|
12519
12524
|
info: MetaInfo;
|
|
12520
12525
|
|
|
12526
|
+
/**
|
|
12527
|
+
* tax able or tax free
|
|
12528
|
+
*/
|
|
12529
|
+
taxable: boolean;
|
|
12530
|
+
|
|
12521
12531
|
/**
|
|
12522
12532
|
* reference to the delivery method
|
|
12523
12533
|
*/
|
|
@@ -12528,11 +12538,6 @@ export interface Supplier {
|
|
|
12528
12538
|
*/
|
|
12529
12539
|
supplierGroupRef: ApiObjectReference;
|
|
12530
12540
|
|
|
12531
|
-
/**
|
|
12532
|
-
* tax able or tax free
|
|
12533
|
-
*/
|
|
12534
|
-
taxable: boolean;
|
|
12535
|
-
|
|
12536
12541
|
/**
|
|
12537
12542
|
* Mahnen?
|
|
12538
12543
|
*/
|
|
@@ -12656,6 +12661,7 @@ export const enum TagType {
|
|
|
12656
12661
|
COMMON = 'COMMON',
|
|
12657
12662
|
ACCOUNT = 'ACCOUNT',
|
|
12658
12663
|
PRODUCT = 'PRODUCT',
|
|
12664
|
+
ASSET = 'ASSET',
|
|
12659
12665
|
DOCUMENT = 'DOCUMENT',
|
|
12660
12666
|
OPEN_ITEM = 'OPEN_ITEM',
|
|
12661
12667
|
CRM_COMMON = 'CRM_COMMON',
|
|
@@ -13030,14 +13036,14 @@ export interface User {
|
|
|
13030
13036
|
roles: Array<ApiObjectReference>;
|
|
13031
13037
|
|
|
13032
13038
|
/**
|
|
13033
|
-
*
|
|
13039
|
+
* Gruppen
|
|
13034
13040
|
*/
|
|
13035
|
-
|
|
13041
|
+
groups: Array<ApiObjectReference>;
|
|
13036
13042
|
|
|
13037
13043
|
/**
|
|
13038
|
-
*
|
|
13044
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
13039
13045
|
*/
|
|
13040
|
-
|
|
13046
|
+
referencedCustomerUserId: number;
|
|
13041
13047
|
|
|
13042
13048
|
/**
|
|
13043
13049
|
* Is the user active?
|
|
@@ -13060,14 +13066,14 @@ export interface User {
|
|
|
13060
13066
|
version: number;
|
|
13061
13067
|
|
|
13062
13068
|
/**
|
|
13063
|
-
*
|
|
13069
|
+
* first-name
|
|
13064
13070
|
*/
|
|
13065
|
-
|
|
13071
|
+
firstName: string;
|
|
13066
13072
|
|
|
13067
13073
|
/**
|
|
13068
|
-
*
|
|
13074
|
+
* is the email verified
|
|
13069
13075
|
*/
|
|
13070
|
-
|
|
13076
|
+
emailVerified: boolean;
|
|
13071
13077
|
|
|
13072
13078
|
/**
|
|
13073
13079
|
* email-address
|
|
@@ -13146,14 +13152,14 @@ export interface VariantAttributeListing {
|
|
|
13146
13152
|
salesChannelRef: ApiObjectReference;
|
|
13147
13153
|
|
|
13148
13154
|
/**
|
|
13149
|
-
*
|
|
13155
|
+
* Variantenattribut
|
|
13150
13156
|
*/
|
|
13151
|
-
|
|
13157
|
+
variantAttributeRef: ApiObjectReference;
|
|
13152
13158
|
|
|
13153
13159
|
/**
|
|
13154
|
-
*
|
|
13160
|
+
* Freifelder
|
|
13155
13161
|
*/
|
|
13156
|
-
|
|
13162
|
+
custom: EavVariantattributelisting;
|
|
13157
13163
|
|
|
13158
13164
|
/**
|
|
13159
13165
|
* Unique identifier of the Object
|