@vario-software/types 2026.33.4 → 2026.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +113 -8
- package/scripting/services.d.ts +87 -71
- package/scripting/types.d.ts +339 -293
package/scripting/types.d.ts
CHANGED
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Standard-Ansprechpartner
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
defaultPerson: AccountPerson;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -291,26 +291,26 @@ export interface AccountAddress {
|
|
|
291
291
|
*/
|
|
292
292
|
regionRef: ApiObjectReference;
|
|
293
293
|
|
|
294
|
-
/**
|
|
295
|
-
* Title
|
|
296
|
-
*/
|
|
297
|
-
titleRef: ApiCreatableReference;
|
|
298
|
-
|
|
299
294
|
/**
|
|
300
295
|
* Post office box
|
|
301
296
|
*/
|
|
302
297
|
postOfficeBox: string;
|
|
303
298
|
|
|
304
299
|
/**
|
|
305
|
-
*
|
|
300
|
+
* Title
|
|
306
301
|
*/
|
|
307
|
-
|
|
302
|
+
titleRef: ApiCreatableReference;
|
|
308
303
|
|
|
309
304
|
/**
|
|
310
305
|
* Country code
|
|
311
306
|
*/
|
|
312
307
|
countryCode: string;
|
|
313
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Street
|
|
311
|
+
*/
|
|
312
|
+
street: string;
|
|
313
|
+
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
316
316
|
*/
|
|
@@ -387,14 +387,14 @@ export interface AccountAddress {
|
|
|
387
387
|
version: number;
|
|
388
388
|
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* tax identification number/ UST-ID-Nr.
|
|
391
391
|
*/
|
|
392
|
-
|
|
392
|
+
taxIdentificationNumber: string;
|
|
393
393
|
|
|
394
394
|
/**
|
|
395
|
-
*
|
|
395
|
+
* Additional address line1
|
|
396
396
|
*/
|
|
397
|
-
|
|
397
|
+
additionalAddressLine1: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
400
|
* Parcel station
|
|
@@ -495,14 +495,14 @@ export interface AccountBankdetail {
|
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
|
-
*
|
|
498
|
+
* Hauptbankverbindung für
|
|
499
499
|
*/
|
|
500
|
-
|
|
500
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
501
501
|
|
|
502
502
|
/**
|
|
503
|
-
*
|
|
503
|
+
* city of the bank
|
|
504
504
|
*/
|
|
505
|
-
|
|
505
|
+
bankCity: string;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
508
|
* origin type
|
|
@@ -596,14 +596,14 @@ export interface AccountListing {
|
|
|
596
596
|
export interface AccountLoanValue {
|
|
597
597
|
|
|
598
598
|
/**
|
|
599
|
-
*
|
|
599
|
+
* Nicht berücksichtigter Betrag
|
|
600
600
|
*/
|
|
601
|
-
|
|
601
|
+
unconsideredAmount: number;
|
|
602
602
|
|
|
603
603
|
/**
|
|
604
|
-
*
|
|
604
|
+
* Account
|
|
605
605
|
*/
|
|
606
|
-
|
|
606
|
+
accountId: number;
|
|
607
607
|
|
|
608
608
|
/**
|
|
609
609
|
* Betrag aus Aufträgen
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Kreditlimit
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
maximalLoan: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
payablesSum: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1005,14 +1005,14 @@ export interface Article {
|
|
|
1005
1005
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1006
1006
|
|
|
1007
1007
|
/**
|
|
1008
|
-
*
|
|
1008
|
+
* Gefahrgut Informationen
|
|
1009
1009
|
*/
|
|
1010
|
-
|
|
1010
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1011
1011
|
|
|
1012
1012
|
/**
|
|
1013
|
-
*
|
|
1013
|
+
* Zolltarifnummer
|
|
1014
1014
|
*/
|
|
1015
|
-
|
|
1015
|
+
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
1018
|
* Product custom data
|
|
@@ -1235,14 +1235,14 @@ export interface Article {
|
|
|
1235
1235
|
freelyPickable: boolean;
|
|
1236
1236
|
|
|
1237
1237
|
/**
|
|
1238
|
-
*
|
|
1238
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1239
1239
|
*/
|
|
1240
|
-
|
|
1240
|
+
taxLiabilityReversed: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* Notiz
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* gross sales prices
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
grossSalesPrice: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Vorgabe Herstellungskosten
|
|
@@ -1598,6 +1598,11 @@ export interface ArticleCustomer {
|
|
|
1598
1598
|
*/
|
|
1599
1599
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1600
1600
|
|
|
1601
|
+
/**
|
|
1602
|
+
* Kunden-Preise
|
|
1603
|
+
*/
|
|
1604
|
+
productPrices: Array<ProductPrice>;
|
|
1605
|
+
|
|
1601
1606
|
/**
|
|
1602
1607
|
* Referenced Article
|
|
1603
1608
|
*/
|
|
@@ -1608,11 +1613,6 @@ export interface ArticleCustomer {
|
|
|
1608
1613
|
*/
|
|
1609
1614
|
useDeviatingArticleDescription: boolean;
|
|
1610
1615
|
|
|
1611
|
-
/**
|
|
1612
|
-
* Kunden-Preise
|
|
1613
|
-
*/
|
|
1614
|
-
productPrices: Array<ProductPrice>;
|
|
1615
|
-
|
|
1616
1616
|
/**
|
|
1617
1617
|
* Aktiv?
|
|
1618
1618
|
*/
|
|
@@ -1984,14 +1984,14 @@ export const enum ArticleSerialType {
|
|
|
1984
1984
|
export interface ArticleStorage {
|
|
1985
1985
|
|
|
1986
1986
|
/**
|
|
1987
|
-
*
|
|
1987
|
+
* Bestand im Lager
|
|
1988
1988
|
*/
|
|
1989
|
-
|
|
1989
|
+
quantityInStock: number;
|
|
1990
1990
|
|
|
1991
1991
|
/**
|
|
1992
|
-
*
|
|
1992
|
+
* Nachschub ab
|
|
1993
1993
|
*/
|
|
1994
|
-
|
|
1994
|
+
replenishmentFrom: number;
|
|
1995
1995
|
|
|
1996
1996
|
/**
|
|
1997
1997
|
* Meldebestand
|
|
@@ -2167,14 +2167,14 @@ export interface ArticleSupplier {
|
|
|
2167
2167
|
packagingUnit: number;
|
|
2168
2168
|
|
|
2169
2169
|
/**
|
|
2170
|
-
*
|
|
2170
|
+
* Lieferanten-Preise
|
|
2171
2171
|
*/
|
|
2172
|
-
|
|
2172
|
+
productPrices: Array<ProductPrice>;
|
|
2173
2173
|
|
|
2174
2174
|
/**
|
|
2175
|
-
*
|
|
2175
|
+
* Referenced Article
|
|
2176
2176
|
*/
|
|
2177
|
-
|
|
2177
|
+
articleId: number;
|
|
2178
2178
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* Aktiv?
|
|
@@ -2211,11 +2211,6 @@ export interface ArticleSupplier {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
defaultNetPrice: number;
|
|
2213
2213
|
|
|
2214
|
-
/**
|
|
2215
|
-
* Referenced Supplier-Account
|
|
2216
|
-
*/
|
|
2217
|
-
accountId: number;
|
|
2218
|
-
|
|
2219
2214
|
/**
|
|
2220
2215
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2221
2216
|
*/
|
|
@@ -2226,6 +2221,11 @@ export interface ArticleSupplier {
|
|
|
2226
2221
|
*/
|
|
2227
2222
|
purchaseUnit: number;
|
|
2228
2223
|
|
|
2224
|
+
/**
|
|
2225
|
+
* Referenced Supplier-Account
|
|
2226
|
+
*/
|
|
2227
|
+
accountId: number;
|
|
2228
|
+
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2231
2231
|
*/
|
|
@@ -2791,14 +2791,14 @@ export interface CrmActivity {
|
|
|
2791
2791
|
userRef: ApiObjectReference;
|
|
2792
2792
|
|
|
2793
2793
|
/**
|
|
2794
|
-
*
|
|
2794
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2795
2795
|
*/
|
|
2796
|
-
|
|
2796
|
+
system: boolean;
|
|
2797
2797
|
|
|
2798
2798
|
/**
|
|
2799
|
-
*
|
|
2799
|
+
* tatsächliche Startzeit
|
|
2800
2800
|
*/
|
|
2801
|
-
|
|
2801
|
+
startDateTime: ScriptingDateTime;
|
|
2802
2802
|
|
|
2803
2803
|
/**
|
|
2804
2804
|
* Inhalt dieser Aktivität
|
|
@@ -3339,14 +3339,14 @@ export interface CrmProject {
|
|
|
3339
3339
|
billedTimes: number;
|
|
3340
3340
|
|
|
3341
3341
|
/**
|
|
3342
|
-
*
|
|
3342
|
+
* Geplanter Projektzeitraum (von)
|
|
3343
3343
|
*/
|
|
3344
|
-
|
|
3344
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3345
3345
|
|
|
3346
3346
|
/**
|
|
3347
|
-
*
|
|
3347
|
+
* Einkaufsbelege
|
|
3348
3348
|
*/
|
|
3349
|
-
|
|
3349
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3350
3350
|
|
|
3351
3351
|
/**
|
|
3352
3352
|
* Verkaufsbelege
|
|
@@ -3477,14 +3477,14 @@ export const enum CrmReferenceType {
|
|
|
3477
3477
|
export interface CrmReminder {
|
|
3478
3478
|
|
|
3479
3479
|
/**
|
|
3480
|
-
*
|
|
3480
|
+
* Notiz zur Erinnerung
|
|
3481
3481
|
*/
|
|
3482
|
-
|
|
3482
|
+
note: string;
|
|
3483
3483
|
|
|
3484
3484
|
/**
|
|
3485
|
-
*
|
|
3485
|
+
* ID des CRM Objekts
|
|
3486
3486
|
*/
|
|
3487
|
-
|
|
3487
|
+
crmId: number;
|
|
3488
3488
|
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Wer soll erinnert werden
|
|
@@ -3881,14 +3881,14 @@ export interface CrmTask {
|
|
|
3881
3881
|
blocksTaskRefs: Array<ApiObjectReference>;
|
|
3882
3882
|
|
|
3883
3883
|
/**
|
|
3884
|
-
*
|
|
3884
|
+
* Soll die Aufgabe veröffentlicht werden?
|
|
3885
3885
|
*/
|
|
3886
|
-
|
|
3886
|
+
publish: boolean;
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
|
-
*
|
|
3889
|
+
* Weitere Teilnehmer vom Auftragnehmer
|
|
3890
3890
|
*/
|
|
3891
|
-
|
|
3891
|
+
additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
|
|
3892
3892
|
|
|
3893
3893
|
/**
|
|
3894
3894
|
* Fortschritt in Prozent
|
|
@@ -4075,14 +4075,14 @@ export interface Customer {
|
|
|
4075
4075
|
stackProcessingPriority: number;
|
|
4076
4076
|
|
|
4077
4077
|
/**
|
|
4078
|
-
*
|
|
4078
|
+
* reference to product price group
|
|
4079
4079
|
*/
|
|
4080
|
-
|
|
4080
|
+
productPriceGroupRef: ApiObjectReference;
|
|
4081
4081
|
|
|
4082
4082
|
/**
|
|
4083
|
-
*
|
|
4083
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
4084
4084
|
*/
|
|
4085
|
-
|
|
4085
|
+
collectiveInvoiceManually: boolean;
|
|
4086
4086
|
|
|
4087
4087
|
/**
|
|
4088
4088
|
* Unique identifier of the Object
|
|
@@ -4268,6 +4268,11 @@ export interface DeliveryMethod {
|
|
|
4268
4268
|
*/
|
|
4269
4269
|
forwardEmailToShipper: boolean;
|
|
4270
4270
|
|
|
4271
|
+
/**
|
|
4272
|
+
* Barcode
|
|
4273
|
+
*/
|
|
4274
|
+
identifier: string;
|
|
4275
|
+
|
|
4271
4276
|
/**
|
|
4272
4277
|
* Min. Gewicht pro Paket
|
|
4273
4278
|
*/
|
|
@@ -4318,26 +4323,26 @@ export interface DeliveryMethod {
|
|
|
4318
4323
|
*/
|
|
4319
4324
|
defaultSizeUnit: UnitTypeReference;
|
|
4320
4325
|
|
|
4321
|
-
/**
|
|
4322
|
-
* Quelle für Paketgewicht
|
|
4323
|
-
*/
|
|
4324
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4325
|
-
|
|
4326
4326
|
/**
|
|
4327
4327
|
* translations
|
|
4328
4328
|
*/
|
|
4329
4329
|
translations: Array<DocumentTypeTerm>;
|
|
4330
4330
|
|
|
4331
4331
|
/**
|
|
4332
|
-
*
|
|
4332
|
+
* Quelle für Paketgewicht
|
|
4333
4333
|
*/
|
|
4334
|
-
|
|
4334
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4335
4335
|
|
|
4336
4336
|
/**
|
|
4337
4337
|
* Versand-Anbieter
|
|
4338
4338
|
*/
|
|
4339
4339
|
vdsCarrierId: number;
|
|
4340
4340
|
|
|
4341
|
+
/**
|
|
4342
|
+
* Gültige Ländercodes
|
|
4343
|
+
*/
|
|
4344
|
+
validCountryCodes: Array<string>;
|
|
4345
|
+
|
|
4341
4346
|
/**
|
|
4342
4347
|
* Standardgewichtseinheit
|
|
4343
4348
|
*/
|
|
@@ -4467,14 +4472,14 @@ export interface DmsOutputStream {
|
|
|
4467
4472
|
export interface Document {
|
|
4468
4473
|
|
|
4469
4474
|
/**
|
|
4470
|
-
*
|
|
4475
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4471
4476
|
*/
|
|
4472
|
-
|
|
4477
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4473
4478
|
|
|
4474
4479
|
/**
|
|
4475
|
-
*
|
|
4480
|
+
* Referenz zum Rechnungskonto
|
|
4476
4481
|
*/
|
|
4477
|
-
|
|
4482
|
+
billingAccountRef: ApiObjectReference;
|
|
4478
4483
|
|
|
4479
4484
|
/**
|
|
4480
4485
|
* Externe Belegnummer
|
|
@@ -4512,14 +4517,14 @@ export interface Document {
|
|
|
4512
4517
|
totalVat: number;
|
|
4513
4518
|
|
|
4514
4519
|
/**
|
|
4515
|
-
*
|
|
4520
|
+
* Name der bestellenden Person
|
|
4516
4521
|
*/
|
|
4517
|
-
|
|
4522
|
+
orderedBy: string;
|
|
4518
4523
|
|
|
4519
4524
|
/**
|
|
4520
|
-
*
|
|
4525
|
+
* Standardlager für neue Positionen
|
|
4521
4526
|
*/
|
|
4522
|
-
|
|
4527
|
+
defaultStorageRef: ApiObjectReference;
|
|
4523
4528
|
|
|
4524
4529
|
/**
|
|
4525
4530
|
* Lieferadresse
|
|
@@ -4585,14 +4590,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4585
4590
|
baseDepositPaymentAmount: number;
|
|
4586
4591
|
|
|
4587
4592
|
/**
|
|
4588
|
-
*
|
|
4593
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4589
4594
|
*/
|
|
4590
|
-
|
|
4595
|
+
totalBeforeModifier: number;
|
|
4591
4596
|
|
|
4592
4597
|
/**
|
|
4593
|
-
*
|
|
4598
|
+
* Ist der Beleg festgeschrieben?
|
|
4594
4599
|
*/
|
|
4595
|
-
|
|
4600
|
+
frozen: boolean;
|
|
4596
4601
|
|
|
4597
4602
|
/**
|
|
4598
4603
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4625,14 +4630,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4625
4630
|
accountId: number;
|
|
4626
4631
|
|
|
4627
4632
|
/**
|
|
4628
|
-
* Länderkennzeichen
|
|
4633
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4629
4634
|
*/
|
|
4630
|
-
|
|
4635
|
+
performanceCountryCode: string;
|
|
4631
4636
|
|
|
4632
4637
|
/**
|
|
4633
|
-
* Länderkennzeichen
|
|
4638
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4634
4639
|
*/
|
|
4635
|
-
|
|
4640
|
+
sourceCountryCode: string;
|
|
4636
4641
|
|
|
4637
4642
|
/**
|
|
4638
4643
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4679,27 +4684,20 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4679
4684
|
*/
|
|
4680
4685
|
supplierNumber: string;
|
|
4681
4686
|
|
|
4682
|
-
/**
|
|
4683
|
-
* Gesamtpreis brutto
|
|
4684
|
-
*/
|
|
4685
|
-
totalGrossPrice: number;
|
|
4686
|
-
|
|
4687
4687
|
/**
|
|
4688
4688
|
* Ist der Beleg zur Lieferung freigegeben?
|
|
4689
4689
|
*/
|
|
4690
4690
|
deliveryApproved: boolean;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Gesamtpreis brutto
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
totalGrossPrice: number;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
|
-
*
|
|
4699
|
-
true wenn die Quittung bezahlt ist
|
|
4700
|
-
|
|
4698
|
+
* Kassen-Zahlungspositionen
|
|
4701
4699
|
*/
|
|
4702
|
-
|
|
4700
|
+
posPayments: Array<DocumentPosPayment>;
|
|
4703
4701
|
|
|
4704
4702
|
/**
|
|
4705
4703
|
* Kundennummer beim Lieferanten
|
|
@@ -4711,6 +4709,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4711
4709
|
*/
|
|
4712
4710
|
maxDeliveries: number;
|
|
4713
4711
|
|
|
4712
|
+
/**
|
|
4713
|
+
* Ist die Quittung bezahlt
|
|
4714
|
+
true wenn die Quittung bezahlt ist
|
|
4715
|
+
|
|
4716
|
+
*/
|
|
4717
|
+
posReceiptPayed: boolean;
|
|
4718
|
+
|
|
4714
4719
|
/**
|
|
4715
4720
|
* Quittung: Summe Zahlbetrag
|
|
4716
4721
|
*/
|
|
@@ -4732,14 +4737,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4732
4737
|
contractDetail: DocumentContractDetail;
|
|
4733
4738
|
|
|
4734
4739
|
/**
|
|
4735
|
-
*
|
|
4740
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4736
4741
|
*/
|
|
4737
|
-
|
|
4742
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4738
4743
|
|
|
4739
4744
|
/**
|
|
4740
|
-
*
|
|
4745
|
+
* Zahlungsplan vorhanden?
|
|
4741
4746
|
*/
|
|
4742
|
-
|
|
4747
|
+
paymentPlan: boolean;
|
|
4743
4748
|
|
|
4744
4749
|
/**
|
|
4745
4750
|
* Produktionsdetails
|
|
@@ -4837,14 +4842,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4837
4842
|
additionalInfo: DocumentAdditionalInfo;
|
|
4838
4843
|
|
|
4839
4844
|
/**
|
|
4840
|
-
*
|
|
4845
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4841
4846
|
*/
|
|
4842
|
-
|
|
4847
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4843
4848
|
|
|
4844
4849
|
/**
|
|
4845
|
-
*
|
|
4850
|
+
* Bestelldatum
|
|
4846
4851
|
*/
|
|
4847
|
-
|
|
4852
|
+
orderedOn: ScriptingDate;
|
|
4848
4853
|
|
|
4849
4854
|
/**
|
|
4850
4855
|
* MetaInformations for this Object
|
|
@@ -4981,6 +4986,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4981
4986
|
*/
|
|
4982
4987
|
customerNumber: string;
|
|
4983
4988
|
|
|
4989
|
+
/**
|
|
4990
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4991
|
+
*/
|
|
4992
|
+
taxIdentificationNumber: string;
|
|
4993
|
+
|
|
4984
4994
|
/**
|
|
4985
4995
|
* Versandkostenpositionen
|
|
4986
4996
|
*/
|
|
@@ -4992,16 +5002,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4992
5002
|
documentState: DocumentTypeState;
|
|
4993
5003
|
|
|
4994
5004
|
/**
|
|
4995
|
-
*
|
|
4996
|
-
*/
|
|
4997
|
-
taxIdentificationNumber: string;
|
|
4998
|
-
|
|
4999
|
-
/**
|
|
5000
|
-
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5001
|
-
true wenn die Quittung ausbalanciert ist
|
|
5002
|
-
|
|
5005
|
+
* Rückgeld
|
|
5003
5006
|
*/
|
|
5004
|
-
|
|
5007
|
+
posReceiptChangeAmount: number;
|
|
5005
5008
|
|
|
5006
5009
|
/**
|
|
5007
5010
|
* Referenz auf Lieferbedingung
|
|
@@ -5009,9 +5012,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5009
5012
|
deliveryTermRef: ApiObjectReference;
|
|
5010
5013
|
|
|
5011
5014
|
/**
|
|
5012
|
-
* Rückgeld
|
|
5015
|
+
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5016
|
+
true wenn die Quittung ausbalanciert ist
|
|
5017
|
+
|
|
5013
5018
|
*/
|
|
5014
|
-
|
|
5019
|
+
posReceiptBalanced: boolean;
|
|
5015
5020
|
|
|
5016
5021
|
/**
|
|
5017
5022
|
* Gesamtbruttogewicht
|
|
@@ -5044,14 +5049,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5044
5049
|
taxIdVerificationState: TaxIdVerificationState;
|
|
5045
5050
|
|
|
5046
5051
|
/**
|
|
5047
|
-
*
|
|
5052
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
5048
5053
|
*/
|
|
5049
|
-
|
|
5054
|
+
reportGroupRef: ApiObjectReference;
|
|
5050
5055
|
|
|
5051
5056
|
/**
|
|
5052
|
-
*
|
|
5057
|
+
* Bestellt durch Ansprechpartner
|
|
5053
5058
|
*/
|
|
5054
|
-
|
|
5059
|
+
orderedByPersonRef: ApiObjectReference;
|
|
5055
5060
|
}
|
|
5056
5061
|
|
|
5057
5062
|
export interface DocumentAdditionalInfo {
|
|
@@ -5067,14 +5072,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5067
5072
|
roundingMode: DocumentRounding;
|
|
5068
5073
|
|
|
5069
5074
|
/**
|
|
5070
|
-
*
|
|
5075
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
5071
5076
|
*/
|
|
5072
|
-
|
|
5077
|
+
contextParameters: Array<AdditionalParameter>;
|
|
5073
5078
|
|
|
5074
5079
|
/**
|
|
5075
|
-
*
|
|
5080
|
+
* Herkunft der Sprache
|
|
5076
5081
|
*/
|
|
5077
|
-
|
|
5082
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
5078
5083
|
|
|
5079
5084
|
/**
|
|
5080
5085
|
* Herkunft der Käufer-Referenz
|
|
@@ -5082,14 +5087,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5082
5087
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5083
5088
|
|
|
5084
5089
|
/**
|
|
5085
|
-
*
|
|
5090
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5086
5091
|
*/
|
|
5087
|
-
|
|
5092
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5088
5093
|
|
|
5089
5094
|
/**
|
|
5090
|
-
*
|
|
5095
|
+
* Herkunft des Berechnungsmodus
|
|
5091
5096
|
*/
|
|
5092
|
-
|
|
5097
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5093
5098
|
|
|
5094
5099
|
/**
|
|
5095
5100
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5189,14 +5194,14 @@ export interface DocumentAddress {
|
|
|
5189
5194
|
postOfficeBox: string;
|
|
5190
5195
|
|
|
5191
5196
|
/**
|
|
5192
|
-
*
|
|
5197
|
+
* country code IsoAlpha3
|
|
5193
5198
|
*/
|
|
5194
|
-
|
|
5199
|
+
countryCode: string;
|
|
5195
5200
|
|
|
5196
5201
|
/**
|
|
5197
|
-
*
|
|
5202
|
+
* Street
|
|
5198
5203
|
*/
|
|
5199
|
-
|
|
5204
|
+
street: string;
|
|
5200
5205
|
|
|
5201
5206
|
/**
|
|
5202
5207
|
* Unique identifier of the Object
|
|
@@ -5662,14 +5667,14 @@ export interface DocumentLine {
|
|
|
5662
5667
|
id: number;
|
|
5663
5668
|
|
|
5664
5669
|
/**
|
|
5665
|
-
*
|
|
5670
|
+
* Preis pro Einheit in Basiswährung
|
|
5666
5671
|
*/
|
|
5667
|
-
|
|
5672
|
+
basePrice: number;
|
|
5668
5673
|
|
|
5669
5674
|
/**
|
|
5670
|
-
*
|
|
5675
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5671
5676
|
*/
|
|
5672
|
-
|
|
5677
|
+
positionOfArticleLine: number;
|
|
5673
5678
|
|
|
5674
5679
|
/**
|
|
5675
5680
|
* Serientyp
|
|
@@ -5677,14 +5682,14 @@ export interface DocumentLine {
|
|
|
5677
5682
|
serialType: ArticleSerialType;
|
|
5678
5683
|
|
|
5679
5684
|
/**
|
|
5680
|
-
*
|
|
5685
|
+
* Preiseinheit
|
|
5681
5686
|
*/
|
|
5682
|
-
|
|
5687
|
+
priceUnit: number;
|
|
5683
5688
|
|
|
5684
5689
|
/**
|
|
5685
|
-
*
|
|
5690
|
+
* Steuerschema
|
|
5686
5691
|
*/
|
|
5687
|
-
|
|
5692
|
+
taxSchemaRef: ApiObjectReference;
|
|
5688
5693
|
|
|
5689
5694
|
/**
|
|
5690
5695
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5706,6 +5711,11 @@ export interface DocumentLine {
|
|
|
5706
5711
|
*/
|
|
5707
5712
|
version: number;
|
|
5708
5713
|
|
|
5714
|
+
/**
|
|
5715
|
+
* Externer Artikelname
|
|
5716
|
+
*/
|
|
5717
|
+
externalArticleName: string;
|
|
5718
|
+
|
|
5709
5719
|
/**
|
|
5710
5720
|
* Gesamtnettogewicht
|
|
5711
5721
|
*/
|
|
@@ -5842,14 +5852,14 @@ export interface DocumentLine {
|
|
|
5842
5852
|
country: CountryReference;
|
|
5843
5853
|
|
|
5844
5854
|
/**
|
|
5845
|
-
*
|
|
5855
|
+
* Leistungsdatum
|
|
5846
5856
|
*/
|
|
5847
|
-
|
|
5857
|
+
performanceDate: ScriptingDate;
|
|
5848
5858
|
|
|
5849
5859
|
/**
|
|
5850
|
-
*
|
|
5860
|
+
* Zolltarifnummer
|
|
5851
5861
|
*/
|
|
5852
|
-
|
|
5862
|
+
customsTariffNumber: string;
|
|
5853
5863
|
|
|
5854
5864
|
/**
|
|
5855
5865
|
* wurde aufgelöst in Gebindeartikel
|
|
@@ -6081,6 +6091,11 @@ export interface DocumentLine {
|
|
|
6081
6091
|
*/
|
|
6082
6092
|
grossWeight: number;
|
|
6083
6093
|
|
|
6094
|
+
/**
|
|
6095
|
+
* Externe Artikelbeschreibung
|
|
6096
|
+
*/
|
|
6097
|
+
externalArticleDescription: string;
|
|
6098
|
+
|
|
6084
6099
|
/**
|
|
6085
6100
|
* angewendete Preisänderungen
|
|
6086
6101
|
*/
|
|
@@ -6091,6 +6106,11 @@ export interface DocumentLine {
|
|
|
6091
6106
|
*/
|
|
6092
6107
|
previousDecisions: JsonNode;
|
|
6093
6108
|
|
|
6109
|
+
/**
|
|
6110
|
+
* Externe Artikelnummer
|
|
6111
|
+
*/
|
|
6112
|
+
externalArticleNumber: string;
|
|
6113
|
+
|
|
6094
6114
|
/**
|
|
6095
6115
|
* Komponenten
|
|
6096
6116
|
*/
|
|
@@ -6559,15 +6579,20 @@ export interface DocumentLinePosDetail {
|
|
|
6559
6579
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6560
6580
|
|
|
6561
6581
|
/**
|
|
6562
|
-
*
|
|
6582
|
+
* Kann diese Zahlungsposition aus dem Beleg entfernt werden? false, solange die Zahlung noch läuft oder bereits erfolgreich ausgeführt wurde
|
|
6563
6583
|
*/
|
|
6564
|
-
|
|
6584
|
+
deletable: boolean;
|
|
6565
6585
|
|
|
6566
6586
|
/**
|
|
6567
6587
|
* Status der externen Zahlung
|
|
6568
6588
|
*/
|
|
6569
6589
|
externalPaymentStatus: PosPaymentStatus;
|
|
6570
6590
|
|
|
6591
|
+
/**
|
|
6592
|
+
* Typ der Einlage/Ausgabe
|
|
6593
|
+
*/
|
|
6594
|
+
depositExpenseTypeId: number;
|
|
6595
|
+
|
|
6571
6596
|
/**
|
|
6572
6597
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
6573
6598
|
*/
|
|
@@ -6604,14 +6629,14 @@ export interface DocumentLinePosDetail {
|
|
|
6604
6629
|
balanceBeforeWithdrawal: number;
|
|
6605
6630
|
|
|
6606
6631
|
/**
|
|
6607
|
-
*
|
|
6632
|
+
* Typ der Position
|
|
6608
6633
|
*/
|
|
6609
|
-
|
|
6634
|
+
posLineType: PosLineType;
|
|
6610
6635
|
|
|
6611
6636
|
/**
|
|
6612
|
-
*
|
|
6637
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6613
6638
|
*/
|
|
6614
|
-
|
|
6639
|
+
externalPaymentId: string;
|
|
6615
6640
|
|
|
6616
6641
|
/**
|
|
6617
6642
|
* Unique identifier of the Object
|
|
@@ -6725,14 +6750,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6725
6750
|
customerShareOnReduction: number;
|
|
6726
6751
|
|
|
6727
6752
|
/**
|
|
6728
|
-
*
|
|
6753
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6729
6754
|
*/
|
|
6730
|
-
|
|
6755
|
+
waitForReturnBeforeExchange: boolean;
|
|
6731
6756
|
|
|
6732
6757
|
/**
|
|
6733
|
-
*
|
|
6758
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6734
6759
|
*/
|
|
6735
|
-
|
|
6760
|
+
deliveryTermRef: ApiObjectReference;
|
|
6736
6761
|
|
|
6737
6762
|
/**
|
|
6738
6763
|
* Referenz auf Retourengrund
|
|
@@ -6889,6 +6914,11 @@ export interface DocumentPosPayment {
|
|
|
6889
6914
|
*/
|
|
6890
6915
|
depositExpenseTypeRef: ApiObjectReference;
|
|
6891
6916
|
|
|
6917
|
+
/**
|
|
6918
|
+
* Kann diese Zahlungsposition aus dem Beleg entfernt werden? false, solange die Zahlung noch läuft oder bereits erfolgreich ausgeführt wurde
|
|
6919
|
+
*/
|
|
6920
|
+
deletable: boolean;
|
|
6921
|
+
|
|
6892
6922
|
/**
|
|
6893
6923
|
* Status der externen Zahlung
|
|
6894
6924
|
*/
|
|
@@ -6910,14 +6940,14 @@ export interface DocumentPosPayment {
|
|
|
6910
6940
|
version: number;
|
|
6911
6941
|
|
|
6912
6942
|
/**
|
|
6913
|
-
*
|
|
6943
|
+
* Zahlungsart
|
|
6914
6944
|
*/
|
|
6915
|
-
|
|
6945
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6916
6946
|
|
|
6917
6947
|
/**
|
|
6918
|
-
*
|
|
6948
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6919
6949
|
*/
|
|
6920
|
-
|
|
6950
|
+
withdrawalAmount: number;
|
|
6921
6951
|
|
|
6922
6952
|
/**
|
|
6923
6953
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6930,14 +6960,14 @@ export interface DocumentPosPayment {
|
|
|
6930
6960
|
balanceBeforeWithdrawal: number;
|
|
6931
6961
|
|
|
6932
6962
|
/**
|
|
6933
|
-
*
|
|
6963
|
+
* Typ der Position
|
|
6934
6964
|
*/
|
|
6935
|
-
|
|
6965
|
+
posLineType: PosLineType;
|
|
6936
6966
|
|
|
6937
6967
|
/**
|
|
6938
|
-
*
|
|
6968
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6939
6969
|
*/
|
|
6940
|
-
|
|
6970
|
+
externalPaymentId: string;
|
|
6941
6971
|
|
|
6942
6972
|
/**
|
|
6943
6973
|
* Unique identifier of the Object
|
|
@@ -7328,14 +7358,14 @@ export interface DocumentType {
|
|
|
7328
7358
|
labels: Array<DocumentTypeLabel>;
|
|
7329
7359
|
|
|
7330
7360
|
/**
|
|
7331
|
-
*
|
|
7361
|
+
* Zählerkreis
|
|
7332
7362
|
*/
|
|
7333
|
-
|
|
7363
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7334
7364
|
|
|
7335
7365
|
/**
|
|
7336
|
-
*
|
|
7366
|
+
* nächste Belegnummer
|
|
7337
7367
|
*/
|
|
7338
|
-
|
|
7368
|
+
nextNumber: string;
|
|
7339
7369
|
|
|
7340
7370
|
/**
|
|
7341
7371
|
* Sortierung
|
|
@@ -8333,26 +8363,26 @@ export interface OpenItem {
|
|
|
8333
8363
|
*/
|
|
8334
8364
|
paymentDueDate: ScriptingDate;
|
|
8335
8365
|
|
|
8336
|
-
/**
|
|
8337
|
-
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8338
|
-
*/
|
|
8339
|
-
sourceCountryCode: string;
|
|
8340
|
-
|
|
8341
8366
|
/**
|
|
8342
8367
|
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8343
8368
|
*/
|
|
8344
8369
|
performanceCountryCode: string;
|
|
8345
8370
|
|
|
8346
8371
|
/**
|
|
8347
|
-
*
|
|
8372
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8348
8373
|
*/
|
|
8349
|
-
|
|
8374
|
+
sourceCountryCode: string;
|
|
8350
8375
|
|
|
8351
8376
|
/**
|
|
8352
8377
|
* agreed Deposit payment date
|
|
8353
8378
|
*/
|
|
8354
8379
|
depositPaymentDate: ScriptingDate;
|
|
8355
8380
|
|
|
8381
|
+
/**
|
|
8382
|
+
* Valutadatum schreibgeschützt
|
|
8383
|
+
*/
|
|
8384
|
+
valueDateReadOnly: boolean;
|
|
8385
|
+
|
|
8356
8386
|
/**
|
|
8357
8387
|
* Does this open item belong to accounts payable or accounts receivable
|
|
8358
8388
|
*/
|
|
@@ -8389,14 +8419,14 @@ export interface OpenItem {
|
|
|
8389
8419
|
depositPaymentAmount: number;
|
|
8390
8420
|
|
|
8391
8421
|
/**
|
|
8392
|
-
*
|
|
8422
|
+
* Verwendungszweck
|
|
8393
8423
|
*/
|
|
8394
|
-
|
|
8424
|
+
purpose: string;
|
|
8395
8425
|
|
|
8396
8426
|
/**
|
|
8397
|
-
*
|
|
8427
|
+
* free payments
|
|
8398
8428
|
*/
|
|
8399
|
-
|
|
8429
|
+
records: Array<OpenItemRecord>;
|
|
8400
8430
|
|
|
8401
8431
|
/**
|
|
8402
8432
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8509,14 +8539,14 @@ export interface OpenItem {
|
|
|
8509
8539
|
taxRateRef: ApiObjectReference;
|
|
8510
8540
|
|
|
8511
8541
|
/**
|
|
8512
|
-
*
|
|
8542
|
+
* Anzahlungsrechnung
|
|
8513
8543
|
*/
|
|
8514
|
-
|
|
8544
|
+
depositInvoice: ApiObjectReference;
|
|
8515
8545
|
|
|
8516
8546
|
/**
|
|
8517
|
-
*
|
|
8547
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8518
8548
|
*/
|
|
8519
|
-
|
|
8549
|
+
baseCurrencyCode: string;
|
|
8520
8550
|
|
|
8521
8551
|
/**
|
|
8522
8552
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8587,14 +8617,14 @@ export const enum OpenItemDunningState {
|
|
|
8587
8617
|
export interface OpenItemPaymentPlan {
|
|
8588
8618
|
|
|
8589
8619
|
/**
|
|
8590
|
-
*
|
|
8620
|
+
* Fälligkeitsregel
|
|
8591
8621
|
*/
|
|
8592
|
-
|
|
8622
|
+
dueDateCalculation: string;
|
|
8593
8623
|
|
|
8594
8624
|
/**
|
|
8595
|
-
*
|
|
8625
|
+
* Betrag
|
|
8596
8626
|
*/
|
|
8597
|
-
|
|
8627
|
+
amount: number;
|
|
8598
8628
|
|
|
8599
8629
|
/**
|
|
8600
8630
|
* Enddatum
|
|
@@ -9083,14 +9113,14 @@ export interface PaymentTerm {
|
|
|
9083
9113
|
paymentDiscount2: number;
|
|
9084
9114
|
|
|
9085
9115
|
/**
|
|
9086
|
-
*
|
|
9116
|
+
* printDescription
|
|
9087
9117
|
*/
|
|
9088
|
-
|
|
9118
|
+
printDescription: string;
|
|
9089
9119
|
|
|
9090
9120
|
/**
|
|
9091
|
-
*
|
|
9121
|
+
* Percent for Discount 1
|
|
9092
9122
|
*/
|
|
9093
|
-
|
|
9123
|
+
paymentDiscount1: number;
|
|
9094
9124
|
|
|
9095
9125
|
/**
|
|
9096
9126
|
* for deposit: remaining term
|
|
@@ -9361,6 +9391,12 @@ export const enum PickTrolleyType {
|
|
|
9361
9391
|
FOR_CONSOLIDATION = 'FOR_CONSOLIDATION'
|
|
9362
9392
|
}
|
|
9363
9393
|
|
|
9394
|
+
export const enum PickingArticleProcessing {
|
|
9395
|
+
FREE = 'FREE',
|
|
9396
|
+
SCAN_ONCE = 'SCAN_ONCE',
|
|
9397
|
+
SCAN_ALWAYS = 'SCAN_ALWAYS'
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9364
9400
|
export const enum PickingDeviatingQuantity {
|
|
9365
9401
|
ALLOW_ONLY_ORDERED_QUANTITY = 'ALLOW_ONLY_ORDERED_QUANTITY',
|
|
9366
9402
|
ALLOW_MINOR_QUANTITY = 'ALLOW_MINOR_QUANTITY',
|
|
@@ -9777,6 +9813,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9777
9813
|
*/
|
|
9778
9814
|
confirmedDeliveryDateRange: PicklistTemplate$DateRange;
|
|
9779
9815
|
|
|
9816
|
+
/**
|
|
9817
|
+
* dürfen nur gültige Lieferarten genutz werden?
|
|
9818
|
+
*/
|
|
9819
|
+
allowOnlyDefinedDeliveryMethods: boolean;
|
|
9820
|
+
|
|
9780
9821
|
/**
|
|
9781
9822
|
* Minimale Anzahl Artikel pro Auftrag
|
|
9782
9823
|
*/
|
|
@@ -9802,11 +9843,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9802
9843
|
*/
|
|
9803
9844
|
maxOrderValue: number;
|
|
9804
9845
|
|
|
9805
|
-
/**
|
|
9806
|
-
* Nur vollständig lieferbare Positionen
|
|
9807
|
-
*/
|
|
9808
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
9809
|
-
|
|
9810
9846
|
/**
|
|
9811
9847
|
* Selektion über den Bereich vom Lieferdatum
|
|
9812
9848
|
*/
|
|
@@ -9817,6 +9853,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9817
9853
|
*/
|
|
9818
9854
|
maxOrderCount: number;
|
|
9819
9855
|
|
|
9856
|
+
/**
|
|
9857
|
+
* Nur vollständig lieferbare Positionen
|
|
9858
|
+
*/
|
|
9859
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9860
|
+
|
|
9820
9861
|
/**
|
|
9821
9862
|
* Selektion über den Bereich vom Belegdatum
|
|
9822
9863
|
*/
|
|
@@ -9895,11 +9936,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9895
9936
|
*/
|
|
9896
9937
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9897
9938
|
|
|
9898
|
-
/**
|
|
9899
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9900
|
-
*/
|
|
9901
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9902
|
-
|
|
9903
9939
|
/**
|
|
9904
9940
|
* Lagerplätze vorgeben
|
|
9905
9941
|
*/
|
|
@@ -9911,15 +9947,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9911
9947
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9912
9948
|
|
|
9913
9949
|
/**
|
|
9914
|
-
*
|
|
9950
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9915
9951
|
*/
|
|
9916
|
-
|
|
9952
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9917
9953
|
|
|
9918
9954
|
/**
|
|
9919
9955
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9920
9956
|
*/
|
|
9921
9957
|
sortByRoutePosition: boolean;
|
|
9922
9958
|
|
|
9959
|
+
/**
|
|
9960
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9961
|
+
*/
|
|
9962
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9963
|
+
|
|
9923
9964
|
/**
|
|
9924
9965
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9925
9966
|
*/
|
|
@@ -9938,6 +9979,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9938
9979
|
*/
|
|
9939
9980
|
autoPrintShippingLabel: boolean;
|
|
9940
9981
|
|
|
9982
|
+
/**
|
|
9983
|
+
* Dürfen Artikel nur per Scan (oder z.B. auch Eingabe der Artikelnummer) erfasst werden
|
|
9984
|
+
*/
|
|
9985
|
+
articleScanRequirement: PickingArticleProcessing;
|
|
9986
|
+
|
|
9941
9987
|
/**
|
|
9942
9988
|
* Ist das Überspringen von Positionen erlaubt?
|
|
9943
9989
|
*/
|
|
@@ -9948,11 +9994,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9948
9994
|
*/
|
|
9949
9995
|
autoPickingFinishAfterLastArticleInOrder: boolean;
|
|
9950
9996
|
|
|
9951
|
-
/**
|
|
9952
|
-
* Dürfen Artikel nur per Scan (oder z.B. auch Eingabe der Artikelnummer) erfasst werden
|
|
9953
|
-
*/
|
|
9954
|
-
allowOnlyScanOfArticles: boolean;
|
|
9955
|
-
|
|
9956
9997
|
/**
|
|
9957
9998
|
* Pick'n'Pack verwenden
|
|
9958
9999
|
*/
|
|
@@ -9984,24 +10025,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9984
10025
|
showShippingFormOnPickingFinish: boolean;
|
|
9985
10026
|
|
|
9986
10027
|
/**
|
|
9987
|
-
*
|
|
10028
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9988
10029
|
*/
|
|
9989
|
-
|
|
10030
|
+
printLabelOnScan: boolean;
|
|
9990
10031
|
|
|
9991
10032
|
/**
|
|
9992
|
-
*
|
|
10033
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9993
10034
|
*/
|
|
9994
|
-
|
|
10035
|
+
allowPickingOfServiceArticles: boolean;
|
|
9995
10036
|
|
|
9996
10037
|
/**
|
|
9997
|
-
*
|
|
10038
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9998
10039
|
*/
|
|
9999
|
-
|
|
10040
|
+
useDigitalPicklist: boolean;
|
|
10000
10041
|
|
|
10001
10042
|
/**
|
|
10002
|
-
*
|
|
10043
|
+
* Sammelbestätigung erlauben
|
|
10003
10044
|
*/
|
|
10004
|
-
|
|
10045
|
+
allowFullConfirmation: boolean;
|
|
10005
10046
|
|
|
10006
10047
|
/**
|
|
10007
10048
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10019,14 +10060,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10019
10060
|
printLabelOnCompleteOrder: boolean;
|
|
10020
10061
|
|
|
10021
10062
|
/**
|
|
10022
|
-
*
|
|
10063
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10023
10064
|
*/
|
|
10024
|
-
|
|
10065
|
+
printLabelAfterPicking: boolean;
|
|
10025
10066
|
|
|
10026
10067
|
/**
|
|
10027
|
-
*
|
|
10068
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10028
10069
|
*/
|
|
10029
|
-
|
|
10070
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10030
10071
|
|
|
10031
10072
|
/**
|
|
10032
10073
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10042,6 +10083,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10042
10083
|
* Zielmengen in Masken verstecken?
|
|
10043
10084
|
*/
|
|
10044
10085
|
hideTargetQuantityInViews: boolean;
|
|
10086
|
+
|
|
10087
|
+
/**
|
|
10088
|
+
* Lagerplätze müssen erfasst werden, trotz Vorgabe
|
|
10089
|
+
*/
|
|
10090
|
+
alwaysRequireScanOfStorageBin: boolean;
|
|
10045
10091
|
}
|
|
10046
10092
|
|
|
10047
10093
|
export interface PicklistTemplate$PicklistScript {
|
|
@@ -10342,14 +10388,14 @@ export interface ProductDiscount {
|
|
|
10342
10388
|
validFrom: ScriptingDate;
|
|
10343
10389
|
|
|
10344
10390
|
/**
|
|
10345
|
-
*
|
|
10391
|
+
* Bestimmt die Art des Rabatts
|
|
10346
10392
|
*/
|
|
10347
|
-
|
|
10393
|
+
modifierType: PriceModifierType;
|
|
10348
10394
|
|
|
10349
10395
|
/**
|
|
10350
|
-
*
|
|
10396
|
+
* Warengruppe
|
|
10351
10397
|
*/
|
|
10352
|
-
|
|
10398
|
+
productGroupRef: ApiObjectReference;
|
|
10353
10399
|
|
|
10354
10400
|
/**
|
|
10355
10401
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10397,14 +10443,14 @@ export interface ProductDiscount {
|
|
|
10397
10443
|
modifierValueType: ValueType;
|
|
10398
10444
|
|
|
10399
10445
|
/**
|
|
10400
|
-
*
|
|
10446
|
+
* Name des Rabatts
|
|
10401
10447
|
*/
|
|
10402
|
-
|
|
10448
|
+
modifierName: string;
|
|
10403
10449
|
|
|
10404
10450
|
/**
|
|
10405
|
-
*
|
|
10451
|
+
* Account, für den der Rabatt gültig ist
|
|
10406
10452
|
*/
|
|
10407
|
-
|
|
10453
|
+
accountRef: ApiObjectReference;
|
|
10408
10454
|
|
|
10409
10455
|
/**
|
|
10410
10456
|
* Unique identifier of the Object
|
|
@@ -10891,14 +10937,14 @@ export interface RequestDocument {
|
|
|
10891
10937
|
texts: Array<DocumentText>;
|
|
10892
10938
|
|
|
10893
10939
|
/**
|
|
10894
|
-
*
|
|
10940
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10895
10941
|
*/
|
|
10896
|
-
|
|
10942
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10897
10943
|
|
|
10898
10944
|
/**
|
|
10899
|
-
*
|
|
10945
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10900
10946
|
*/
|
|
10901
|
-
|
|
10947
|
+
processedByPicklistProcessing: boolean;
|
|
10902
10948
|
|
|
10903
10949
|
/**
|
|
10904
10950
|
* Die Rabatte des Beleges
|
|
@@ -10934,14 +10980,14 @@ export interface RequestDocumentLine {
|
|
|
10934
10980
|
description: string;
|
|
10935
10981
|
|
|
10936
10982
|
/**
|
|
10937
|
-
*
|
|
10983
|
+
* Herkunft des Preises
|
|
10938
10984
|
*/
|
|
10939
|
-
|
|
10985
|
+
priceOrigin: ProductPriceOrigin;
|
|
10940
10986
|
|
|
10941
10987
|
/**
|
|
10942
|
-
*
|
|
10988
|
+
* Quittungsdetails zur Belegposition
|
|
10943
10989
|
*/
|
|
10944
|
-
|
|
10990
|
+
posDetail: DocumentLinePosDetail;
|
|
10945
10991
|
|
|
10946
10992
|
/**
|
|
10947
10993
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10979,14 +11025,14 @@ export interface RequestDocumentLine {
|
|
|
10979
11025
|
dropShippingPolicy: DropShippingPolicy;
|
|
10980
11026
|
|
|
10981
11027
|
/**
|
|
10982
|
-
*
|
|
11028
|
+
* Positionsnummer der Artikel
|
|
10983
11029
|
*/
|
|
10984
|
-
|
|
11030
|
+
positionOfArticleLine: number;
|
|
10985
11031
|
|
|
10986
11032
|
/**
|
|
10987
|
-
*
|
|
11033
|
+
* (optional) Lager-ID
|
|
10988
11034
|
*/
|
|
10989
|
-
|
|
11035
|
+
storageId: number;
|
|
10990
11036
|
|
|
10991
11037
|
/**
|
|
10992
11038
|
* Vertragsdetails zur Belegposition
|
|
@@ -11073,6 +11119,11 @@ export interface RequestDocumentLine {
|
|
|
11073
11119
|
*/
|
|
11074
11120
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
11075
11121
|
|
|
11122
|
+
/**
|
|
11123
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
11124
|
+
*/
|
|
11125
|
+
externalArticleNumber: string;
|
|
11126
|
+
|
|
11076
11127
|
/**
|
|
11077
11128
|
* ID der Quell-Belegposition
|
|
11078
11129
|
*/
|
|
@@ -11083,11 +11134,6 @@ export interface RequestDocumentLine {
|
|
|
11083
11134
|
*/
|
|
11084
11135
|
bookings: Array<RequestDocumentLineBooking>;
|
|
11085
11136
|
|
|
11086
|
-
/**
|
|
11087
|
-
* Für interne Zwecke: Externe Artikelnummer
|
|
11088
|
-
*/
|
|
11089
|
-
externalArticleNumber: string;
|
|
11090
|
-
|
|
11091
11137
|
/**
|
|
11092
11138
|
* Zu der Zeile Etikettendruck anstoßen
|
|
11093
11139
|
*/
|
|
@@ -11261,14 +11307,14 @@ export interface SalesAgent {
|
|
|
11261
11307
|
note: string;
|
|
11262
11308
|
|
|
11263
11309
|
/**
|
|
11264
|
-
*
|
|
11310
|
+
* reference to the delivery method
|
|
11265
11311
|
*/
|
|
11266
|
-
|
|
11312
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11267
11313
|
|
|
11268
11314
|
/**
|
|
11269
|
-
*
|
|
11315
|
+
* is sales agent taxable
|
|
11270
11316
|
*/
|
|
11271
|
-
|
|
11317
|
+
taxable: boolean;
|
|
11272
11318
|
|
|
11273
11319
|
/**
|
|
11274
11320
|
* Freifelder
|
|
@@ -11828,14 +11874,14 @@ export interface ShelfDocumentAttribution {
|
|
|
11828
11874
|
shelfResourceId: number;
|
|
11829
11875
|
|
|
11830
11876
|
/**
|
|
11831
|
-
*
|
|
11877
|
+
* Verfügbare Transformationen zum Bild
|
|
11832
11878
|
*/
|
|
11833
|
-
|
|
11879
|
+
transformationKeys: Array<string>;
|
|
11834
11880
|
|
|
11835
11881
|
/**
|
|
11836
|
-
*
|
|
11882
|
+
* id of the referenced object
|
|
11837
11883
|
*/
|
|
11838
|
-
|
|
11884
|
+
refId: number;
|
|
11839
11885
|
|
|
11840
11886
|
/**
|
|
11841
11887
|
* Unique identifier of the Object
|
|
@@ -11937,14 +11983,14 @@ export interface ShelfFile {
|
|
|
11937
11983
|
subFiles: Array<SubFileInfo>;
|
|
11938
11984
|
|
|
11939
11985
|
/**
|
|
11940
|
-
*
|
|
11986
|
+
* fileSize
|
|
11941
11987
|
*/
|
|
11942
|
-
|
|
11988
|
+
fileSize: number;
|
|
11943
11989
|
|
|
11944
11990
|
/**
|
|
11945
|
-
*
|
|
11991
|
+
* revision number of this file
|
|
11946
11992
|
*/
|
|
11947
|
-
|
|
11993
|
+
revisionNumber: number;
|
|
11948
11994
|
|
|
11949
11995
|
/**
|
|
11950
11996
|
* file-extension of this entry
|
|
@@ -11972,14 +12018,14 @@ export interface ShelfFile {
|
|
|
11972
12018
|
version: number;
|
|
11973
12019
|
|
|
11974
12020
|
/**
|
|
11975
|
-
*
|
|
12021
|
+
* meta data
|
|
11976
12022
|
*/
|
|
11977
|
-
|
|
12023
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11978
12024
|
|
|
11979
12025
|
/**
|
|
11980
|
-
*
|
|
12026
|
+
* current reference of this file in our storage
|
|
11981
12027
|
*/
|
|
11982
|
-
|
|
12028
|
+
storageHandle: string;
|
|
11983
12029
|
|
|
11984
12030
|
/**
|
|
11985
12031
|
* MetaInformations for this Object
|
|
@@ -12026,14 +12072,14 @@ export interface ShelfShare {
|
|
|
12026
12072
|
publishState: ShelfSharePublishState;
|
|
12027
12073
|
|
|
12028
12074
|
/**
|
|
12029
|
-
*
|
|
12075
|
+
* Freifelder
|
|
12030
12076
|
*/
|
|
12031
|
-
|
|
12077
|
+
custom: EavShelfshare;
|
|
12032
12078
|
|
|
12033
12079
|
/**
|
|
12034
|
-
*
|
|
12080
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
12035
12081
|
*/
|
|
12036
|
-
|
|
12082
|
+
publicUrlDurationInMinutes: number;
|
|
12037
12083
|
|
|
12038
12084
|
/**
|
|
12039
12085
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12622,14 +12668,14 @@ export const enum TagType {
|
|
|
12622
12668
|
export interface TaxIdForeignCountry {
|
|
12623
12669
|
|
|
12624
12670
|
/**
|
|
12625
|
-
*
|
|
12671
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12626
12672
|
*/
|
|
12627
|
-
|
|
12673
|
+
countryCode: string;
|
|
12628
12674
|
|
|
12629
12675
|
/**
|
|
12630
|
-
*
|
|
12676
|
+
* Tax ID of the company in the associated country
|
|
12631
12677
|
*/
|
|
12632
|
-
|
|
12678
|
+
taxId: string;
|
|
12633
12679
|
|
|
12634
12680
|
/**
|
|
12635
12681
|
* Unique identifier of the Object
|
|
@@ -12984,14 +13030,14 @@ export interface User {
|
|
|
12984
13030
|
roles: Array<ApiObjectReference>;
|
|
12985
13031
|
|
|
12986
13032
|
/**
|
|
12987
|
-
*
|
|
13033
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12988
13034
|
*/
|
|
12989
|
-
|
|
13035
|
+
referencedCustomerUserId: number;
|
|
12990
13036
|
|
|
12991
13037
|
/**
|
|
12992
|
-
*
|
|
13038
|
+
* Gruppen
|
|
12993
13039
|
*/
|
|
12994
|
-
|
|
13040
|
+
groups: Array<ApiObjectReference>;
|
|
12995
13041
|
|
|
12996
13042
|
/**
|
|
12997
13043
|
* Is the user active?
|
|
@@ -13014,14 +13060,14 @@ export interface User {
|
|
|
13014
13060
|
version: number;
|
|
13015
13061
|
|
|
13016
13062
|
/**
|
|
13017
|
-
*
|
|
13063
|
+
* is the email verified
|
|
13018
13064
|
*/
|
|
13019
|
-
|
|
13065
|
+
emailVerified: boolean;
|
|
13020
13066
|
|
|
13021
13067
|
/**
|
|
13022
|
-
*
|
|
13068
|
+
* first-name
|
|
13023
13069
|
*/
|
|
13024
|
-
|
|
13070
|
+
firstName: string;
|
|
13025
13071
|
|
|
13026
13072
|
/**
|
|
13027
13073
|
* email-address
|
|
@@ -13100,14 +13146,14 @@ export interface VariantAttributeListing {
|
|
|
13100
13146
|
salesChannelRef: ApiObjectReference;
|
|
13101
13147
|
|
|
13102
13148
|
/**
|
|
13103
|
-
*
|
|
13149
|
+
* Variantenattribut
|
|
13104
13150
|
*/
|
|
13105
|
-
|
|
13151
|
+
variantAttributeRef: ApiObjectReference;
|
|
13106
13152
|
|
|
13107
13153
|
/**
|
|
13108
|
-
*
|
|
13154
|
+
* Freifelder
|
|
13109
13155
|
*/
|
|
13110
|
-
|
|
13156
|
+
custom: EavVariantattributelisting;
|
|
13111
13157
|
|
|
13112
13158
|
/**
|
|
13113
13159
|
* Unique identifier of the Object
|