@vario-software/types 2026.13.3 → 2026.15.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/LICENSE +21 -0
- package/package.json +5 -1
- package/schema/erp.d.ts +2530 -1908
- package/scripting/services.d.ts +47 -32
- package/scripting/types.d.ts +369 -315
package/scripting/types.d.ts
CHANGED
|
@@ -67,6 +67,11 @@ export interface Account {
|
|
|
67
67
|
*/
|
|
68
68
|
taxIds: Array<TaxIdForeignCountry>;
|
|
69
69
|
|
|
70
|
+
/**
|
|
71
|
+
* Manufacturer of this account
|
|
72
|
+
*/
|
|
73
|
+
manufacturer: AccountManufacturer;
|
|
74
|
+
|
|
70
75
|
/**
|
|
71
76
|
* Address-Number
|
|
72
77
|
*/
|
|
@@ -78,14 +83,14 @@ export interface Account {
|
|
|
78
83
|
businessRelationType: BusinessRelationType;
|
|
79
84
|
|
|
80
85
|
/**
|
|
81
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
82
87
|
*/
|
|
83
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
84
89
|
|
|
85
90
|
/**
|
|
86
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
87
92
|
*/
|
|
88
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
94
|
|
|
90
95
|
/**
|
|
91
96
|
* Supplier of this account
|
|
@@ -138,14 +143,14 @@ export interface Account {
|
|
|
138
143
|
payablesSum: number;
|
|
139
144
|
|
|
140
145
|
/**
|
|
141
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
142
147
|
*/
|
|
143
|
-
|
|
148
|
+
costCenter: string;
|
|
144
149
|
|
|
145
150
|
/**
|
|
146
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
147
152
|
*/
|
|
148
|
-
|
|
153
|
+
receivablesSum: number;
|
|
149
154
|
|
|
150
155
|
/**
|
|
151
156
|
* companyLegal for this account
|
|
@@ -178,14 +183,14 @@ export interface Account {
|
|
|
178
183
|
initialContactAt: ScriptingDate;
|
|
179
184
|
|
|
180
185
|
/**
|
|
181
|
-
*
|
|
186
|
+
* Sprache des Accounts
|
|
182
187
|
*/
|
|
183
|
-
|
|
188
|
+
languageCode: string;
|
|
184
189
|
|
|
185
190
|
/**
|
|
186
|
-
*
|
|
191
|
+
* calculation mode of this document
|
|
187
192
|
*/
|
|
188
|
-
|
|
193
|
+
calculationMode: CalculationMode;
|
|
189
194
|
|
|
190
195
|
/**
|
|
191
196
|
* Has this Account a possible duplicate
|
|
@@ -208,14 +213,14 @@ export interface Account {
|
|
|
208
213
|
persons: Array<AccountPerson>;
|
|
209
214
|
|
|
210
215
|
/**
|
|
211
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
212
217
|
*/
|
|
213
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
214
219
|
|
|
215
220
|
/**
|
|
216
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
222
|
*/
|
|
218
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
224
|
|
|
220
225
|
/**
|
|
221
226
|
* Account-Beziehungen
|
|
@@ -285,26 +290,26 @@ export interface AccountAddress {
|
|
|
285
290
|
*/
|
|
286
291
|
regionRef: ApiObjectReference;
|
|
287
292
|
|
|
288
|
-
/**
|
|
289
|
-
* Post office box
|
|
290
|
-
*/
|
|
291
|
-
postOfficeBox: string;
|
|
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
|
* Country code
|
|
305
305
|
*/
|
|
306
306
|
countryCode: string;
|
|
307
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
308
313
|
/**
|
|
309
314
|
* Unique identifier of the Object
|
|
310
315
|
*/
|
|
@@ -323,7 +328,7 @@ export interface AccountAddress {
|
|
|
323
328
|
/**
|
|
324
329
|
* the kind of usages for this address
|
|
325
330
|
*/
|
|
326
|
-
types: Array<
|
|
331
|
+
types: Array<ApiCreatableReference>;
|
|
327
332
|
|
|
328
333
|
/**
|
|
329
334
|
* GLN/ILN as location identifier for this address
|
|
@@ -351,15 +356,20 @@ export interface AccountAddress {
|
|
|
351
356
|
postcode: string;
|
|
352
357
|
|
|
353
358
|
/**
|
|
354
|
-
*
|
|
359
|
+
* Standard für den Account-Typ
|
|
355
360
|
*/
|
|
356
|
-
|
|
361
|
+
defaultForType: boolean;
|
|
357
362
|
|
|
358
363
|
/**
|
|
359
364
|
* Sprache der Adresse
|
|
360
365
|
*/
|
|
361
366
|
languageCode: string;
|
|
362
367
|
|
|
368
|
+
/**
|
|
369
|
+
* calculation mode of this address
|
|
370
|
+
*/
|
|
371
|
+
calculationMode: CalculationMode;
|
|
372
|
+
|
|
363
373
|
/**
|
|
364
374
|
* Version Identifier for this Object (for PUT)
|
|
365
375
|
*/
|
|
@@ -391,14 +401,14 @@ export interface AccountAddress {
|
|
|
391
401
|
streetAddressNumber: string;
|
|
392
402
|
|
|
393
403
|
/**
|
|
394
|
-
*
|
|
404
|
+
* Default contacts
|
|
395
405
|
*/
|
|
396
|
-
|
|
406
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
397
407
|
|
|
398
408
|
/**
|
|
399
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
400
410
|
*/
|
|
401
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
402
412
|
|
|
403
413
|
/**
|
|
404
414
|
* Name3
|
|
@@ -446,14 +456,6 @@ export interface AccountAddress {
|
|
|
446
456
|
defaultAddress: boolean;
|
|
447
457
|
}
|
|
448
458
|
|
|
449
|
-
export const enum AccountAddressType {
|
|
450
|
-
DELIVERY_ADDRESS = 'DELIVERY_ADDRESS',
|
|
451
|
-
BRANCH_ADDRESS = 'BRANCH_ADDRESS',
|
|
452
|
-
RETURNED_ITEM_ADDRESS = 'RETURNED_ITEM_ADDRESS',
|
|
453
|
-
BILLING_ADDRESS = 'BILLING_ADDRESS',
|
|
454
|
-
OTHER = 'OTHER'
|
|
455
|
-
}
|
|
456
|
-
|
|
457
459
|
export interface AccountBankdetail {
|
|
458
460
|
|
|
459
461
|
/**
|
|
@@ -462,14 +464,14 @@ export interface AccountBankdetail {
|
|
|
462
464
|
active: boolean;
|
|
463
465
|
|
|
464
466
|
/**
|
|
465
|
-
*
|
|
467
|
+
* post-code of the bank
|
|
466
468
|
*/
|
|
467
|
-
|
|
469
|
+
bankPostCode: string;
|
|
468
470
|
|
|
469
471
|
/**
|
|
470
|
-
*
|
|
472
|
+
* name of the bank
|
|
471
473
|
*/
|
|
472
|
-
|
|
474
|
+
bankName: string;
|
|
473
475
|
|
|
474
476
|
/**
|
|
475
477
|
* account from, if differs from account-address
|
|
@@ -492,14 +494,14 @@ export interface AccountBankdetail {
|
|
|
492
494
|
bankCity: string;
|
|
493
495
|
|
|
494
496
|
/**
|
|
495
|
-
*
|
|
497
|
+
* Is default bank?
|
|
496
498
|
*/
|
|
497
|
-
|
|
499
|
+
defaultBank: boolean;
|
|
498
500
|
|
|
499
501
|
/**
|
|
500
|
-
*
|
|
502
|
+
* origin type
|
|
501
503
|
*/
|
|
502
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
503
505
|
|
|
504
506
|
/**
|
|
505
507
|
* IBAN
|
|
@@ -540,14 +542,14 @@ export const enum AccountBillingType {
|
|
|
540
542
|
export interface AccountLoanValue {
|
|
541
543
|
|
|
542
544
|
/**
|
|
543
|
-
*
|
|
545
|
+
* Nicht berücksichtigter Betrag
|
|
544
546
|
*/
|
|
545
|
-
|
|
547
|
+
unconsideredAmount: number;
|
|
546
548
|
|
|
547
549
|
/**
|
|
548
|
-
*
|
|
550
|
+
* Account
|
|
549
551
|
*/
|
|
550
|
-
|
|
552
|
+
accountId: number;
|
|
551
553
|
|
|
552
554
|
/**
|
|
553
555
|
* Betrag aus Aufträgen
|
|
@@ -590,6 +592,72 @@ export interface AccountLoanValue {
|
|
|
590
592
|
remainingLoan: number;
|
|
591
593
|
}
|
|
592
594
|
|
|
595
|
+
export interface AccountManufacturer {
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* active true/false
|
|
599
|
+
*/
|
|
600
|
+
active: boolean;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Unique identifier of the Object
|
|
604
|
+
*/
|
|
605
|
+
id: number;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Version Identifier for this Object (for PUT)
|
|
609
|
+
*/
|
|
610
|
+
version: number;
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* Beschreibungen
|
|
614
|
+
*/
|
|
615
|
+
labels: Array<AccountManufacturerDescription>;
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* MetaInformations for this Object
|
|
619
|
+
*/
|
|
620
|
+
info: MetaInfo;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
export interface AccountManufacturerDescription {
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* Hersteller-URL
|
|
627
|
+
*/
|
|
628
|
+
manufacturerUrl: string;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Beschreibung
|
|
632
|
+
*/
|
|
633
|
+
description: string;
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* Bezeichnung
|
|
637
|
+
*/
|
|
638
|
+
label: string;
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* Unique identifier of the Object
|
|
642
|
+
*/
|
|
643
|
+
id: number;
|
|
644
|
+
|
|
645
|
+
/**
|
|
646
|
+
* Sprache der Beschreibung
|
|
647
|
+
*/
|
|
648
|
+
languageCode: string;
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
* Version Identifier for this Object (for PUT)
|
|
652
|
+
*/
|
|
653
|
+
version: number;
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* MetaInformations for this Object
|
|
657
|
+
*/
|
|
658
|
+
info: MetaInfo;
|
|
659
|
+
}
|
|
660
|
+
|
|
593
661
|
export const enum AccountOrderStackProcessingType {
|
|
594
662
|
ACCORDING_TO_CRITERIA = 'ACCORDING_TO_CRITERIA',
|
|
595
663
|
ONLY_FULL_ORDER = 'ONLY_FULL_ORDER',
|
|
@@ -772,6 +840,7 @@ export interface AccountRelation {
|
|
|
772
840
|
export const enum AccountType {
|
|
773
841
|
CUSTOMER = 'CUSTOMER',
|
|
774
842
|
SUPPLIER = 'SUPPLIER',
|
|
843
|
+
MANUFACTURER = 'MANUFACTURER',
|
|
775
844
|
SERVICE_PROVIDER = 'SERVICE_PROVIDER',
|
|
776
845
|
MERCHANT = 'MERCHANT',
|
|
777
846
|
SALES_AGENT = 'SALES_AGENT',
|
|
@@ -897,14 +966,14 @@ export interface Article {
|
|
|
897
966
|
baseCapacityUnit: UnitTypeReference;
|
|
898
967
|
|
|
899
968
|
/**
|
|
900
|
-
*
|
|
969
|
+
* is this product sellable without any quantity at the stock
|
|
901
970
|
*/
|
|
902
|
-
|
|
971
|
+
sellableWithoutStock: boolean;
|
|
903
972
|
|
|
904
973
|
/**
|
|
905
|
-
*
|
|
974
|
+
* Durchschnittl. EKP (Startwert)
|
|
906
975
|
*/
|
|
907
|
-
|
|
976
|
+
initialAvgPurchasePrice: number;
|
|
908
977
|
|
|
909
978
|
/**
|
|
910
979
|
* Seriennummern Auszeichnungsart
|
|
@@ -1007,14 +1076,14 @@ export interface Article {
|
|
|
1007
1076
|
deliveryMethodRef: ApiObjectReference;
|
|
1008
1077
|
|
|
1009
1078
|
/**
|
|
1010
|
-
*
|
|
1079
|
+
* Produktion
|
|
1011
1080
|
*/
|
|
1012
|
-
|
|
1081
|
+
fabrication: boolean;
|
|
1013
1082
|
|
|
1014
1083
|
/**
|
|
1015
|
-
*
|
|
1084
|
+
* Soll-Handelsspanne
|
|
1016
1085
|
*/
|
|
1017
|
-
|
|
1086
|
+
targetTradingMargin: number;
|
|
1018
1087
|
|
|
1019
1088
|
/**
|
|
1020
1089
|
* active
|
|
@@ -1066,26 +1135,26 @@ export interface Article {
|
|
|
1066
1135
|
*/
|
|
1067
1136
|
listingStateChangeTime: ScriptingDateTime;
|
|
1068
1137
|
|
|
1069
|
-
/**
|
|
1070
|
-
* Arbeitseinheit in Minuten
|
|
1071
|
-
*/
|
|
1072
|
-
workUnitInMinutes: number;
|
|
1073
|
-
|
|
1074
1138
|
/**
|
|
1075
1139
|
* Country code
|
|
1076
1140
|
*/
|
|
1077
1141
|
countryOfOriginRef: CountryReference;
|
|
1078
1142
|
|
|
1079
1143
|
/**
|
|
1080
|
-
*
|
|
1144
|
+
* Arbeitseinheit in Minuten
|
|
1081
1145
|
*/
|
|
1082
|
-
|
|
1146
|
+
workUnitInMinutes: number;
|
|
1083
1147
|
|
|
1084
1148
|
/**
|
|
1085
1149
|
* description custom data
|
|
1086
1150
|
*/
|
|
1087
1151
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1088
1152
|
|
|
1153
|
+
/**
|
|
1154
|
+
* Frei kommissionierbar
|
|
1155
|
+
*/
|
|
1156
|
+
freelyPickable: boolean;
|
|
1157
|
+
|
|
1089
1158
|
/**
|
|
1090
1159
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1091
1160
|
*/
|
|
@@ -1146,11 +1215,6 @@ export interface Article {
|
|
|
1146
1215
|
*/
|
|
1147
1216
|
permissibleForOrderProposal: boolean;
|
|
1148
1217
|
|
|
1149
|
-
/**
|
|
1150
|
-
* Artikel ist Gefahrgut
|
|
1151
|
-
*/
|
|
1152
|
-
isDangerousGood: boolean;
|
|
1153
|
-
|
|
1154
1218
|
/**
|
|
1155
1219
|
* Versandlabeldruck
|
|
1156
1220
|
*/
|
|
@@ -1161,6 +1225,11 @@ export interface Article {
|
|
|
1161
1225
|
*/
|
|
1162
1226
|
productRef: ApiObjectReference;
|
|
1163
1227
|
|
|
1228
|
+
/**
|
|
1229
|
+
* Artikel ist Gefahrgut
|
|
1230
|
+
*/
|
|
1231
|
+
isDangerousGood: boolean;
|
|
1232
|
+
|
|
1164
1233
|
/**
|
|
1165
1234
|
* Kontingentartikel
|
|
1166
1235
|
*/
|
|
@@ -1206,11 +1275,6 @@ export interface Article {
|
|
|
1206
1275
|
*/
|
|
1207
1276
|
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1208
1277
|
|
|
1209
|
-
/**
|
|
1210
|
-
* Hersteller des Produkts
|
|
1211
|
-
*/
|
|
1212
|
-
manufacturerId: number;
|
|
1213
|
-
|
|
1214
1278
|
/**
|
|
1215
1279
|
* Art des Haltbarkeitsdatums
|
|
1216
1280
|
*/
|
|
@@ -1435,14 +1499,14 @@ export interface ArticleListing {
|
|
|
1435
1499
|
alternativeName: WithDefaults<String>;
|
|
1436
1500
|
|
|
1437
1501
|
/**
|
|
1438
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1502
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1439
1503
|
*/
|
|
1440
|
-
|
|
1504
|
+
proposedLowestPriceNet: number;
|
|
1441
1505
|
|
|
1442
1506
|
/**
|
|
1443
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1507
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1444
1508
|
*/
|
|
1445
|
-
|
|
1509
|
+
customLowestPriceNet: number;
|
|
1446
1510
|
|
|
1447
1511
|
/**
|
|
1448
1512
|
* der aktuelle listing stand
|
|
@@ -1607,14 +1671,14 @@ export interface ArticleSupplier {
|
|
|
1607
1671
|
accountDisplayName: string;
|
|
1608
1672
|
|
|
1609
1673
|
/**
|
|
1610
|
-
*
|
|
1674
|
+
* Lieferanten-Meldebestand
|
|
1611
1675
|
*/
|
|
1612
|
-
|
|
1676
|
+
supplierReportingStock: number;
|
|
1613
1677
|
|
|
1614
1678
|
/**
|
|
1615
|
-
*
|
|
1679
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1616
1680
|
*/
|
|
1617
|
-
|
|
1681
|
+
useSupplierArticleDescription: boolean;
|
|
1618
1682
|
|
|
1619
1683
|
/**
|
|
1620
1684
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -1672,14 +1736,14 @@ export interface ArticleSupplier {
|
|
|
1672
1736
|
info: MetaInfo;
|
|
1673
1737
|
|
|
1674
1738
|
/**
|
|
1675
|
-
*
|
|
1739
|
+
* Verpackungseinheit
|
|
1676
1740
|
*/
|
|
1677
|
-
|
|
1741
|
+
packagingUnit: number;
|
|
1678
1742
|
|
|
1679
1743
|
/**
|
|
1680
|
-
*
|
|
1744
|
+
* Referenced Article name
|
|
1681
1745
|
*/
|
|
1682
|
-
|
|
1746
|
+
articleName: string;
|
|
1683
1747
|
|
|
1684
1748
|
/**
|
|
1685
1749
|
* Lieferanten-Preise
|
|
@@ -1727,14 +1791,14 @@ export interface ArticleSupplier {
|
|
|
1727
1791
|
defaultNetPrice: number;
|
|
1728
1792
|
|
|
1729
1793
|
/**
|
|
1730
|
-
*
|
|
1794
|
+
* Einkaufseinheit
|
|
1731
1795
|
*/
|
|
1732
|
-
|
|
1796
|
+
purchaseUnit: number;
|
|
1733
1797
|
|
|
1734
1798
|
/**
|
|
1735
|
-
*
|
|
1799
|
+
* Referenced Supplier-Account
|
|
1736
1800
|
*/
|
|
1737
|
-
|
|
1801
|
+
accountId: number;
|
|
1738
1802
|
|
|
1739
1803
|
/**
|
|
1740
1804
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
@@ -2027,14 +2091,14 @@ export interface CrmActivity {
|
|
|
2027
2091
|
userRef: ApiObjectReference;
|
|
2028
2092
|
|
|
2029
2093
|
/**
|
|
2030
|
-
*
|
|
2094
|
+
* tatsächliche Startzeit
|
|
2031
2095
|
*/
|
|
2032
|
-
|
|
2096
|
+
startDateTime: ScriptingDateTime;
|
|
2033
2097
|
|
|
2034
2098
|
/**
|
|
2035
|
-
*
|
|
2099
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2036
2100
|
*/
|
|
2037
|
-
|
|
2101
|
+
system: boolean;
|
|
2038
2102
|
|
|
2039
2103
|
/**
|
|
2040
2104
|
* Inhalt dieser Aktivität
|
|
@@ -2083,14 +2147,14 @@ export interface CrmActivityType {
|
|
|
2083
2147
|
description: string;
|
|
2084
2148
|
|
|
2085
2149
|
/**
|
|
2086
|
-
*
|
|
2150
|
+
* Für "E-Mail-Archivieren"?
|
|
2087
2151
|
*/
|
|
2088
|
-
|
|
2152
|
+
emailArchiving: boolean;
|
|
2089
2153
|
|
|
2090
2154
|
/**
|
|
2091
|
-
*
|
|
2155
|
+
* Bezeichnung
|
|
2092
2156
|
*/
|
|
2093
|
-
|
|
2157
|
+
label: string;
|
|
2094
2158
|
|
|
2095
2159
|
/**
|
|
2096
2160
|
* Abrechenbar?
|
|
@@ -2141,14 +2205,14 @@ export interface CrmActivityType {
|
|
|
2141
2205
|
export interface CrmChecklistItem {
|
|
2142
2206
|
|
|
2143
2207
|
/**
|
|
2144
|
-
*
|
|
2208
|
+
* Text des Checklisten-Elements
|
|
2145
2209
|
*/
|
|
2146
|
-
|
|
2210
|
+
memo: string;
|
|
2147
2211
|
|
|
2148
2212
|
/**
|
|
2149
|
-
*
|
|
2213
|
+
* Ist das Element "angehakt"?
|
|
2150
2214
|
*/
|
|
2151
|
-
|
|
2215
|
+
checked: boolean;
|
|
2152
2216
|
|
|
2153
2217
|
/**
|
|
2154
2218
|
* Unique identifier of the Object
|
|
@@ -2565,14 +2629,14 @@ export interface CrmProject {
|
|
|
2565
2629
|
billedTimes: number;
|
|
2566
2630
|
|
|
2567
2631
|
/**
|
|
2568
|
-
*
|
|
2632
|
+
* Geplanter Projektzeitraum (von)
|
|
2569
2633
|
*/
|
|
2570
|
-
|
|
2634
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2571
2635
|
|
|
2572
2636
|
/**
|
|
2573
|
-
*
|
|
2637
|
+
* Einkaufsbelege
|
|
2574
2638
|
*/
|
|
2575
|
-
|
|
2639
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2576
2640
|
|
|
2577
2641
|
/**
|
|
2578
2642
|
* Verkaufsbelege
|
|
@@ -2697,14 +2761,14 @@ export const enum CrmReferenceType {
|
|
|
2697
2761
|
export interface CrmReminder {
|
|
2698
2762
|
|
|
2699
2763
|
/**
|
|
2700
|
-
*
|
|
2764
|
+
* ID des CRM Objekts
|
|
2701
2765
|
*/
|
|
2702
|
-
|
|
2766
|
+
crmId: number;
|
|
2703
2767
|
|
|
2704
2768
|
/**
|
|
2705
|
-
*
|
|
2769
|
+
* Notiz zur Erinnerung
|
|
2706
2770
|
*/
|
|
2707
|
-
|
|
2771
|
+
note: string;
|
|
2708
2772
|
|
|
2709
2773
|
/**
|
|
2710
2774
|
* Wer soll erinnert werden
|
|
@@ -2790,14 +2854,14 @@ export interface CrmState {
|
|
|
2790
2854
|
readyToBill: boolean;
|
|
2791
2855
|
|
|
2792
2856
|
/**
|
|
2793
|
-
*
|
|
2857
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
2794
2858
|
*/
|
|
2795
|
-
|
|
2859
|
+
needsCommentOnNegativeFinish: boolean;
|
|
2796
2860
|
|
|
2797
2861
|
/**
|
|
2798
|
-
*
|
|
2862
|
+
* Handelt es sich um einen Anfang-Status
|
|
2799
2863
|
*/
|
|
2800
|
-
|
|
2864
|
+
startState: boolean;
|
|
2801
2865
|
|
|
2802
2866
|
/**
|
|
2803
2867
|
* MetaInformations for this Object
|
|
@@ -3021,14 +3085,14 @@ export interface CrmTask {
|
|
|
3021
3085
|
assignedUserRef: ApiObjectReference;
|
|
3022
3086
|
|
|
3023
3087
|
/**
|
|
3024
|
-
*
|
|
3088
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3025
3089
|
*/
|
|
3026
|
-
|
|
3090
|
+
externalRecordedTimes: number;
|
|
3027
3091
|
|
|
3028
3092
|
/**
|
|
3029
|
-
*
|
|
3093
|
+
* Beauftragte Zeit in Sekunden
|
|
3030
3094
|
*/
|
|
3031
|
-
|
|
3095
|
+
effortCommissioned: number;
|
|
3032
3096
|
|
|
3033
3097
|
/**
|
|
3034
3098
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3162,14 +3226,14 @@ export interface CurrencyReference {
|
|
|
3162
3226
|
export interface Customer {
|
|
3163
3227
|
|
|
3164
3228
|
/**
|
|
3165
|
-
*
|
|
3229
|
+
* Option für die Stapelverarbeitung
|
|
3166
3230
|
*/
|
|
3167
|
-
|
|
3231
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3168
3232
|
|
|
3169
3233
|
/**
|
|
3170
|
-
*
|
|
3234
|
+
* reference to customer group
|
|
3171
3235
|
*/
|
|
3172
|
-
|
|
3236
|
+
customerGroupRef: ApiObjectReference;
|
|
3173
3237
|
|
|
3174
3238
|
/**
|
|
3175
3239
|
* Kreditlimit
|
|
@@ -3227,14 +3291,14 @@ export interface Customer {
|
|
|
3227
3291
|
info: MetaInfo;
|
|
3228
3292
|
|
|
3229
3293
|
/**
|
|
3230
|
-
*
|
|
3294
|
+
* reference to the delivery method
|
|
3231
3295
|
*/
|
|
3232
|
-
|
|
3296
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3233
3297
|
|
|
3234
3298
|
/**
|
|
3235
|
-
*
|
|
3299
|
+
* tax able or tax free
|
|
3236
3300
|
*/
|
|
3237
|
-
|
|
3301
|
+
taxable: boolean;
|
|
3238
3302
|
|
|
3239
3303
|
/**
|
|
3240
3304
|
* active true/false
|
|
@@ -3297,14 +3361,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3297
3361
|
export interface DeliveryMethod {
|
|
3298
3362
|
|
|
3299
3363
|
/**
|
|
3300
|
-
*
|
|
3364
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3301
3365
|
*/
|
|
3302
|
-
|
|
3366
|
+
splitIntoNewDocument: boolean;
|
|
3303
3367
|
|
|
3304
3368
|
/**
|
|
3305
|
-
*
|
|
3369
|
+
* E-Mail an Versender übergeben
|
|
3306
3370
|
*/
|
|
3307
|
-
|
|
3371
|
+
forwardEmailToShipper: boolean;
|
|
3308
3372
|
|
|
3309
3373
|
/**
|
|
3310
3374
|
* Min. Gewicht pro Paket
|
|
@@ -3357,14 +3421,14 @@ export interface DeliveryMethod {
|
|
|
3357
3421
|
defaultSizeUnit: UnitTypeReference;
|
|
3358
3422
|
|
|
3359
3423
|
/**
|
|
3360
|
-
*
|
|
3424
|
+
* Quelle für Paketgewicht
|
|
3361
3425
|
*/
|
|
3362
|
-
|
|
3426
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3363
3427
|
|
|
3364
3428
|
/**
|
|
3365
|
-
*
|
|
3429
|
+
* translations
|
|
3366
3430
|
*/
|
|
3367
|
-
|
|
3431
|
+
translations: Array<DocumentTypeTerm>;
|
|
3368
3432
|
|
|
3369
3433
|
/**
|
|
3370
3434
|
* Versand-Anbieter
|
|
@@ -3435,14 +3499,14 @@ export interface DeliveryTerm {
|
|
|
3435
3499
|
label: string;
|
|
3436
3500
|
|
|
3437
3501
|
/**
|
|
3438
|
-
*
|
|
3502
|
+
* information, when the shipping charges should be calculated
|
|
3439
3503
|
*/
|
|
3440
|
-
|
|
3504
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
3441
3505
|
|
|
3442
3506
|
/**
|
|
3443
|
-
*
|
|
3507
|
+
* Sprache des Accounts
|
|
3444
3508
|
*/
|
|
3445
|
-
|
|
3509
|
+
languageCode: string;
|
|
3446
3510
|
|
|
3447
3511
|
/**
|
|
3448
3512
|
* calculate shipping charges per parcel
|
|
@@ -3475,14 +3539,14 @@ export interface DeliveryTerm {
|
|
|
3475
3539
|
id: number;
|
|
3476
3540
|
|
|
3477
3541
|
/**
|
|
3478
|
-
*
|
|
3542
|
+
* Versandkostenartikel
|
|
3479
3543
|
*/
|
|
3480
|
-
|
|
3544
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3481
3545
|
|
|
3482
3546
|
/**
|
|
3483
|
-
*
|
|
3547
|
+
* free shipping net value
|
|
3484
3548
|
*/
|
|
3485
|
-
|
|
3549
|
+
freeShippingNetValue: number;
|
|
3486
3550
|
|
|
3487
3551
|
/**
|
|
3488
3552
|
* MetaInformations for this Object
|
|
@@ -3581,14 +3645,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3581
3645
|
deliveryQuantityPackages: number;
|
|
3582
3646
|
|
|
3583
3647
|
/**
|
|
3584
|
-
*
|
|
3648
|
+
* Bestellnummer aus Vorbeleg
|
|
3585
3649
|
*/
|
|
3586
|
-
|
|
3650
|
+
referencedOrderNumber: string;
|
|
3587
3651
|
|
|
3588
3652
|
/**
|
|
3589
|
-
*
|
|
3653
|
+
* Leitweg-ID
|
|
3590
3654
|
*/
|
|
3591
|
-
|
|
3655
|
+
buyerReference: string;
|
|
3592
3656
|
|
|
3593
3657
|
/**
|
|
3594
3658
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -3641,14 +3705,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3641
3705
|
accountId: number;
|
|
3642
3706
|
|
|
3643
3707
|
/**
|
|
3644
|
-
* Länderkennzeichen
|
|
3708
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3645
3709
|
*/
|
|
3646
|
-
|
|
3710
|
+
performanceCountryCode: string;
|
|
3647
3711
|
|
|
3648
3712
|
/**
|
|
3649
|
-
* Länderkennzeichen
|
|
3713
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3650
3714
|
*/
|
|
3651
|
-
|
|
3715
|
+
sourceCountryCode: string;
|
|
3652
3716
|
|
|
3653
3717
|
/**
|
|
3654
3718
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -3778,14 +3842,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3778
3842
|
processedByWorkflow: boolean;
|
|
3779
3843
|
|
|
3780
3844
|
/**
|
|
3781
|
-
*
|
|
3845
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
3782
3846
|
*/
|
|
3783
|
-
|
|
3847
|
+
baseTotalDocumentPriceModifier: number;
|
|
3784
3848
|
|
|
3785
3849
|
/**
|
|
3786
|
-
*
|
|
3850
|
+
* Telefon an Versender übergeben
|
|
3787
3851
|
*/
|
|
3788
|
-
|
|
3852
|
+
forwardPhoneToShipper: boolean;
|
|
3789
3853
|
|
|
3790
3854
|
/**
|
|
3791
3855
|
* Liste der Belegtexte
|
|
@@ -3808,14 +3872,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3808
3872
|
defaultAddress: DocumentAddress;
|
|
3809
3873
|
|
|
3810
3874
|
/**
|
|
3811
|
-
*
|
|
3875
|
+
* Verarbeitungsoption für Stapel
|
|
3812
3876
|
*/
|
|
3813
|
-
|
|
3877
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3814
3878
|
|
|
3815
3879
|
/**
|
|
3816
|
-
*
|
|
3880
|
+
* Leistungsdatum
|
|
3817
3881
|
*/
|
|
3818
|
-
|
|
3882
|
+
performanceDate: ScriptingDate;
|
|
3819
3883
|
|
|
3820
3884
|
/**
|
|
3821
3885
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -3873,14 +3937,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3873
3937
|
dropShipping: boolean;
|
|
3874
3938
|
|
|
3875
3939
|
/**
|
|
3876
|
-
*
|
|
3940
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
3877
3941
|
*/
|
|
3878
|
-
|
|
3942
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
3879
3943
|
|
|
3880
3944
|
/**
|
|
3881
|
-
*
|
|
3945
|
+
* Gesamtpreis netto
|
|
3882
3946
|
*/
|
|
3883
|
-
|
|
3947
|
+
totalNetPrice: number;
|
|
3884
3948
|
|
|
3885
3949
|
/**
|
|
3886
3950
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4003,9 +4067,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4003
4067
|
documentState: DocumentTypeState;
|
|
4004
4068
|
|
|
4005
4069
|
/**
|
|
4006
|
-
*
|
|
4070
|
+
* Referenz auf Lieferbedingung
|
|
4007
4071
|
*/
|
|
4008
|
-
|
|
4072
|
+
deliveryTermRef: ApiObjectReference;
|
|
4009
4073
|
|
|
4010
4074
|
/**
|
|
4011
4075
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4015,9 +4079,9 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4015
4079
|
posReceiptBalanced: boolean;
|
|
4016
4080
|
|
|
4017
4081
|
/**
|
|
4018
|
-
*
|
|
4082
|
+
* Rückgeld
|
|
4019
4083
|
*/
|
|
4020
|
-
|
|
4084
|
+
posReceiptChangeAmount: number;
|
|
4021
4085
|
|
|
4022
4086
|
/**
|
|
4023
4087
|
* Gesamtbruttogewicht
|
|
@@ -4040,14 +4104,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4040
4104
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4041
4105
|
|
|
4042
4106
|
/**
|
|
4043
|
-
*
|
|
4107
|
+
* Status der USt-ID-Prüfung
|
|
4044
4108
|
*/
|
|
4045
|
-
|
|
4109
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4046
4110
|
|
|
4047
4111
|
/**
|
|
4048
|
-
*
|
|
4112
|
+
* Rechnungsadresse
|
|
4049
4113
|
*/
|
|
4050
|
-
|
|
4114
|
+
billingAddress: DocumentAddress;
|
|
4051
4115
|
|
|
4052
4116
|
/**
|
|
4053
4117
|
* Bestellt durch Ansprechpartner
|
|
@@ -4208,14 +4272,14 @@ export interface DocumentAddress {
|
|
|
4208
4272
|
postOfficeBox: string;
|
|
4209
4273
|
|
|
4210
4274
|
/**
|
|
4211
|
-
*
|
|
4275
|
+
* country code IsoAlpha3
|
|
4212
4276
|
*/
|
|
4213
|
-
|
|
4277
|
+
countryCode: string;
|
|
4214
4278
|
|
|
4215
4279
|
/**
|
|
4216
|
-
*
|
|
4280
|
+
* Street
|
|
4217
4281
|
*/
|
|
4218
|
-
|
|
4282
|
+
street: string;
|
|
4219
4283
|
|
|
4220
4284
|
/**
|
|
4221
4285
|
* Unique identifier of the Object
|
|
@@ -4273,14 +4337,14 @@ export interface DocumentAddress {
|
|
|
4273
4337
|
additionalAddressLine2: string;
|
|
4274
4338
|
|
|
4275
4339
|
/**
|
|
4276
|
-
*
|
|
4340
|
+
* Lieferbedingungen
|
|
4277
4341
|
*/
|
|
4278
|
-
|
|
4342
|
+
deliveryTermRef: ApiObjectReference;
|
|
4279
4343
|
|
|
4280
4344
|
/**
|
|
4281
|
-
*
|
|
4345
|
+
* Street address number
|
|
4282
4346
|
*/
|
|
4283
|
-
|
|
4347
|
+
streetAddressNumber: string;
|
|
4284
4348
|
|
|
4285
4349
|
/**
|
|
4286
4350
|
* address line 3
|
|
@@ -4414,14 +4478,14 @@ export interface DocumentContractDetail {
|
|
|
4414
4478
|
runtimeToDate: ScriptingDate;
|
|
4415
4479
|
|
|
4416
4480
|
/**
|
|
4417
|
-
*
|
|
4481
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4418
4482
|
*/
|
|
4419
|
-
|
|
4483
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4420
4484
|
|
|
4421
4485
|
/**
|
|
4422
|
-
*
|
|
4486
|
+
* Nächste Fälligkeit
|
|
4423
4487
|
*/
|
|
4424
|
-
|
|
4488
|
+
nextDueDate: ScriptingDate;
|
|
4425
4489
|
|
|
4426
4490
|
/**
|
|
4427
4491
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4675,6 +4739,11 @@ export interface DocumentLine {
|
|
|
4675
4739
|
*/
|
|
4676
4740
|
price: number;
|
|
4677
4741
|
|
|
4742
|
+
/**
|
|
4743
|
+
* Positionstyp
|
|
4744
|
+
*/
|
|
4745
|
+
lineType: DocumentLineType;
|
|
4746
|
+
|
|
4678
4747
|
/**
|
|
4679
4748
|
* Gesamtpreis Position in Basiswährung
|
|
4680
4749
|
*/
|
|
@@ -4685,11 +4754,6 @@ export interface DocumentLine {
|
|
|
4685
4754
|
*/
|
|
4686
4755
|
financeBooking: DocumentFinanceBooking;
|
|
4687
4756
|
|
|
4688
|
-
/**
|
|
4689
|
-
* Positionstyp
|
|
4690
|
-
*/
|
|
4691
|
-
lineType: DocumentLineType;
|
|
4692
|
-
|
|
4693
4757
|
/**
|
|
4694
4758
|
* vorgeorderte Menge in Pickvorgang
|
|
4695
4759
|
*/
|
|
@@ -4721,24 +4785,24 @@ export interface DocumentLine {
|
|
|
4721
4785
|
id: number;
|
|
4722
4786
|
|
|
4723
4787
|
/**
|
|
4724
|
-
*
|
|
4788
|
+
* Serientyp
|
|
4725
4789
|
*/
|
|
4726
|
-
|
|
4790
|
+
serialType: ArticleSerialType;
|
|
4727
4791
|
|
|
4728
4792
|
/**
|
|
4729
|
-
*
|
|
4793
|
+
* Preis pro Einheit in Basiswährung
|
|
4730
4794
|
*/
|
|
4731
|
-
|
|
4795
|
+
basePrice: number;
|
|
4732
4796
|
|
|
4733
4797
|
/**
|
|
4734
|
-
*
|
|
4798
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
4735
4799
|
*/
|
|
4736
|
-
|
|
4800
|
+
positionOfArticleLine: number;
|
|
4737
4801
|
|
|
4738
4802
|
/**
|
|
4739
|
-
*
|
|
4803
|
+
* Externe Referenz zum VDS-Paket
|
|
4740
4804
|
*/
|
|
4741
|
-
|
|
4805
|
+
externalReferenceVds: string;
|
|
4742
4806
|
|
|
4743
4807
|
/**
|
|
4744
4808
|
* MetaInformations for this Object
|
|
@@ -4746,14 +4810,14 @@ export interface DocumentLine {
|
|
|
4746
4810
|
info: MetaInfo;
|
|
4747
4811
|
|
|
4748
4812
|
/**
|
|
4749
|
-
*
|
|
4813
|
+
* Preiseinheit
|
|
4750
4814
|
*/
|
|
4751
|
-
|
|
4815
|
+
priceUnit: number;
|
|
4752
4816
|
|
|
4753
4817
|
/**
|
|
4754
|
-
*
|
|
4818
|
+
* Steuerschema
|
|
4755
4819
|
*/
|
|
4756
|
-
|
|
4820
|
+
taxSchemaRef: ApiObjectReference;
|
|
4757
4821
|
|
|
4758
4822
|
/**
|
|
4759
4823
|
* Lieferart
|
|
@@ -4885,26 +4949,26 @@ export interface DocumentLine {
|
|
|
4885
4949
|
*/
|
|
4886
4950
|
revenueCalculation: RevenueCalculation;
|
|
4887
4951
|
|
|
4888
|
-
/**
|
|
4889
|
-
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
4890
|
-
*/
|
|
4891
|
-
totalLinePrice: number;
|
|
4892
|
-
|
|
4893
4952
|
/**
|
|
4894
4953
|
* Einheitentyp
|
|
4895
4954
|
*/
|
|
4896
4955
|
unitType: UnitTypeReference;
|
|
4897
4956
|
|
|
4898
4957
|
/**
|
|
4899
|
-
*
|
|
4958
|
+
* Positionssumme [Brutto, Netto], also Preis*Menge ./. Positionsrabatte
|
|
4900
4959
|
*/
|
|
4901
|
-
|
|
4960
|
+
totalLinePrice: number;
|
|
4902
4961
|
|
|
4903
4962
|
/**
|
|
4904
4963
|
* Zubehör Einfügeart
|
|
4905
4964
|
*/
|
|
4906
4965
|
insertTerm: AccessoryInsertTerm;
|
|
4907
4966
|
|
|
4967
|
+
/**
|
|
4968
|
+
* Referenz zur Basiszeile
|
|
4969
|
+
*/
|
|
4970
|
+
baseLineId: number;
|
|
4971
|
+
|
|
4908
4972
|
/**
|
|
4909
4973
|
* Einheit Bruttogewicht
|
|
4910
4974
|
*/
|
|
@@ -4936,14 +5000,14 @@ export interface DocumentLine {
|
|
|
4936
5000
|
baseSalesValueNet: number;
|
|
4937
5001
|
|
|
4938
5002
|
/**
|
|
4939
|
-
*
|
|
5003
|
+
* Einheit Nettogewicht
|
|
4940
5004
|
*/
|
|
4941
|
-
|
|
5005
|
+
netWeightUnit: UnitTypeReference;
|
|
4942
5006
|
|
|
4943
5007
|
/**
|
|
4944
|
-
*
|
|
5008
|
+
* Vertragsinformationen
|
|
4945
5009
|
*/
|
|
4946
|
-
|
|
5010
|
+
contractDetail: DocumentContractDetail;
|
|
4947
5011
|
|
|
4948
5012
|
/**
|
|
4949
5013
|
* Menge
|
|
@@ -5175,14 +5239,14 @@ export interface DocumentLineComponent {
|
|
|
5175
5239
|
custom: EavDocumentlinecomponent;
|
|
5176
5240
|
|
|
5177
5241
|
/**
|
|
5178
|
-
*
|
|
5242
|
+
* Referenz auf den Artikel der Komponente
|
|
5179
5243
|
*/
|
|
5180
|
-
|
|
5244
|
+
articleId: number;
|
|
5181
5245
|
|
|
5182
5246
|
/**
|
|
5183
|
-
*
|
|
5247
|
+
* Gelieferte Menge
|
|
5184
5248
|
*/
|
|
5185
|
-
|
|
5249
|
+
quantityCommitted: number;
|
|
5186
5250
|
|
|
5187
5251
|
/**
|
|
5188
5252
|
* Beschreibung des Artikels
|
|
@@ -5947,14 +6011,14 @@ export interface DocumentType {
|
|
|
5947
6011
|
labels: Array<DocumentTypeLabel>;
|
|
5948
6012
|
|
|
5949
6013
|
/**
|
|
5950
|
-
*
|
|
6014
|
+
* Zählerkreis
|
|
5951
6015
|
*/
|
|
5952
|
-
|
|
6016
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
5953
6017
|
|
|
5954
6018
|
/**
|
|
5955
|
-
*
|
|
6019
|
+
* nächste Belegnummer
|
|
5956
6020
|
*/
|
|
5957
|
-
|
|
6021
|
+
nextNumber: string;
|
|
5958
6022
|
|
|
5959
6023
|
/**
|
|
5960
6024
|
* Sortierung
|
|
@@ -6425,14 +6489,14 @@ export interface FabricationRevertRequest {
|
|
|
6425
6489
|
quantity: number;
|
|
6426
6490
|
|
|
6427
6491
|
/**
|
|
6428
|
-
*
|
|
6492
|
+
* Material automatisch stornieren
|
|
6429
6493
|
*/
|
|
6430
|
-
|
|
6494
|
+
autoRevertComponents: boolean;
|
|
6431
6495
|
|
|
6432
6496
|
/**
|
|
6433
|
-
*
|
|
6497
|
+
* ID der zu stornierenden Position
|
|
6434
6498
|
*/
|
|
6435
|
-
|
|
6499
|
+
documentLineId: number;
|
|
6436
6500
|
|
|
6437
6501
|
/**
|
|
6438
6502
|
* Zu stornierende Seriennummern
|
|
@@ -6448,14 +6512,14 @@ export interface FabricationRevertRequest {
|
|
|
6448
6512
|
export interface FabricationSerialNumber {
|
|
6449
6513
|
|
|
6450
6514
|
/**
|
|
6451
|
-
*
|
|
6515
|
+
* MHD / Verfallsdatum
|
|
6452
6516
|
*/
|
|
6453
|
-
|
|
6517
|
+
expiryDate: ScriptingDate;
|
|
6454
6518
|
|
|
6455
6519
|
/**
|
|
6456
|
-
*
|
|
6520
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6457
6521
|
*/
|
|
6458
|
-
|
|
6522
|
+
serialNumberId: number;
|
|
6459
6523
|
|
|
6460
6524
|
/**
|
|
6461
6525
|
* Bemerkung
|
|
@@ -7036,14 +7100,14 @@ export interface Picklist {
|
|
|
7036
7100
|
export interface PicklistLine {
|
|
7037
7101
|
|
|
7038
7102
|
/**
|
|
7039
|
-
*
|
|
7103
|
+
* Gesammelte Menge der Position
|
|
7040
7104
|
*/
|
|
7041
|
-
|
|
7105
|
+
quantityCollected: number;
|
|
7042
7106
|
|
|
7043
7107
|
/**
|
|
7044
|
-
*
|
|
7108
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7045
7109
|
*/
|
|
7046
|
-
|
|
7110
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7047
7111
|
|
|
7048
7112
|
/**
|
|
7049
7113
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7081,14 +7145,14 @@ export interface PicklistLine {
|
|
|
7081
7145
|
version: number;
|
|
7082
7146
|
|
|
7083
7147
|
/**
|
|
7084
|
-
*
|
|
7148
|
+
* Lageranzeigename
|
|
7085
7149
|
*/
|
|
7086
|
-
|
|
7150
|
+
storageDisplayName: string;
|
|
7087
7151
|
|
|
7088
7152
|
/**
|
|
7089
|
-
*
|
|
7153
|
+
* ID der Quell-Dokumentposition
|
|
7090
7154
|
*/
|
|
7091
|
-
|
|
7155
|
+
sourceDocumentLineId: number;
|
|
7092
7156
|
|
|
7093
7157
|
/**
|
|
7094
7158
|
* Artikelnummer
|
|
@@ -7425,11 +7489,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7425
7489
|
*/
|
|
7426
7490
|
alternativeSelectionInVql: string;
|
|
7427
7491
|
|
|
7428
|
-
/**
|
|
7429
|
-
* Selektion über den Bereich vom Lieferdatum
|
|
7430
|
-
*/
|
|
7431
|
-
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7432
|
-
|
|
7433
7492
|
/**
|
|
7434
7493
|
* Nur vollständig lieferbare Positionen
|
|
7435
7494
|
*/
|
|
@@ -7440,6 +7499,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7440
7499
|
*/
|
|
7441
7500
|
maxOrderCount: number;
|
|
7442
7501
|
|
|
7502
|
+
/**
|
|
7503
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7504
|
+
*/
|
|
7505
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7506
|
+
|
|
7443
7507
|
/**
|
|
7444
7508
|
* Selektion über den Bereich vom Belegdatum
|
|
7445
7509
|
*/
|
|
@@ -7509,9 +7573,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7509
7573
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7510
7574
|
|
|
7511
7575
|
/**
|
|
7512
|
-
*
|
|
7576
|
+
* Lagerplätze vorgeben
|
|
7513
7577
|
*/
|
|
7514
|
-
|
|
7578
|
+
specifyStorageBins: boolean;
|
|
7515
7579
|
|
|
7516
7580
|
/**
|
|
7517
7581
|
* Der zu verwendende Pickwagen
|
|
@@ -7519,9 +7583,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7519
7583
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7520
7584
|
|
|
7521
7585
|
/**
|
|
7522
|
-
*
|
|
7586
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7523
7587
|
*/
|
|
7524
|
-
|
|
7588
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7525
7589
|
|
|
7526
7590
|
/**
|
|
7527
7591
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -7577,14 +7641,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7577
7641
|
alwaysShowDeliveryMethod: boolean;
|
|
7578
7642
|
|
|
7579
7643
|
/**
|
|
7580
|
-
*
|
|
7644
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
7581
7645
|
*/
|
|
7582
|
-
|
|
7646
|
+
autoPrintDeliveryDocument: boolean;
|
|
7583
7647
|
|
|
7584
7648
|
/**
|
|
7585
|
-
*
|
|
7649
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
7586
7650
|
*/
|
|
7587
|
-
|
|
7651
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
7588
7652
|
|
|
7589
7653
|
/**
|
|
7590
7654
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -7670,14 +7734,14 @@ export interface PriceSelectionCriteria {
|
|
|
7670
7734
|
date: ScriptingDate;
|
|
7671
7735
|
|
|
7672
7736
|
/**
|
|
7673
|
-
*
|
|
7737
|
+
* Die Preisgruppe
|
|
7674
7738
|
*/
|
|
7675
|
-
|
|
7739
|
+
priceGroupId: number;
|
|
7676
7740
|
|
|
7677
7741
|
/**
|
|
7678
|
-
*
|
|
7742
|
+
* Eine Menge
|
|
7679
7743
|
*/
|
|
7680
|
-
|
|
7744
|
+
quantity: number;
|
|
7681
7745
|
|
|
7682
7746
|
/**
|
|
7683
7747
|
* Liste von Artikel-IDs
|
|
@@ -7694,11 +7758,6 @@ export interface PriceSelectionCriteria {
|
|
|
7694
7758
|
*/
|
|
7695
7759
|
qualifier: ProductPriceQualifier;
|
|
7696
7760
|
|
|
7697
|
-
/**
|
|
7698
|
-
* Ein Herstellet
|
|
7699
|
-
*/
|
|
7700
|
-
manufacturerId: number;
|
|
7701
|
-
|
|
7702
7761
|
/**
|
|
7703
7762
|
* Die Warengruppe
|
|
7704
7763
|
*/
|
|
@@ -7863,11 +7922,6 @@ export interface ProductDiscount {
|
|
|
7863
7922
|
*/
|
|
7864
7923
|
articleRef: ApiObjectReference;
|
|
7865
7924
|
|
|
7866
|
-
/**
|
|
7867
|
-
* Hersteller
|
|
7868
|
-
*/
|
|
7869
|
-
manufacturerRef: ApiObjectReference;
|
|
7870
|
-
|
|
7871
7925
|
/**
|
|
7872
7926
|
* Gültig von
|
|
7873
7927
|
*/
|
|
@@ -7899,14 +7953,14 @@ export interface ProductDiscount {
|
|
|
7899
7953
|
currencyRef: CurrencyReference;
|
|
7900
7954
|
|
|
7901
7955
|
/**
|
|
7902
|
-
*
|
|
7956
|
+
* Preisgruppe
|
|
7903
7957
|
*/
|
|
7904
|
-
|
|
7958
|
+
priceGroupRef: ApiObjectReference;
|
|
7905
7959
|
|
|
7906
7960
|
/**
|
|
7907
|
-
*
|
|
7961
|
+
* Wert des Rabatts
|
|
7908
7962
|
*/
|
|
7909
|
-
|
|
7963
|
+
modifierValue: number;
|
|
7910
7964
|
|
|
7911
7965
|
/**
|
|
7912
7966
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -7929,14 +7983,14 @@ export interface ProductDiscount {
|
|
|
7929
7983
|
validUntil: ScriptingDate;
|
|
7930
7984
|
|
|
7931
7985
|
/**
|
|
7932
|
-
*
|
|
7986
|
+
* Name des Rabatts
|
|
7933
7987
|
*/
|
|
7934
|
-
|
|
7988
|
+
modifierName: string;
|
|
7935
7989
|
|
|
7936
7990
|
/**
|
|
7937
|
-
*
|
|
7991
|
+
* Account, für den der Rabatt gültig ist
|
|
7938
7992
|
*/
|
|
7939
|
-
|
|
7993
|
+
accountRef: ApiObjectReference;
|
|
7940
7994
|
|
|
7941
7995
|
/**
|
|
7942
7996
|
* Unique identifier of the Object
|
|
@@ -8077,11 +8131,6 @@ export interface ProductPrice {
|
|
|
8077
8131
|
*/
|
|
8078
8132
|
articleRef: ApiObjectReference;
|
|
8079
8133
|
|
|
8080
|
-
/**
|
|
8081
|
-
* Hersteller
|
|
8082
|
-
*/
|
|
8083
|
-
manufacturerRef: ApiObjectReference;
|
|
8084
|
-
|
|
8085
8134
|
/**
|
|
8086
8135
|
* Netto-Preis
|
|
8087
8136
|
*/
|
|
@@ -8282,14 +8331,14 @@ export interface RequestDocument {
|
|
|
8282
8331
|
contractDetail: DocumentContractDetail;
|
|
8283
8332
|
|
|
8284
8333
|
/**
|
|
8285
|
-
*
|
|
8334
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8286
8335
|
*/
|
|
8287
|
-
|
|
8336
|
+
paymentTermId: number;
|
|
8288
8337
|
|
|
8289
8338
|
/**
|
|
8290
|
-
*
|
|
8339
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8291
8340
|
*/
|
|
8292
|
-
|
|
8341
|
+
supplierAccountId: number;
|
|
8293
8342
|
|
|
8294
8343
|
/**
|
|
8295
8344
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -8302,14 +8351,14 @@ export interface RequestDocument {
|
|
|
8302
8351
|
custom: EavDocument;
|
|
8303
8352
|
|
|
8304
8353
|
/**
|
|
8305
|
-
*
|
|
8354
|
+
* reference to the corresponding document in an external system
|
|
8306
8355
|
*/
|
|
8307
|
-
|
|
8356
|
+
externalId: string;
|
|
8308
8357
|
|
|
8309
8358
|
/**
|
|
8310
|
-
*
|
|
8359
|
+
* target document type for document copy
|
|
8311
8360
|
*/
|
|
8312
|
-
|
|
8361
|
+
targetDocumentType: DocumentType;
|
|
8313
8362
|
|
|
8314
8363
|
/**
|
|
8315
8364
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -8395,14 +8444,14 @@ export interface RequestDocumentLine {
|
|
|
8395
8444
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8396
8445
|
|
|
8397
8446
|
/**
|
|
8398
|
-
*
|
|
8447
|
+
* Typ dieser Position
|
|
8399
8448
|
*/
|
|
8400
|
-
|
|
8449
|
+
lineType: DocumentLineType;
|
|
8401
8450
|
|
|
8402
8451
|
/**
|
|
8403
|
-
*
|
|
8452
|
+
* FiBu-Angaben
|
|
8404
8453
|
*/
|
|
8405
|
-
|
|
8454
|
+
financeBooking: DocumentFinanceBooking;
|
|
8406
8455
|
|
|
8407
8456
|
/**
|
|
8408
8457
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -8613,14 +8662,14 @@ export interface RequestDocumentText {
|
|
|
8613
8662
|
export interface RevenueCalculation {
|
|
8614
8663
|
|
|
8615
8664
|
/**
|
|
8616
|
-
*
|
|
8665
|
+
* Deckungsbeitrag (absolut)
|
|
8617
8666
|
*/
|
|
8618
|
-
|
|
8667
|
+
revenue: number;
|
|
8619
8668
|
|
|
8620
8669
|
/**
|
|
8621
|
-
*
|
|
8670
|
+
* Netto Umsatz
|
|
8622
8671
|
*/
|
|
8623
|
-
|
|
8672
|
+
salesValue: number;
|
|
8624
8673
|
|
|
8625
8674
|
/**
|
|
8626
8675
|
* Einkaufspreis
|
|
@@ -9108,14 +9157,14 @@ export interface ShelfDocument {
|
|
|
9108
9157
|
tags: Array<TagDto>;
|
|
9109
9158
|
|
|
9110
9159
|
/**
|
|
9111
|
-
*
|
|
9160
|
+
* Mehrsprachige Bezeichnungen
|
|
9112
9161
|
*/
|
|
9113
|
-
|
|
9162
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9114
9163
|
|
|
9115
9164
|
/**
|
|
9116
|
-
*
|
|
9165
|
+
* share informations
|
|
9117
9166
|
*/
|
|
9118
|
-
|
|
9167
|
+
shares: Array<ShelfShare>;
|
|
9119
9168
|
|
|
9120
9169
|
/**
|
|
9121
9170
|
* Automatische Löschung ab
|
|
@@ -9247,14 +9296,14 @@ export interface ShelfDocumentType {
|
|
|
9247
9296
|
active: boolean;
|
|
9248
9297
|
|
|
9249
9298
|
/**
|
|
9250
|
-
*
|
|
9299
|
+
* access level or reading
|
|
9251
9300
|
*/
|
|
9252
|
-
|
|
9301
|
+
accessLevelRead: number;
|
|
9253
9302
|
|
|
9254
9303
|
/**
|
|
9255
|
-
*
|
|
9304
|
+
* label of type
|
|
9256
9305
|
*/
|
|
9257
|
-
|
|
9306
|
+
label: string;
|
|
9258
9307
|
|
|
9259
9308
|
/**
|
|
9260
9309
|
* storage rule for revisions
|
|
@@ -9300,14 +9349,14 @@ export interface ShelfFile {
|
|
|
9300
9349
|
subFiles: Array<SubFileInfo>;
|
|
9301
9350
|
|
|
9302
9351
|
/**
|
|
9303
|
-
*
|
|
9352
|
+
* revision number of this file
|
|
9304
9353
|
*/
|
|
9305
|
-
|
|
9354
|
+
revisionNumber: number;
|
|
9306
9355
|
|
|
9307
9356
|
/**
|
|
9308
|
-
*
|
|
9357
|
+
* fileSize
|
|
9309
9358
|
*/
|
|
9310
|
-
|
|
9359
|
+
fileSize: number;
|
|
9311
9360
|
|
|
9312
9361
|
/**
|
|
9313
9362
|
* file-extension of this entry
|
|
@@ -9386,14 +9435,14 @@ export interface ShelfShare {
|
|
|
9386
9435
|
publishState: ShelfSharePublishState;
|
|
9387
9436
|
|
|
9388
9437
|
/**
|
|
9389
|
-
*
|
|
9438
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9390
9439
|
*/
|
|
9391
|
-
|
|
9440
|
+
publicUrlDurationInMinutes: number;
|
|
9392
9441
|
|
|
9393
9442
|
/**
|
|
9394
|
-
*
|
|
9443
|
+
* Freifelder
|
|
9395
9444
|
*/
|
|
9396
|
-
|
|
9445
|
+
custom: EavShelfshare;
|
|
9397
9446
|
|
|
9398
9447
|
/**
|
|
9399
9448
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9619,14 +9668,14 @@ export interface Supplier {
|
|
|
9619
9668
|
supplierGroupRef: ApiObjectReference;
|
|
9620
9669
|
|
|
9621
9670
|
/**
|
|
9622
|
-
*
|
|
9671
|
+
* reference to the delivery method
|
|
9623
9672
|
*/
|
|
9624
|
-
|
|
9673
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9625
9674
|
|
|
9626
9675
|
/**
|
|
9627
|
-
*
|
|
9676
|
+
* tax able or tax free
|
|
9628
9677
|
*/
|
|
9629
|
-
|
|
9678
|
+
taxable: boolean;
|
|
9630
9679
|
|
|
9631
9680
|
/**
|
|
9632
9681
|
* Mahnen?
|
|
@@ -9758,14 +9807,14 @@ export const enum TagType {
|
|
|
9758
9807
|
export interface TaxIdForeignCountry {
|
|
9759
9808
|
|
|
9760
9809
|
/**
|
|
9761
|
-
*
|
|
9810
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
9762
9811
|
*/
|
|
9763
|
-
|
|
9812
|
+
countryCode: string;
|
|
9764
9813
|
|
|
9765
9814
|
/**
|
|
9766
|
-
*
|
|
9815
|
+
* Tax ID of the company in the associated country
|
|
9767
9816
|
*/
|
|
9768
|
-
|
|
9817
|
+
taxId: string;
|
|
9769
9818
|
|
|
9770
9819
|
/**
|
|
9771
9820
|
* Unique identifier of the Object
|
|
@@ -9997,6 +10046,11 @@ export interface User {
|
|
|
9997
10046
|
*/
|
|
9998
10047
|
roles: Array<ApiObjectReference>;
|
|
9999
10048
|
|
|
10049
|
+
/**
|
|
10050
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10051
|
+
*/
|
|
10052
|
+
referencedCustomerUserId: number;
|
|
10053
|
+
|
|
10000
10054
|
/**
|
|
10001
10055
|
* Gruppen
|
|
10002
10056
|
*/
|