@vario-software/types 2026.29.4 → 2026.30.1
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 +1846 -66
- package/scripting/services.d.ts +160 -56
- package/scripting/types.d.ts +470 -246
package/scripting/types.d.ts
CHANGED
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Title
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
titleRef: ApiCreatableReference;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Post office box
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Street
|
|
@@ -411,14 +411,14 @@ export interface AccountAddress {
|
|
|
411
411
|
streetAddressNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Parcel station customer number
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
parcelStationCustomerNumber: string;
|
|
422
422
|
|
|
423
423
|
/**
|
|
424
424
|
* Name3
|
|
@@ -1014,14 +1014,14 @@ export interface Article {
|
|
|
1014
1014
|
customsTariffNumber: string;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* Product custom data
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
listingCustom: EavArticleListing;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
1027
|
* base capacity unit
|
|
@@ -1069,14 +1069,14 @@ export interface Article {
|
|
|
1069
1069
|
warrantyInMonths: number;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
|
-
*
|
|
1077
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1078
1078
|
*/
|
|
1079
|
-
|
|
1079
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
1082
|
* unique product number
|
|
@@ -1218,26 +1218,26 @@ export interface Article {
|
|
|
1218
1218
|
*/
|
|
1219
1219
|
workUnitInMinutes: number;
|
|
1220
1220
|
|
|
1221
|
-
/**
|
|
1222
|
-
* description custom data
|
|
1223
|
-
*/
|
|
1224
|
-
listingDescriptionCustom: EavArticleListingDescription;
|
|
1225
|
-
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Frei kommissionierbar
|
|
1228
1223
|
*/
|
|
1229
1224
|
freelyPickable: boolean;
|
|
1230
1225
|
|
|
1231
1226
|
/**
|
|
1232
|
-
*
|
|
1227
|
+
* description custom data
|
|
1233
1228
|
*/
|
|
1234
|
-
|
|
1229
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1235
1230
|
|
|
1236
1231
|
/**
|
|
1237
1232
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1238
1233
|
*/
|
|
1239
1234
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1240
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1238
|
+
*/
|
|
1239
|
+
taxLiabilityReversed: boolean;
|
|
1240
|
+
|
|
1241
1241
|
/**
|
|
1242
1242
|
* Notiz
|
|
1243
1243
|
*/
|
|
@@ -1288,6 +1288,11 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1290
1290
|
|
|
1291
|
+
/**
|
|
1292
|
+
* Vorgabe Herstellungskosten
|
|
1293
|
+
*/
|
|
1294
|
+
defaultFabricationCost: number;
|
|
1295
|
+
|
|
1291
1296
|
/**
|
|
1292
1297
|
* Letzter EKP (Startwert)
|
|
1293
1298
|
*/
|
|
@@ -1298,15 +1303,20 @@ export interface Article {
|
|
|
1298
1303
|
*/
|
|
1299
1304
|
permissibleForOrderProposal: boolean;
|
|
1300
1305
|
|
|
1306
|
+
/**
|
|
1307
|
+
* Versandlabeldruck
|
|
1308
|
+
*/
|
|
1309
|
+
shippingLabelPrinting: boolean;
|
|
1310
|
+
|
|
1301
1311
|
/**
|
|
1302
1312
|
* reference to Product
|
|
1303
1313
|
*/
|
|
1304
1314
|
productRef: ApiObjectReference;
|
|
1305
1315
|
|
|
1306
1316
|
/**
|
|
1307
|
-
*
|
|
1317
|
+
* Kontingentartikel
|
|
1308
1318
|
*/
|
|
1309
|
-
|
|
1319
|
+
contingentArticleRef: ApiObjectReference;
|
|
1310
1320
|
|
|
1311
1321
|
/**
|
|
1312
1322
|
* rabattierbarer Artikel?
|
|
@@ -1318,11 +1328,6 @@ export interface Article {
|
|
|
1318
1328
|
*/
|
|
1319
1329
|
alternativeName: string;
|
|
1320
1330
|
|
|
1321
|
-
/**
|
|
1322
|
-
* Kontingentartikel
|
|
1323
|
-
*/
|
|
1324
|
-
contingentArticleRef: ApiObjectReference;
|
|
1325
|
-
|
|
1326
1331
|
/**
|
|
1327
1332
|
* base capacity
|
|
1328
1333
|
*/
|
|
@@ -1394,14 +1399,14 @@ export interface Article {
|
|
|
1394
1399
|
listed: boolean;
|
|
1395
1400
|
|
|
1396
1401
|
/**
|
|
1397
|
-
*
|
|
1402
|
+
* Nur manuelle Produktion
|
|
1398
1403
|
*/
|
|
1399
|
-
|
|
1404
|
+
onlyManualFabrication: boolean;
|
|
1400
1405
|
|
|
1401
1406
|
/**
|
|
1402
|
-
*
|
|
1407
|
+
* provisionsberechtiger Artikel?
|
|
1403
1408
|
*/
|
|
1404
|
-
|
|
1409
|
+
commissionable: boolean;
|
|
1405
1410
|
|
|
1406
1411
|
/**
|
|
1407
1412
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1542,14 +1547,14 @@ export interface ArticleCustomer {
|
|
|
1542
1547
|
articleName: string;
|
|
1543
1548
|
|
|
1544
1549
|
/**
|
|
1545
|
-
*
|
|
1550
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1546
1551
|
*/
|
|
1547
|
-
|
|
1552
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1548
1553
|
|
|
1549
1554
|
/**
|
|
1550
|
-
*
|
|
1555
|
+
* Etikettdruck-Einstellungen
|
|
1551
1556
|
*/
|
|
1552
|
-
|
|
1557
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1553
1558
|
|
|
1554
1559
|
/**
|
|
1555
1560
|
* Kunden-Preise
|
|
@@ -1724,14 +1729,14 @@ export interface ArticleListing {
|
|
|
1724
1729
|
proposedLowestPriceGross: number;
|
|
1725
1730
|
|
|
1726
1731
|
/**
|
|
1727
|
-
* der
|
|
1732
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1728
1733
|
*/
|
|
1729
|
-
|
|
1734
|
+
customLowestPriceGross: number;
|
|
1730
1735
|
|
|
1731
1736
|
/**
|
|
1732
|
-
*
|
|
1737
|
+
* der Sales Channel
|
|
1733
1738
|
*/
|
|
1734
|
-
|
|
1739
|
+
salesChannelRef: ApiObjectReference;
|
|
1735
1740
|
|
|
1736
1741
|
/**
|
|
1737
1742
|
* soll der Artikel gelistet werden
|
|
@@ -2105,14 +2110,14 @@ export interface ArticleSupplier {
|
|
|
2105
2110
|
info: MetaInfo;
|
|
2106
2111
|
|
|
2107
2112
|
/**
|
|
2108
|
-
*
|
|
2113
|
+
* Referenced Article name
|
|
2109
2114
|
*/
|
|
2110
|
-
|
|
2115
|
+
articleName: string;
|
|
2111
2116
|
|
|
2112
2117
|
/**
|
|
2113
|
-
*
|
|
2118
|
+
* Verpackungseinheit
|
|
2114
2119
|
*/
|
|
2115
|
-
|
|
2120
|
+
packagingUnit: number;
|
|
2116
2121
|
|
|
2117
2122
|
/**
|
|
2118
2123
|
* Lieferanten-Preise
|
|
@@ -2145,14 +2150,14 @@ export interface ArticleSupplier {
|
|
|
2145
2150
|
dropShippingAllowed: boolean;
|
|
2146
2151
|
|
|
2147
2152
|
/**
|
|
2148
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbezeichnung
|
|
2149
2154
|
*/
|
|
2150
|
-
|
|
2155
|
+
supplierArticleName: string;
|
|
2151
2156
|
|
|
2152
2157
|
/**
|
|
2153
|
-
* Abweichende
|
|
2158
|
+
* Abweichende Produktbeschreibung
|
|
2154
2159
|
*/
|
|
2155
|
-
|
|
2160
|
+
supplierArticleDescription: string;
|
|
2156
2161
|
|
|
2157
2162
|
/**
|
|
2158
2163
|
* Standardpreis Netto
|
|
@@ -2218,14 +2223,14 @@ export interface Asset {
|
|
|
2218
2223
|
active: boolean;
|
|
2219
2224
|
|
|
2220
2225
|
/**
|
|
2221
|
-
*
|
|
2226
|
+
* Ende Garantie
|
|
2222
2227
|
*/
|
|
2223
|
-
|
|
2228
|
+
warrantyEndDate: ScriptingDate;
|
|
2224
2229
|
|
|
2225
2230
|
/**
|
|
2226
|
-
*
|
|
2231
|
+
* Zugehörige Assets
|
|
2227
2232
|
*/
|
|
2228
|
-
|
|
2233
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2229
2234
|
|
|
2230
2235
|
/**
|
|
2231
2236
|
* Asset-Bezeichnung
|
|
@@ -2511,15 +2516,20 @@ export interface CountryReference {
|
|
|
2511
2516
|
*/
|
|
2512
2517
|
export interface CreateNewDocumentRequest {
|
|
2513
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2521
|
+
*/
|
|
2522
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
|
+
|
|
2514
2524
|
/**
|
|
2515
2525
|
* Belegart
|
|
2516
2526
|
*/
|
|
2517
2527
|
documentTypeLabel: string;
|
|
2518
2528
|
|
|
2519
2529
|
/**
|
|
2520
|
-
*
|
|
2530
|
+
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
2521
2531
|
*/
|
|
2522
|
-
|
|
2532
|
+
externallyCreated: boolean;
|
|
2523
2533
|
|
|
2524
2534
|
/**
|
|
2525
2535
|
* Details zum Beleg
|
|
@@ -2630,14 +2640,14 @@ export interface CrmActivity {
|
|
|
2630
2640
|
userRef: ApiObjectReference;
|
|
2631
2641
|
|
|
2632
2642
|
/**
|
|
2633
|
-
*
|
|
2643
|
+
* tatsächliche Startzeit
|
|
2634
2644
|
*/
|
|
2635
|
-
|
|
2645
|
+
startDateTime: ScriptingDateTime;
|
|
2636
2646
|
|
|
2637
2647
|
/**
|
|
2638
|
-
*
|
|
2648
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2639
2649
|
*/
|
|
2640
|
-
|
|
2650
|
+
system: boolean;
|
|
2641
2651
|
|
|
2642
2652
|
/**
|
|
2643
2653
|
* Inhalt dieser Aktivität
|
|
@@ -2744,14 +2754,14 @@ export interface CrmActivityType {
|
|
|
2744
2754
|
export interface CrmChecklistItem {
|
|
2745
2755
|
|
|
2746
2756
|
/**
|
|
2747
|
-
*
|
|
2757
|
+
* Ist das Element "angehakt"?
|
|
2748
2758
|
*/
|
|
2749
|
-
|
|
2759
|
+
checked: boolean;
|
|
2750
2760
|
|
|
2751
2761
|
/**
|
|
2752
|
-
*
|
|
2762
|
+
* Text des Checklisten-Elements
|
|
2753
2763
|
*/
|
|
2754
|
-
|
|
2764
|
+
memo: string;
|
|
2755
2765
|
|
|
2756
2766
|
/**
|
|
2757
2767
|
* Unique identifier of the Object
|
|
@@ -3153,14 +3163,14 @@ export interface CrmProject {
|
|
|
3153
3163
|
priorityRef: ApiObjectReference;
|
|
3154
3164
|
|
|
3155
3165
|
/**
|
|
3156
|
-
*
|
|
3166
|
+
* Phase
|
|
3157
3167
|
*/
|
|
3158
|
-
|
|
3168
|
+
phaseRef: ApiObjectReference;
|
|
3159
3169
|
|
|
3160
3170
|
/**
|
|
3161
|
-
*
|
|
3171
|
+
* Projektleiter vom Auftragnehmer
|
|
3162
3172
|
*/
|
|
3163
|
-
|
|
3173
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3164
3174
|
|
|
3165
3175
|
/**
|
|
3166
3176
|
* Aufgaben-Nummer
|
|
@@ -3178,14 +3188,14 @@ export interface CrmProject {
|
|
|
3178
3188
|
billedTimes: number;
|
|
3179
3189
|
|
|
3180
3190
|
/**
|
|
3181
|
-
*
|
|
3191
|
+
* Einkaufsbelege
|
|
3182
3192
|
*/
|
|
3183
|
-
|
|
3193
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3184
3194
|
|
|
3185
3195
|
/**
|
|
3186
|
-
*
|
|
3196
|
+
* Geplanter Projektzeitraum (von)
|
|
3187
3197
|
*/
|
|
3188
|
-
|
|
3198
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3189
3199
|
|
|
3190
3200
|
/**
|
|
3191
3201
|
* Verkaufsbelege
|
|
@@ -3470,9 +3480,9 @@ export interface CrmSubType {
|
|
|
3470
3480
|
export interface CrmTask {
|
|
3471
3481
|
|
|
3472
3482
|
/**
|
|
3473
|
-
*
|
|
3483
|
+
* Liste von Erinnerungen
|
|
3474
3484
|
*/
|
|
3475
|
-
|
|
3485
|
+
reminders: Array<CrmReminder>;
|
|
3476
3486
|
|
|
3477
3487
|
/**
|
|
3478
3488
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3480,9 +3490,9 @@ export interface CrmTask {
|
|
|
3480
3490
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3481
3491
|
|
|
3482
3492
|
/**
|
|
3483
|
-
*
|
|
3493
|
+
* Angebot
|
|
3484
3494
|
*/
|
|
3485
|
-
|
|
3495
|
+
customerOfferRef: DocumentRef;
|
|
3486
3496
|
|
|
3487
3497
|
/**
|
|
3488
3498
|
* Notizen
|
|
@@ -3914,14 +3924,14 @@ export interface Customer {
|
|
|
3914
3924
|
stackProcessingPriority: number;
|
|
3915
3925
|
|
|
3916
3926
|
/**
|
|
3917
|
-
*
|
|
3927
|
+
* reference to product price group
|
|
3918
3928
|
*/
|
|
3919
|
-
|
|
3929
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3920
3930
|
|
|
3921
3931
|
/**
|
|
3922
|
-
*
|
|
3932
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3923
3933
|
*/
|
|
3924
|
-
|
|
3934
|
+
collectiveInvoiceManually: boolean;
|
|
3925
3935
|
|
|
3926
3936
|
/**
|
|
3927
3937
|
* Unique identifier of the Object
|
|
@@ -4256,14 +4266,14 @@ export interface DeliveryTerm {
|
|
|
4256
4266
|
version: number;
|
|
4257
4267
|
|
|
4258
4268
|
/**
|
|
4259
|
-
*
|
|
4269
|
+
* information, how the shipping charges should be calculated
|
|
4260
4270
|
*/
|
|
4261
|
-
|
|
4271
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4262
4272
|
|
|
4263
4273
|
/**
|
|
4264
|
-
*
|
|
4274
|
+
* translations
|
|
4265
4275
|
*/
|
|
4266
|
-
|
|
4276
|
+
translations: Array<DocumentTypeTerm>;
|
|
4267
4277
|
|
|
4268
4278
|
/**
|
|
4269
4279
|
* Lieferarten
|
|
@@ -4306,14 +4316,14 @@ export interface DmsOutputStream {
|
|
|
4306
4316
|
export interface Document {
|
|
4307
4317
|
|
|
4308
4318
|
/**
|
|
4309
|
-
*
|
|
4319
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4310
4320
|
*/
|
|
4311
|
-
|
|
4321
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4312
4322
|
|
|
4313
4323
|
/**
|
|
4314
|
-
*
|
|
4324
|
+
* Referenz zum Rechnungskonto
|
|
4315
4325
|
*/
|
|
4316
|
-
|
|
4326
|
+
billingAccountRef: ApiObjectReference;
|
|
4317
4327
|
|
|
4318
4328
|
/**
|
|
4319
4329
|
* Externe Belegnummer
|
|
@@ -4351,14 +4361,14 @@ export interface Document {
|
|
|
4351
4361
|
totalVat: number;
|
|
4352
4362
|
|
|
4353
4363
|
/**
|
|
4354
|
-
*
|
|
4364
|
+
* Name der bestellenden Person
|
|
4355
4365
|
*/
|
|
4356
|
-
|
|
4366
|
+
orderedBy: string;
|
|
4357
4367
|
|
|
4358
4368
|
/**
|
|
4359
|
-
*
|
|
4369
|
+
* Standardlager für neue Positionen
|
|
4360
4370
|
*/
|
|
4361
|
-
|
|
4371
|
+
defaultStorageRef: ApiObjectReference;
|
|
4362
4372
|
|
|
4363
4373
|
/**
|
|
4364
4374
|
* Lieferadresse
|
|
@@ -4399,14 +4409,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4399
4409
|
taxable: boolean;
|
|
4400
4410
|
|
|
4401
4411
|
/**
|
|
4402
|
-
*
|
|
4412
|
+
* Bestellnummer aus Vorbeleg
|
|
4403
4413
|
*/
|
|
4404
|
-
|
|
4414
|
+
referencedOrderNumber: string;
|
|
4405
4415
|
|
|
4406
4416
|
/**
|
|
4407
|
-
*
|
|
4417
|
+
* Leitweg-ID
|
|
4408
4418
|
*/
|
|
4409
|
-
|
|
4419
|
+
buyerReference: string;
|
|
4410
4420
|
|
|
4411
4421
|
/**
|
|
4412
4422
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4528,6 +4538,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4528
4538
|
*/
|
|
4529
4539
|
posPayments: Array<DocumentPosPayment>;
|
|
4530
4540
|
|
|
4541
|
+
/**
|
|
4542
|
+
* Ist die Quittung bezahlt
|
|
4543
|
+
true wenn die Quittung bezahlt ist
|
|
4544
|
+
|
|
4545
|
+
*/
|
|
4546
|
+
posReceiptPayed: boolean;
|
|
4547
|
+
|
|
4531
4548
|
/**
|
|
4532
4549
|
* Kundennummer beim Lieferanten
|
|
4533
4550
|
*/
|
|
@@ -4538,13 +4555,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4538
4555
|
*/
|
|
4539
4556
|
maxDeliveries: number;
|
|
4540
4557
|
|
|
4541
|
-
/**
|
|
4542
|
-
* Ist die Quittung bezahlt
|
|
4543
|
-
true wenn die Quittung bezahlt ist
|
|
4544
|
-
|
|
4545
|
-
*/
|
|
4546
|
-
posReceiptPayed: boolean;
|
|
4547
|
-
|
|
4548
4558
|
/**
|
|
4549
4559
|
* Quittung: Summe Zahlbetrag
|
|
4550
4560
|
*/
|
|
@@ -4862,25 +4872,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4862
4872
|
*/
|
|
4863
4873
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4864
4874
|
|
|
4865
|
-
/**
|
|
4866
|
-
* Status der USt-ID-Prüfung
|
|
4867
|
-
*/
|
|
4868
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4869
|
-
|
|
4870
4875
|
/**
|
|
4871
4876
|
* Rechnungsadresse
|
|
4872
4877
|
*/
|
|
4873
4878
|
billingAddress: DocumentAddress;
|
|
4874
4879
|
|
|
4875
4880
|
/**
|
|
4876
|
-
*
|
|
4881
|
+
* Status der USt-ID-Prüfung
|
|
4877
4882
|
*/
|
|
4878
|
-
|
|
4883
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4879
4884
|
|
|
4880
4885
|
/**
|
|
4881
4886
|
* Report-Gruppe, falls vom Standard abweichend
|
|
4882
4887
|
*/
|
|
4883
4888
|
reportGroupRef: ApiObjectReference;
|
|
4889
|
+
|
|
4890
|
+
/**
|
|
4891
|
+
* Bestellt durch Ansprechpartner
|
|
4892
|
+
*/
|
|
4893
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4884
4894
|
}
|
|
4885
4895
|
|
|
4886
4896
|
export interface DocumentAdditionalInfo {
|
|
@@ -4939,11 +4949,6 @@ export interface DocumentAdditionalInfo {
|
|
|
4939
4949
|
* Ziele für den Wareneingang je Belegposition
|
|
4940
4950
|
*/
|
|
4941
4951
|
incomingGoodsTargetsPerLine: Array<DocumentAdditionalInfo$IncomingGoodsTargetOfLine>;
|
|
4942
|
-
|
|
4943
|
-
/**
|
|
4944
|
-
* Ergebnisse zu Übernahme "Auftrag in Kommissionierung"
|
|
4945
|
-
*/
|
|
4946
|
-
orderIntoPickingConvertResults: Array<DocumentAdditionalInfo$OrderIntoPickingConvertResult>;
|
|
4947
4952
|
}
|
|
4948
4953
|
|
|
4949
4954
|
export interface DocumentAdditionalInfo$IncomingGoodsTarget {
|
|
@@ -4982,24 +4987,6 @@ export interface DocumentAdditionalInfo$IncomingGoodsTargetOfLine {
|
|
|
4982
4987
|
sourceLineId: number;
|
|
4983
4988
|
}
|
|
4984
4989
|
|
|
4985
|
-
export interface DocumentAdditionalInfo$OrderIntoPickingConvertResult {
|
|
4986
|
-
|
|
4987
|
-
/**
|
|
4988
|
-
* War die Übernahme erfolgreich?
|
|
4989
|
-
*/
|
|
4990
|
-
success: boolean;
|
|
4991
|
-
|
|
4992
|
-
/**
|
|
4993
|
-
* War es eine Testübernahme?
|
|
4994
|
-
*/
|
|
4995
|
-
testRun: boolean;
|
|
4996
|
-
|
|
4997
|
-
/**
|
|
4998
|
-
* Protokoll der Übernahme
|
|
4999
|
-
*/
|
|
5000
|
-
logText: string;
|
|
5001
|
-
}
|
|
5002
|
-
|
|
5003
4990
|
export interface DocumentAdditionalInfo$PrintedTranslatedField {
|
|
5004
4991
|
|
|
5005
4992
|
/**
|
|
@@ -5457,14 +5444,14 @@ export interface DocumentLine {
|
|
|
5457
5444
|
number: string;
|
|
5458
5445
|
|
|
5459
5446
|
/**
|
|
5460
|
-
*
|
|
5447
|
+
* Gesamtbruttogewicht
|
|
5461
5448
|
*/
|
|
5462
|
-
|
|
5449
|
+
totalGrossWeight: number;
|
|
5463
5450
|
|
|
5464
5451
|
/**
|
|
5465
|
-
*
|
|
5452
|
+
* Referenz zur Kundenauftragszeile
|
|
5466
5453
|
*/
|
|
5467
|
-
|
|
5454
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5468
5455
|
|
|
5469
5456
|
/**
|
|
5470
5457
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5636,6 +5623,11 @@ export interface DocumentLine {
|
|
|
5636
5623
|
*/
|
|
5637
5624
|
netWeightUnit: UnitTypeReference;
|
|
5638
5625
|
|
|
5626
|
+
/**
|
|
5627
|
+
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5628
|
+
*/
|
|
5629
|
+
shippingCostDetail: RequestDocumentLineShippingCostDetail;
|
|
5630
|
+
|
|
5639
5631
|
/**
|
|
5640
5632
|
* Produktionsdetails
|
|
5641
5633
|
*/
|
|
@@ -5887,14 +5879,14 @@ export interface DocumentLine {
|
|
|
5887
5879
|
custom: EavDocumentline;
|
|
5888
5880
|
|
|
5889
5881
|
/**
|
|
5890
|
-
*
|
|
5882
|
+
* Artikel
|
|
5891
5883
|
*/
|
|
5892
|
-
|
|
5884
|
+
articleId: number;
|
|
5893
5885
|
|
|
5894
5886
|
/**
|
|
5895
|
-
*
|
|
5887
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5896
5888
|
*/
|
|
5897
|
-
|
|
5889
|
+
settledOpenItemComment: string;
|
|
5898
5890
|
|
|
5899
5891
|
/**
|
|
5900
5892
|
* Interne Preisänderungsinformationen
|
|
@@ -6076,14 +6068,14 @@ export interface DocumentLineComponent {
|
|
|
6076
6068
|
custom: EavDocumentlinecomponent;
|
|
6077
6069
|
|
|
6078
6070
|
/**
|
|
6079
|
-
*
|
|
6071
|
+
* Gelieferte Menge
|
|
6080
6072
|
*/
|
|
6081
|
-
|
|
6073
|
+
quantityCommitted: number;
|
|
6082
6074
|
|
|
6083
6075
|
/**
|
|
6084
|
-
*
|
|
6076
|
+
* Referenz auf den Artikel der Komponente
|
|
6085
6077
|
*/
|
|
6086
|
-
|
|
6078
|
+
articleId: number;
|
|
6087
6079
|
|
|
6088
6080
|
/**
|
|
6089
6081
|
* Beschreibung des Artikels
|
|
@@ -7074,14 +7066,14 @@ export interface DocumentType {
|
|
|
7074
7066
|
labels: Array<DocumentTypeLabel>;
|
|
7075
7067
|
|
|
7076
7068
|
/**
|
|
7077
|
-
*
|
|
7069
|
+
* nächste Belegnummer
|
|
7078
7070
|
*/
|
|
7079
|
-
|
|
7071
|
+
nextNumber: string;
|
|
7080
7072
|
|
|
7081
7073
|
/**
|
|
7082
|
-
*
|
|
7074
|
+
* Zählerkreis
|
|
7083
7075
|
*/
|
|
7084
|
-
|
|
7076
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7085
7077
|
|
|
7086
7078
|
/**
|
|
7087
7079
|
* Sortierung
|
|
@@ -7262,14 +7254,14 @@ export const enum DropShippingPolicy {
|
|
|
7262
7254
|
export interface DummySerialNumberStockTransferApi {
|
|
7263
7255
|
|
|
7264
7256
|
/**
|
|
7265
|
-
*
|
|
7257
|
+
* Ziel-Lager
|
|
7266
7258
|
*/
|
|
7267
|
-
|
|
7259
|
+
targetStorageId: number;
|
|
7268
7260
|
|
|
7269
7261
|
/**
|
|
7270
|
-
*
|
|
7262
|
+
* Seriennummer
|
|
7271
7263
|
*/
|
|
7272
|
-
|
|
7264
|
+
serialNumberId: number;
|
|
7273
7265
|
|
|
7274
7266
|
/**
|
|
7275
7267
|
* Bemerkung
|
|
@@ -7426,6 +7418,8 @@ export const enum EDocumentTransition {
|
|
|
7426
7418
|
ORDER_RESET_FROM_PICKING = 'ORDER_RESET_FROM_PICKING',
|
|
7427
7419
|
/**Auftrag abschließen **/
|
|
7428
7420
|
ORDER_CLOSE_REMAINING = 'ORDER_CLOSE_REMAINING',
|
|
7421
|
+
/**Auftrag wieder öffnen **/
|
|
7422
|
+
ORDER_REOPEN = 'ORDER_REOPEN',
|
|
7429
7423
|
/**Beleg auflösen **/
|
|
7430
7424
|
DISSOLVE = 'DISSOLVE',
|
|
7431
7425
|
/**Quittung abbrechen **/
|
|
@@ -7524,6 +7518,93 @@ export const enum ExchangeRateOrigin {
|
|
|
7524
7518
|
USER_DEFINED = 'USER_DEFINED'
|
|
7525
7519
|
}
|
|
7526
7520
|
|
|
7521
|
+
/**
|
|
7522
|
+
* Position eines extern erstellten Belegs inkl. gelieferter Steuerangaben
|
|
7523
|
+
*/
|
|
7524
|
+
export interface ExternalDocumentWithTaxesLine {
|
|
7525
|
+
|
|
7526
|
+
/**
|
|
7527
|
+
* Menge
|
|
7528
|
+
*/
|
|
7529
|
+
quantity: number;
|
|
7530
|
+
|
|
7531
|
+
/**
|
|
7532
|
+
* Zeilen-Netto
|
|
7533
|
+
*/
|
|
7534
|
+
netAmount: number;
|
|
7535
|
+
|
|
7536
|
+
/**
|
|
7537
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7538
|
+
*/
|
|
7539
|
+
taxValue: number;
|
|
7540
|
+
|
|
7541
|
+
/**
|
|
7542
|
+
* Netto-Einzelpreis
|
|
7543
|
+
*/
|
|
7544
|
+
price: number;
|
|
7545
|
+
|
|
7546
|
+
/**
|
|
7547
|
+
* ID des Artikels
|
|
7548
|
+
*/
|
|
7549
|
+
articleId: number;
|
|
7550
|
+
|
|
7551
|
+
/**
|
|
7552
|
+
* Zeilen-Brutto
|
|
7553
|
+
*/
|
|
7554
|
+
grossAmount: number;
|
|
7555
|
+
|
|
7556
|
+
/**
|
|
7557
|
+
* ID des Steuersatzes (nur bei steuerpflichtigem Beleg)
|
|
7558
|
+
*/
|
|
7559
|
+
taxRateId: number;
|
|
7560
|
+
|
|
7561
|
+
/**
|
|
7562
|
+
* Steuerart (Standard: VAT)
|
|
7563
|
+
*/
|
|
7564
|
+
taxType: DocumentTaxType;
|
|
7565
|
+
}
|
|
7566
|
+
|
|
7567
|
+
/**
|
|
7568
|
+
* Details zum Import eines extern erstellten Belegs
|
|
7569
|
+
*/
|
|
7570
|
+
export interface ExternalDocumentWithTaxesRequest {
|
|
7571
|
+
|
|
7572
|
+
/**
|
|
7573
|
+
* Belegdatum
|
|
7574
|
+
*/
|
|
7575
|
+
documentDate: ScriptingDate;
|
|
7576
|
+
|
|
7577
|
+
/**
|
|
7578
|
+
* ID des Kontos/Accounts
|
|
7579
|
+
*/
|
|
7580
|
+
accountId: number;
|
|
7581
|
+
|
|
7582
|
+
/**
|
|
7583
|
+
* Steuerpflichtig? true = mit Steuern, false = steuerfrei (keine Steuerzeilen). Null = Steuerstatus aus dem Kundenstamm übernehmen
|
|
7584
|
+
*/
|
|
7585
|
+
taxable: boolean;
|
|
7586
|
+
|
|
7587
|
+
/**
|
|
7588
|
+
* Abrechnungsart (Brutto/Netto)
|
|
7589
|
+
*/
|
|
7590
|
+
billingType: BillingType;
|
|
7591
|
+
|
|
7592
|
+
/**
|
|
7593
|
+
* Belegpositionen inkl. gelieferter Steuerangaben
|
|
7594
|
+
*/
|
|
7595
|
+
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7596
|
+
|
|
7597
|
+
/**
|
|
7598
|
+
* Key der Belegart
|
|
7599
|
+
*/
|
|
7600
|
+
documentTypeKey: string;
|
|
7601
|
+
|
|
7602
|
+
/**
|
|
7603
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7604
|
+
*/
|
|
7605
|
+
taxIdentificationNumber: string;
|
|
7606
|
+
}
|
|
7607
|
+
|
|
7527
7608
|
export interface FabricationComponentForProduction {
|
|
7528
7609
|
|
|
7529
7610
|
/**
|
|
@@ -7766,6 +7847,34 @@ export const enum ListingState {
|
|
|
7766
7847
|
QUEUED_FOR_DELETION = 'QUEUED_FOR_DELETION'
|
|
7767
7848
|
}
|
|
7768
7849
|
|
|
7850
|
+
export interface LocalizedTextTemplateContent {
|
|
7851
|
+
|
|
7852
|
+
/**
|
|
7853
|
+
* Sprache des Textes
|
|
7854
|
+
*/
|
|
7855
|
+
languageCodeIsoAlpha2: string;
|
|
7856
|
+
|
|
7857
|
+
/**
|
|
7858
|
+
* Unique identifier of the Object
|
|
7859
|
+
*/
|
|
7860
|
+
id: number;
|
|
7861
|
+
|
|
7862
|
+
/**
|
|
7863
|
+
* Version Identifier for this Object (for PUT)
|
|
7864
|
+
*/
|
|
7865
|
+
version: number;
|
|
7866
|
+
|
|
7867
|
+
/**
|
|
7868
|
+
* Text
|
|
7869
|
+
*/
|
|
7870
|
+
content: string;
|
|
7871
|
+
|
|
7872
|
+
/**
|
|
7873
|
+
* MetaInformations for this Object
|
|
7874
|
+
*/
|
|
7875
|
+
info: MetaInfo;
|
|
7876
|
+
}
|
|
7877
|
+
|
|
7769
7878
|
export interface MetaInfo {
|
|
7770
7879
|
|
|
7771
7880
|
/**
|
|
@@ -7969,14 +8078,14 @@ export interface OpenItem {
|
|
|
7969
8078
|
performanceCountryCode: string;
|
|
7970
8079
|
|
|
7971
8080
|
/**
|
|
7972
|
-
*
|
|
8081
|
+
* Valutadatum schreibgeschützt
|
|
7973
8082
|
*/
|
|
7974
|
-
|
|
8083
|
+
valueDateReadOnly: boolean;
|
|
7975
8084
|
|
|
7976
8085
|
/**
|
|
7977
|
-
*
|
|
8086
|
+
* agreed Deposit payment date
|
|
7978
8087
|
*/
|
|
7979
|
-
|
|
8088
|
+
depositPaymentDate: ScriptingDate;
|
|
7980
8089
|
|
|
7981
8090
|
/**
|
|
7982
8091
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8417,14 +8526,14 @@ export interface OpenItemRecord {
|
|
|
8417
8526
|
version: number;
|
|
8418
8527
|
|
|
8419
8528
|
/**
|
|
8420
|
-
*
|
|
8529
|
+
* Buchungsbetrag in Basiswährung
|
|
8421
8530
|
*/
|
|
8422
|
-
|
|
8531
|
+
baseAmount: number;
|
|
8423
8532
|
|
|
8424
8533
|
/**
|
|
8425
|
-
*
|
|
8534
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8426
8535
|
*/
|
|
8427
|
-
|
|
8536
|
+
transactionId: number;
|
|
8428
8537
|
|
|
8429
8538
|
/**
|
|
8430
8539
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8493,6 +8602,7 @@ export const enum OpenItemRecord$RecordOrigin {
|
|
|
8493
8602
|
PAYMENT_PLAN_ENTRY = 'PAYMENT_PLAN_ENTRY',
|
|
8494
8603
|
PAYMENT_IMPORT = 'PAYMENT_IMPORT',
|
|
8495
8604
|
CLEARING = 'CLEARING',
|
|
8605
|
+
CLEARING_DISSOLVED = 'CLEARING_DISSOLVED',
|
|
8496
8606
|
DEPOSIT = 'DEPOSIT',
|
|
8497
8607
|
CREDIT_NOTE = 'CREDIT_NOTE',
|
|
8498
8608
|
BALANCE_ADJUSTMENT = 'BALANCE_ADJUSTMENT',
|
|
@@ -9253,14 +9363,14 @@ export interface PicklistLineComponent {
|
|
|
9253
9363
|
targetDocumentLineComponentId: number;
|
|
9254
9364
|
|
|
9255
9365
|
/**
|
|
9256
|
-
*
|
|
9366
|
+
* abweichende Artikelbezeichnung
|
|
9257
9367
|
*/
|
|
9258
|
-
|
|
9368
|
+
articleAlternativeName: string;
|
|
9259
9369
|
|
|
9260
9370
|
/**
|
|
9261
|
-
*
|
|
9371
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9262
9372
|
*/
|
|
9263
|
-
|
|
9373
|
+
quantityPerAssemblyGroup: number;
|
|
9264
9374
|
|
|
9265
9375
|
/**
|
|
9266
9376
|
* Verpackte Menge der Position
|
|
@@ -9463,6 +9573,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9463
9573
|
*/
|
|
9464
9574
|
storageAreaRefs: Array<ApiObjectReference>;
|
|
9465
9575
|
|
|
9576
|
+
/**
|
|
9577
|
+
* Id des salesChannels der bei der Selektion berücksichtigt wird
|
|
9578
|
+
*/
|
|
9579
|
+
salesChannelId: number;
|
|
9580
|
+
|
|
9466
9581
|
/**
|
|
9467
9582
|
* Nur vollständig lieferbare Aufträge
|
|
9468
9583
|
*/
|
|
@@ -9527,14 +9642,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9527
9642
|
maxPicklistLineCount: number;
|
|
9528
9643
|
|
|
9529
9644
|
/**
|
|
9530
|
-
*
|
|
9645
|
+
* Der zu verwendende Pickwagen
|
|
9531
9646
|
*/
|
|
9532
|
-
|
|
9647
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9533
9648
|
|
|
9534
9649
|
/**
|
|
9535
|
-
*
|
|
9650
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9536
9651
|
*/
|
|
9537
|
-
|
|
9652
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9538
9653
|
|
|
9539
9654
|
/**
|
|
9540
9655
|
* Lagerplätze vorgeben
|
|
@@ -9609,11 +9724,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9609
9724
|
*/
|
|
9610
9725
|
showShippingFormOnPickingFinish: boolean;
|
|
9611
9726
|
|
|
9612
|
-
/**
|
|
9613
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
9614
|
-
*/
|
|
9615
|
-
allowPickingOfServiceArticles: boolean;
|
|
9616
|
-
|
|
9617
9727
|
/**
|
|
9618
9728
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9619
9729
|
*/
|
|
@@ -9624,6 +9734,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9624
9734
|
*/
|
|
9625
9735
|
allowFullConfirmation: boolean;
|
|
9626
9736
|
|
|
9737
|
+
/**
|
|
9738
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9739
|
+
*/
|
|
9740
|
+
allowPickingOfServiceArticles: boolean;
|
|
9741
|
+
|
|
9627
9742
|
/**
|
|
9628
9743
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9629
9744
|
*/
|
|
@@ -9645,14 +9760,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9645
9760
|
printLabelOnCompleteOrder: boolean;
|
|
9646
9761
|
|
|
9647
9762
|
/**
|
|
9648
|
-
*
|
|
9763
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9649
9764
|
*/
|
|
9650
|
-
|
|
9765
|
+
printLabelAfterPicking: boolean;
|
|
9651
9766
|
|
|
9652
9767
|
/**
|
|
9653
|
-
*
|
|
9768
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9654
9769
|
*/
|
|
9655
|
-
|
|
9770
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9656
9771
|
|
|
9657
9772
|
/**
|
|
9658
9773
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -9918,14 +10033,14 @@ export interface ProductArticleRef {
|
|
|
9918
10033
|
export interface ProductDiscount {
|
|
9919
10034
|
|
|
9920
10035
|
/**
|
|
9921
|
-
*
|
|
10036
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9922
10037
|
*/
|
|
9923
|
-
|
|
10038
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9924
10039
|
|
|
9925
10040
|
/**
|
|
9926
|
-
*
|
|
10041
|
+
* Kundengruppe
|
|
9927
10042
|
*/
|
|
9928
|
-
|
|
10043
|
+
customerGroupRef: ApiObjectReference;
|
|
9929
10044
|
|
|
9930
10045
|
/**
|
|
9931
10046
|
* Lieferantengruppe
|
|
@@ -9973,14 +10088,14 @@ export interface ProductDiscount {
|
|
|
9973
10088
|
currencyRef: CurrencyReference;
|
|
9974
10089
|
|
|
9975
10090
|
/**
|
|
9976
|
-
*
|
|
10091
|
+
* Preisgruppe
|
|
9977
10092
|
*/
|
|
9978
|
-
|
|
10093
|
+
priceGroupRef: ApiObjectReference;
|
|
9979
10094
|
|
|
9980
10095
|
/**
|
|
9981
|
-
*
|
|
10096
|
+
* Wert des Rabatts
|
|
9982
10097
|
*/
|
|
9983
|
-
|
|
10098
|
+
modifierValue: number;
|
|
9984
10099
|
|
|
9985
10100
|
/**
|
|
9986
10101
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10127,14 +10242,14 @@ export interface ProductMainGroup {
|
|
|
10127
10242
|
export interface ProductPrice {
|
|
10128
10243
|
|
|
10129
10244
|
/**
|
|
10130
|
-
*
|
|
10245
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10131
10246
|
*/
|
|
10132
|
-
|
|
10247
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10133
10248
|
|
|
10134
10249
|
/**
|
|
10135
|
-
*
|
|
10250
|
+
* Kundengruppe
|
|
10136
10251
|
*/
|
|
10137
|
-
|
|
10252
|
+
customerGroupRef: ApiObjectReference;
|
|
10138
10253
|
|
|
10139
10254
|
/**
|
|
10140
10255
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10352,14 +10467,14 @@ export interface RequestDocument {
|
|
|
10352
10467
|
cashDrawerId: number;
|
|
10353
10468
|
|
|
10354
10469
|
/**
|
|
10355
|
-
*
|
|
10470
|
+
* Der Anzahlungsbetrag
|
|
10356
10471
|
*/
|
|
10357
|
-
|
|
10472
|
+
depositPaymentAmount: number;
|
|
10358
10473
|
|
|
10359
10474
|
/**
|
|
10360
|
-
*
|
|
10475
|
+
* Leistungsdatum
|
|
10361
10476
|
*/
|
|
10362
|
-
|
|
10477
|
+
performanceDate: ScriptingDate;
|
|
10363
10478
|
|
|
10364
10479
|
/**
|
|
10365
10480
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10371,6 +10486,11 @@ export interface RequestDocument {
|
|
|
10371
10486
|
*/
|
|
10372
10487
|
externalNumber: string;
|
|
10373
10488
|
|
|
10489
|
+
/**
|
|
10490
|
+
* Für interne Zwecke: Markiert den Beleg als extern erstellt (z.B. Marktplatz-Rechnung; das Original liegt im Fremdsystem)
|
|
10491
|
+
*/
|
|
10492
|
+
externallyCreated: boolean;
|
|
10493
|
+
|
|
10374
10494
|
/**
|
|
10375
10495
|
* Für interne Zwecke: Leistungsland für das Document
|
|
10376
10496
|
*/
|
|
@@ -10417,14 +10537,14 @@ export interface RequestDocument {
|
|
|
10417
10537
|
lines: Array<RequestDocumentLine>;
|
|
10418
10538
|
|
|
10419
10539
|
/**
|
|
10420
|
-
*
|
|
10540
|
+
* ID der Kasse (bei POS)
|
|
10421
10541
|
*/
|
|
10422
|
-
|
|
10542
|
+
posRegisterId: number;
|
|
10423
10543
|
|
|
10424
10544
|
/**
|
|
10425
|
-
*
|
|
10545
|
+
* Die Vertragsdetails
|
|
10426
10546
|
*/
|
|
10427
|
-
|
|
10547
|
+
contractDetail: DocumentContractDetail;
|
|
10428
10548
|
|
|
10429
10549
|
/**
|
|
10430
10550
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10482,14 +10602,14 @@ export interface RequestDocument {
|
|
|
10482
10602
|
texts: Array<DocumentText>;
|
|
10483
10603
|
|
|
10484
10604
|
/**
|
|
10485
|
-
*
|
|
10605
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10486
10606
|
*/
|
|
10487
|
-
|
|
10607
|
+
processedByPicklistProcessing: boolean;
|
|
10488
10608
|
|
|
10489
10609
|
/**
|
|
10490
|
-
*
|
|
10610
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10491
10611
|
*/
|
|
10492
|
-
|
|
10612
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10493
10613
|
|
|
10494
10614
|
/**
|
|
10495
10615
|
* Die Rabatte des Beleges
|
|
@@ -10610,14 +10730,14 @@ export interface RequestDocumentLine {
|
|
|
10610
10730
|
custom: EavDocumentline;
|
|
10611
10731
|
|
|
10612
10732
|
/**
|
|
10613
|
-
*
|
|
10733
|
+
* (optional) ID des Artikels dieser Position
|
|
10614
10734
|
*/
|
|
10615
|
-
|
|
10735
|
+
articleId: number;
|
|
10616
10736
|
|
|
10617
10737
|
/**
|
|
10618
|
-
*
|
|
10738
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10619
10739
|
*/
|
|
10620
|
-
|
|
10740
|
+
settledOpenItemComment: string;
|
|
10621
10741
|
|
|
10622
10742
|
/**
|
|
10623
10743
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10660,14 +10780,14 @@ export interface RequestDocumentLine {
|
|
|
10660
10780
|
name: string;
|
|
10661
10781
|
|
|
10662
10782
|
/**
|
|
10663
|
-
*
|
|
10783
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10664
10784
|
*/
|
|
10665
|
-
|
|
10785
|
+
externalArticleNumber: string;
|
|
10666
10786
|
|
|
10667
10787
|
/**
|
|
10668
|
-
*
|
|
10788
|
+
* ID der Quell-Belegposition
|
|
10669
10789
|
*/
|
|
10670
|
-
|
|
10790
|
+
sourceLineId: number;
|
|
10671
10791
|
|
|
10672
10792
|
/**
|
|
10673
10793
|
* Buchungen zu dieser Belegposition
|
|
@@ -10675,14 +10795,14 @@ export interface RequestDocumentLine {
|
|
|
10675
10795
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10676
10796
|
|
|
10677
10797
|
/**
|
|
10678
|
-
*
|
|
10798
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10679
10799
|
*/
|
|
10680
|
-
|
|
10800
|
+
doLabelPrint: boolean;
|
|
10681
10801
|
|
|
10682
10802
|
/**
|
|
10683
|
-
*
|
|
10803
|
+
* (optional) Preis des Artikels dieser Position
|
|
10684
10804
|
*/
|
|
10685
|
-
|
|
10805
|
+
productPrice: number;
|
|
10686
10806
|
}
|
|
10687
10807
|
|
|
10688
10808
|
export interface RequestDocumentLineBooking {
|
|
@@ -10811,14 +10931,14 @@ export interface RequestDocumentText {
|
|
|
10811
10931
|
export interface RevenueCalculation {
|
|
10812
10932
|
|
|
10813
10933
|
/**
|
|
10814
|
-
*
|
|
10934
|
+
* Deckungsbeitrag (absolut)
|
|
10815
10935
|
*/
|
|
10816
|
-
|
|
10936
|
+
revenue: number;
|
|
10817
10937
|
|
|
10818
10938
|
/**
|
|
10819
|
-
*
|
|
10939
|
+
* Netto Umsatz
|
|
10820
10940
|
*/
|
|
10821
|
-
|
|
10941
|
+
salesValue: number;
|
|
10822
10942
|
|
|
10823
10943
|
/**
|
|
10824
10944
|
* Einkaufspreis
|
|
@@ -11462,14 +11582,14 @@ export interface ShelfDocumentType {
|
|
|
11462
11582
|
active: boolean;
|
|
11463
11583
|
|
|
11464
11584
|
/**
|
|
11465
|
-
*
|
|
11585
|
+
* access level or reading
|
|
11466
11586
|
*/
|
|
11467
|
-
|
|
11587
|
+
accessLevelRead: number;
|
|
11468
11588
|
|
|
11469
11589
|
/**
|
|
11470
|
-
*
|
|
11590
|
+
* label of type
|
|
11471
11591
|
*/
|
|
11472
|
-
|
|
11592
|
+
label: string;
|
|
11473
11593
|
|
|
11474
11594
|
/**
|
|
11475
11595
|
* storage rule for revisions
|
|
@@ -11515,14 +11635,14 @@ export interface ShelfFile {
|
|
|
11515
11635
|
subFiles: Array<SubFileInfo>;
|
|
11516
11636
|
|
|
11517
11637
|
/**
|
|
11518
|
-
*
|
|
11638
|
+
* revision number of this file
|
|
11519
11639
|
*/
|
|
11520
|
-
|
|
11640
|
+
revisionNumber: number;
|
|
11521
11641
|
|
|
11522
11642
|
/**
|
|
11523
|
-
*
|
|
11643
|
+
* fileSize
|
|
11524
11644
|
*/
|
|
11525
|
-
|
|
11645
|
+
fileSize: number;
|
|
11526
11646
|
|
|
11527
11647
|
/**
|
|
11528
11648
|
* file-extension of this entry
|
|
@@ -11604,14 +11724,14 @@ export interface ShelfShare {
|
|
|
11604
11724
|
publishState: ShelfSharePublishState;
|
|
11605
11725
|
|
|
11606
11726
|
/**
|
|
11607
|
-
*
|
|
11727
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11608
11728
|
*/
|
|
11609
|
-
|
|
11729
|
+
publicUrlDurationInMinutes: number;
|
|
11610
11730
|
|
|
11611
11731
|
/**
|
|
11612
|
-
*
|
|
11732
|
+
* Freifelder
|
|
11613
11733
|
*/
|
|
11614
|
-
|
|
11734
|
+
custom: EavShelfshare;
|
|
11615
11735
|
|
|
11616
11736
|
/**
|
|
11617
11737
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11823,14 +11943,14 @@ export interface StockMovementManualApi {
|
|
|
11823
11943
|
export interface StockTransferApi {
|
|
11824
11944
|
|
|
11825
11945
|
/**
|
|
11826
|
-
*
|
|
11946
|
+
* Ziel-Lager
|
|
11827
11947
|
*/
|
|
11828
|
-
|
|
11948
|
+
targetStorageId: number;
|
|
11829
11949
|
|
|
11830
11950
|
/**
|
|
11831
|
-
*
|
|
11951
|
+
* Seriennummer
|
|
11832
11952
|
*/
|
|
11833
|
-
|
|
11953
|
+
serialNumberId: number;
|
|
11834
11954
|
|
|
11835
11955
|
/**
|
|
11836
11956
|
* Bemerkung
|
|
@@ -12120,6 +12240,11 @@ export interface Supplier {
|
|
|
12120
12240
|
*/
|
|
12121
12241
|
paymentMethodRef: ApiObjectReference;
|
|
12122
12242
|
|
|
12243
|
+
/**
|
|
12244
|
+
* Bestellsperre
|
|
12245
|
+
*/
|
|
12246
|
+
orderBlocked: boolean;
|
|
12247
|
+
|
|
12123
12248
|
/**
|
|
12124
12249
|
* currency code IsoAlpha3
|
|
12125
12250
|
*/
|
|
@@ -12190,14 +12315,14 @@ export const enum TagType {
|
|
|
12190
12315
|
export interface TaxIdForeignCountry {
|
|
12191
12316
|
|
|
12192
12317
|
/**
|
|
12193
|
-
*
|
|
12318
|
+
* Tax ID of the company in the associated country
|
|
12194
12319
|
*/
|
|
12195
|
-
|
|
12320
|
+
taxId: string;
|
|
12196
12321
|
|
|
12197
12322
|
/**
|
|
12198
|
-
*
|
|
12323
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12199
12324
|
*/
|
|
12200
|
-
|
|
12325
|
+
countryCode: string;
|
|
12201
12326
|
|
|
12202
12327
|
/**
|
|
12203
12328
|
* Unique identifier of the Object
|
|
@@ -12360,6 +12485,105 @@ export const enum TextPosition {
|
|
|
12360
12485
|
FOOTER_TEXT = 'FOOTER_TEXT'
|
|
12361
12486
|
}
|
|
12362
12487
|
|
|
12488
|
+
export interface TextTemplate {
|
|
12489
|
+
|
|
12490
|
+
/**
|
|
12491
|
+
* Verwendungszweck des Templates
|
|
12492
|
+
*/
|
|
12493
|
+
templateType: TextTemplate$TextTemplateType;
|
|
12494
|
+
|
|
12495
|
+
/**
|
|
12496
|
+
* Soll der Inhalt des Textbausteins erst bei Belegübernahme gezogen werden?
|
|
12497
|
+
*/
|
|
12498
|
+
resolveContentInFollowUpDocument: boolean;
|
|
12499
|
+
|
|
12500
|
+
/**
|
|
12501
|
+
* Zieldokumenttypen. Geben zusammen mit Vorbelegstypen die Transitionen an für die dieses Template gilt
|
|
12502
|
+
*/
|
|
12503
|
+
targetDocumentTypes: Array<ApiObjectReference>;
|
|
12504
|
+
|
|
12505
|
+
/**
|
|
12506
|
+
* Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
|
|
12507
|
+
*/
|
|
12508
|
+
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12509
|
+
|
|
12510
|
+
/**
|
|
12511
|
+
* Texte in den angebotenen Sprachen
|
|
12512
|
+
*/
|
|
12513
|
+
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12514
|
+
|
|
12515
|
+
/**
|
|
12516
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12517
|
+
*/
|
|
12518
|
+
separateLine: boolean;
|
|
12519
|
+
|
|
12520
|
+
/**
|
|
12521
|
+
* article für den diese Templates gelten
|
|
12522
|
+
*/
|
|
12523
|
+
articleId: number;
|
|
12524
|
+
|
|
12525
|
+
/**
|
|
12526
|
+
* Wann wird ein UI-Hint angezeigt
|
|
12527
|
+
*/
|
|
12528
|
+
uiHintTypes: Array<TextTemplate$UiHintType>;
|
|
12529
|
+
|
|
12530
|
+
/**
|
|
12531
|
+
* ist dieser Baustein aktiv?
|
|
12532
|
+
*/
|
|
12533
|
+
active: boolean;
|
|
12534
|
+
|
|
12535
|
+
/**
|
|
12536
|
+
* Bezeichnung des Bausteins
|
|
12537
|
+
*/
|
|
12538
|
+
label: string;
|
|
12539
|
+
|
|
12540
|
+
/**
|
|
12541
|
+
* Version Identifier for this Object (for PUT)
|
|
12542
|
+
*/
|
|
12543
|
+
version: number;
|
|
12544
|
+
|
|
12545
|
+
/**
|
|
12546
|
+
* Erzeugte DocumentTexts beim Übergang in Folgebelege übernehmen?
|
|
12547
|
+
*/
|
|
12548
|
+
transferableIntoSubsequentDocuments: boolean;
|
|
12549
|
+
|
|
12550
|
+
/**
|
|
12551
|
+
* account für den diese Templates gelten
|
|
12552
|
+
*/
|
|
12553
|
+
accountId: number;
|
|
12554
|
+
|
|
12555
|
+
/**
|
|
12556
|
+
* Verkaufskanal
|
|
12557
|
+
*/
|
|
12558
|
+
salesChannelRef: ApiObjectReference;
|
|
12559
|
+
|
|
12560
|
+
/**
|
|
12561
|
+
* Position für den erzeugten DocumentText
|
|
12562
|
+
*/
|
|
12563
|
+
position: TextPosition;
|
|
12564
|
+
|
|
12565
|
+
/**
|
|
12566
|
+
* Unique identifier of the Object
|
|
12567
|
+
*/
|
|
12568
|
+
id: number;
|
|
12569
|
+
|
|
12570
|
+
/**
|
|
12571
|
+
* MetaInformations for this Object
|
|
12572
|
+
*/
|
|
12573
|
+
info: MetaInfo;
|
|
12574
|
+
}
|
|
12575
|
+
|
|
12576
|
+
export const enum TextTemplate$TextTemplateType {
|
|
12577
|
+
UI_HINT = 'UI_HINT',
|
|
12578
|
+
AUTOMATIC = 'AUTOMATIC',
|
|
12579
|
+
MANUAL = 'MANUAL'
|
|
12580
|
+
}
|
|
12581
|
+
|
|
12582
|
+
export const enum TextTemplate$UiHintType {
|
|
12583
|
+
UI_HINT_MASTER_DATA = 'UI_HINT_MASTER_DATA',
|
|
12584
|
+
UI_HINT_DOCUMENT = 'UI_HINT_DOCUMENT'
|
|
12585
|
+
}
|
|
12586
|
+
|
|
12363
12587
|
export interface TssSignature {
|
|
12364
12588
|
|
|
12365
12589
|
/**
|
|
@@ -12503,14 +12727,14 @@ export interface User {
|
|
|
12503
12727
|
id: number;
|
|
12504
12728
|
|
|
12505
12729
|
/**
|
|
12506
|
-
*
|
|
12730
|
+
* username
|
|
12507
12731
|
*/
|
|
12508
|
-
|
|
12732
|
+
username: string;
|
|
12509
12733
|
|
|
12510
12734
|
/**
|
|
12511
|
-
*
|
|
12735
|
+
* Valid to
|
|
12512
12736
|
*/
|
|
12513
|
-
|
|
12737
|
+
validTo: ScriptingDateTime;
|
|
12514
12738
|
|
|
12515
12739
|
/**
|
|
12516
12740
|
* MetaInformations for this Object
|
|
@@ -12698,14 +12922,14 @@ export interface VariantValue {
|
|
|
12698
12922
|
version: number;
|
|
12699
12923
|
|
|
12700
12924
|
/**
|
|
12701
|
-
*
|
|
12925
|
+
* Variantenattribut
|
|
12702
12926
|
*/
|
|
12703
|
-
|
|
12927
|
+
attributeRef: ApiObjectReference;
|
|
12704
12928
|
|
|
12705
12929
|
/**
|
|
12706
|
-
*
|
|
12930
|
+
* Mehrsprachige Bezeichnungen
|
|
12707
12931
|
*/
|
|
12708
|
-
|
|
12932
|
+
labels: Array<VariantDescription>;
|
|
12709
12933
|
|
|
12710
12934
|
/**
|
|
12711
12935
|
* MetaInformations for this Object
|