@vario-software/types 2026.34.2 → 2026.34.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +59 -59
- package/scripting/types.d.ts +331 -331
package/scripting/types.d.ts
CHANGED
|
@@ -154,14 +154,14 @@ export interface Account {
|
|
|
154
154
|
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* Custom account data
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
custom: EavAccount;
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* companyLegal for this account
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
companyLegalRef: ApiCreatableReference;
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Country code
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
countryCode: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Street
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
street: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* Custom data
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
custom: EavAccountaddress;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* abweichende Zahlungsart
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
|
-
*
|
|
478
|
+
* name of the bank
|
|
479
479
|
*/
|
|
480
|
-
|
|
480
|
+
bankName: string;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
|
-
*
|
|
483
|
+
* post-code of the bank
|
|
484
484
|
*/
|
|
485
|
-
|
|
485
|
+
bankPostCode: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* account from, if differs from account-address
|
|
@@ -495,14 +495,14 @@ export interface AccountBankdetail {
|
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
|
-
*
|
|
498
|
+
* city of the bank
|
|
499
499
|
*/
|
|
500
|
-
|
|
500
|
+
bankCity: string;
|
|
501
501
|
|
|
502
502
|
/**
|
|
503
|
-
*
|
|
503
|
+
* Hauptbankverbindung für
|
|
504
504
|
*/
|
|
505
|
-
|
|
505
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
508
|
* origin type
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* First name
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
firstName: string;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* Default contacts
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1015,14 +1015,14 @@ export interface Article {
|
|
|
1015
1015
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1016
1016
|
|
|
1017
1017
|
/**
|
|
1018
|
-
*
|
|
1018
|
+
* Product custom data
|
|
1019
1019
|
*/
|
|
1020
|
-
|
|
1020
|
+
listingCustom: EavArticleListing;
|
|
1021
1021
|
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* is this product purchasable
|
|
1024
1024
|
*/
|
|
1025
|
-
|
|
1025
|
+
purchasable: boolean;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
@@ -1235,9 +1235,9 @@ export interface Article {
|
|
|
1235
1235
|
freelyPickable: boolean;
|
|
1236
1236
|
|
|
1237
1237
|
/**
|
|
1238
|
-
*
|
|
1238
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1239
1239
|
*/
|
|
1240
|
-
|
|
1240
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
1243
|
* Notiz
|
|
@@ -1245,9 +1245,9 @@ export interface Article {
|
|
|
1245
1245
|
note: string;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
taxLiabilityReversed: boolean;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -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
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* size
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
sizeZ: number;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* weight unit
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
weightUnit: UnitTypeReference;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1648,11 +1648,6 @@ export interface ArticleCustomer {
|
|
|
1648
1648
|
*/
|
|
1649
1649
|
defaultGrossPrice: number;
|
|
1650
1650
|
|
|
1651
|
-
/**
|
|
1652
|
-
* Artikelnummer
|
|
1653
|
-
*/
|
|
1654
|
-
articleNumber: string;
|
|
1655
|
-
|
|
1656
1651
|
/**
|
|
1657
1652
|
* Abweichende Produktnummer
|
|
1658
1653
|
*/
|
|
@@ -1663,6 +1658,11 @@ export interface ArticleCustomer {
|
|
|
1663
1658
|
*/
|
|
1664
1659
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1665
1660
|
|
|
1661
|
+
/**
|
|
1662
|
+
* Artikelnummer
|
|
1663
|
+
*/
|
|
1664
|
+
articleNumber: string;
|
|
1665
|
+
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1668
1668
|
*/
|
|
@@ -2092,14 +2092,14 @@ export interface ArticleSupplier {
|
|
|
2092
2092
|
accountDisplayName: string;
|
|
2093
2093
|
|
|
2094
2094
|
/**
|
|
2095
|
-
*
|
|
2095
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2096
2096
|
*/
|
|
2097
|
-
|
|
2097
|
+
useSupplierArticleDescription: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
*
|
|
2100
|
+
* Lieferanten-Meldebestand
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierReportingStock: number;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
2105
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -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
|
*/
|
|
@@ -2668,14 +2668,14 @@ export interface CountryReference {
|
|
|
2668
2668
|
export interface CreateNewDocumentRequest {
|
|
2669
2669
|
|
|
2670
2670
|
/**
|
|
2671
|
-
* Belegart
|
|
2671
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2672
2672
|
*/
|
|
2673
|
-
|
|
2673
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2674
2674
|
|
|
2675
2675
|
/**
|
|
2676
|
-
*
|
|
2676
|
+
* Belegart
|
|
2677
2677
|
*/
|
|
2678
|
-
|
|
2678
|
+
documentTypeLabel: string;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
2681
|
* Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
|
|
@@ -3028,14 +3028,14 @@ export interface CrmDeal {
|
|
|
3028
3028
|
info: MetaInfo;
|
|
3029
3029
|
|
|
3030
3030
|
/**
|
|
3031
|
-
*
|
|
3031
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3032
3032
|
*/
|
|
3033
|
-
|
|
3033
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3034
3034
|
|
|
3035
3035
|
/**
|
|
3036
|
-
*
|
|
3036
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
3037
3037
|
*/
|
|
3038
|
-
|
|
3038
|
+
assignedUserRef: ApiObjectReference;
|
|
3039
3039
|
|
|
3040
3040
|
/**
|
|
3041
3041
|
* Chance (in Prozent)
|
|
@@ -3379,14 +3379,14 @@ export interface CrmProject {
|
|
|
3379
3379
|
info: MetaInfo;
|
|
3380
3380
|
|
|
3381
3381
|
/**
|
|
3382
|
-
*
|
|
3382
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3383
3383
|
*/
|
|
3384
|
-
|
|
3384
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3385
3385
|
|
|
3386
3386
|
/**
|
|
3387
|
-
*
|
|
3387
|
+
* Projektleiter vom Auftraggeber
|
|
3388
3388
|
*/
|
|
3389
|
-
|
|
3389
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3390
3390
|
|
|
3391
3391
|
/**
|
|
3392
3392
|
* Übergeordnete CRM-Objekte
|
|
@@ -3630,6 +3630,11 @@ export interface CrmSubType {
|
|
|
3630
3630
|
|
|
3631
3631
|
export interface CrmTask {
|
|
3632
3632
|
|
|
3633
|
+
/**
|
|
3634
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3635
|
+
*/
|
|
3636
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3637
|
+
|
|
3633
3638
|
/**
|
|
3634
3639
|
* Liste von Erinnerungen
|
|
3635
3640
|
*/
|
|
@@ -3640,11 +3645,6 @@ export interface CrmTask {
|
|
|
3640
3645
|
*/
|
|
3641
3646
|
customerOfferRef: DocumentRef;
|
|
3642
3647
|
|
|
3643
|
-
/**
|
|
3644
|
-
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3645
|
-
*/
|
|
3646
|
-
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3647
|
-
|
|
3648
3648
|
/**
|
|
3649
3649
|
* Notizen
|
|
3650
3650
|
*/
|
|
@@ -3881,14 +3881,14 @@ export interface CrmTask {
|
|
|
3881
3881
|
blocksTaskRefs: Array<ApiObjectReference>;
|
|
3882
3882
|
|
|
3883
3883
|
/**
|
|
3884
|
-
*
|
|
3884
|
+
* Weitere Teilnehmer vom Auftragnehmer
|
|
3885
3885
|
*/
|
|
3886
|
-
|
|
3886
|
+
additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
|
-
*
|
|
3889
|
+
* Soll die Aufgabe veröffentlicht werden?
|
|
3890
3890
|
*/
|
|
3891
|
-
|
|
3891
|
+
publish: boolean;
|
|
3892
3892
|
|
|
3893
3893
|
/**
|
|
3894
3894
|
* Fortschritt in Prozent
|
|
@@ -4402,14 +4402,14 @@ export interface DeliveryTerm {
|
|
|
4402
4402
|
label: string;
|
|
4403
4403
|
|
|
4404
4404
|
/**
|
|
4405
|
-
*
|
|
4405
|
+
* Sprache des Accounts
|
|
4406
4406
|
*/
|
|
4407
|
-
|
|
4407
|
+
languageCode: string;
|
|
4408
4408
|
|
|
4409
4409
|
/**
|
|
4410
|
-
*
|
|
4410
|
+
* information, when the shipping charges should be calculated
|
|
4411
4411
|
*/
|
|
4412
|
-
|
|
4412
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4413
4413
|
|
|
4414
4414
|
/**
|
|
4415
4415
|
* calculate shipping charges per parcel
|
|
@@ -4422,14 +4422,14 @@ export interface DeliveryTerm {
|
|
|
4422
4422
|
version: number;
|
|
4423
4423
|
|
|
4424
4424
|
/**
|
|
4425
|
-
*
|
|
4425
|
+
* translations
|
|
4426
4426
|
*/
|
|
4427
|
-
|
|
4427
|
+
translations: Array<DocumentTypeTerm>;
|
|
4428
4428
|
|
|
4429
4429
|
/**
|
|
4430
|
-
*
|
|
4430
|
+
* information, how the shipping charges should be calculated
|
|
4431
4431
|
*/
|
|
4432
|
-
|
|
4432
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4433
4433
|
|
|
4434
4434
|
/**
|
|
4435
4435
|
* Lieferarten
|
|
@@ -4472,14 +4472,14 @@ export interface DmsOutputStream {
|
|
|
4472
4472
|
export interface Document {
|
|
4473
4473
|
|
|
4474
4474
|
/**
|
|
4475
|
-
*
|
|
4475
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4476
4476
|
*/
|
|
4477
|
-
|
|
4477
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4478
4478
|
|
|
4479
4479
|
/**
|
|
4480
|
-
*
|
|
4480
|
+
* Referenz zum Rechnungskonto
|
|
4481
4481
|
*/
|
|
4482
|
-
|
|
4482
|
+
billingAccountRef: ApiObjectReference;
|
|
4483
4483
|
|
|
4484
4484
|
/**
|
|
4485
4485
|
* Externe Belegnummer
|
|
@@ -4517,14 +4517,14 @@ export interface Document {
|
|
|
4517
4517
|
totalVat: number;
|
|
4518
4518
|
|
|
4519
4519
|
/**
|
|
4520
|
-
*
|
|
4520
|
+
* Name der bestellenden Person
|
|
4521
4521
|
*/
|
|
4522
|
-
|
|
4522
|
+
orderedBy: string;
|
|
4523
4523
|
|
|
4524
4524
|
/**
|
|
4525
|
-
*
|
|
4525
|
+
* Standardlager für neue Positionen
|
|
4526
4526
|
*/
|
|
4527
|
-
|
|
4527
|
+
defaultStorageRef: ApiObjectReference;
|
|
4528
4528
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
* Lieferadresse
|
|
@@ -4699,13 +4699,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4699
4699
|
*/
|
|
4700
4700
|
posPayments: Array<DocumentPosPayment>;
|
|
4701
4701
|
|
|
4702
|
-
/**
|
|
4703
|
-
* Ist die Quittung bezahlt
|
|
4704
|
-
true wenn die Quittung bezahlt ist
|
|
4705
|
-
|
|
4706
|
-
*/
|
|
4707
|
-
posReceiptPayed: boolean;
|
|
4708
|
-
|
|
4709
4702
|
/**
|
|
4710
4703
|
* Kundennummer beim Lieferanten
|
|
4711
4704
|
*/
|
|
@@ -4716,6 +4709,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4716
4709
|
*/
|
|
4717
4710
|
maxDeliveries: number;
|
|
4718
4711
|
|
|
4712
|
+
/**
|
|
4713
|
+
* Ist die Quittung bezahlt
|
|
4714
|
+
true wenn die Quittung bezahlt ist
|
|
4715
|
+
|
|
4716
|
+
*/
|
|
4717
|
+
posReceiptPayed: boolean;
|
|
4718
|
+
|
|
4719
4719
|
/**
|
|
4720
4720
|
* Quittung: Summe Zahlbetrag
|
|
4721
4721
|
*/
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5072
5072
|
roundingMode: DocumentRounding;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
contextParameters: Array<AdditionalParameter>;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* Herkunft der Sprache
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Herkunft der Käufer-Referenz
|
|
@@ -5087,14 +5087,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5087
5087
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5088
5088
|
|
|
5089
5089
|
/**
|
|
5090
|
-
*
|
|
5090
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5091
5091
|
*/
|
|
5092
|
-
|
|
5092
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5093
5093
|
|
|
5094
5094
|
/**
|
|
5095
|
-
*
|
|
5095
|
+
* Herkunft des Berechnungsmodus
|
|
5096
5096
|
*/
|
|
5097
|
-
|
|
5097
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
5100
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5194,14 +5194,14 @@ export interface DocumentAddress {
|
|
|
5194
5194
|
postOfficeBox: string;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* country code IsoAlpha3
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
countryCode: string;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
|
-
*
|
|
5202
|
+
* Street
|
|
5203
5203
|
*/
|
|
5204
|
-
|
|
5204
|
+
street: string;
|
|
5205
5205
|
|
|
5206
5206
|
/**
|
|
5207
5207
|
* Unique identifier of the Object
|
|
@@ -5447,14 +5447,14 @@ export interface DocumentFabricationDetail {
|
|
|
5447
5447
|
targetStorageRef: ApiObjectReference;
|
|
5448
5448
|
|
|
5449
5449
|
/**
|
|
5450
|
-
*
|
|
5450
|
+
* Material-Lager
|
|
5451
5451
|
*/
|
|
5452
|
-
|
|
5452
|
+
componentsStorageRef: ApiObjectReference;
|
|
5453
5453
|
|
|
5454
5454
|
/**
|
|
5455
|
-
*
|
|
5455
|
+
* Notiz
|
|
5456
5456
|
*/
|
|
5457
|
-
|
|
5457
|
+
note: string;
|
|
5458
5458
|
|
|
5459
5459
|
/**
|
|
5460
5460
|
* QS-Lager
|
|
@@ -5667,9 +5667,9 @@ export interface DocumentLine {
|
|
|
5667
5667
|
id: number;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
|
-
*
|
|
5670
|
+
* Serientyp
|
|
5671
5671
|
*/
|
|
5672
|
-
|
|
5672
|
+
serialType: ArticleSerialType;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
5675
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5677,9 +5677,9 @@ export interface DocumentLine {
|
|
|
5677
5677
|
basePrice: number;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
|
-
*
|
|
5680
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5681
5681
|
*/
|
|
5682
|
-
|
|
5682
|
+
positionOfArticleLine: number;
|
|
5683
5683
|
|
|
5684
5684
|
/**
|
|
5685
5685
|
* Preiseinheit
|
|
@@ -5797,14 +5797,14 @@ export interface DocumentLine {
|
|
|
5797
5797
|
netWeightUnit: UnitTypeReference;
|
|
5798
5798
|
|
|
5799
5799
|
/**
|
|
5800
|
-
*
|
|
5800
|
+
* Vertragsinformationen
|
|
5801
5801
|
*/
|
|
5802
|
-
|
|
5802
|
+
contractDetail: DocumentContractDetail;
|
|
5803
5803
|
|
|
5804
5804
|
/**
|
|
5805
|
-
*
|
|
5805
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5806
5806
|
*/
|
|
5807
|
-
|
|
5807
|
+
baseSalesValueNet: number;
|
|
5808
5808
|
|
|
5809
5809
|
/**
|
|
5810
5810
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
@@ -5892,14 +5892,14 @@ export interface DocumentLine {
|
|
|
5892
5892
|
commissions: Array<DocumentLineCommission>;
|
|
5893
5893
|
|
|
5894
5894
|
/**
|
|
5895
|
-
*
|
|
5895
|
+
* Positionstyp
|
|
5896
5896
|
*/
|
|
5897
|
-
|
|
5897
|
+
lineType: DocumentLineType;
|
|
5898
5898
|
|
|
5899
5899
|
/**
|
|
5900
|
-
*
|
|
5900
|
+
* Gesamtpreis Position in Basiswährung
|
|
5901
5901
|
*/
|
|
5902
|
-
|
|
5902
|
+
baseTotalLinePrice: number;
|
|
5903
5903
|
|
|
5904
5904
|
/**
|
|
5905
5905
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5997,14 +5997,14 @@ export interface DocumentLine {
|
|
|
5997
5997
|
description: string;
|
|
5998
5998
|
|
|
5999
5999
|
/**
|
|
6000
|
-
*
|
|
6000
|
+
* Referenz zum Lager
|
|
6001
6001
|
*/
|
|
6002
|
-
|
|
6002
|
+
storage: ApiObjectReference;
|
|
6003
6003
|
|
|
6004
6004
|
/**
|
|
6005
|
-
*
|
|
6005
|
+
* Preisherkunft
|
|
6006
6006
|
*/
|
|
6007
|
-
|
|
6007
|
+
priceOrigin: ProductPriceOrigin;
|
|
6008
6008
|
|
|
6009
6009
|
/**
|
|
6010
6010
|
* Rohertragsermittlung
|
|
@@ -6062,14 +6062,14 @@ export interface DocumentLine {
|
|
|
6062
6062
|
custom: EavDocumentline;
|
|
6063
6063
|
|
|
6064
6064
|
/**
|
|
6065
|
-
*
|
|
6065
|
+
* Artikel
|
|
6066
6066
|
*/
|
|
6067
|
-
|
|
6067
|
+
articleId: number;
|
|
6068
6068
|
|
|
6069
6069
|
/**
|
|
6070
|
-
*
|
|
6070
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
6071
6071
|
*/
|
|
6072
|
-
|
|
6072
|
+
settledOpenItemComment: string;
|
|
6073
6073
|
|
|
6074
6074
|
/**
|
|
6075
6075
|
* Interne Preisänderungsinformationen
|
|
@@ -6092,14 +6092,14 @@ export interface DocumentLine {
|
|
|
6092
6092
|
grossWeight: number;
|
|
6093
6093
|
|
|
6094
6094
|
/**
|
|
6095
|
-
*
|
|
6095
|
+
* angewendete Preisänderungen
|
|
6096
6096
|
*/
|
|
6097
|
-
|
|
6097
|
+
priceModifiers: Array<DocumentPriceModifier>;
|
|
6098
6098
|
|
|
6099
6099
|
/**
|
|
6100
|
-
*
|
|
6100
|
+
* Externe Artikelbeschreibung
|
|
6101
6101
|
*/
|
|
6102
|
-
|
|
6102
|
+
externalArticleDescription: string;
|
|
6103
6103
|
|
|
6104
6104
|
/**
|
|
6105
6105
|
* Enthält die Ergebnisse von vorherigen Entscheidungen des Benutzers zu dieser DocumentLine
|
|
@@ -6261,14 +6261,14 @@ export interface DocumentLineComponent {
|
|
|
6261
6261
|
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6262
6262
|
|
|
6263
6263
|
/**
|
|
6264
|
-
*
|
|
6264
|
+
* Referenz auf den Artikel der Komponente
|
|
6265
6265
|
*/
|
|
6266
|
-
|
|
6266
|
+
articleId: number;
|
|
6267
6267
|
|
|
6268
6268
|
/**
|
|
6269
|
-
*
|
|
6269
|
+
* Gelieferte Menge
|
|
6270
6270
|
*/
|
|
6271
|
-
|
|
6271
|
+
quantityCommitted: number;
|
|
6272
6272
|
|
|
6273
6273
|
/**
|
|
6274
6274
|
* Beschreibung des Artikels
|
|
@@ -6410,14 +6410,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6410
6410
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6411
6411
|
|
|
6412
6412
|
/**
|
|
6413
|
-
*
|
|
6413
|
+
* Abweichende Herstellungskosten
|
|
6414
6414
|
*/
|
|
6415
|
-
|
|
6415
|
+
deviatingUnitPrice: number;
|
|
6416
6416
|
|
|
6417
6417
|
/**
|
|
6418
|
-
*
|
|
6418
|
+
* Menge
|
|
6419
6419
|
*/
|
|
6420
|
-
|
|
6420
|
+
quantity: number;
|
|
6421
6421
|
|
|
6422
6422
|
/**
|
|
6423
6423
|
* Beschreibung
|
|
@@ -6472,11 +6472,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
6472
6472
|
*/
|
|
6473
6473
|
quantityFinished: number;
|
|
6474
6474
|
|
|
6475
|
-
/**
|
|
6476
|
-
* Freifeld
|
|
6477
|
-
*/
|
|
6478
|
-
custom: EavFabricationline;
|
|
6479
|
-
|
|
6480
6475
|
/**
|
|
6481
6476
|
* Menge defekt
|
|
6482
6477
|
*/
|
|
@@ -6487,6 +6482,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
6487
6482
|
*/
|
|
6488
6483
|
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6489
6484
|
|
|
6485
|
+
/**
|
|
6486
|
+
* Freifeld
|
|
6487
|
+
*/
|
|
6488
|
+
custom: EavFabricationline;
|
|
6489
|
+
|
|
6490
6490
|
/**
|
|
6491
6491
|
* Menge produziert
|
|
6492
6492
|
*/
|
|
@@ -6584,14 +6584,14 @@ export interface DocumentLinePosDetail {
|
|
|
6584
6584
|
deletable: boolean;
|
|
6585
6585
|
|
|
6586
6586
|
/**
|
|
6587
|
-
*
|
|
6587
|
+
* Status der externen Zahlung
|
|
6588
6588
|
*/
|
|
6589
|
-
|
|
6589
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6590
6590
|
|
|
6591
6591
|
/**
|
|
6592
|
-
*
|
|
6592
|
+
* Typ der Einlage/Ausgabe
|
|
6593
6593
|
*/
|
|
6594
|
-
|
|
6594
|
+
depositExpenseTypeId: number;
|
|
6595
6595
|
|
|
6596
6596
|
/**
|
|
6597
6597
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6940,14 +6940,14 @@ export interface DocumentPosPayment {
|
|
|
6940
6940
|
version: number;
|
|
6941
6941
|
|
|
6942
6942
|
/**
|
|
6943
|
-
*
|
|
6943
|
+
* Zahlungsart
|
|
6944
6944
|
*/
|
|
6945
|
-
|
|
6945
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6946
6946
|
|
|
6947
6947
|
/**
|
|
6948
|
-
*
|
|
6948
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6949
6949
|
*/
|
|
6950
|
-
|
|
6950
|
+
withdrawalAmount: number;
|
|
6951
6951
|
|
|
6952
6952
|
/**
|
|
6953
6953
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -7126,14 +7126,14 @@ export interface DocumentShippingCost {
|
|
|
7126
7126
|
manualCosts: boolean;
|
|
7127
7127
|
|
|
7128
7128
|
/**
|
|
7129
|
-
*
|
|
7129
|
+
* Texte
|
|
7130
7130
|
*/
|
|
7131
|
-
|
|
7131
|
+
texts: Array<DocumentText>;
|
|
7132
7132
|
|
|
7133
7133
|
/**
|
|
7134
|
-
*
|
|
7134
|
+
* Keine Versandkosten (freier Versand)
|
|
7135
7135
|
*/
|
|
7136
|
-
|
|
7136
|
+
freeShipping: boolean;
|
|
7137
7137
|
|
|
7138
7138
|
/**
|
|
7139
7139
|
* skontierbar
|
|
@@ -7241,14 +7241,14 @@ export interface DocumentText {
|
|
|
7241
7241
|
transferableIntoSubsequentDocuments: boolean;
|
|
7242
7242
|
|
|
7243
7243
|
/**
|
|
7244
|
-
*
|
|
7244
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7245
7245
|
*/
|
|
7246
|
-
|
|
7246
|
+
textPosition: TextPosition;
|
|
7247
7247
|
|
|
7248
7248
|
/**
|
|
7249
|
-
*
|
|
7249
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7250
7250
|
*/
|
|
7251
|
-
|
|
7251
|
+
deleted: boolean;
|
|
7252
7252
|
|
|
7253
7253
|
/**
|
|
7254
7254
|
* textBaustein Vorlage
|
|
@@ -8035,14 +8035,14 @@ export interface FabricationRevertRequest {
|
|
|
8035
8035
|
export interface FabricationSerialNumber {
|
|
8036
8036
|
|
|
8037
8037
|
/**
|
|
8038
|
-
*
|
|
8038
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
8039
8039
|
*/
|
|
8040
|
-
|
|
8040
|
+
serialNumberId: number;
|
|
8041
8041
|
|
|
8042
8042
|
/**
|
|
8043
|
-
*
|
|
8043
|
+
* MHD / Verfallsdatum
|
|
8044
8044
|
*/
|
|
8045
|
-
|
|
8045
|
+
expiryDate: ScriptingDate;
|
|
8046
8046
|
|
|
8047
8047
|
/**
|
|
8048
8048
|
* Bemerkung
|
|
@@ -8309,14 +8309,14 @@ export interface OpenItem {
|
|
|
8309
8309
|
dunningBlock: boolean;
|
|
8310
8310
|
|
|
8311
8311
|
/**
|
|
8312
|
-
*
|
|
8312
|
+
* Summe der Zahlungen in Basiswährung
|
|
8313
8313
|
*/
|
|
8314
|
-
|
|
8314
|
+
baseSumPayments: number;
|
|
8315
8315
|
|
|
8316
8316
|
/**
|
|
8317
|
-
*
|
|
8317
|
+
* order
|
|
8318
8318
|
*/
|
|
8319
|
-
|
|
8319
|
+
order: ApiObjectReference;
|
|
8320
8320
|
|
|
8321
8321
|
/**
|
|
8322
8322
|
* MetaInformations for this Object
|
|
@@ -8349,14 +8349,14 @@ export interface OpenItem {
|
|
|
8349
8349
|
version: number;
|
|
8350
8350
|
|
|
8351
8351
|
/**
|
|
8352
|
-
*
|
|
8352
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8353
8353
|
*/
|
|
8354
|
-
|
|
8354
|
+
baseSumDiscountableAmount: number;
|
|
8355
8355
|
|
|
8356
8356
|
/**
|
|
8357
|
-
*
|
|
8357
|
+
* List of tags
|
|
8358
8358
|
*/
|
|
8359
|
-
|
|
8359
|
+
tags: Array<TagDto>;
|
|
8360
8360
|
|
|
8361
8361
|
/**
|
|
8362
8362
|
* Fälligkeitsdatum
|
|
@@ -8374,14 +8374,14 @@ export interface OpenItem {
|
|
|
8374
8374
|
sourceCountryCode: string;
|
|
8375
8375
|
|
|
8376
8376
|
/**
|
|
8377
|
-
*
|
|
8377
|
+
* Valutadatum schreibgeschützt
|
|
8378
8378
|
*/
|
|
8379
|
-
|
|
8379
|
+
valueDateReadOnly: boolean;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* agreed Deposit payment date
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
depositPaymentDate: ScriptingDate;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
8387
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8419,14 +8419,14 @@ export interface OpenItem {
|
|
|
8419
8419
|
depositPaymentAmount: number;
|
|
8420
8420
|
|
|
8421
8421
|
/**
|
|
8422
|
-
*
|
|
8422
|
+
* Verwendungszweck
|
|
8423
8423
|
*/
|
|
8424
|
-
|
|
8424
|
+
purpose: string;
|
|
8425
8425
|
|
|
8426
8426
|
/**
|
|
8427
|
-
*
|
|
8427
|
+
* free payments
|
|
8428
8428
|
*/
|
|
8429
|
-
|
|
8429
|
+
records: Array<OpenItemRecord>;
|
|
8430
8430
|
|
|
8431
8431
|
/**
|
|
8432
8432
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8449,14 +8449,14 @@ export interface OpenItem {
|
|
|
8449
8449
|
paymentAmount: number;
|
|
8450
8450
|
|
|
8451
8451
|
/**
|
|
8452
|
-
*
|
|
8452
|
+
* how should a refund be done?
|
|
8453
8453
|
*/
|
|
8454
|
-
|
|
8454
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8455
8455
|
|
|
8456
8456
|
/**
|
|
8457
|
-
*
|
|
8457
|
+
* Rechnungskorrektur
|
|
8458
8458
|
*/
|
|
8459
|
-
|
|
8459
|
+
creditNote: ApiObjectReference;
|
|
8460
8460
|
|
|
8461
8461
|
/**
|
|
8462
8462
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8479,14 +8479,14 @@ export interface OpenItem {
|
|
|
8479
8479
|
sumFee: number;
|
|
8480
8480
|
|
|
8481
8481
|
/**
|
|
8482
|
-
*
|
|
8482
|
+
* Zahlungsplan
|
|
8483
8483
|
*/
|
|
8484
|
-
|
|
8484
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8485
8485
|
|
|
8486
8486
|
/**
|
|
8487
|
-
*
|
|
8487
|
+
* The full amount of the payment
|
|
8488
8488
|
*/
|
|
8489
|
-
|
|
8489
|
+
fullPaymentAmount: number;
|
|
8490
8490
|
|
|
8491
8491
|
/**
|
|
8492
8492
|
* Zahlungssperre
|
|
@@ -8499,14 +8499,14 @@ export interface OpenItem {
|
|
|
8499
8499
|
originalPaymentDueDate: ScriptingDate;
|
|
8500
8500
|
|
|
8501
8501
|
/**
|
|
8502
|
-
*
|
|
8502
|
+
* whether this open item is balanced, partially paid or open
|
|
8503
8503
|
*/
|
|
8504
|
-
|
|
8504
|
+
balanceState: OpenItemBalanceState;
|
|
8505
8505
|
|
|
8506
8506
|
/**
|
|
8507
|
-
*
|
|
8507
|
+
* Valutadatum
|
|
8508
8508
|
*/
|
|
8509
|
-
|
|
8509
|
+
valueDate: ScriptingDate;
|
|
8510
8510
|
|
|
8511
8511
|
/**
|
|
8512
8512
|
* Skontobetrag 1
|
|
@@ -8519,14 +8519,14 @@ export interface OpenItem {
|
|
|
8519
8519
|
baseSumDiscount: number;
|
|
8520
8520
|
|
|
8521
8521
|
/**
|
|
8522
|
-
*
|
|
8522
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8523
8523
|
*/
|
|
8524
|
-
|
|
8524
|
+
baseSumDunnings: number;
|
|
8525
8525
|
|
|
8526
8526
|
/**
|
|
8527
|
-
*
|
|
8527
|
+
* Zahlungsvorlage
|
|
8528
8528
|
*/
|
|
8529
|
-
|
|
8529
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8530
8530
|
|
|
8531
8531
|
/**
|
|
8532
8532
|
* Rechnungsbetrag
|
|
@@ -8539,14 +8539,14 @@ export interface OpenItem {
|
|
|
8539
8539
|
taxRateRef: ApiObjectReference;
|
|
8540
8540
|
|
|
8541
8541
|
/**
|
|
8542
|
-
*
|
|
8542
|
+
* Anzahlungsrechnung
|
|
8543
8543
|
*/
|
|
8544
|
-
|
|
8544
|
+
depositInvoice: ApiObjectReference;
|
|
8545
8545
|
|
|
8546
8546
|
/**
|
|
8547
|
-
*
|
|
8547
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8548
8548
|
*/
|
|
8549
|
-
|
|
8549
|
+
baseCurrencyCode: string;
|
|
8550
8550
|
|
|
8551
8551
|
/**
|
|
8552
8552
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8617,14 +8617,14 @@ export const enum OpenItemDunningState {
|
|
|
8617
8617
|
export interface OpenItemPaymentPlan {
|
|
8618
8618
|
|
|
8619
8619
|
/**
|
|
8620
|
-
*
|
|
8620
|
+
* Betrag
|
|
8621
8621
|
*/
|
|
8622
|
-
|
|
8622
|
+
amount: number;
|
|
8623
8623
|
|
|
8624
8624
|
/**
|
|
8625
|
-
*
|
|
8625
|
+
* Fälligkeitsregel
|
|
8626
8626
|
*/
|
|
8627
|
-
|
|
8627
|
+
dueDateCalculation: string;
|
|
8628
8628
|
|
|
8629
8629
|
/**
|
|
8630
8630
|
* Enddatum
|
|
@@ -9112,15 +9112,20 @@ export interface PaymentTerm {
|
|
|
9112
9112
|
*/
|
|
9113
9113
|
paymentDiscount2: number;
|
|
9114
9114
|
|
|
9115
|
+
/**
|
|
9116
|
+
* Percent for Discount 1
|
|
9117
|
+
*/
|
|
9118
|
+
paymentDiscount1: number;
|
|
9119
|
+
|
|
9115
9120
|
/**
|
|
9116
9121
|
* printDescription
|
|
9117
9122
|
*/
|
|
9118
9123
|
printDescription: string;
|
|
9119
9124
|
|
|
9120
9125
|
/**
|
|
9121
|
-
*
|
|
9126
|
+
* Days for Discount 1
|
|
9122
9127
|
*/
|
|
9123
|
-
|
|
9128
|
+
paymentDays1: number;
|
|
9124
9129
|
|
|
9125
9130
|
/**
|
|
9126
9131
|
* for deposit: remaining term
|
|
@@ -9128,9 +9133,9 @@ export interface PaymentTerm {
|
|
|
9128
9133
|
remainingTermRef: ApiObjectReference;
|
|
9129
9134
|
|
|
9130
9135
|
/**
|
|
9131
|
-
* Days for Discount
|
|
9136
|
+
* Days for Discount 2
|
|
9132
9137
|
*/
|
|
9133
|
-
|
|
9138
|
+
paymentDays2: number;
|
|
9134
9139
|
|
|
9135
9140
|
/**
|
|
9136
9141
|
* Aktiv?
|
|
@@ -9142,11 +9147,6 @@ export interface PaymentTerm {
|
|
|
9142
9147
|
*/
|
|
9143
9148
|
description: string;
|
|
9144
9149
|
|
|
9145
|
-
/**
|
|
9146
|
-
* Days for Discount 2
|
|
9147
|
-
*/
|
|
9148
|
-
paymentDays2: number;
|
|
9149
|
-
|
|
9150
9150
|
/**
|
|
9151
9151
|
* label for this payment term
|
|
9152
9152
|
*/
|
|
@@ -9843,6 +9843,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9843
9843
|
*/
|
|
9844
9844
|
maxOrderValue: number;
|
|
9845
9845
|
|
|
9846
|
+
/**
|
|
9847
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9848
|
+
*/
|
|
9849
|
+
maxOrderCount: number;
|
|
9850
|
+
|
|
9846
9851
|
/**
|
|
9847
9852
|
* Nur vollständig lieferbare Positionen
|
|
9848
9853
|
*/
|
|
@@ -9853,11 +9858,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9853
9858
|
*/
|
|
9854
9859
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9855
9860
|
|
|
9856
|
-
/**
|
|
9857
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9858
|
-
*/
|
|
9859
|
-
maxOrderCount: number;
|
|
9860
|
-
|
|
9861
9861
|
/**
|
|
9862
9862
|
* Selektion über den Bereich vom Belegdatum
|
|
9863
9863
|
*/
|
|
@@ -9936,11 +9936,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9936
9936
|
*/
|
|
9937
9937
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9938
9938
|
|
|
9939
|
-
/**
|
|
9940
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9941
|
-
*/
|
|
9942
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9943
|
-
|
|
9944
9939
|
/**
|
|
9945
9940
|
* Lagerplätze vorgeben
|
|
9946
9941
|
*/
|
|
@@ -9952,15 +9947,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9952
9947
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9953
9948
|
|
|
9954
9949
|
/**
|
|
9955
|
-
*
|
|
9950
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9956
9951
|
*/
|
|
9957
|
-
|
|
9952
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9958
9953
|
|
|
9959
9954
|
/**
|
|
9960
9955
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9961
9956
|
*/
|
|
9962
9957
|
sortByRoutePosition: boolean;
|
|
9963
9958
|
|
|
9959
|
+
/**
|
|
9960
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9961
|
+
*/
|
|
9962
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9963
|
+
|
|
9964
9964
|
/**
|
|
9965
9965
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9966
9966
|
*/
|
|
@@ -10025,24 +10025,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10025
10025
|
showShippingFormOnPickingFinish: boolean;
|
|
10026
10026
|
|
|
10027
10027
|
/**
|
|
10028
|
-
*
|
|
10028
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10029
10029
|
*/
|
|
10030
|
-
|
|
10030
|
+
printLabelOnScan: boolean;
|
|
10031
10031
|
|
|
10032
10032
|
/**
|
|
10033
|
-
*
|
|
10033
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
10034
10034
|
*/
|
|
10035
|
-
|
|
10035
|
+
allowPickingOfServiceArticles: boolean;
|
|
10036
10036
|
|
|
10037
10037
|
/**
|
|
10038
|
-
*
|
|
10038
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
10039
10039
|
*/
|
|
10040
|
-
|
|
10040
|
+
useDigitalPicklist: boolean;
|
|
10041
10041
|
|
|
10042
10042
|
/**
|
|
10043
|
-
*
|
|
10043
|
+
* Sammelbestätigung erlauben
|
|
10044
10044
|
*/
|
|
10045
|
-
|
|
10045
|
+
allowFullConfirmation: boolean;
|
|
10046
10046
|
|
|
10047
10047
|
/**
|
|
10048
10048
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10060,14 +10060,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10060
10060
|
printLabelOnCompleteOrder: boolean;
|
|
10061
10061
|
|
|
10062
10062
|
/**
|
|
10063
|
-
*
|
|
10063
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10064
10064
|
*/
|
|
10065
|
-
|
|
10065
|
+
printLabelAfterPicking: boolean;
|
|
10066
10066
|
|
|
10067
10067
|
/**
|
|
10068
|
-
*
|
|
10068
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10069
10069
|
*/
|
|
10070
|
-
|
|
10070
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10071
10071
|
|
|
10072
10072
|
/**
|
|
10073
10073
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10164,14 +10164,14 @@ export interface PriceSelectionCriteria {
|
|
|
10164
10164
|
priceGroupId: number;
|
|
10165
10165
|
|
|
10166
10166
|
/**
|
|
10167
|
-
* Liste von
|
|
10167
|
+
* Liste von Account-IDs
|
|
10168
10168
|
*/
|
|
10169
|
-
|
|
10169
|
+
accountIds: Array<number>;
|
|
10170
10170
|
|
|
10171
10171
|
/**
|
|
10172
|
-
* Liste von
|
|
10172
|
+
* Liste von Artikel-IDs
|
|
10173
10173
|
*/
|
|
10174
|
-
|
|
10174
|
+
articleIds: Array<number>;
|
|
10175
10175
|
|
|
10176
10176
|
/**
|
|
10177
10177
|
* ein qualifier
|
|
@@ -10197,14 +10197,14 @@ export interface PriceSelectionCriteria {
|
|
|
10197
10197
|
export interface Product {
|
|
10198
10198
|
|
|
10199
10199
|
/**
|
|
10200
|
-
*
|
|
10200
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10201
10201
|
*/
|
|
10202
|
-
|
|
10202
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10203
10203
|
|
|
10204
10204
|
/**
|
|
10205
|
-
*
|
|
10205
|
+
* Zolltarifnummer
|
|
10206
10206
|
*/
|
|
10207
|
-
|
|
10207
|
+
customsTariffNumber: string;
|
|
10208
10208
|
|
|
10209
10209
|
/**
|
|
10210
10210
|
* Gebindeschema dieses Produkts
|
|
@@ -10373,14 +10373,14 @@ export interface ProductDiscount {
|
|
|
10373
10373
|
fromQuantity: number;
|
|
10374
10374
|
|
|
10375
10375
|
/**
|
|
10376
|
-
*
|
|
10376
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10377
10377
|
*/
|
|
10378
|
-
|
|
10378
|
+
articleRef: ApiObjectReference;
|
|
10379
10379
|
|
|
10380
10380
|
/**
|
|
10381
|
-
*
|
|
10381
|
+
* Hersteller
|
|
10382
10382
|
*/
|
|
10383
|
-
|
|
10383
|
+
manufacturerRef: ApiObjectReference;
|
|
10384
10384
|
|
|
10385
10385
|
/**
|
|
10386
10386
|
* Gültig von
|
|
@@ -10443,14 +10443,14 @@ export interface ProductDiscount {
|
|
|
10443
10443
|
modifierValueType: ValueType;
|
|
10444
10444
|
|
|
10445
10445
|
/**
|
|
10446
|
-
*
|
|
10446
|
+
* Name des Rabatts
|
|
10447
10447
|
*/
|
|
10448
|
-
|
|
10448
|
+
modifierName: string;
|
|
10449
10449
|
|
|
10450
10450
|
/**
|
|
10451
|
-
*
|
|
10451
|
+
* Account, für den der Rabatt gültig ist
|
|
10452
10452
|
*/
|
|
10453
|
-
|
|
10453
|
+
accountRef: ApiObjectReference;
|
|
10454
10454
|
|
|
10455
10455
|
/**
|
|
10456
10456
|
* Unique identifier of the Object
|
|
@@ -10637,14 +10637,14 @@ export interface ProductPrice {
|
|
|
10637
10637
|
supplierGroupRef: ApiObjectReference;
|
|
10638
10638
|
|
|
10639
10639
|
/**
|
|
10640
|
-
*
|
|
10640
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10641
10641
|
*/
|
|
10642
|
-
|
|
10642
|
+
articleRef: ApiObjectReference;
|
|
10643
10643
|
|
|
10644
10644
|
/**
|
|
10645
|
-
*
|
|
10645
|
+
* Hersteller
|
|
10646
10646
|
*/
|
|
10647
|
-
|
|
10647
|
+
manufacturerRef: ApiObjectReference;
|
|
10648
10648
|
|
|
10649
10649
|
/**
|
|
10650
10650
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10672,14 +10672,14 @@ export interface ProductPrice {
|
|
|
10672
10672
|
specialOfferPrice: boolean;
|
|
10673
10673
|
|
|
10674
10674
|
/**
|
|
10675
|
-
*
|
|
10675
|
+
* Preisbasis
|
|
10676
10676
|
*/
|
|
10677
|
-
|
|
10677
|
+
priceBase: ArticlePriceBase;
|
|
10678
10678
|
|
|
10679
10679
|
/**
|
|
10680
|
-
*
|
|
10680
|
+
* Gültig bis
|
|
10681
10681
|
*/
|
|
10682
|
-
|
|
10682
|
+
validUntil: ScriptingDate;
|
|
10683
10683
|
|
|
10684
10684
|
/**
|
|
10685
10685
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
@@ -10782,14 +10782,14 @@ export const enum RegulationSet {
|
|
|
10782
10782
|
export interface RequestDocument {
|
|
10783
10783
|
|
|
10784
10784
|
/**
|
|
10785
|
-
*
|
|
10785
|
+
* Belegdatum
|
|
10786
10786
|
*/
|
|
10787
|
-
|
|
10787
|
+
documentDate: ScriptingDate;
|
|
10788
10788
|
|
|
10789
10789
|
/**
|
|
10790
|
-
*
|
|
10790
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10791
10791
|
*/
|
|
10792
|
-
|
|
10792
|
+
incomingGoodsStorageBinId: number;
|
|
10793
10793
|
|
|
10794
10794
|
/**
|
|
10795
10795
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10882,14 +10882,14 @@ export interface RequestDocument {
|
|
|
10882
10882
|
contractDetail: DocumentContractDetail;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
supplierAccountId: number;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
|
-
*
|
|
10890
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10891
10891
|
*/
|
|
10892
|
-
|
|
10892
|
+
paymentTermId: number;
|
|
10893
10893
|
|
|
10894
10894
|
/**
|
|
10895
10895
|
* Schema Freifelder
|
|
@@ -10902,14 +10902,14 @@ export interface RequestDocument {
|
|
|
10902
10902
|
dropShipping: boolean;
|
|
10903
10903
|
|
|
10904
10904
|
/**
|
|
10905
|
-
*
|
|
10905
|
+
* reference to the corresponding document in an external system
|
|
10906
10906
|
*/
|
|
10907
|
-
|
|
10907
|
+
externalId: string;
|
|
10908
10908
|
|
|
10909
10909
|
/**
|
|
10910
|
-
*
|
|
10910
|
+
* target document type for document copy
|
|
10911
10911
|
*/
|
|
10912
|
-
|
|
10912
|
+
targetDocumentType: DocumentType;
|
|
10913
10913
|
|
|
10914
10914
|
/**
|
|
10915
10915
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10937,14 +10937,14 @@ export interface RequestDocument {
|
|
|
10937
10937
|
texts: Array<DocumentText>;
|
|
10938
10938
|
|
|
10939
10939
|
/**
|
|
10940
|
-
*
|
|
10940
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10941
10941
|
*/
|
|
10942
|
-
|
|
10942
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10943
10943
|
|
|
10944
10944
|
/**
|
|
10945
|
-
*
|
|
10945
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10946
10946
|
*/
|
|
10947
|
-
|
|
10947
|
+
processedByPicklistProcessing: boolean;
|
|
10948
10948
|
|
|
10949
10949
|
/**
|
|
10950
10950
|
* Die Rabatte des Beleges
|
|
@@ -10980,14 +10980,14 @@ export interface RequestDocumentLine {
|
|
|
10980
10980
|
description: string;
|
|
10981
10981
|
|
|
10982
10982
|
/**
|
|
10983
|
-
*
|
|
10983
|
+
* Quittungsdetails zur Belegposition
|
|
10984
10984
|
*/
|
|
10985
|
-
|
|
10985
|
+
posDetail: DocumentLinePosDetail;
|
|
10986
10986
|
|
|
10987
10987
|
/**
|
|
10988
|
-
*
|
|
10988
|
+
* Herkunft des Preises
|
|
10989
10989
|
*/
|
|
10990
|
-
|
|
10990
|
+
priceOrigin: ProductPriceOrigin;
|
|
10991
10991
|
|
|
10992
10992
|
/**
|
|
10993
10993
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -11005,14 +11005,14 @@ export interface RequestDocumentLine {
|
|
|
11005
11005
|
commissions: Array<RequestDocumentLineCommission>;
|
|
11006
11006
|
|
|
11007
11007
|
/**
|
|
11008
|
-
*
|
|
11008
|
+
* Typ dieser Position
|
|
11009
11009
|
*/
|
|
11010
|
-
|
|
11010
|
+
lineType: DocumentLineType;
|
|
11011
11011
|
|
|
11012
11012
|
/**
|
|
11013
|
-
*
|
|
11013
|
+
* FiBu-Angaben
|
|
11014
11014
|
*/
|
|
11015
|
-
|
|
11015
|
+
financeBooking: DocumentFinanceBooking;
|
|
11016
11016
|
|
|
11017
11017
|
/**
|
|
11018
11018
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -11025,14 +11025,14 @@ export interface RequestDocumentLine {
|
|
|
11025
11025
|
dropShippingPolicy: DropShippingPolicy;
|
|
11026
11026
|
|
|
11027
11027
|
/**
|
|
11028
|
-
*
|
|
11028
|
+
* (optional) Lager-ID
|
|
11029
11029
|
*/
|
|
11030
|
-
|
|
11030
|
+
storageId: number;
|
|
11031
11031
|
|
|
11032
11032
|
/**
|
|
11033
|
-
*
|
|
11033
|
+
* Positionsnummer der Artikel
|
|
11034
11034
|
*/
|
|
11035
|
-
|
|
11035
|
+
positionOfArticleLine: number;
|
|
11036
11036
|
|
|
11037
11037
|
/**
|
|
11038
11038
|
* Vertragsdetails zur Belegposition
|
|
@@ -11045,14 +11045,14 @@ export interface RequestDocumentLine {
|
|
|
11045
11045
|
supplierAccountId: number;
|
|
11046
11046
|
|
|
11047
11047
|
/**
|
|
11048
|
-
*
|
|
11048
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
11049
11049
|
*/
|
|
11050
|
-
|
|
11050
|
+
mainArticleLinePosition: number;
|
|
11051
11051
|
|
|
11052
11052
|
/**
|
|
11053
|
-
*
|
|
11053
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
11054
11054
|
*/
|
|
11055
|
-
|
|
11055
|
+
quantity: number;
|
|
11056
11056
|
|
|
11057
11057
|
/**
|
|
11058
11058
|
* Versandkosten mit Bedingungen
|
|
@@ -11069,26 +11069,26 @@ export interface RequestDocumentLine {
|
|
|
11069
11069
|
*/
|
|
11070
11070
|
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
11071
11071
|
|
|
11072
|
-
/**
|
|
11073
|
-
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
11074
|
-
*/
|
|
11075
|
-
settledOpenItemComment: string;
|
|
11076
|
-
|
|
11077
11072
|
/**
|
|
11078
11073
|
* (optional) ID des Artikels dieser Position
|
|
11079
11074
|
*/
|
|
11080
11075
|
articleId: number;
|
|
11081
11076
|
|
|
11082
11077
|
/**
|
|
11083
|
-
*
|
|
11078
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
11084
11079
|
*/
|
|
11085
|
-
|
|
11080
|
+
settledOpenItemComment: string;
|
|
11086
11081
|
|
|
11087
11082
|
/**
|
|
11088
11083
|
* Referenz auf die zugehörige Position in einem externen System
|
|
11089
11084
|
*/
|
|
11090
11085
|
externalId: string;
|
|
11091
11086
|
|
|
11087
|
+
/**
|
|
11088
|
+
* ID der Belegposition im aktuellen Beleg
|
|
11089
|
+
*/
|
|
11090
|
+
lineId: number;
|
|
11091
|
+
|
|
11092
11092
|
/**
|
|
11093
11093
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
11094
11094
|
*/
|
|
@@ -11135,14 +11135,14 @@ export interface RequestDocumentLine {
|
|
|
11135
11135
|
bookings: Array<RequestDocumentLineBooking>;
|
|
11136
11136
|
|
|
11137
11137
|
/**
|
|
11138
|
-
*
|
|
11138
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
11139
11139
|
*/
|
|
11140
|
-
|
|
11140
|
+
doLabelPrint: boolean;
|
|
11141
11141
|
|
|
11142
11142
|
/**
|
|
11143
|
-
*
|
|
11143
|
+
* (optional) Preis des Artikels dieser Position
|
|
11144
11144
|
*/
|
|
11145
|
-
|
|
11145
|
+
productPrice: number;
|
|
11146
11146
|
}
|
|
11147
11147
|
|
|
11148
11148
|
export interface RequestDocumentLineBooking {
|
|
@@ -11983,14 +11983,14 @@ export interface ShelfFile {
|
|
|
11983
11983
|
subFiles: Array<SubFileInfo>;
|
|
11984
11984
|
|
|
11985
11985
|
/**
|
|
11986
|
-
*
|
|
11986
|
+
* fileSize
|
|
11987
11987
|
*/
|
|
11988
|
-
|
|
11988
|
+
fileSize: number;
|
|
11989
11989
|
|
|
11990
11990
|
/**
|
|
11991
|
-
*
|
|
11991
|
+
* revision number of this file
|
|
11992
11992
|
*/
|
|
11993
|
-
|
|
11993
|
+
revisionNumber: number;
|
|
11994
11994
|
|
|
11995
11995
|
/**
|
|
11996
11996
|
* file-extension of this entry
|
|
@@ -12018,14 +12018,14 @@ export interface ShelfFile {
|
|
|
12018
12018
|
version: number;
|
|
12019
12019
|
|
|
12020
12020
|
/**
|
|
12021
|
-
*
|
|
12021
|
+
* meta data
|
|
12022
12022
|
*/
|
|
12023
|
-
|
|
12023
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
12024
12024
|
|
|
12025
12025
|
/**
|
|
12026
|
-
*
|
|
12026
|
+
* current reference of this file in our storage
|
|
12027
12027
|
*/
|
|
12028
|
-
|
|
12028
|
+
storageHandle: string;
|
|
12029
12029
|
|
|
12030
12030
|
/**
|
|
12031
12031
|
* MetaInformations for this Object
|
|
@@ -12223,14 +12223,14 @@ export const enum StockJournalFactor {
|
|
|
12223
12223
|
export interface StockMovementManualApi {
|
|
12224
12224
|
|
|
12225
12225
|
/**
|
|
12226
|
-
*
|
|
12226
|
+
* Bemerkung
|
|
12227
12227
|
*/
|
|
12228
|
-
|
|
12228
|
+
note: string;
|
|
12229
12229
|
|
|
12230
12230
|
/**
|
|
12231
|
-
*
|
|
12231
|
+
* Preiseinheit, auf die sich der EK bezieht (i.d.R. basePriceUnit des Artikels)
|
|
12232
12232
|
*/
|
|
12233
|
-
|
|
12233
|
+
priceUnit: number;
|
|
12234
12234
|
|
|
12235
12235
|
/**
|
|
12236
12236
|
* Menge
|
|
@@ -13060,14 +13060,14 @@ export interface User {
|
|
|
13060
13060
|
version: number;
|
|
13061
13061
|
|
|
13062
13062
|
/**
|
|
13063
|
-
*
|
|
13063
|
+
* is the email verified
|
|
13064
13064
|
*/
|
|
13065
|
-
|
|
13065
|
+
emailVerified: boolean;
|
|
13066
13066
|
|
|
13067
13067
|
/**
|
|
13068
|
-
*
|
|
13068
|
+
* first-name
|
|
13069
13069
|
*/
|
|
13070
|
-
|
|
13070
|
+
firstName: string;
|
|
13071
13071
|
|
|
13072
13072
|
/**
|
|
13073
13073
|
* email-address
|
|
@@ -13146,14 +13146,14 @@ export interface VariantAttributeListing {
|
|
|
13146
13146
|
salesChannelRef: ApiObjectReference;
|
|
13147
13147
|
|
|
13148
13148
|
/**
|
|
13149
|
-
*
|
|
13149
|
+
* Freifelder
|
|
13150
13150
|
*/
|
|
13151
|
-
|
|
13151
|
+
custom: EavVariantattributelisting;
|
|
13152
13152
|
|
|
13153
13153
|
/**
|
|
13154
|
-
*
|
|
13154
|
+
* Variantenattribut
|
|
13155
13155
|
*/
|
|
13156
|
-
|
|
13156
|
+
variantAttributeRef: ApiObjectReference;
|
|
13157
13157
|
|
|
13158
13158
|
/**
|
|
13159
13159
|
* Unique identifier of the Object
|