@vario-software/types 2026.29.0 → 2026.29.2
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 +16 -0
- package/scripting/services.d.ts +35 -35
- package/scripting/types.d.ts +329 -329
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -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
|
* Country code
|
|
@@ -493,26 +493,26 @@ export interface AccountBankdetail {
|
|
|
493
493
|
*/
|
|
494
494
|
version: number;
|
|
495
495
|
|
|
496
|
-
/**
|
|
497
|
-
* Hauptbankverbindung für
|
|
498
|
-
*/
|
|
499
|
-
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
|
-
|
|
501
496
|
/**
|
|
502
497
|
* city of the bank
|
|
503
498
|
*/
|
|
504
499
|
bankCity: string;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
|
-
*
|
|
502
|
+
* Hauptbankverbindung für
|
|
508
503
|
*/
|
|
509
|
-
|
|
504
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
510
505
|
|
|
511
506
|
/**
|
|
512
507
|
* origin type
|
|
513
508
|
*/
|
|
514
509
|
originType: AccountBankdetail$OriginType;
|
|
515
510
|
|
|
511
|
+
/**
|
|
512
|
+
* Is default bank?
|
|
513
|
+
*/
|
|
514
|
+
defaultBank: boolean;
|
|
515
|
+
|
|
516
516
|
/**
|
|
517
517
|
* IBAN
|
|
518
518
|
*/
|
|
@@ -595,14 +595,14 @@ export interface AccountListing {
|
|
|
595
595
|
export interface AccountLoanValue {
|
|
596
596
|
|
|
597
597
|
/**
|
|
598
|
-
*
|
|
598
|
+
* Nicht berücksichtigter Betrag
|
|
599
599
|
*/
|
|
600
|
-
|
|
600
|
+
unconsideredAmount: number;
|
|
601
601
|
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* Account
|
|
604
604
|
*/
|
|
605
|
-
|
|
605
|
+
accountId: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
608
|
* Betrag aus Aufträgen
|
|
@@ -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
|
|
@@ -1299,14 +1299,14 @@ export interface Article {
|
|
|
1299
1299
|
permissibleForOrderProposal: boolean;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* reference to Product
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
productRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* Versandlabeldruck
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
shippingLabelPrinting: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* Kontingentartikel
|
|
@@ -1557,14 +1557,14 @@ export interface ArticleCustomer {
|
|
|
1557
1557
|
productPrices: Array<ProductPrice>;
|
|
1558
1558
|
|
|
1559
1559
|
/**
|
|
1560
|
-
*
|
|
1560
|
+
* Referenced Article
|
|
1561
1561
|
*/
|
|
1562
|
-
|
|
1562
|
+
articleId: number;
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
1565
|
-
*
|
|
1565
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1566
1566
|
*/
|
|
1567
|
-
|
|
1567
|
+
useDeviatingArticleDescription: boolean;
|
|
1568
1568
|
|
|
1569
1569
|
/**
|
|
1570
1570
|
* Aktiv?
|
|
@@ -2035,14 +2035,14 @@ export interface ArticleStorage {
|
|
|
2035
2035
|
export interface ArticleSupplier {
|
|
2036
2036
|
|
|
2037
2037
|
/**
|
|
2038
|
-
*
|
|
2038
|
+
* Anzeigename des Accounts
|
|
2039
2039
|
*/
|
|
2040
|
-
|
|
2040
|
+
accountDisplayName: string;
|
|
2041
2041
|
|
|
2042
2042
|
/**
|
|
2043
|
-
*
|
|
2043
|
+
* Lieferanten-Meldebestand
|
|
2044
2044
|
*/
|
|
2045
|
-
|
|
2045
|
+
supplierReportingStock: number;
|
|
2046
2046
|
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
@@ -2145,14 +2145,14 @@ export interface ArticleSupplier {
|
|
|
2145
2145
|
dropShippingAllowed: boolean;
|
|
2146
2146
|
|
|
2147
2147
|
/**
|
|
2148
|
-
* Abweichende
|
|
2148
|
+
* Abweichende Produktbeschreibung
|
|
2149
2149
|
*/
|
|
2150
|
-
|
|
2150
|
+
supplierArticleDescription: string;
|
|
2151
2151
|
|
|
2152
2152
|
/**
|
|
2153
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbezeichnung
|
|
2154
2154
|
*/
|
|
2155
|
-
|
|
2155
|
+
supplierArticleName: string;
|
|
2156
2156
|
|
|
2157
2157
|
/**
|
|
2158
2158
|
* Standardpreis Netto
|
|
@@ -2512,14 +2512,14 @@ export interface CountryReference {
|
|
|
2512
2512
|
export interface CreateNewDocumentRequest {
|
|
2513
2513
|
|
|
2514
2514
|
/**
|
|
2515
|
-
* Belegart
|
|
2515
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2516
2516
|
*/
|
|
2517
|
-
|
|
2517
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
*
|
|
2520
|
+
* Belegart
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
documentTypeLabel: string;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Details zum Beleg
|
|
@@ -2630,14 +2630,14 @@ export interface CrmActivity {
|
|
|
2630
2630
|
userRef: ApiObjectReference;
|
|
2631
2631
|
|
|
2632
2632
|
/**
|
|
2633
|
-
*
|
|
2633
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2634
2634
|
*/
|
|
2635
|
-
|
|
2635
|
+
system: boolean;
|
|
2636
2636
|
|
|
2637
2637
|
/**
|
|
2638
|
-
*
|
|
2638
|
+
* tatsächliche Startzeit
|
|
2639
2639
|
*/
|
|
2640
|
-
|
|
2640
|
+
startDateTime: ScriptingDateTime;
|
|
2641
2641
|
|
|
2642
2642
|
/**
|
|
2643
2643
|
* Inhalt dieser Aktivität
|
|
@@ -2867,14 +2867,14 @@ export interface CrmDeal {
|
|
|
2867
2867
|
info: MetaInfo;
|
|
2868
2868
|
|
|
2869
2869
|
/**
|
|
2870
|
-
*
|
|
2870
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2871
2871
|
*/
|
|
2872
|
-
|
|
2872
|
+
assignedUserRef: ApiObjectReference;
|
|
2873
2873
|
|
|
2874
2874
|
/**
|
|
2875
|
-
*
|
|
2875
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2876
2876
|
*/
|
|
2877
|
-
|
|
2877
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2878
2878
|
|
|
2879
2879
|
/**
|
|
2880
2880
|
* Chance (in Prozent)
|
|
@@ -3470,14 +3470,14 @@ export interface CrmSubType {
|
|
|
3470
3470
|
export interface CrmTask {
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
|
-
*
|
|
3478
|
+
* Angebot
|
|
3479
3479
|
*/
|
|
3480
|
-
|
|
3480
|
+
customerOfferRef: DocumentRef;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
3483
|
* Liste von Erinnerungen
|
|
@@ -3879,14 +3879,14 @@ export interface Customer {
|
|
|
3879
3879
|
dueDate: ScriptingDate;
|
|
3880
3880
|
|
|
3881
3881
|
/**
|
|
3882
|
-
*
|
|
3882
|
+
* collective billable
|
|
3883
3883
|
*/
|
|
3884
|
-
|
|
3884
|
+
collectiveBillable: boolean;
|
|
3885
3885
|
|
|
3886
3886
|
/**
|
|
3887
|
-
*
|
|
3887
|
+
* Maximal mögliche Lieferungen
|
|
3888
3888
|
*/
|
|
3889
|
-
|
|
3889
|
+
maxDeliveries: number;
|
|
3890
3890
|
|
|
3891
3891
|
/**
|
|
3892
3892
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4098,14 +4098,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4098
4098
|
export interface DeliveryMethod {
|
|
4099
4099
|
|
|
4100
4100
|
/**
|
|
4101
|
-
*
|
|
4101
|
+
* E-Mail an Versender übergeben
|
|
4102
4102
|
*/
|
|
4103
|
-
|
|
4103
|
+
forwardEmailToShipper: boolean;
|
|
4104
4104
|
|
|
4105
4105
|
/**
|
|
4106
|
-
*
|
|
4106
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4107
4107
|
*/
|
|
4108
|
-
|
|
4108
|
+
splitIntoNewDocument: boolean;
|
|
4109
4109
|
|
|
4110
4110
|
/**
|
|
4111
4111
|
* Min. Gewicht pro Paket
|
|
@@ -4306,14 +4306,14 @@ export interface DmsOutputStream {
|
|
|
4306
4306
|
export interface Document {
|
|
4307
4307
|
|
|
4308
4308
|
/**
|
|
4309
|
-
*
|
|
4309
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4310
4310
|
*/
|
|
4311
|
-
|
|
4311
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4312
4312
|
|
|
4313
4313
|
/**
|
|
4314
|
-
*
|
|
4314
|
+
* Referenz zum Rechnungskonto
|
|
4315
4315
|
*/
|
|
4316
|
-
|
|
4316
|
+
billingAccountRef: ApiObjectReference;
|
|
4317
4317
|
|
|
4318
4318
|
/**
|
|
4319
4319
|
* Externe Belegnummer
|
|
@@ -4394,14 +4394,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4394
4394
|
deliveryQuantityPackages: number;
|
|
4395
4395
|
|
|
4396
4396
|
/**
|
|
4397
|
-
*
|
|
4397
|
+
* Bestellnummer aus Vorbeleg
|
|
4398
4398
|
*/
|
|
4399
|
-
|
|
4399
|
+
referencedOrderNumber: string;
|
|
4400
4400
|
|
|
4401
4401
|
/**
|
|
4402
|
-
*
|
|
4402
|
+
* Leitweg-ID
|
|
4403
4403
|
*/
|
|
4404
|
-
|
|
4404
|
+
buyerReference: string;
|
|
4405
4405
|
|
|
4406
4406
|
/**
|
|
4407
4407
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4459,14 +4459,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4459
4459
|
accountId: number;
|
|
4460
4460
|
|
|
4461
4461
|
/**
|
|
4462
|
-
* Länderkennzeichen
|
|
4462
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4463
4463
|
*/
|
|
4464
|
-
|
|
4464
|
+
performanceCountryCode: string;
|
|
4465
4465
|
|
|
4466
4466
|
/**
|
|
4467
|
-
* Länderkennzeichen
|
|
4467
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4468
4468
|
*/
|
|
4469
|
-
|
|
4469
|
+
sourceCountryCode: string;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
4472
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4566,14 +4566,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4566
4566
|
contractDetail: DocumentContractDetail;
|
|
4567
4567
|
|
|
4568
4568
|
/**
|
|
4569
|
-
*
|
|
4569
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4570
4570
|
*/
|
|
4571
|
-
|
|
4571
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4572
4572
|
|
|
4573
4573
|
/**
|
|
4574
|
-
*
|
|
4574
|
+
* Zahlungsplan vorhanden?
|
|
4575
4575
|
*/
|
|
4576
|
-
|
|
4576
|
+
paymentPlan: boolean;
|
|
4577
4577
|
|
|
4578
4578
|
/**
|
|
4579
4579
|
* Produktionsdetails
|
|
@@ -4641,14 +4641,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4641
4641
|
stackProcessingType: OrderStackProcessingType;
|
|
4642
4642
|
|
|
4643
4643
|
/**
|
|
4644
|
-
*
|
|
4644
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4645
4645
|
*/
|
|
4646
|
-
|
|
4646
|
+
dropShippingInvoiceApproved: boolean;
|
|
4647
4647
|
|
|
4648
4648
|
/**
|
|
4649
|
-
*
|
|
4649
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4650
4650
|
*/
|
|
4651
|
-
|
|
4651
|
+
en16931Profile: EN16931Profile;
|
|
4652
4652
|
|
|
4653
4653
|
/**
|
|
4654
4654
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4825,13 +4825,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4825
4825
|
*/
|
|
4826
4826
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4827
4827
|
|
|
4828
|
-
/**
|
|
4829
|
-
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4830
|
-
true wenn die Quittung ausbalanciert ist
|
|
4831
|
-
|
|
4832
|
-
*/
|
|
4833
|
-
posReceiptBalanced: boolean;
|
|
4834
|
-
|
|
4835
4828
|
/**
|
|
4836
4829
|
* Rückgeld
|
|
4837
4830
|
*/
|
|
@@ -4842,6 +4835,13 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4842
4835
|
*/
|
|
4843
4836
|
deliveryTermRef: ApiObjectReference;
|
|
4844
4837
|
|
|
4838
|
+
/**
|
|
4839
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4840
|
+
true wenn die Quittung ausbalanciert ist
|
|
4841
|
+
|
|
4842
|
+
*/
|
|
4843
|
+
posReceiptBalanced: boolean;
|
|
4844
|
+
|
|
4845
4845
|
/**
|
|
4846
4846
|
* Gesamtbruttogewicht
|
|
4847
4847
|
*/
|
|
@@ -4891,14 +4891,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4891
4891
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4892
4892
|
|
|
4893
4893
|
/**
|
|
4894
|
-
*
|
|
4894
|
+
* Herkunft der Sprache
|
|
4895
4895
|
*/
|
|
4896
|
-
|
|
4896
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4897
4897
|
|
|
4898
4898
|
/**
|
|
4899
|
-
*
|
|
4899
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4900
4900
|
*/
|
|
4901
|
-
|
|
4901
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4902
4902
|
|
|
4903
4903
|
/**
|
|
4904
4904
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -5061,14 +5061,14 @@ export interface DocumentAddress {
|
|
|
5061
5061
|
info: MetaInfo;
|
|
5062
5062
|
|
|
5063
5063
|
/**
|
|
5064
|
-
*
|
|
5064
|
+
* GLN
|
|
5065
5065
|
*/
|
|
5066
|
-
|
|
5066
|
+
globalLocationNumber: string;
|
|
5067
5067
|
|
|
5068
5068
|
/**
|
|
5069
|
-
*
|
|
5069
|
+
* Lieferart
|
|
5070
5070
|
*/
|
|
5071
|
-
|
|
5071
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5072
5072
|
|
|
5073
5073
|
/**
|
|
5074
5074
|
* Postcode
|
|
@@ -5249,14 +5249,14 @@ export interface DocumentContractDetail {
|
|
|
5249
5249
|
runtimeToDate: ScriptingDate;
|
|
5250
5250
|
|
|
5251
5251
|
/**
|
|
5252
|
-
*
|
|
5252
|
+
* Nächste Fälligkeit
|
|
5253
5253
|
*/
|
|
5254
|
-
|
|
5254
|
+
nextDueDate: ScriptingDate;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
5262
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5457,14 +5457,14 @@ export interface DocumentLine {
|
|
|
5457
5457
|
number: string;
|
|
5458
5458
|
|
|
5459
5459
|
/**
|
|
5460
|
-
*
|
|
5460
|
+
* Gesamtbruttogewicht
|
|
5461
5461
|
*/
|
|
5462
|
-
|
|
5462
|
+
totalGrossWeight: number;
|
|
5463
5463
|
|
|
5464
5464
|
/**
|
|
5465
|
-
*
|
|
5465
|
+
* Referenz zur Kundenauftragszeile
|
|
5466
5466
|
*/
|
|
5467
|
-
|
|
5467
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5468
5468
|
|
|
5469
5469
|
/**
|
|
5470
5470
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5506,11 +5506,6 @@ export interface DocumentLine {
|
|
|
5506
5506
|
*/
|
|
5507
5507
|
id: number;
|
|
5508
5508
|
|
|
5509
|
-
/**
|
|
5510
|
-
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5511
|
-
*/
|
|
5512
|
-
positionOfArticleLine: number;
|
|
5513
|
-
|
|
5514
5509
|
/**
|
|
5515
5510
|
* Preis pro Einheit in Basiswährung
|
|
5516
5511
|
*/
|
|
@@ -5522,15 +5517,20 @@ export interface DocumentLine {
|
|
|
5522
5517
|
serialType: ArticleSerialType;
|
|
5523
5518
|
|
|
5524
5519
|
/**
|
|
5525
|
-
*
|
|
5520
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5526
5521
|
*/
|
|
5527
|
-
|
|
5522
|
+
positionOfArticleLine: number;
|
|
5528
5523
|
|
|
5529
5524
|
/**
|
|
5530
5525
|
* Preiseinheit
|
|
5531
5526
|
*/
|
|
5532
5527
|
priceUnit: number;
|
|
5533
5528
|
|
|
5529
|
+
/**
|
|
5530
|
+
* Steuerschema
|
|
5531
|
+
*/
|
|
5532
|
+
taxSchemaRef: ApiObjectReference;
|
|
5533
|
+
|
|
5534
5534
|
/**
|
|
5535
5535
|
* Preisanpassungen - Position Basiswährung
|
|
5536
5536
|
*/
|
|
@@ -5716,18 +5716,18 @@ export interface DocumentLine {
|
|
|
5716
5716
|
*/
|
|
5717
5717
|
commissions: Array<DocumentLineCommission>;
|
|
5718
5718
|
|
|
5719
|
-
/**
|
|
5720
|
-
* Gesamtpreis Position in Basiswährung
|
|
5721
|
-
*/
|
|
5722
|
-
baseTotalLinePrice: number;
|
|
5723
|
-
|
|
5724
5719
|
/**
|
|
5725
5720
|
* Positionstyp
|
|
5726
5721
|
*/
|
|
5727
5722
|
lineType: DocumentLineType;
|
|
5728
5723
|
|
|
5729
5724
|
/**
|
|
5730
|
-
*
|
|
5725
|
+
* Gesamtpreis Position in Basiswährung
|
|
5726
|
+
*/
|
|
5727
|
+
baseTotalLinePrice: number;
|
|
5728
|
+
|
|
5729
|
+
/**
|
|
5730
|
+
* vorgeorderte Menge in Pickvorgang
|
|
5731
5731
|
*/
|
|
5732
5732
|
preOrderPickedQuantity: number;
|
|
5733
5733
|
|
|
@@ -5787,14 +5787,14 @@ export interface DocumentLine {
|
|
|
5787
5787
|
position: number;
|
|
5788
5788
|
|
|
5789
5789
|
/**
|
|
5790
|
-
*
|
|
5790
|
+
* Buchungen
|
|
5791
5791
|
*/
|
|
5792
|
-
|
|
5792
|
+
bookings: Array<DocumentLineBooking>;
|
|
5793
5793
|
|
|
5794
5794
|
/**
|
|
5795
|
-
*
|
|
5795
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5796
5796
|
*/
|
|
5797
|
-
|
|
5797
|
+
recalcLinePriceViaComponents: boolean;
|
|
5798
5798
|
|
|
5799
5799
|
/**
|
|
5800
5800
|
* unit gross Volume in cubic meters
|
|
@@ -5887,14 +5887,14 @@ export interface DocumentLine {
|
|
|
5887
5887
|
custom: EavDocumentline;
|
|
5888
5888
|
|
|
5889
5889
|
/**
|
|
5890
|
-
*
|
|
5890
|
+
* Artikel
|
|
5891
5891
|
*/
|
|
5892
|
-
|
|
5892
|
+
articleId: number;
|
|
5893
5893
|
|
|
5894
5894
|
/**
|
|
5895
|
-
*
|
|
5895
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5896
5896
|
*/
|
|
5897
|
-
|
|
5897
|
+
settledOpenItemComment: string;
|
|
5898
5898
|
|
|
5899
5899
|
/**
|
|
5900
5900
|
* Interne Preisänderungsinformationen
|
|
@@ -6076,14 +6076,14 @@ export interface DocumentLineComponent {
|
|
|
6076
6076
|
custom: EavDocumentlinecomponent;
|
|
6077
6077
|
|
|
6078
6078
|
/**
|
|
6079
|
-
*
|
|
6079
|
+
* Referenz auf den Artikel der Komponente
|
|
6080
6080
|
*/
|
|
6081
|
-
|
|
6081
|
+
articleId: number;
|
|
6082
6082
|
|
|
6083
6083
|
/**
|
|
6084
|
-
*
|
|
6084
|
+
* Gelieferte Menge
|
|
6085
6085
|
*/
|
|
6086
|
-
|
|
6086
|
+
quantityCommitted: number;
|
|
6087
6087
|
|
|
6088
6088
|
/**
|
|
6089
6089
|
* Beschreibung des Artikels
|
|
@@ -6336,14 +6336,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
6336
6336
|
quantityFinished: number;
|
|
6337
6337
|
|
|
6338
6338
|
/**
|
|
6339
|
-
* Produzierte
|
|
6339
|
+
* Produzierte/geplante Menge
|
|
6340
6340
|
*/
|
|
6341
|
-
|
|
6341
|
+
quantity: number;
|
|
6342
6342
|
|
|
6343
6343
|
/**
|
|
6344
|
-
* Produzierte
|
|
6344
|
+
* Produzierte Seriennummer
|
|
6345
6345
|
*/
|
|
6346
|
-
|
|
6346
|
+
serialNumber: ArticleSerialNumber;
|
|
6347
6347
|
|
|
6348
6348
|
/**
|
|
6349
6349
|
* Gebuchte Komponenten
|
|
@@ -6394,14 +6394,14 @@ export interface DocumentLinePosDetail {
|
|
|
6394
6394
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6395
6395
|
|
|
6396
6396
|
/**
|
|
6397
|
-
*
|
|
6397
|
+
* Status der externen Zahlung
|
|
6398
6398
|
*/
|
|
6399
|
-
|
|
6399
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6400
6400
|
|
|
6401
6401
|
/**
|
|
6402
|
-
*
|
|
6402
|
+
* Typ der Einlage/Ausgabe
|
|
6403
6403
|
*/
|
|
6404
|
-
|
|
6404
|
+
depositExpenseTypeId: number;
|
|
6405
6405
|
|
|
6406
6406
|
/**
|
|
6407
6407
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6439,14 +6439,14 @@ export interface DocumentLinePosDetail {
|
|
|
6439
6439
|
balanceBeforeWithdrawal: number;
|
|
6440
6440
|
|
|
6441
6441
|
/**
|
|
6442
|
-
*
|
|
6442
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6443
6443
|
*/
|
|
6444
|
-
|
|
6444
|
+
externalPaymentId: string;
|
|
6445
6445
|
|
|
6446
6446
|
/**
|
|
6447
|
-
*
|
|
6447
|
+
* Typ der Position
|
|
6448
6448
|
*/
|
|
6449
|
-
|
|
6449
|
+
posLineType: PosLineType;
|
|
6450
6450
|
|
|
6451
6451
|
/**
|
|
6452
6452
|
* Unique identifier of the Object
|
|
@@ -6667,14 +6667,14 @@ export interface DocumentPosPayment {
|
|
|
6667
6667
|
version: number;
|
|
6668
6668
|
|
|
6669
6669
|
/**
|
|
6670
|
-
*
|
|
6670
|
+
* Zahlungsart
|
|
6671
6671
|
*/
|
|
6672
|
-
|
|
6672
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6673
6673
|
|
|
6674
6674
|
/**
|
|
6675
|
-
*
|
|
6675
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6676
6676
|
*/
|
|
6677
|
-
|
|
6677
|
+
withdrawalAmount: number;
|
|
6678
6678
|
|
|
6679
6679
|
/**
|
|
6680
6680
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6687,14 +6687,14 @@ export interface DocumentPosPayment {
|
|
|
6687
6687
|
balanceBeforeWithdrawal: number;
|
|
6688
6688
|
|
|
6689
6689
|
/**
|
|
6690
|
-
*
|
|
6690
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6691
6691
|
*/
|
|
6692
|
-
|
|
6692
|
+
externalPaymentId: string;
|
|
6693
6693
|
|
|
6694
6694
|
/**
|
|
6695
|
-
*
|
|
6695
|
+
* Typ der Position
|
|
6696
6696
|
*/
|
|
6697
|
-
|
|
6697
|
+
posLineType: PosLineType;
|
|
6698
6698
|
|
|
6699
6699
|
/**
|
|
6700
6700
|
* Unique identifier of the Object
|
|
@@ -6822,14 +6822,14 @@ export const enum DocumentRounding {
|
|
|
6822
6822
|
export interface DocumentShippingCost {
|
|
6823
6823
|
|
|
6824
6824
|
/**
|
|
6825
|
-
*
|
|
6825
|
+
* Die Versandkosten
|
|
6826
6826
|
*/
|
|
6827
|
-
|
|
6827
|
+
costs: number;
|
|
6828
6828
|
|
|
6829
6829
|
/**
|
|
6830
|
-
*
|
|
6830
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6831
6831
|
*/
|
|
6832
|
-
|
|
6832
|
+
manualCosts: boolean;
|
|
6833
6833
|
|
|
6834
6834
|
/**
|
|
6835
6835
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6957,14 +6957,14 @@ export interface DocumentText {
|
|
|
6957
6957
|
transferableIntoSubsequentDocuments: boolean;
|
|
6958
6958
|
|
|
6959
6959
|
/**
|
|
6960
|
-
*
|
|
6960
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6961
6961
|
*/
|
|
6962
|
-
|
|
6962
|
+
deleted: boolean;
|
|
6963
6963
|
|
|
6964
6964
|
/**
|
|
6965
|
-
*
|
|
6965
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6966
6966
|
*/
|
|
6967
|
-
|
|
6967
|
+
textPosition: TextPosition;
|
|
6968
6968
|
|
|
6969
6969
|
/**
|
|
6970
6970
|
* textBaustein Vorlage
|
|
@@ -7262,14 +7262,14 @@ export const enum DropShippingPolicy {
|
|
|
7262
7262
|
export interface DummySerialNumberStockTransferApi {
|
|
7263
7263
|
|
|
7264
7264
|
/**
|
|
7265
|
-
*
|
|
7265
|
+
* Ziel-Lager
|
|
7266
7266
|
*/
|
|
7267
|
-
|
|
7267
|
+
targetStorageId: number;
|
|
7268
7268
|
|
|
7269
7269
|
/**
|
|
7270
|
-
*
|
|
7270
|
+
* Seriennummer
|
|
7271
7271
|
*/
|
|
7272
|
-
|
|
7272
|
+
serialNumberId: number;
|
|
7273
7273
|
|
|
7274
7274
|
/**
|
|
7275
7275
|
* Bemerkung
|
|
@@ -7282,14 +7282,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7282
7282
|
bookDate: ScriptingDate;
|
|
7283
7283
|
|
|
7284
7284
|
/**
|
|
7285
|
-
*
|
|
7285
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7286
7286
|
*/
|
|
7287
|
-
|
|
7287
|
+
targetExpiryDate: ScriptingDate;
|
|
7288
7288
|
|
|
7289
7289
|
/**
|
|
7290
|
-
*
|
|
7290
|
+
* Die gültige Seriennummer
|
|
7291
7291
|
*/
|
|
7292
|
-
|
|
7292
|
+
targetSerialNumber: string;
|
|
7293
7293
|
|
|
7294
7294
|
/**
|
|
7295
7295
|
* Quell-Lagerplatz
|
|
@@ -7958,26 +7958,26 @@ export interface OpenItem {
|
|
|
7958
7958
|
*/
|
|
7959
7959
|
paymentDueDate: ScriptingDate;
|
|
7960
7960
|
|
|
7961
|
-
/**
|
|
7962
|
-
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7963
|
-
*/
|
|
7964
|
-
sourceCountryCode: string;
|
|
7965
|
-
|
|
7966
7961
|
/**
|
|
7967
7962
|
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7968
7963
|
*/
|
|
7969
7964
|
performanceCountryCode: string;
|
|
7970
7965
|
|
|
7971
7966
|
/**
|
|
7972
|
-
*
|
|
7967
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7973
7968
|
*/
|
|
7974
|
-
|
|
7969
|
+
sourceCountryCode: string;
|
|
7975
7970
|
|
|
7976
7971
|
/**
|
|
7977
7972
|
* agreed Deposit payment date
|
|
7978
7973
|
*/
|
|
7979
7974
|
depositPaymentDate: ScriptingDate;
|
|
7980
7975
|
|
|
7976
|
+
/**
|
|
7977
|
+
* Valutadatum schreibgeschützt
|
|
7978
|
+
*/
|
|
7979
|
+
valueDateReadOnly: boolean;
|
|
7980
|
+
|
|
7981
7981
|
/**
|
|
7982
7982
|
* Does this open item belong to accounts payable or accounts receivable
|
|
7983
7983
|
*/
|
|
@@ -8014,14 +8014,14 @@ export interface OpenItem {
|
|
|
8014
8014
|
depositPaymentAmount: number;
|
|
8015
8015
|
|
|
8016
8016
|
/**
|
|
8017
|
-
*
|
|
8017
|
+
* free payments
|
|
8018
8018
|
*/
|
|
8019
|
-
|
|
8019
|
+
records: Array<OpenItemRecord>;
|
|
8020
8020
|
|
|
8021
8021
|
/**
|
|
8022
|
-
*
|
|
8022
|
+
* Verwendungszweck
|
|
8023
8023
|
*/
|
|
8024
|
-
|
|
8024
|
+
purpose: string;
|
|
8025
8025
|
|
|
8026
8026
|
/**
|
|
8027
8027
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8074,14 +8074,14 @@ export interface OpenItem {
|
|
|
8074
8074
|
sumFee: number;
|
|
8075
8075
|
|
|
8076
8076
|
/**
|
|
8077
|
-
*
|
|
8077
|
+
* The full amount of the payment
|
|
8078
8078
|
*/
|
|
8079
|
-
|
|
8079
|
+
fullPaymentAmount: number;
|
|
8080
8080
|
|
|
8081
8081
|
/**
|
|
8082
|
-
*
|
|
8082
|
+
* Zahlungsplan
|
|
8083
8083
|
*/
|
|
8084
|
-
|
|
8084
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8085
8085
|
|
|
8086
8086
|
/**
|
|
8087
8087
|
* Zahlungssperre
|
|
@@ -8114,14 +8114,14 @@ export interface OpenItem {
|
|
|
8114
8114
|
baseSumDiscount: number;
|
|
8115
8115
|
|
|
8116
8116
|
/**
|
|
8117
|
-
*
|
|
8117
|
+
* Zahlungsvorlage
|
|
8118
8118
|
*/
|
|
8119
|
-
|
|
8119
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8120
8120
|
|
|
8121
8121
|
/**
|
|
8122
|
-
*
|
|
8122
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8123
8123
|
*/
|
|
8124
|
-
|
|
8124
|
+
baseSumDunnings: number;
|
|
8125
8125
|
|
|
8126
8126
|
/**
|
|
8127
8127
|
* Rechnungsbetrag
|
|
@@ -8442,14 +8442,14 @@ export interface OpenItemRecord {
|
|
|
8442
8442
|
totalAmount: number;
|
|
8443
8443
|
|
|
8444
8444
|
/**
|
|
8445
|
-
*
|
|
8445
|
+
* id des records, der diesen storniert hat
|
|
8446
8446
|
*/
|
|
8447
|
-
|
|
8447
|
+
revertedByRecordId: number;
|
|
8448
8448
|
|
|
8449
8449
|
/**
|
|
8450
|
-
*
|
|
8450
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8451
8451
|
*/
|
|
8452
|
-
|
|
8452
|
+
baseCurrencyCode: string;
|
|
8453
8453
|
|
|
8454
8454
|
/**
|
|
8455
8455
|
* qualifier of open item
|
|
@@ -8583,14 +8583,14 @@ export interface PaymentMethod {
|
|
|
8583
8583
|
dunnable: boolean;
|
|
8584
8584
|
|
|
8585
8585
|
/**
|
|
8586
|
-
*
|
|
8586
|
+
* Debitoren-OP abschließen?
|
|
8587
8587
|
*/
|
|
8588
|
-
|
|
8588
|
+
closeCustomerAccountType: boolean;
|
|
8589
8589
|
|
|
8590
8590
|
/**
|
|
8591
|
-
*
|
|
8591
|
+
* translations
|
|
8592
8592
|
*/
|
|
8593
|
-
|
|
8593
|
+
translations: Array<DocumentTypeTerm>;
|
|
8594
8594
|
|
|
8595
8595
|
/**
|
|
8596
8596
|
* +Tage für Folgelastschrift
|
|
@@ -8689,14 +8689,14 @@ export interface PaymentTerm {
|
|
|
8689
8689
|
paymentDiscount2: number;
|
|
8690
8690
|
|
|
8691
8691
|
/**
|
|
8692
|
-
*
|
|
8692
|
+
* Percent for Discount 1
|
|
8693
8693
|
*/
|
|
8694
|
-
|
|
8694
|
+
paymentDiscount1: number;
|
|
8695
8695
|
|
|
8696
8696
|
/**
|
|
8697
|
-
*
|
|
8697
|
+
* printDescription
|
|
8698
8698
|
*/
|
|
8699
|
-
|
|
8699
|
+
printDescription: string;
|
|
8700
8700
|
|
|
8701
8701
|
/**
|
|
8702
8702
|
* for deposit: remaining term
|
|
@@ -9047,14 +9047,14 @@ export interface Picklist {
|
|
|
9047
9047
|
export interface PicklistLine {
|
|
9048
9048
|
|
|
9049
9049
|
/**
|
|
9050
|
-
*
|
|
9050
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9051
9051
|
*/
|
|
9052
|
-
|
|
9052
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9053
9053
|
|
|
9054
9054
|
/**
|
|
9055
|
-
*
|
|
9055
|
+
* Gesammelte Menge der Position
|
|
9056
9056
|
*/
|
|
9057
|
-
|
|
9057
|
+
quantityCollected: number;
|
|
9058
9058
|
|
|
9059
9059
|
/**
|
|
9060
9060
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9092,14 +9092,14 @@ export interface PicklistLine {
|
|
|
9092
9092
|
version: number;
|
|
9093
9093
|
|
|
9094
9094
|
/**
|
|
9095
|
-
*
|
|
9095
|
+
* ID der Quell-Dokumentposition
|
|
9096
9096
|
*/
|
|
9097
|
-
|
|
9097
|
+
sourceDocumentLineId: number;
|
|
9098
9098
|
|
|
9099
9099
|
/**
|
|
9100
|
-
*
|
|
9100
|
+
* Lageranzeigename
|
|
9101
9101
|
*/
|
|
9102
|
-
|
|
9102
|
+
storageDisplayName: string;
|
|
9103
9103
|
|
|
9104
9104
|
/**
|
|
9105
9105
|
* Artikelnummer
|
|
@@ -9107,14 +9107,14 @@ export interface PicklistLine {
|
|
|
9107
9107
|
articleNumber: string;
|
|
9108
9108
|
|
|
9109
9109
|
/**
|
|
9110
|
-
*
|
|
9110
|
+
* Art der Position
|
|
9111
9111
|
*/
|
|
9112
|
-
|
|
9112
|
+
lineType: PicklistLineType;
|
|
9113
9113
|
|
|
9114
9114
|
/**
|
|
9115
|
-
*
|
|
9115
|
+
* Lagernummer
|
|
9116
9116
|
*/
|
|
9117
|
-
|
|
9117
|
+
storageNumber: string;
|
|
9118
9118
|
|
|
9119
9119
|
/**
|
|
9120
9120
|
* ID der Ziel-Dokumentposition
|
|
@@ -9165,14 +9165,14 @@ export interface PicklistLine {
|
|
|
9165
9165
|
export interface PicklistLineBooking {
|
|
9166
9166
|
|
|
9167
9167
|
/**
|
|
9168
|
-
*
|
|
9168
|
+
* Zu buchende Menge (gesammelt)
|
|
9169
9169
|
*/
|
|
9170
|
-
|
|
9170
|
+
quantity: number;
|
|
9171
9171
|
|
|
9172
9172
|
/**
|
|
9173
|
-
*
|
|
9173
|
+
* Seriennummer
|
|
9174
9174
|
*/
|
|
9175
|
-
|
|
9175
|
+
serialNumber: ArticleSerialNumber;
|
|
9176
9176
|
|
|
9177
9177
|
/**
|
|
9178
9178
|
* Anzeigename vom Lagerplatz
|
|
@@ -9444,14 +9444,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9444
9444
|
maxOrderCount: number;
|
|
9445
9445
|
|
|
9446
9446
|
/**
|
|
9447
|
-
*
|
|
9447
|
+
* Nur vollständig lieferbare Positionen
|
|
9448
9448
|
*/
|
|
9449
|
-
|
|
9449
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9450
9450
|
|
|
9451
9451
|
/**
|
|
9452
|
-
*
|
|
9452
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9453
9453
|
*/
|
|
9454
|
-
|
|
9454
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9455
9455
|
|
|
9456
9456
|
/**
|
|
9457
9457
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9526,11 +9526,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9526
9526
|
*/
|
|
9527
9527
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9528
9528
|
|
|
9529
|
-
/**
|
|
9530
|
-
* Lagerplätze vorgeben
|
|
9531
|
-
*/
|
|
9532
|
-
specifyStorageBins: boolean;
|
|
9533
|
-
|
|
9534
9529
|
/**
|
|
9535
9530
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9536
9531
|
*/
|
|
@@ -9542,15 +9537,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9542
9537
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9543
9538
|
|
|
9544
9539
|
/**
|
|
9545
|
-
*
|
|
9540
|
+
* Lagerplätze vorgeben
|
|
9546
9541
|
*/
|
|
9547
|
-
|
|
9542
|
+
specifyStorageBins: boolean;
|
|
9548
9543
|
|
|
9549
9544
|
/**
|
|
9550
9545
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9551
9546
|
*/
|
|
9552
9547
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
9553
9548
|
|
|
9549
|
+
/**
|
|
9550
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9551
|
+
*/
|
|
9552
|
+
sortByRoutePosition: boolean;
|
|
9553
|
+
|
|
9554
9554
|
/**
|
|
9555
9555
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9556
9556
|
*/
|
|
@@ -9609,26 +9609,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9609
9609
|
*/
|
|
9610
9610
|
showShippingFormOnPickingFinish: boolean;
|
|
9611
9611
|
|
|
9612
|
-
/**
|
|
9613
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9614
|
-
*/
|
|
9615
|
-
useDigitalPicklist: boolean;
|
|
9616
|
-
|
|
9617
9612
|
/**
|
|
9618
9613
|
* Sollen Dienstleistungen kommissioniert werden?
|
|
9619
9614
|
*/
|
|
9620
9615
|
allowPickingOfServiceArticles: boolean;
|
|
9621
9616
|
|
|
9622
9617
|
/**
|
|
9623
|
-
*
|
|
9618
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9624
9619
|
*/
|
|
9625
|
-
|
|
9620
|
+
useDigitalPicklist: boolean;
|
|
9626
9621
|
|
|
9627
9622
|
/**
|
|
9628
9623
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9629
9624
|
*/
|
|
9630
9625
|
printLabelOnScan: boolean;
|
|
9631
9626
|
|
|
9627
|
+
/**
|
|
9628
|
+
* Sammelbestätigung erlauben
|
|
9629
|
+
*/
|
|
9630
|
+
allowFullConfirmation: boolean;
|
|
9631
|
+
|
|
9632
9632
|
/**
|
|
9633
9633
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9634
9634
|
*/
|
|
@@ -9744,14 +9744,14 @@ export interface PriceSelectionCriteria {
|
|
|
9744
9744
|
quantity: number;
|
|
9745
9745
|
|
|
9746
9746
|
/**
|
|
9747
|
-
* Liste von
|
|
9747
|
+
* Liste von Account-IDs
|
|
9748
9748
|
*/
|
|
9749
|
-
|
|
9749
|
+
accountIds: Array<number>;
|
|
9750
9750
|
|
|
9751
9751
|
/**
|
|
9752
|
-
* Liste von
|
|
9752
|
+
* Liste von Artikel-IDs
|
|
9753
9753
|
*/
|
|
9754
|
-
|
|
9754
|
+
articleIds: Array<number>;
|
|
9755
9755
|
|
|
9756
9756
|
/**
|
|
9757
9757
|
* ein qualifier
|
|
@@ -10337,19 +10337,19 @@ export const enum RegulationSet {
|
|
|
10337
10337
|
export interface RequestDocument {
|
|
10338
10338
|
|
|
10339
10339
|
/**
|
|
10340
|
-
*
|
|
10340
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10341
10341
|
*/
|
|
10342
|
-
|
|
10342
|
+
incomingGoodsStorageBinId: number;
|
|
10343
10343
|
|
|
10344
10344
|
/**
|
|
10345
|
-
*
|
|
10345
|
+
* Belegdatum
|
|
10346
10346
|
*/
|
|
10347
|
-
|
|
10347
|
+
documentDate: ScriptingDate;
|
|
10348
10348
|
|
|
10349
10349
|
/**
|
|
10350
|
-
*
|
|
10350
|
+
* ID der Kassenschublade (bei POS)
|
|
10351
10351
|
*/
|
|
10352
|
-
|
|
10352
|
+
cashDrawerId: number;
|
|
10353
10353
|
|
|
10354
10354
|
/**
|
|
10355
10355
|
* Leistungsdatum
|
|
@@ -10357,9 +10357,9 @@ export interface RequestDocument {
|
|
|
10357
10357
|
performanceDate: ScriptingDate;
|
|
10358
10358
|
|
|
10359
10359
|
/**
|
|
10360
|
-
*
|
|
10360
|
+
* Der Anzahlungsbetrag
|
|
10361
10361
|
*/
|
|
10362
|
-
|
|
10362
|
+
depositPaymentAmount: number;
|
|
10363
10363
|
|
|
10364
10364
|
/**
|
|
10365
10365
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10417,14 +10417,14 @@ export interface RequestDocument {
|
|
|
10417
10417
|
lines: Array<RequestDocumentLine>;
|
|
10418
10418
|
|
|
10419
10419
|
/**
|
|
10420
|
-
*
|
|
10420
|
+
* ID der Kasse (bei POS)
|
|
10421
10421
|
*/
|
|
10422
|
-
|
|
10422
|
+
posRegisterId: number;
|
|
10423
10423
|
|
|
10424
10424
|
/**
|
|
10425
|
-
*
|
|
10425
|
+
* Die Vertragsdetails
|
|
10426
10426
|
*/
|
|
10427
|
-
|
|
10427
|
+
contractDetail: DocumentContractDetail;
|
|
10428
10428
|
|
|
10429
10429
|
/**
|
|
10430
10430
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10482,14 +10482,14 @@ export interface RequestDocument {
|
|
|
10482
10482
|
texts: Array<DocumentText>;
|
|
10483
10483
|
|
|
10484
10484
|
/**
|
|
10485
|
-
*
|
|
10485
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10486
10486
|
*/
|
|
10487
|
-
|
|
10487
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10488
10488
|
|
|
10489
10489
|
/**
|
|
10490
|
-
*
|
|
10490
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10491
10491
|
*/
|
|
10492
|
-
|
|
10492
|
+
processedByPicklistProcessing: boolean;
|
|
10493
10493
|
|
|
10494
10494
|
/**
|
|
10495
10495
|
* Die Rabatte des Beleges
|
|
@@ -10545,14 +10545,14 @@ export interface RequestDocumentLine {
|
|
|
10545
10545
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10546
10546
|
|
|
10547
10547
|
/**
|
|
10548
|
-
*
|
|
10548
|
+
* Typ dieser Position
|
|
10549
10549
|
*/
|
|
10550
|
-
|
|
10550
|
+
lineType: DocumentLineType;
|
|
10551
10551
|
|
|
10552
10552
|
/**
|
|
10553
|
-
*
|
|
10553
|
+
* FiBu-Angaben
|
|
10554
10554
|
*/
|
|
10555
|
-
|
|
10555
|
+
financeBooking: DocumentFinanceBooking;
|
|
10556
10556
|
|
|
10557
10557
|
/**
|
|
10558
10558
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10610,14 +10610,14 @@ export interface RequestDocumentLine {
|
|
|
10610
10610
|
custom: EavDocumentline;
|
|
10611
10611
|
|
|
10612
10612
|
/**
|
|
10613
|
-
*
|
|
10613
|
+
* (optional) ID des Artikels dieser Position
|
|
10614
10614
|
*/
|
|
10615
|
-
|
|
10615
|
+
articleId: number;
|
|
10616
10616
|
|
|
10617
10617
|
/**
|
|
10618
|
-
*
|
|
10618
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10619
10619
|
*/
|
|
10620
|
-
|
|
10620
|
+
settledOpenItemComment: string;
|
|
10621
10621
|
|
|
10622
10622
|
/**
|
|
10623
10623
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10659,6 +10659,11 @@ export interface RequestDocumentLine {
|
|
|
10659
10659
|
*/
|
|
10660
10660
|
name: string;
|
|
10661
10661
|
|
|
10662
|
+
/**
|
|
10663
|
+
* Buchungen zu dieser Belegposition
|
|
10664
|
+
*/
|
|
10665
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10666
|
+
|
|
10662
10667
|
/**
|
|
10663
10668
|
* Für interne Zwecke: Externe Artikelnummer
|
|
10664
10669
|
*/
|
|
@@ -10669,11 +10674,6 @@ export interface RequestDocumentLine {
|
|
|
10669
10674
|
*/
|
|
10670
10675
|
sourceLineId: number;
|
|
10671
10676
|
|
|
10672
|
-
/**
|
|
10673
|
-
* Buchungen zu dieser Belegposition
|
|
10674
|
-
*/
|
|
10675
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
10676
|
-
|
|
10677
10677
|
/**
|
|
10678
10678
|
* Zu der Zeile Etikettendruck anstoßen
|
|
10679
10679
|
*/
|
|
@@ -10811,14 +10811,14 @@ export interface RequestDocumentText {
|
|
|
10811
10811
|
export interface RevenueCalculation {
|
|
10812
10812
|
|
|
10813
10813
|
/**
|
|
10814
|
-
*
|
|
10814
|
+
* Deckungsbeitrag (absolut)
|
|
10815
10815
|
*/
|
|
10816
|
-
|
|
10816
|
+
revenue: number;
|
|
10817
10817
|
|
|
10818
10818
|
/**
|
|
10819
|
-
*
|
|
10819
|
+
* Netto Umsatz
|
|
10820
10820
|
*/
|
|
10821
|
-
|
|
10821
|
+
salesValue: number;
|
|
10822
10822
|
|
|
10823
10823
|
/**
|
|
10824
10824
|
* Einkaufspreis
|
|
@@ -10839,14 +10839,14 @@ export interface SalesAgent {
|
|
|
10839
10839
|
note: string;
|
|
10840
10840
|
|
|
10841
10841
|
/**
|
|
10842
|
-
*
|
|
10842
|
+
* is sales agent taxable
|
|
10843
10843
|
*/
|
|
10844
|
-
|
|
10844
|
+
taxable: boolean;
|
|
10845
10845
|
|
|
10846
10846
|
/**
|
|
10847
|
-
*
|
|
10847
|
+
* reference to the delivery method
|
|
10848
10848
|
*/
|
|
10849
|
-
|
|
10849
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10850
10850
|
|
|
10851
10851
|
/**
|
|
10852
10852
|
* Freifelder
|
|
@@ -11095,14 +11095,14 @@ export interface ScenarioDimensionValue {
|
|
|
11095
11095
|
export interface ScenarioFactDef {
|
|
11096
11096
|
|
|
11097
11097
|
/**
|
|
11098
|
-
* Attribut
|
|
11098
|
+
* Attribut Typ
|
|
11099
11099
|
*/
|
|
11100
|
-
|
|
11100
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11101
11101
|
|
|
11102
11102
|
/**
|
|
11103
|
-
* Attribut
|
|
11103
|
+
* Attribut Name
|
|
11104
11104
|
*/
|
|
11105
|
-
|
|
11105
|
+
factAttribute: string;
|
|
11106
11106
|
|
|
11107
11107
|
/**
|
|
11108
11108
|
* Unique identifier of the Object
|
|
@@ -11262,14 +11262,14 @@ export interface SequencerConfigurationDetail {
|
|
|
11262
11262
|
export interface SerialNumberWithQuantityApi {
|
|
11263
11263
|
|
|
11264
11264
|
/**
|
|
11265
|
-
*
|
|
11265
|
+
* Menge
|
|
11266
11266
|
*/
|
|
11267
|
-
|
|
11267
|
+
quantity: number;
|
|
11268
11268
|
|
|
11269
11269
|
/**
|
|
11270
|
-
*
|
|
11270
|
+
* Seriennummer
|
|
11271
11271
|
*/
|
|
11272
|
-
|
|
11272
|
+
serialNumber: ArticleSerialNumber;
|
|
11273
11273
|
}
|
|
11274
11274
|
|
|
11275
11275
|
export interface ShelfCommonMapper {
|
|
@@ -11323,14 +11323,14 @@ export interface ShelfDocument {
|
|
|
11323
11323
|
tags: Array<TagDto>;
|
|
11324
11324
|
|
|
11325
11325
|
/**
|
|
11326
|
-
*
|
|
11326
|
+
* Mehrsprachige Bezeichnungen
|
|
11327
11327
|
*/
|
|
11328
|
-
|
|
11328
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11329
11329
|
|
|
11330
11330
|
/**
|
|
11331
|
-
*
|
|
11331
|
+
* share informations
|
|
11332
11332
|
*/
|
|
11333
|
-
|
|
11333
|
+
shares: Array<ShelfShare>;
|
|
11334
11334
|
|
|
11335
11335
|
/**
|
|
11336
11336
|
* Automatische Löschung ab
|
|
@@ -11462,14 +11462,14 @@ export interface ShelfDocumentType {
|
|
|
11462
11462
|
active: boolean;
|
|
11463
11463
|
|
|
11464
11464
|
/**
|
|
11465
|
-
*
|
|
11465
|
+
* access level or reading
|
|
11466
11466
|
*/
|
|
11467
|
-
|
|
11467
|
+
accessLevelRead: number;
|
|
11468
11468
|
|
|
11469
11469
|
/**
|
|
11470
|
-
*
|
|
11470
|
+
* label of type
|
|
11471
11471
|
*/
|
|
11472
|
-
|
|
11472
|
+
label: string;
|
|
11473
11473
|
|
|
11474
11474
|
/**
|
|
11475
11475
|
* storage rule for revisions
|
|
@@ -11515,14 +11515,14 @@ export interface ShelfFile {
|
|
|
11515
11515
|
subFiles: Array<SubFileInfo>;
|
|
11516
11516
|
|
|
11517
11517
|
/**
|
|
11518
|
-
*
|
|
11518
|
+
* revision number of this file
|
|
11519
11519
|
*/
|
|
11520
|
-
|
|
11520
|
+
revisionNumber: number;
|
|
11521
11521
|
|
|
11522
11522
|
/**
|
|
11523
|
-
*
|
|
11523
|
+
* fileSize
|
|
11524
11524
|
*/
|
|
11525
|
-
|
|
11525
|
+
fileSize: number;
|
|
11526
11526
|
|
|
11527
11527
|
/**
|
|
11528
11528
|
* file-extension of this entry
|
|
@@ -11550,14 +11550,14 @@ export interface ShelfFile {
|
|
|
11550
11550
|
version: number;
|
|
11551
11551
|
|
|
11552
11552
|
/**
|
|
11553
|
-
*
|
|
11553
|
+
* meta data
|
|
11554
11554
|
*/
|
|
11555
|
-
|
|
11555
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11556
11556
|
|
|
11557
11557
|
/**
|
|
11558
|
-
*
|
|
11558
|
+
* current reference of this file in our storage
|
|
11559
11559
|
*/
|
|
11560
|
-
|
|
11560
|
+
storageHandle: string;
|
|
11561
11561
|
|
|
11562
11562
|
/**
|
|
11563
11563
|
* MetaInformations for this Object
|
|
@@ -11604,14 +11604,14 @@ export interface ShelfShare {
|
|
|
11604
11604
|
publishState: ShelfSharePublishState;
|
|
11605
11605
|
|
|
11606
11606
|
/**
|
|
11607
|
-
*
|
|
11607
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11608
11608
|
*/
|
|
11609
|
-
|
|
11609
|
+
publicUrlDurationInMinutes: number;
|
|
11610
11610
|
|
|
11611
11611
|
/**
|
|
11612
|
-
*
|
|
11612
|
+
* Freifelder
|
|
11613
11613
|
*/
|
|
11614
|
-
|
|
11614
|
+
custom: EavShelfshare;
|
|
11615
11615
|
|
|
11616
11616
|
/**
|
|
11617
11617
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11823,14 +11823,14 @@ export interface StockMovementManualApi {
|
|
|
11823
11823
|
export interface StockTransferApi {
|
|
11824
11824
|
|
|
11825
11825
|
/**
|
|
11826
|
-
*
|
|
11826
|
+
* Ziel-Lager
|
|
11827
11827
|
*/
|
|
11828
|
-
|
|
11828
|
+
targetStorageId: number;
|
|
11829
11829
|
|
|
11830
11830
|
/**
|
|
11831
|
-
*
|
|
11831
|
+
* Seriennummer
|
|
11832
11832
|
*/
|
|
11833
|
-
|
|
11833
|
+
serialNumberId: number;
|
|
11834
11834
|
|
|
11835
11835
|
/**
|
|
11836
11836
|
* Bemerkung
|
|
@@ -12046,14 +12046,14 @@ export interface Supplier {
|
|
|
12046
12046
|
info: MetaInfo;
|
|
12047
12047
|
|
|
12048
12048
|
/**
|
|
12049
|
-
*
|
|
12049
|
+
* Lieferantengruppe
|
|
12050
12050
|
*/
|
|
12051
|
-
|
|
12051
|
+
supplierGroupRef: ApiObjectReference;
|
|
12052
12052
|
|
|
12053
12053
|
/**
|
|
12054
|
-
*
|
|
12054
|
+
* reference to the delivery method
|
|
12055
12055
|
*/
|
|
12056
|
-
|
|
12056
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12057
12057
|
|
|
12058
12058
|
/**
|
|
12059
12059
|
* tax able or tax free
|
|
@@ -12453,14 +12453,14 @@ export interface User {
|
|
|
12453
12453
|
roles: Array<ApiObjectReference>;
|
|
12454
12454
|
|
|
12455
12455
|
/**
|
|
12456
|
-
*
|
|
12456
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12457
12457
|
*/
|
|
12458
|
-
|
|
12458
|
+
referencedCustomerUserId: number;
|
|
12459
12459
|
|
|
12460
12460
|
/**
|
|
12461
|
-
*
|
|
12461
|
+
* Gruppen
|
|
12462
12462
|
*/
|
|
12463
|
-
|
|
12463
|
+
groups: Array<ApiObjectReference>;
|
|
12464
12464
|
|
|
12465
12465
|
/**
|
|
12466
12466
|
* Is the user active?
|
|
@@ -12503,14 +12503,14 @@ export interface User {
|
|
|
12503
12503
|
id: number;
|
|
12504
12504
|
|
|
12505
12505
|
/**
|
|
12506
|
-
*
|
|
12506
|
+
* Valid to
|
|
12507
12507
|
*/
|
|
12508
|
-
|
|
12508
|
+
validTo: ScriptingDateTime;
|
|
12509
12509
|
|
|
12510
12510
|
/**
|
|
12511
|
-
*
|
|
12511
|
+
* username
|
|
12512
12512
|
*/
|
|
12513
|
-
|
|
12513
|
+
username: string;
|
|
12514
12514
|
|
|
12515
12515
|
/**
|
|
12516
12516
|
* MetaInformations for this Object
|