@vario-software/types 2026.33.2 → 2026.33.3
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 +47 -47
- package/scripting/types.d.ts +338 -338
package/scripting/types.d.ts
CHANGED
|
@@ -143,26 +143,26 @@ export interface Account {
|
|
|
143
143
|
*/
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
|
-
/**
|
|
147
|
-
* Kostenstelle
|
|
148
|
-
*/
|
|
149
|
-
costCenter: string;
|
|
150
|
-
|
|
151
146
|
/**
|
|
152
147
|
* Summe Forderungen
|
|
153
148
|
*/
|
|
154
149
|
receivablesSum: number;
|
|
155
150
|
|
|
156
151
|
/**
|
|
157
|
-
*
|
|
152
|
+
* Kostenstelle
|
|
158
153
|
*/
|
|
159
|
-
|
|
154
|
+
costCenter: string;
|
|
160
155
|
|
|
161
156
|
/**
|
|
162
157
|
* companyLegal for this account
|
|
163
158
|
*/
|
|
164
159
|
companyLegalRef: ApiCreatableReference;
|
|
165
160
|
|
|
161
|
+
/**
|
|
162
|
+
* Custom account data
|
|
163
|
+
*/
|
|
164
|
+
custom: EavAccount;
|
|
165
|
+
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
168
168
|
*/
|
|
@@ -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
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* abweichende Zahlungsart
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* Custom data
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
custom: EavAccountaddress;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
taxIdentificationNumber: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Parcel station
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
parcelStation: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Additional address line2
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
additionalAddressLine2: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* abweichende Zahlungsbedingungen
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* Contacts
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
contacts: Array<Contact>;
|
|
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
|
+
* origin type
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
originType: AccountBankdetail$OriginType;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* Is default bank?
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
defaultBank: boolean;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* Default contacts
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* First name
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
firstName: string;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1015,20 +1015,25 @@ export interface Article {
|
|
|
1015
1015
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* Product custom data
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
listingCustom: EavArticleListing;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* is this product purchasable
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
purchasable: boolean;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
+
/**
|
|
1033
|
+
* Durchschnittl. EKP (Startwert)
|
|
1034
|
+
*/
|
|
1035
|
+
initialAvgPurchasePrice: number;
|
|
1036
|
+
|
|
1032
1037
|
/**
|
|
1033
1038
|
* is this product sellable without any quantity at the stock
|
|
1034
1039
|
*/
|
|
@@ -1039,11 +1044,6 @@ export interface Article {
|
|
|
1039
1044
|
*/
|
|
1040
1045
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1041
1046
|
|
|
1042
|
-
/**
|
|
1043
|
-
* Durchschnittl. EKP (Startwert)
|
|
1044
|
-
*/
|
|
1045
|
-
initialAvgPurchasePrice: number;
|
|
1046
|
-
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Arbeitseinheit in Minuten
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
workUnitInMinutes: number;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Country code
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1285,9 +1285,9 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Vorgabe Herstellungskosten
|
|
1289
1289
|
*/
|
|
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
|
|
@@ -1295,9 +1295,9 @@ export interface Article {
|
|
|
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)
|
|
@@ -1370,14 +1370,14 @@ export interface Article {
|
|
|
1370
1370
|
custom: EavArticle;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
|
-
*
|
|
1373
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1374
1374
|
*/
|
|
1375
|
-
|
|
1375
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1376
1376
|
|
|
1377
1377
|
/**
|
|
1378
|
-
*
|
|
1378
|
+
* Art des Haltbarkeitsdatums
|
|
1379
1379
|
*/
|
|
1380
|
-
|
|
1380
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Hersteller
|
|
@@ -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 {
|
|
@@ -1654,14 +1654,14 @@ export interface ArticleCustomer {
|
|
|
1654
1654
|
articleNumber: string;
|
|
1655
1655
|
|
|
1656
1656
|
/**
|
|
1657
|
-
*
|
|
1657
|
+
* Art der Preisermittlung
|
|
1658
1658
|
*/
|
|
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)
|
|
@@ -1741,14 +1741,14 @@ export interface ArticleListing {
|
|
|
1741
1741
|
identifiers: WithDefaults<List<ArticleIdentifier>>;
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
|
-
*
|
|
1744
|
+
* custom data
|
|
1745
1745
|
*/
|
|
1746
|
-
|
|
1746
|
+
custom: EavArticleListing;
|
|
1747
1747
|
|
|
1748
1748
|
/**
|
|
1749
|
-
*
|
|
1749
|
+
* is this product sellable without any quantity at the stock
|
|
1750
1750
|
*/
|
|
1751
|
-
|
|
1751
|
+
sellableWithoutStock: boolean;
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
1754
|
* description custom data
|
|
@@ -2157,14 +2157,14 @@ export interface ArticleSupplier {
|
|
|
2157
2157
|
info: MetaInfo;
|
|
2158
2158
|
|
|
2159
2159
|
/**
|
|
2160
|
-
*
|
|
2160
|
+
* Referenced Article name
|
|
2161
2161
|
*/
|
|
2162
|
-
|
|
2162
|
+
articleName: string;
|
|
2163
2163
|
|
|
2164
2164
|
/**
|
|
2165
|
-
*
|
|
2165
|
+
* Verpackungseinheit
|
|
2166
2166
|
*/
|
|
2167
|
-
|
|
2167
|
+
packagingUnit: number;
|
|
2168
2168
|
|
|
2169
2169
|
/**
|
|
2170
2170
|
* Lieferanten-Preise
|
|
@@ -2211,6 +2211,11 @@ export interface ArticleSupplier {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
defaultNetPrice: number;
|
|
2213
2213
|
|
|
2214
|
+
/**
|
|
2215
|
+
* Referenced Supplier-Account
|
|
2216
|
+
*/
|
|
2217
|
+
accountId: number;
|
|
2218
|
+
|
|
2214
2219
|
/**
|
|
2215
2220
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2216
2221
|
*/
|
|
@@ -2221,11 +2226,6 @@ export interface ArticleSupplier {
|
|
|
2221
2226
|
*/
|
|
2222
2227
|
purchaseUnit: number;
|
|
2223
2228
|
|
|
2224
|
-
/**
|
|
2225
|
-
* Referenced Supplier-Account
|
|
2226
|
-
*/
|
|
2227
|
-
accountId: number;
|
|
2228
|
-
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2231
2231
|
*/
|
|
@@ -2293,14 +2293,14 @@ export interface Asset {
|
|
|
2293
2293
|
custom: EavAsset;
|
|
2294
2294
|
|
|
2295
2295
|
/**
|
|
2296
|
-
*
|
|
2296
|
+
* active
|
|
2297
2297
|
*/
|
|
2298
|
-
|
|
2298
|
+
active: boolean;
|
|
2299
2299
|
|
|
2300
2300
|
/**
|
|
2301
|
-
*
|
|
2301
|
+
* Artikel
|
|
2302
2302
|
*/
|
|
2303
|
-
|
|
2303
|
+
articleRef: ApiObjectReference;
|
|
2304
2304
|
|
|
2305
2305
|
/**
|
|
2306
2306
|
* Ende Garantie
|
|
@@ -3477,14 +3477,14 @@ export const enum CrmReferenceType {
|
|
|
3477
3477
|
export interface CrmReminder {
|
|
3478
3478
|
|
|
3479
3479
|
/**
|
|
3480
|
-
*
|
|
3480
|
+
* Notiz zur Erinnerung
|
|
3481
3481
|
*/
|
|
3482
|
-
|
|
3482
|
+
note: string;
|
|
3483
3483
|
|
|
3484
3484
|
/**
|
|
3485
|
-
*
|
|
3485
|
+
* ID des CRM Objekts
|
|
3486
3486
|
*/
|
|
3487
|
-
|
|
3487
|
+
crmId: number;
|
|
3488
3488
|
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Wer soll erinnert werden
|
|
@@ -3631,14 +3631,14 @@ export interface CrmSubType {
|
|
|
3631
3631
|
export interface CrmTask {
|
|
3632
3632
|
|
|
3633
3633
|
/**
|
|
3634
|
-
*
|
|
3634
|
+
* Liste von Erinnerungen
|
|
3635
3635
|
*/
|
|
3636
|
-
|
|
3636
|
+
reminders: Array<CrmReminder>;
|
|
3637
3637
|
|
|
3638
3638
|
/**
|
|
3639
|
-
*
|
|
3639
|
+
* Angebot
|
|
3640
3640
|
*/
|
|
3641
|
-
|
|
3641
|
+
customerOfferRef: DocumentRef;
|
|
3642
3642
|
|
|
3643
3643
|
/**
|
|
3644
3644
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3836,14 +3836,14 @@ export interface CrmTask {
|
|
|
3836
3836
|
parentRefs: Array<CrmObjectRef>;
|
|
3837
3837
|
|
|
3838
3838
|
/**
|
|
3839
|
-
*
|
|
3839
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3840
3840
|
*/
|
|
3841
|
-
|
|
3841
|
+
externalRecordedTimes: number;
|
|
3842
3842
|
|
|
3843
3843
|
/**
|
|
3844
|
-
*
|
|
3844
|
+
* Beauftragte Zeit in Sekunden
|
|
3845
3845
|
*/
|
|
3846
|
-
|
|
3846
|
+
effortCommissioned: number;
|
|
3847
3847
|
|
|
3848
3848
|
/**
|
|
3849
3849
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3881,14 +3881,14 @@ export interface CrmTask {
|
|
|
3881
3881
|
blocksTaskRefs: Array<ApiObjectReference>;
|
|
3882
3882
|
|
|
3883
3883
|
/**
|
|
3884
|
-
*
|
|
3884
|
+
* Soll die Aufgabe veröffentlicht werden?
|
|
3885
3885
|
*/
|
|
3886
|
-
|
|
3886
|
+
publish: boolean;
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
|
-
*
|
|
3889
|
+
* Weitere Teilnehmer vom Auftragnehmer
|
|
3890
3890
|
*/
|
|
3891
|
-
|
|
3891
|
+
additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
|
|
3892
3892
|
|
|
3893
3893
|
/**
|
|
3894
3894
|
* Fortschritt in Prozent
|
|
@@ -4075,14 +4075,14 @@ export interface Customer {
|
|
|
4075
4075
|
stackProcessingPriority: number;
|
|
4076
4076
|
|
|
4077
4077
|
/**
|
|
4078
|
-
*
|
|
4078
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
4079
4079
|
*/
|
|
4080
|
-
|
|
4080
|
+
collectiveInvoiceManually: boolean;
|
|
4081
4081
|
|
|
4082
4082
|
/**
|
|
4083
|
-
*
|
|
4083
|
+
* reference to product price group
|
|
4084
4084
|
*/
|
|
4085
|
-
|
|
4085
|
+
productPriceGroupRef: ApiObjectReference;
|
|
4086
4086
|
|
|
4087
4087
|
/**
|
|
4088
4088
|
* Unique identifier of the Object
|
|
@@ -4100,14 +4100,14 @@ export interface Customer {
|
|
|
4100
4100
|
info: MetaInfo;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* reference to the delivery method
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* tax able or tax free
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
taxable: boolean;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* active true/false
|
|
@@ -4259,14 +4259,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4259
4259
|
export interface DeliveryMethod {
|
|
4260
4260
|
|
|
4261
4261
|
/**
|
|
4262
|
-
*
|
|
4262
|
+
* E-Mail an Versender übergeben
|
|
4263
4263
|
*/
|
|
4264
|
-
|
|
4264
|
+
forwardEmailToShipper: boolean;
|
|
4265
4265
|
|
|
4266
4266
|
/**
|
|
4267
|
-
*
|
|
4267
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4268
4268
|
*/
|
|
4269
|
-
|
|
4269
|
+
splitIntoNewDocument: boolean;
|
|
4270
4270
|
|
|
4271
4271
|
/**
|
|
4272
4272
|
* Min. Gewicht pro Paket
|
|
@@ -4397,14 +4397,14 @@ export interface DeliveryTerm {
|
|
|
4397
4397
|
label: string;
|
|
4398
4398
|
|
|
4399
4399
|
/**
|
|
4400
|
-
*
|
|
4400
|
+
* Sprache des Accounts
|
|
4401
4401
|
*/
|
|
4402
|
-
|
|
4402
|
+
languageCode: string;
|
|
4403
4403
|
|
|
4404
4404
|
/**
|
|
4405
|
-
*
|
|
4405
|
+
* information, when the shipping charges should be calculated
|
|
4406
4406
|
*/
|
|
4407
|
-
|
|
4407
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4408
4408
|
|
|
4409
4409
|
/**
|
|
4410
4410
|
* calculate shipping charges per parcel
|
|
@@ -4417,14 +4417,14 @@ export interface DeliveryTerm {
|
|
|
4417
4417
|
version: number;
|
|
4418
4418
|
|
|
4419
4419
|
/**
|
|
4420
|
-
*
|
|
4420
|
+
* information, how the shipping charges should be calculated
|
|
4421
4421
|
*/
|
|
4422
|
-
|
|
4422
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4423
4423
|
|
|
4424
4424
|
/**
|
|
4425
|
-
*
|
|
4425
|
+
* translations
|
|
4426
4426
|
*/
|
|
4427
|
-
|
|
4427
|
+
translations: Array<DocumentTypeTerm>;
|
|
4428
4428
|
|
|
4429
4429
|
/**
|
|
4430
4430
|
* Lieferarten
|
|
@@ -4625,14 +4625,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4625
4625
|
accountId: number;
|
|
4626
4626
|
|
|
4627
4627
|
/**
|
|
4628
|
-
* Länderkennzeichen
|
|
4628
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4629
4629
|
*/
|
|
4630
|
-
|
|
4630
|
+
performanceCountryCode: string;
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
|
4633
|
-
* Länderkennzeichen
|
|
4633
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4634
4634
|
*/
|
|
4635
|
-
|
|
4635
|
+
sourceCountryCode: string;
|
|
4636
4636
|
|
|
4637
4637
|
/**
|
|
4638
4638
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4680,14 +4680,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4680
4680
|
supplierNumber: string;
|
|
4681
4681
|
|
|
4682
4682
|
/**
|
|
4683
|
-
*
|
|
4683
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4684
4684
|
*/
|
|
4685
|
-
|
|
4685
|
+
deliveryApproved: boolean;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Gesamtpreis brutto
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
totalGrossPrice: number;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
4693
|
* Kassen-Zahlungspositionen
|
|
@@ -4867,14 +4867,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4867
4867
|
dropShipping: boolean;
|
|
4868
4868
|
|
|
4869
4869
|
/**
|
|
4870
|
-
*
|
|
4870
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4871
4871
|
*/
|
|
4872
|
-
|
|
4872
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4873
4873
|
|
|
4874
4874
|
/**
|
|
4875
|
-
*
|
|
4875
|
+
* Gesamtpreis netto
|
|
4876
4876
|
*/
|
|
4877
|
-
|
|
4877
|
+
totalNetPrice: number;
|
|
4878
4878
|
|
|
4879
4879
|
/**
|
|
4880
4880
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -5001,6 +5001,11 @@ true wenn die Quittung bezahlt ist
|
|
|
5001
5001
|
*/
|
|
5002
5002
|
posReceiptChangeAmount: number;
|
|
5003
5003
|
|
|
5004
|
+
/**
|
|
5005
|
+
* Referenz auf Lieferbedingung
|
|
5006
|
+
*/
|
|
5007
|
+
deliveryTermRef: ApiObjectReference;
|
|
5008
|
+
|
|
5004
5009
|
/**
|
|
5005
5010
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5006
5011
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -5008,11 +5013,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5008
5013
|
*/
|
|
5009
5014
|
posReceiptBalanced: boolean;
|
|
5010
5015
|
|
|
5011
|
-
/**
|
|
5012
|
-
* Referenz auf Lieferbedingung
|
|
5013
|
-
*/
|
|
5014
|
-
deliveryTermRef: ApiObjectReference;
|
|
5015
|
-
|
|
5016
5016
|
/**
|
|
5017
5017
|
* Gesamtbruttogewicht
|
|
5018
5018
|
*/
|
|
@@ -5033,25 +5033,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5033
5033
|
*/
|
|
5034
5034
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
5035
5035
|
|
|
5036
|
-
/**
|
|
5037
|
-
* Rechnungsadresse
|
|
5038
|
-
*/
|
|
5039
|
-
billingAddress: DocumentAddress;
|
|
5040
|
-
|
|
5041
5036
|
/**
|
|
5042
5037
|
* Status der USt-ID-Prüfung
|
|
5043
5038
|
*/
|
|
5044
5039
|
taxIdVerificationState: TaxIdVerificationState;
|
|
5045
5040
|
|
|
5046
5041
|
/**
|
|
5047
|
-
*
|
|
5042
|
+
* Rechnungsadresse
|
|
5048
5043
|
*/
|
|
5049
|
-
|
|
5044
|
+
billingAddress: DocumentAddress;
|
|
5050
5045
|
|
|
5051
5046
|
/**
|
|
5052
5047
|
* Report-Gruppe, falls vom Standard abweichend
|
|
5053
5048
|
*/
|
|
5054
5049
|
reportGroupRef: ApiObjectReference;
|
|
5050
|
+
|
|
5051
|
+
/**
|
|
5052
|
+
* Bestellt durch Ansprechpartner
|
|
5053
|
+
*/
|
|
5054
|
+
orderedByPersonRef: ApiObjectReference;
|
|
5055
5055
|
}
|
|
5056
5056
|
|
|
5057
5057
|
export interface DocumentAdditionalInfo {
|
|
@@ -5189,14 +5189,14 @@ export interface DocumentAddress {
|
|
|
5189
5189
|
postOfficeBox: string;
|
|
5190
5190
|
|
|
5191
5191
|
/**
|
|
5192
|
-
*
|
|
5192
|
+
* Street
|
|
5193
5193
|
*/
|
|
5194
|
-
|
|
5194
|
+
street: string;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* country code IsoAlpha3
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
countryCode: string;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
5202
|
* Unique identifier of the Object
|
|
@@ -5254,14 +5254,14 @@ export interface DocumentAddress {
|
|
|
5254
5254
|
additionalAddressLine2: string;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Lieferbedingungen
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
deliveryTermRef: ApiObjectReference;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Street address number
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
streetAddressNumber: string;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
5267
|
* address line 3
|
|
@@ -5404,14 +5404,14 @@ export interface DocumentContractDetail {
|
|
|
5404
5404
|
runtimeToDate: ScriptingDate;
|
|
5405
5405
|
|
|
5406
5406
|
/**
|
|
5407
|
-
*
|
|
5407
|
+
* Nächste Fälligkeit
|
|
5408
5408
|
*/
|
|
5409
|
-
|
|
5409
|
+
nextDueDate: ScriptingDate;
|
|
5410
5410
|
|
|
5411
5411
|
/**
|
|
5412
|
-
*
|
|
5412
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5413
5413
|
*/
|
|
5414
|
-
|
|
5414
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5415
5415
|
|
|
5416
5416
|
/**
|
|
5417
5417
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5612,14 +5612,14 @@ export interface DocumentLine {
|
|
|
5612
5612
|
number: string;
|
|
5613
5613
|
|
|
5614
5614
|
/**
|
|
5615
|
-
*
|
|
5615
|
+
* Gesamtbruttogewicht
|
|
5616
5616
|
*/
|
|
5617
|
-
|
|
5617
|
+
totalGrossWeight: number;
|
|
5618
5618
|
|
|
5619
5619
|
/**
|
|
5620
|
-
*
|
|
5620
|
+
* Referenz zur Kundenauftragszeile
|
|
5621
5621
|
*/
|
|
5622
|
-
|
|
5622
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5623
5623
|
|
|
5624
5624
|
/**
|
|
5625
5625
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5662,9 +5662,9 @@ export interface DocumentLine {
|
|
|
5662
5662
|
id: number;
|
|
5663
5663
|
|
|
5664
5664
|
/**
|
|
5665
|
-
*
|
|
5665
|
+
* Serientyp
|
|
5666
5666
|
*/
|
|
5667
|
-
|
|
5667
|
+
serialType: ArticleSerialType;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
5670
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -5672,19 +5672,19 @@ export interface DocumentLine {
|
|
|
5672
5672
|
positionOfArticleLine: number;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
|
-
*
|
|
5675
|
+
* Preis pro Einheit in Basiswährung
|
|
5676
5676
|
*/
|
|
5677
|
-
|
|
5677
|
+
basePrice: number;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
|
-
*
|
|
5680
|
+
* Preiseinheit
|
|
5681
5681
|
*/
|
|
5682
|
-
|
|
5682
|
+
priceUnit: number;
|
|
5683
5683
|
|
|
5684
5684
|
/**
|
|
5685
|
-
*
|
|
5685
|
+
* Steuerschema
|
|
5686
5686
|
*/
|
|
5687
|
-
|
|
5687
|
+
taxSchemaRef: ApiObjectReference;
|
|
5688
5688
|
|
|
5689
5689
|
/**
|
|
5690
5690
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5952,14 +5952,14 @@ export interface DocumentLine {
|
|
|
5952
5952
|
position: number;
|
|
5953
5953
|
|
|
5954
5954
|
/**
|
|
5955
|
-
*
|
|
5955
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5956
5956
|
*/
|
|
5957
|
-
|
|
5957
|
+
recalcLinePriceViaComponents: boolean;
|
|
5958
5958
|
|
|
5959
5959
|
/**
|
|
5960
|
-
*
|
|
5960
|
+
* Buchungen
|
|
5961
5961
|
*/
|
|
5962
|
-
|
|
5962
|
+
bookings: Array<DocumentLineBooking>;
|
|
5963
5963
|
|
|
5964
5964
|
/**
|
|
5965
5965
|
* unit gross Volume in cubic meters
|
|
@@ -6452,11 +6452,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
6452
6452
|
*/
|
|
6453
6453
|
quantityFinished: number;
|
|
6454
6454
|
|
|
6455
|
-
/**
|
|
6456
|
-
* Menge defekt
|
|
6457
|
-
*/
|
|
6458
|
-
quantityDefective: number;
|
|
6459
|
-
|
|
6460
6455
|
/**
|
|
6461
6456
|
* Produzierte Seriennummern
|
|
6462
6457
|
*/
|
|
@@ -6467,6 +6462,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
6467
6462
|
*/
|
|
6468
6463
|
custom: EavFabricationline;
|
|
6469
6464
|
|
|
6465
|
+
/**
|
|
6466
|
+
* Menge defekt
|
|
6467
|
+
*/
|
|
6468
|
+
quantityDefective: number;
|
|
6469
|
+
|
|
6470
6470
|
/**
|
|
6471
6471
|
* Menge produziert
|
|
6472
6472
|
*/
|
|
@@ -6559,14 +6559,14 @@ export interface DocumentLinePosDetail {
|
|
|
6559
6559
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6560
6560
|
|
|
6561
6561
|
/**
|
|
6562
|
-
*
|
|
6562
|
+
* Status der externen Zahlung
|
|
6563
6563
|
*/
|
|
6564
|
-
|
|
6564
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6565
6565
|
|
|
6566
6566
|
/**
|
|
6567
|
-
*
|
|
6567
|
+
* Typ der Einlage/Ausgabe
|
|
6568
6568
|
*/
|
|
6569
|
-
|
|
6569
|
+
depositExpenseTypeId: number;
|
|
6570
6570
|
|
|
6571
6571
|
/**
|
|
6572
6572
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6604,14 +6604,14 @@ export interface DocumentLinePosDetail {
|
|
|
6604
6604
|
balanceBeforeWithdrawal: number;
|
|
6605
6605
|
|
|
6606
6606
|
/**
|
|
6607
|
-
*
|
|
6607
|
+
* Typ der Position
|
|
6608
6608
|
*/
|
|
6609
|
-
|
|
6609
|
+
posLineType: PosLineType;
|
|
6610
6610
|
|
|
6611
6611
|
/**
|
|
6612
|
-
*
|
|
6612
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6613
6613
|
*/
|
|
6614
|
-
|
|
6614
|
+
externalPaymentId: string;
|
|
6615
6615
|
|
|
6616
6616
|
/**
|
|
6617
6617
|
* Unique identifier of the Object
|
|
@@ -6725,14 +6725,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6725
6725
|
customerShareOnReduction: number;
|
|
6726
6726
|
|
|
6727
6727
|
/**
|
|
6728
|
-
*
|
|
6728
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6729
6729
|
*/
|
|
6730
|
-
|
|
6730
|
+
deliveryTermRef: ApiObjectReference;
|
|
6731
6731
|
|
|
6732
6732
|
/**
|
|
6733
|
-
*
|
|
6733
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6734
6734
|
*/
|
|
6735
|
-
|
|
6735
|
+
waitForReturnBeforeExchange: boolean;
|
|
6736
6736
|
|
|
6737
6737
|
/**
|
|
6738
6738
|
* Referenz auf Retourengrund
|
|
@@ -6930,14 +6930,14 @@ export interface DocumentPosPayment {
|
|
|
6930
6930
|
balanceBeforeWithdrawal: number;
|
|
6931
6931
|
|
|
6932
6932
|
/**
|
|
6933
|
-
*
|
|
6933
|
+
* Typ der Position
|
|
6934
6934
|
*/
|
|
6935
|
-
|
|
6935
|
+
posLineType: PosLineType;
|
|
6936
6936
|
|
|
6937
6937
|
/**
|
|
6938
|
-
*
|
|
6938
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6939
6939
|
*/
|
|
6940
|
-
|
|
6940
|
+
externalPaymentId: string;
|
|
6941
6941
|
|
|
6942
6942
|
/**
|
|
6943
6943
|
* Unique identifier of the Object
|
|
@@ -7096,14 +7096,14 @@ export interface DocumentShippingCost {
|
|
|
7096
7096
|
manualCosts: boolean;
|
|
7097
7097
|
|
|
7098
7098
|
/**
|
|
7099
|
-
*
|
|
7099
|
+
* Texte
|
|
7100
7100
|
*/
|
|
7101
|
-
|
|
7101
|
+
texts: Array<DocumentText>;
|
|
7102
7102
|
|
|
7103
7103
|
/**
|
|
7104
|
-
*
|
|
7104
|
+
* Keine Versandkosten (freier Versand)
|
|
7105
7105
|
*/
|
|
7106
|
-
|
|
7106
|
+
freeShipping: boolean;
|
|
7107
7107
|
|
|
7108
7108
|
/**
|
|
7109
7109
|
* skontierbar
|
|
@@ -7328,14 +7328,14 @@ export interface DocumentType {
|
|
|
7328
7328
|
labels: Array<DocumentTypeLabel>;
|
|
7329
7329
|
|
|
7330
7330
|
/**
|
|
7331
|
-
*
|
|
7331
|
+
* Zählerkreis
|
|
7332
7332
|
*/
|
|
7333
|
-
|
|
7333
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7334
7334
|
|
|
7335
7335
|
/**
|
|
7336
|
-
*
|
|
7336
|
+
* nächste Belegnummer
|
|
7337
7337
|
*/
|
|
7338
|
-
|
|
7338
|
+
nextNumber: string;
|
|
7339
7339
|
|
|
7340
7340
|
/**
|
|
7341
7341
|
* Sortierung
|
|
@@ -7982,14 +7982,14 @@ export interface FabricationRevertRequest {
|
|
|
7982
7982
|
quantity: number;
|
|
7983
7983
|
|
|
7984
7984
|
/**
|
|
7985
|
-
*
|
|
7985
|
+
* ID der zu stornierenden Position
|
|
7986
7986
|
*/
|
|
7987
|
-
|
|
7987
|
+
documentLineId: number;
|
|
7988
7988
|
|
|
7989
7989
|
/**
|
|
7990
|
-
*
|
|
7990
|
+
* Material automatisch stornieren
|
|
7991
7991
|
*/
|
|
7992
|
-
|
|
7992
|
+
autoRevertComponents: boolean;
|
|
7993
7993
|
|
|
7994
7994
|
/**
|
|
7995
7995
|
* Zu stornierende Seriennummern
|
|
@@ -8005,14 +8005,14 @@ export interface FabricationRevertRequest {
|
|
|
8005
8005
|
export interface FabricationSerialNumber {
|
|
8006
8006
|
|
|
8007
8007
|
/**
|
|
8008
|
-
*
|
|
8008
|
+
* MHD / Verfallsdatum
|
|
8009
8009
|
*/
|
|
8010
|
-
|
|
8010
|
+
expiryDate: ScriptingDate;
|
|
8011
8011
|
|
|
8012
8012
|
/**
|
|
8013
|
-
*
|
|
8013
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
8014
8014
|
*/
|
|
8015
|
-
|
|
8015
|
+
serialNumberId: number;
|
|
8016
8016
|
|
|
8017
8017
|
/**
|
|
8018
8018
|
* Bemerkung
|
|
@@ -8334,14 +8334,14 @@ export interface OpenItem {
|
|
|
8334
8334
|
paymentDueDate: ScriptingDate;
|
|
8335
8335
|
|
|
8336
8336
|
/**
|
|
8337
|
-
* Länderkennzeichen
|
|
8337
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8338
8338
|
*/
|
|
8339
|
-
|
|
8339
|
+
performanceCountryCode: string;
|
|
8340
8340
|
|
|
8341
8341
|
/**
|
|
8342
|
-
* Länderkennzeichen
|
|
8342
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8343
8343
|
*/
|
|
8344
|
-
|
|
8344
|
+
sourceCountryCode: string;
|
|
8345
8345
|
|
|
8346
8346
|
/**
|
|
8347
8347
|
* Valutadatum schreibgeschützt
|
|
@@ -8389,14 +8389,14 @@ export interface OpenItem {
|
|
|
8389
8389
|
depositPaymentAmount: number;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
|
-
*
|
|
8392
|
+
* Verwendungszweck
|
|
8393
8393
|
*/
|
|
8394
|
-
|
|
8394
|
+
purpose: string;
|
|
8395
8395
|
|
|
8396
8396
|
/**
|
|
8397
|
-
*
|
|
8397
|
+
* free payments
|
|
8398
8398
|
*/
|
|
8399
|
-
|
|
8399
|
+
records: Array<OpenItemRecord>;
|
|
8400
8400
|
|
|
8401
8401
|
/**
|
|
8402
8402
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8449,14 +8449,14 @@ export interface OpenItem {
|
|
|
8449
8449
|
sumFee: number;
|
|
8450
8450
|
|
|
8451
8451
|
/**
|
|
8452
|
-
*
|
|
8452
|
+
* Zahlungsplan
|
|
8453
8453
|
*/
|
|
8454
|
-
|
|
8454
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8455
8455
|
|
|
8456
8456
|
/**
|
|
8457
|
-
*
|
|
8457
|
+
* The full amount of the payment
|
|
8458
8458
|
*/
|
|
8459
|
-
|
|
8459
|
+
fullPaymentAmount: number;
|
|
8460
8460
|
|
|
8461
8461
|
/**
|
|
8462
8462
|
* Zahlungssperre
|
|
@@ -8469,14 +8469,14 @@ export interface OpenItem {
|
|
|
8469
8469
|
originalPaymentDueDate: ScriptingDate;
|
|
8470
8470
|
|
|
8471
8471
|
/**
|
|
8472
|
-
*
|
|
8472
|
+
* whether this open item is balanced, partially paid or open
|
|
8473
8473
|
*/
|
|
8474
|
-
|
|
8474
|
+
balanceState: OpenItemBalanceState;
|
|
8475
8475
|
|
|
8476
8476
|
/**
|
|
8477
|
-
*
|
|
8477
|
+
* Valutadatum
|
|
8478
8478
|
*/
|
|
8479
|
-
|
|
8479
|
+
valueDate: ScriptingDate;
|
|
8480
8480
|
|
|
8481
8481
|
/**
|
|
8482
8482
|
* Skontobetrag 1
|
|
@@ -8489,14 +8489,14 @@ export interface OpenItem {
|
|
|
8489
8489
|
baseSumDiscount: number;
|
|
8490
8490
|
|
|
8491
8491
|
/**
|
|
8492
|
-
*
|
|
8492
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8493
8493
|
*/
|
|
8494
|
-
|
|
8494
|
+
baseSumDunnings: number;
|
|
8495
8495
|
|
|
8496
8496
|
/**
|
|
8497
|
-
*
|
|
8497
|
+
* Zahlungsvorlage
|
|
8498
8498
|
*/
|
|
8499
|
-
|
|
8499
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8500
8500
|
|
|
8501
8501
|
/**
|
|
8502
8502
|
* Rechnungsbetrag
|
|
@@ -8509,14 +8509,14 @@ export interface OpenItem {
|
|
|
8509
8509
|
taxRateRef: ApiObjectReference;
|
|
8510
8510
|
|
|
8511
8511
|
/**
|
|
8512
|
-
*
|
|
8512
|
+
* Anzahlungsrechnung
|
|
8513
8513
|
*/
|
|
8514
|
-
|
|
8514
|
+
depositInvoice: ApiObjectReference;
|
|
8515
8515
|
|
|
8516
8516
|
/**
|
|
8517
|
-
*
|
|
8517
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8518
8518
|
*/
|
|
8519
|
-
|
|
8519
|
+
baseCurrencyCode: string;
|
|
8520
8520
|
|
|
8521
8521
|
/**
|
|
8522
8522
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8587,14 +8587,14 @@ export const enum OpenItemDunningState {
|
|
|
8587
8587
|
export interface OpenItemPaymentPlan {
|
|
8588
8588
|
|
|
8589
8589
|
/**
|
|
8590
|
-
*
|
|
8590
|
+
* Fälligkeitsregel
|
|
8591
8591
|
*/
|
|
8592
|
-
|
|
8592
|
+
dueDateCalculation: string;
|
|
8593
8593
|
|
|
8594
8594
|
/**
|
|
8595
|
-
*
|
|
8595
|
+
* Betrag
|
|
8596
8596
|
*/
|
|
8597
|
-
|
|
8597
|
+
amount: number;
|
|
8598
8598
|
|
|
8599
8599
|
/**
|
|
8600
8600
|
* Enddatum
|
|
@@ -8797,14 +8797,14 @@ export interface OpenItemRecord {
|
|
|
8797
8797
|
version: number;
|
|
8798
8798
|
|
|
8799
8799
|
/**
|
|
8800
|
-
*
|
|
8800
|
+
* Buchungsbetrag in Basiswährung
|
|
8801
8801
|
*/
|
|
8802
|
-
|
|
8802
|
+
baseAmount: number;
|
|
8803
8803
|
|
|
8804
8804
|
/**
|
|
8805
|
-
*
|
|
8805
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8806
8806
|
*/
|
|
8807
|
-
|
|
8807
|
+
transactionId: number;
|
|
8808
8808
|
|
|
8809
8809
|
/**
|
|
8810
8810
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8822,14 +8822,14 @@ export interface OpenItemRecord {
|
|
|
8822
8822
|
totalAmount: number;
|
|
8823
8823
|
|
|
8824
8824
|
/**
|
|
8825
|
-
*
|
|
8825
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8826
8826
|
*/
|
|
8827
|
-
|
|
8827
|
+
baseCurrencyCode: string;
|
|
8828
8828
|
|
|
8829
8829
|
/**
|
|
8830
|
-
*
|
|
8830
|
+
* id des records, der diesen storniert hat
|
|
8831
8831
|
*/
|
|
8832
|
-
|
|
8832
|
+
revertedByRecordId: number;
|
|
8833
8833
|
|
|
8834
8834
|
/**
|
|
8835
8835
|
* qualifier of open item
|
|
@@ -8992,14 +8992,14 @@ export interface PaymentMethod {
|
|
|
8992
8992
|
daysToAddForFollowup: number;
|
|
8993
8993
|
|
|
8994
8994
|
/**
|
|
8995
|
-
*
|
|
8995
|
+
* external Payment Id
|
|
8996
8996
|
*/
|
|
8997
|
-
|
|
8997
|
+
externalPaymentId: string;
|
|
8998
8998
|
|
|
8999
8999
|
/**
|
|
9000
|
-
*
|
|
9000
|
+
* Die Business Transaction
|
|
9001
9001
|
*/
|
|
9002
|
-
|
|
9002
|
+
businessTransaction: ApiObjectReference;
|
|
9003
9003
|
|
|
9004
9004
|
/**
|
|
9005
9005
|
* Unique identifier of the Object
|
|
@@ -9082,26 +9082,26 @@ export interface PaymentTerm {
|
|
|
9082
9082
|
*/
|
|
9083
9083
|
paymentDiscount2: number;
|
|
9084
9084
|
|
|
9085
|
-
/**
|
|
9086
|
-
* printDescription
|
|
9087
|
-
*/
|
|
9088
|
-
printDescription: string;
|
|
9089
|
-
|
|
9090
9085
|
/**
|
|
9091
9086
|
* Percent for Discount 1
|
|
9092
9087
|
*/
|
|
9093
9088
|
paymentDiscount1: number;
|
|
9094
9089
|
|
|
9095
9090
|
/**
|
|
9096
|
-
*
|
|
9091
|
+
* printDescription
|
|
9097
9092
|
*/
|
|
9098
|
-
|
|
9093
|
+
printDescription: string;
|
|
9099
9094
|
|
|
9100
9095
|
/**
|
|
9101
9096
|
* Days for Discount 1
|
|
9102
9097
|
*/
|
|
9103
9098
|
paymentDays1: number;
|
|
9104
9099
|
|
|
9100
|
+
/**
|
|
9101
|
+
* for deposit: remaining term
|
|
9102
|
+
*/
|
|
9103
|
+
remainingTermRef: ApiObjectReference;
|
|
9104
|
+
|
|
9105
9105
|
/**
|
|
9106
9106
|
* Days for Discount 2
|
|
9107
9107
|
*/
|
|
@@ -9383,14 +9383,14 @@ export const enum PickingType {
|
|
|
9383
9383
|
export interface Picklist {
|
|
9384
9384
|
|
|
9385
9385
|
/**
|
|
9386
|
-
*
|
|
9386
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
9387
9387
|
*/
|
|
9388
|
-
|
|
9388
|
+
usedTemplate: PicklistTemplate;
|
|
9389
9389
|
|
|
9390
9390
|
/**
|
|
9391
|
-
*
|
|
9391
|
+
* Ziellager für Nachschub
|
|
9392
9392
|
*/
|
|
9393
|
-
|
|
9393
|
+
targetStorageRef: ApiObjectReference;
|
|
9394
9394
|
|
|
9395
9395
|
/**
|
|
9396
9396
|
* Nummer der Pickliste
|
|
@@ -9808,14 +9808,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9808
9808
|
onlyFullDeliverableOrderLines: boolean;
|
|
9809
9809
|
|
|
9810
9810
|
/**
|
|
9811
|
-
*
|
|
9811
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9812
9812
|
*/
|
|
9813
|
-
|
|
9813
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9814
9814
|
|
|
9815
9815
|
/**
|
|
9816
|
-
*
|
|
9816
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9817
9817
|
*/
|
|
9818
|
-
|
|
9818
|
+
maxOrderCount: number;
|
|
9819
9819
|
|
|
9820
9820
|
/**
|
|
9821
9821
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9984,9 +9984,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9984
9984
|
showShippingFormOnPickingFinish: boolean;
|
|
9985
9985
|
|
|
9986
9986
|
/**
|
|
9987
|
-
* Sollen
|
|
9987
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9988
9988
|
*/
|
|
9989
|
-
|
|
9989
|
+
allowPickingOfServiceArticles: boolean;
|
|
9990
9990
|
|
|
9991
9991
|
/**
|
|
9992
9992
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -9999,9 +9999,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9999
9999
|
allowFullConfirmation: boolean;
|
|
10000
10000
|
|
|
10001
10001
|
/**
|
|
10002
|
-
* Sollen
|
|
10002
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10003
10003
|
*/
|
|
10004
|
-
|
|
10004
|
+
printLabelOnScan: boolean;
|
|
10005
10005
|
|
|
10006
10006
|
/**
|
|
10007
10007
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10029,14 +10029,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10029
10029
|
printLabelAfterPicking: boolean;
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
|
-
*
|
|
10032
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
10033
10033
|
*/
|
|
10034
|
-
|
|
10034
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
10035
10035
|
|
|
10036
10036
|
/**
|
|
10037
|
-
*
|
|
10037
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
10038
10038
|
*/
|
|
10039
|
-
|
|
10039
|
+
autoDeterminationOfLots: boolean;
|
|
10040
10040
|
|
|
10041
10041
|
/**
|
|
10042
10042
|
* Zielmengen in Masken verstecken?
|
|
@@ -10118,14 +10118,14 @@ export interface PriceSelectionCriteria {
|
|
|
10118
10118
|
priceGroupId: number;
|
|
10119
10119
|
|
|
10120
10120
|
/**
|
|
10121
|
-
* Liste von
|
|
10121
|
+
* Liste von Account-IDs
|
|
10122
10122
|
*/
|
|
10123
|
-
|
|
10123
|
+
accountIds: Array<number>;
|
|
10124
10124
|
|
|
10125
10125
|
/**
|
|
10126
|
-
* Liste von
|
|
10126
|
+
* Liste von Artikel-IDs
|
|
10127
10127
|
*/
|
|
10128
|
-
|
|
10128
|
+
articleIds: Array<number>;
|
|
10129
10129
|
|
|
10130
10130
|
/**
|
|
10131
10131
|
* ein qualifier
|
|
@@ -10307,14 +10307,14 @@ export interface ProductArticleRef {
|
|
|
10307
10307
|
export interface ProductDiscount {
|
|
10308
10308
|
|
|
10309
10309
|
/**
|
|
10310
|
-
*
|
|
10310
|
+
* Kundengruppe
|
|
10311
10311
|
*/
|
|
10312
|
-
|
|
10312
|
+
customerGroupRef: ApiObjectReference;
|
|
10313
10313
|
|
|
10314
10314
|
/**
|
|
10315
|
-
*
|
|
10315
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10316
10316
|
*/
|
|
10317
|
-
|
|
10317
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10318
10318
|
|
|
10319
10319
|
/**
|
|
10320
10320
|
* Lieferantengruppe
|
|
@@ -10327,14 +10327,14 @@ export interface ProductDiscount {
|
|
|
10327
10327
|
fromQuantity: number;
|
|
10328
10328
|
|
|
10329
10329
|
/**
|
|
10330
|
-
*
|
|
10330
|
+
* Hersteller
|
|
10331
10331
|
*/
|
|
10332
|
-
|
|
10332
|
+
manufacturerRef: ApiObjectReference;
|
|
10333
10333
|
|
|
10334
10334
|
/**
|
|
10335
|
-
*
|
|
10335
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10336
10336
|
*/
|
|
10337
|
-
|
|
10337
|
+
articleRef: ApiObjectReference;
|
|
10338
10338
|
|
|
10339
10339
|
/**
|
|
10340
10340
|
* Gültig von
|
|
@@ -10435,14 +10435,14 @@ export interface ProductGroup {
|
|
|
10435
10435
|
targetTradingMargin: number;
|
|
10436
10436
|
|
|
10437
10437
|
/**
|
|
10438
|
-
*
|
|
10438
|
+
* Freifeld
|
|
10439
10439
|
*/
|
|
10440
|
-
|
|
10440
|
+
custom: EavProductgroup;
|
|
10441
10441
|
|
|
10442
10442
|
/**
|
|
10443
|
-
*
|
|
10443
|
+
* main product group
|
|
10444
10444
|
*/
|
|
10445
|
-
|
|
10445
|
+
mainGroupRef: ApiObjectReference;
|
|
10446
10446
|
|
|
10447
10447
|
/**
|
|
10448
10448
|
* warengruppe aktiv ja/nein
|
|
@@ -10521,14 +10521,14 @@ export interface ProductMainGroup {
|
|
|
10521
10521
|
export interface ProductPrice {
|
|
10522
10522
|
|
|
10523
10523
|
/**
|
|
10524
|
-
*
|
|
10524
|
+
* Kundengruppe
|
|
10525
10525
|
*/
|
|
10526
|
-
|
|
10526
|
+
customerGroupRef: ApiObjectReference;
|
|
10527
10527
|
|
|
10528
10528
|
/**
|
|
10529
|
-
*
|
|
10529
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10530
10530
|
*/
|
|
10531
|
-
|
|
10531
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10532
10532
|
|
|
10533
10533
|
/**
|
|
10534
10534
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10591,14 +10591,14 @@ export interface ProductPrice {
|
|
|
10591
10591
|
supplierGroupRef: ApiObjectReference;
|
|
10592
10592
|
|
|
10593
10593
|
/**
|
|
10594
|
-
*
|
|
10594
|
+
* Hersteller
|
|
10595
10595
|
*/
|
|
10596
|
-
|
|
10596
|
+
manufacturerRef: ApiObjectReference;
|
|
10597
10597
|
|
|
10598
10598
|
/**
|
|
10599
|
-
*
|
|
10599
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10600
10600
|
*/
|
|
10601
|
-
|
|
10601
|
+
articleRef: ApiObjectReference;
|
|
10602
10602
|
|
|
10603
10603
|
/**
|
|
10604
10604
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10856,14 +10856,14 @@ export interface RequestDocument {
|
|
|
10856
10856
|
dropShipping: boolean;
|
|
10857
10857
|
|
|
10858
10858
|
/**
|
|
10859
|
-
*
|
|
10859
|
+
* reference to the corresponding document in an external system
|
|
10860
10860
|
*/
|
|
10861
|
-
|
|
10861
|
+
externalId: string;
|
|
10862
10862
|
|
|
10863
10863
|
/**
|
|
10864
|
-
*
|
|
10864
|
+
* target document type for document copy
|
|
10865
10865
|
*/
|
|
10866
|
-
|
|
10866
|
+
targetDocumentType: DocumentType;
|
|
10867
10867
|
|
|
10868
10868
|
/**
|
|
10869
10869
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -11034,14 +11034,14 @@ export interface RequestDocumentLine {
|
|
|
11034
11034
|
articleId: number;
|
|
11035
11035
|
|
|
11036
11036
|
/**
|
|
11037
|
-
*
|
|
11037
|
+
* Referenz auf die zugehörige Position in einem externen System
|
|
11038
11038
|
*/
|
|
11039
|
-
|
|
11039
|
+
externalId: string;
|
|
11040
11040
|
|
|
11041
11041
|
/**
|
|
11042
|
-
*
|
|
11042
|
+
* ID der Belegposition im aktuellen Beleg
|
|
11043
11043
|
*/
|
|
11044
|
-
|
|
11044
|
+
lineId: number;
|
|
11045
11045
|
|
|
11046
11046
|
/**
|
|
11047
11047
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
@@ -11073,6 +11073,11 @@ export interface RequestDocumentLine {
|
|
|
11073
11073
|
*/
|
|
11074
11074
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
11075
11075
|
|
|
11076
|
+
/**
|
|
11077
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
11078
|
+
*/
|
|
11079
|
+
externalArticleNumber: string;
|
|
11080
|
+
|
|
11076
11081
|
/**
|
|
11077
11082
|
* ID der Quell-Belegposition
|
|
11078
11083
|
*/
|
|
@@ -11083,11 +11088,6 @@ export interface RequestDocumentLine {
|
|
|
11083
11088
|
*/
|
|
11084
11089
|
bookings: Array<RequestDocumentLineBooking>;
|
|
11085
11090
|
|
|
11086
|
-
/**
|
|
11087
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
11088
|
-
*/
|
|
11089
|
-
externalArticleNumber: string;
|
|
11090
|
-
|
|
11091
11091
|
/**
|
|
11092
11092
|
* Zu der Zeile Etikettendruck anstoßen
|
|
11093
11093
|
*/
|
|
@@ -11311,14 +11311,14 @@ export interface SalesAgent {
|
|
|
11311
11311
|
taxRateRef: ApiObjectReference;
|
|
11312
11312
|
|
|
11313
11313
|
/**
|
|
11314
|
-
*
|
|
11314
|
+
* country code performance country IsoAlpha3
|
|
11315
11315
|
*/
|
|
11316
|
-
|
|
11316
|
+
performanceCountryCode: string;
|
|
11317
11317
|
|
|
11318
11318
|
/**
|
|
11319
|
-
*
|
|
11319
|
+
* reference to the assigned user
|
|
11320
11320
|
*/
|
|
11321
|
-
|
|
11321
|
+
userRef: ApiObjectReference;
|
|
11322
11322
|
|
|
11323
11323
|
/**
|
|
11324
11324
|
* billing type
|
|
@@ -11745,14 +11745,14 @@ export interface ShelfDocument {
|
|
|
11745
11745
|
tags: Array<TagDto>;
|
|
11746
11746
|
|
|
11747
11747
|
/**
|
|
11748
|
-
*
|
|
11748
|
+
* share informations
|
|
11749
11749
|
*/
|
|
11750
|
-
|
|
11750
|
+
shares: Array<ShelfShare>;
|
|
11751
11751
|
|
|
11752
11752
|
/**
|
|
11753
|
-
*
|
|
11753
|
+
* Mehrsprachige Bezeichnungen
|
|
11754
11754
|
*/
|
|
11755
|
-
|
|
11755
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11756
11756
|
|
|
11757
11757
|
/**
|
|
11758
11758
|
* Automatische Löschung ab
|
|
@@ -11972,14 +11972,14 @@ export interface ShelfFile {
|
|
|
11972
11972
|
version: number;
|
|
11973
11973
|
|
|
11974
11974
|
/**
|
|
11975
|
-
*
|
|
11975
|
+
* current reference of this file in our storage
|
|
11976
11976
|
*/
|
|
11977
|
-
|
|
11977
|
+
storageHandle: string;
|
|
11978
11978
|
|
|
11979
11979
|
/**
|
|
11980
|
-
*
|
|
11980
|
+
* meta data
|
|
11981
11981
|
*/
|
|
11982
|
-
|
|
11982
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11983
11983
|
|
|
11984
11984
|
/**
|
|
11985
11985
|
* MetaInformations for this Object
|
|
@@ -12026,14 +12026,14 @@ export interface ShelfShare {
|
|
|
12026
12026
|
publishState: ShelfSharePublishState;
|
|
12027
12027
|
|
|
12028
12028
|
/**
|
|
12029
|
-
*
|
|
12029
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
12030
12030
|
*/
|
|
12031
|
-
|
|
12031
|
+
publicUrlDurationInMinutes: number;
|
|
12032
12032
|
|
|
12033
12033
|
/**
|
|
12034
|
-
*
|
|
12034
|
+
* Freifelder
|
|
12035
12035
|
*/
|
|
12036
|
-
|
|
12036
|
+
custom: EavShelfshare;
|
|
12037
12037
|
|
|
12038
12038
|
/**
|
|
12039
12039
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12472,11 +12472,6 @@ export interface Supplier {
|
|
|
12472
12472
|
*/
|
|
12473
12473
|
info: MetaInfo;
|
|
12474
12474
|
|
|
12475
|
-
/**
|
|
12476
|
-
* tax able or tax free
|
|
12477
|
-
*/
|
|
12478
|
-
taxable: boolean;
|
|
12479
|
-
|
|
12480
12475
|
/**
|
|
12481
12476
|
* reference to the delivery method
|
|
12482
12477
|
*/
|
|
@@ -12487,6 +12482,11 @@ export interface Supplier {
|
|
|
12487
12482
|
*/
|
|
12488
12483
|
supplierGroupRef: ApiObjectReference;
|
|
12489
12484
|
|
|
12485
|
+
/**
|
|
12486
|
+
* tax able or tax free
|
|
12487
|
+
*/
|
|
12488
|
+
taxable: boolean;
|
|
12489
|
+
|
|
12490
12490
|
/**
|
|
12491
12491
|
* Mahnen?
|
|
12492
12492
|
*/
|
|
@@ -12809,26 +12809,26 @@ export interface TextTemplate {
|
|
|
12809
12809
|
*/
|
|
12810
12810
|
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12811
12811
|
|
|
12812
|
-
/**
|
|
12813
|
-
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12814
|
-
*/
|
|
12815
|
-
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12816
|
-
|
|
12817
12812
|
/**
|
|
12818
12813
|
* Texte in den angebotenen Sprachen
|
|
12819
12814
|
*/
|
|
12820
12815
|
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12821
12816
|
|
|
12822
12817
|
/**
|
|
12823
|
-
*
|
|
12818
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12824
12819
|
*/
|
|
12825
|
-
|
|
12820
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12826
12821
|
|
|
12827
12822
|
/**
|
|
12828
12823
|
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12829
12824
|
*/
|
|
12830
12825
|
separateLine: boolean;
|
|
12831
12826
|
|
|
12827
|
+
/**
|
|
12828
|
+
* article für den diese Templates gelten
|
|
12829
|
+
*/
|
|
12830
|
+
articleId: number;
|
|
12831
|
+
|
|
12832
12832
|
/**
|
|
12833
12833
|
* Wann wird ein UI-Hint angezeigt
|
|
12834
12834
|
*/
|