@vario-software/types 2026.20.2 → 2026.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +31 -31
- package/scripting/types.d.ts +286 -286
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Country code
|
|
310
305
|
*/
|
|
311
306
|
countryCode: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Street
|
|
310
|
+
*/
|
|
311
|
+
street: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* Is default bank?
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
defaultBank: boolean;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* origin type
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
originType: AccountBankdetail$OriginType;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Kreditlimit
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
maximalLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -999,14 +999,14 @@ export interface Article {
|
|
|
999
999
|
customsTariffNumber: string;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
|
-
*
|
|
1002
|
+
* Product custom data
|
|
1003
1003
|
*/
|
|
1004
|
-
|
|
1004
|
+
listingCustom: EavArticleListing;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* is this product purchasable
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
purchasable: boolean;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* base capacity unit
|
|
@@ -1019,14 +1019,14 @@ export interface Article {
|
|
|
1019
1019
|
sellableWithoutStock: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* Seriennummern Auszeichnungsart
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* Durchschnittl. EKP (Startwert)
|
|
1028
1028
|
*/
|
|
1029
|
-
|
|
1029
|
+
initialAvgPurchasePrice: number;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
1032
|
* gross Volume in cubic meters
|
|
@@ -1268,6 +1268,11 @@ export interface Article {
|
|
|
1268
1268
|
*/
|
|
1269
1269
|
permissibleForOrderProposal: boolean;
|
|
1270
1270
|
|
|
1271
|
+
/**
|
|
1272
|
+
* reference to Product
|
|
1273
|
+
*/
|
|
1274
|
+
productRef: ApiObjectReference;
|
|
1275
|
+
|
|
1271
1276
|
/**
|
|
1272
1277
|
* Versandlabeldruck
|
|
1273
1278
|
*/
|
|
@@ -1278,25 +1283,20 @@ export interface Article {
|
|
|
1278
1283
|
*/
|
|
1279
1284
|
isDangerousGood: boolean;
|
|
1280
1285
|
|
|
1281
|
-
/**
|
|
1282
|
-
* reference to Product
|
|
1283
|
-
*/
|
|
1284
|
-
productRef: ApiObjectReference;
|
|
1285
|
-
|
|
1286
1286
|
/**
|
|
1287
1287
|
* Kontingentartikel
|
|
1288
1288
|
*/
|
|
1289
1289
|
contingentArticleRef: ApiObjectReference;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
|
-
*
|
|
1292
|
+
* alternative name of this product
|
|
1293
1293
|
*/
|
|
1294
|
-
|
|
1294
|
+
alternativeName: string;
|
|
1295
1295
|
|
|
1296
1296
|
/**
|
|
1297
|
-
*
|
|
1297
|
+
* rabattierbarer Artikel?
|
|
1298
1298
|
*/
|
|
1299
|
-
|
|
1299
|
+
discountable: boolean;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
1302
|
* base capacity
|
|
@@ -1364,14 +1364,14 @@ export interface Article {
|
|
|
1364
1364
|
listed: boolean;
|
|
1365
1365
|
|
|
1366
1366
|
/**
|
|
1367
|
-
*
|
|
1367
|
+
* Nur manuelle Produktion
|
|
1368
1368
|
*/
|
|
1369
|
-
|
|
1369
|
+
onlyManualFabrication: boolean;
|
|
1370
1370
|
|
|
1371
1371
|
/**
|
|
1372
|
-
*
|
|
1372
|
+
* provisionsberechtiger Artikel?
|
|
1373
1373
|
*/
|
|
1374
|
-
|
|
1374
|
+
commissionable: boolean;
|
|
1375
1375
|
|
|
1376
1376
|
/**
|
|
1377
1377
|
* Preisbasis
|
|
@@ -1522,14 +1522,14 @@ export interface ArticleListing {
|
|
|
1522
1522
|
proposedLowestPriceGross: number;
|
|
1523
1523
|
|
|
1524
1524
|
/**
|
|
1525
|
-
* der
|
|
1525
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1526
1526
|
*/
|
|
1527
|
-
|
|
1527
|
+
customLowestPriceGross: number;
|
|
1528
1528
|
|
|
1529
1529
|
/**
|
|
1530
|
-
*
|
|
1530
|
+
* der Sales Channel
|
|
1531
1531
|
*/
|
|
1532
|
-
|
|
1532
|
+
salesChannelRef: ApiObjectReference;
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
* soll der Artikel gelistet werden
|
|
@@ -1738,6 +1738,11 @@ export interface ArticleStorage {
|
|
|
1738
1738
|
*/
|
|
1739
1739
|
replenishmentFrom: number;
|
|
1740
1740
|
|
|
1741
|
+
/**
|
|
1742
|
+
* Aktuelle Menge in Kommissionierung
|
|
1743
|
+
*/
|
|
1744
|
+
quantityInPicking: number;
|
|
1745
|
+
|
|
1741
1746
|
/**
|
|
1742
1747
|
* Meldebestand
|
|
1743
1748
|
*/
|
|
@@ -1748,11 +1753,6 @@ export interface ArticleStorage {
|
|
|
1748
1753
|
*/
|
|
1749
1754
|
orderedQuantity: number;
|
|
1750
1755
|
|
|
1751
|
-
/**
|
|
1752
|
-
* Aktuelle Menge in Kommissionierung
|
|
1753
|
-
*/
|
|
1754
|
-
quantityInPicking: number;
|
|
1755
|
-
|
|
1756
1756
|
/**
|
|
1757
1757
|
* Nachschub auf
|
|
1758
1758
|
*/
|
|
@@ -1847,14 +1847,14 @@ export interface ArticleSupplier {
|
|
|
1847
1847
|
useSupplierArticleDescription: boolean;
|
|
1848
1848
|
|
|
1849
1849
|
/**
|
|
1850
|
-
*
|
|
1850
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1851
1851
|
*/
|
|
1852
|
-
|
|
1852
|
+
useSupplierArticleIdentifier: boolean;
|
|
1853
1853
|
|
|
1854
1854
|
/**
|
|
1855
|
-
*
|
|
1855
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1856
1856
|
*/
|
|
1857
|
-
|
|
1857
|
+
deliveryTime: number;
|
|
1858
1858
|
|
|
1859
1859
|
/**
|
|
1860
1860
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -1942,14 +1942,14 @@ export interface ArticleSupplier {
|
|
|
1942
1942
|
dropShippingAllowed: boolean;
|
|
1943
1943
|
|
|
1944
1944
|
/**
|
|
1945
|
-
* Abweichende
|
|
1945
|
+
* Abweichende Produktbeschreibung
|
|
1946
1946
|
*/
|
|
1947
|
-
|
|
1947
|
+
supplierArticleDescription: string;
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
|
-
* Abweichende
|
|
1950
|
+
* Abweichende Produktbezeichnung
|
|
1951
1951
|
*/
|
|
1952
|
-
|
|
1952
|
+
supplierArticleName: string;
|
|
1953
1953
|
|
|
1954
1954
|
/**
|
|
1955
1955
|
* Standardpreis Netto
|
|
@@ -2167,14 +2167,14 @@ export interface CountryReference {
|
|
|
2167
2167
|
export interface CreateNewDocumentRequest {
|
|
2168
2168
|
|
|
2169
2169
|
/**
|
|
2170
|
-
*
|
|
2170
|
+
* Belegart
|
|
2171
2171
|
*/
|
|
2172
|
-
|
|
2172
|
+
documentTypeLabel: string;
|
|
2173
2173
|
|
|
2174
2174
|
/**
|
|
2175
|
-
* Belegart
|
|
2175
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2176
2176
|
*/
|
|
2177
|
-
|
|
2177
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2178
2178
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* Details zum Beleg
|
|
@@ -2240,14 +2240,14 @@ export interface CrmActivity {
|
|
|
2240
2240
|
info: MetaInfo;
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
|
-
*
|
|
2243
|
+
* geplante Dauer
|
|
2244
2244
|
*/
|
|
2245
|
-
|
|
2245
|
+
plannedDurationInSeconds: number;
|
|
2246
2246
|
|
|
2247
2247
|
/**
|
|
2248
|
-
*
|
|
2248
|
+
* Aktivität intern abgerechnet?
|
|
2249
2249
|
*/
|
|
2250
|
-
|
|
2250
|
+
internalBilled: boolean;
|
|
2251
2251
|
|
|
2252
2252
|
/**
|
|
2253
2253
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2517,14 +2517,14 @@ export interface CrmDeal {
|
|
|
2517
2517
|
info: MetaInfo;
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
*
|
|
2520
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
assignedUserRef: ApiObjectReference;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
|
-
*
|
|
2525
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2526
2526
|
*/
|
|
2527
|
-
|
|
2527
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2528
2528
|
|
|
2529
2529
|
/**
|
|
2530
2530
|
* Chance (in Prozent)
|
|
@@ -2823,14 +2823,14 @@ export interface CrmProject {
|
|
|
2823
2823
|
billedTimes: number;
|
|
2824
2824
|
|
|
2825
2825
|
/**
|
|
2826
|
-
*
|
|
2826
|
+
* Einkaufsbelege
|
|
2827
2827
|
*/
|
|
2828
|
-
|
|
2828
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2829
2829
|
|
|
2830
2830
|
/**
|
|
2831
|
-
*
|
|
2831
|
+
* Geplanter Projektzeitraum (von)
|
|
2832
2832
|
*/
|
|
2833
|
-
|
|
2833
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2834
2834
|
|
|
2835
2835
|
/**
|
|
2836
2836
|
* Verkaufsbelege
|
|
@@ -3304,14 +3304,14 @@ export interface CrmTask {
|
|
|
3304
3304
|
assignedUserRef: ApiObjectReference;
|
|
3305
3305
|
|
|
3306
3306
|
/**
|
|
3307
|
-
*
|
|
3307
|
+
* Beauftragte Zeit in Sekunden
|
|
3308
3308
|
*/
|
|
3309
|
-
|
|
3309
|
+
effortCommissioned: number;
|
|
3310
3310
|
|
|
3311
3311
|
/**
|
|
3312
|
-
*
|
|
3312
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3313
3313
|
*/
|
|
3314
|
-
|
|
3314
|
+
externalRecordedTimes: number;
|
|
3315
3315
|
|
|
3316
3316
|
/**
|
|
3317
3317
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3548,14 +3548,14 @@ export interface Customer {
|
|
|
3548
3548
|
stackProcessingPriority: number;
|
|
3549
3549
|
|
|
3550
3550
|
/**
|
|
3551
|
-
*
|
|
3551
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3552
3552
|
*/
|
|
3553
|
-
|
|
3553
|
+
collectiveInvoiceManually: boolean;
|
|
3554
3554
|
|
|
3555
3555
|
/**
|
|
3556
|
-
*
|
|
3556
|
+
* reference to product price group
|
|
3557
3557
|
*/
|
|
3558
|
-
|
|
3558
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3559
3559
|
|
|
3560
3560
|
/**
|
|
3561
3561
|
* Unique identifier of the Object
|
|
@@ -3639,14 +3639,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3639
3639
|
export interface DeliveryMethod {
|
|
3640
3640
|
|
|
3641
3641
|
/**
|
|
3642
|
-
*
|
|
3642
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3643
3643
|
*/
|
|
3644
|
-
|
|
3644
|
+
splitIntoNewDocument: boolean;
|
|
3645
3645
|
|
|
3646
3646
|
/**
|
|
3647
|
-
*
|
|
3647
|
+
* E-Mail an Versender übergeben
|
|
3648
3648
|
*/
|
|
3649
|
-
|
|
3649
|
+
forwardEmailToShipper: boolean;
|
|
3650
3650
|
|
|
3651
3651
|
/**
|
|
3652
3652
|
* Min. Gewicht pro Paket
|
|
@@ -3698,26 +3698,26 @@ export interface DeliveryMethod {
|
|
|
3698
3698
|
*/
|
|
3699
3699
|
defaultSizeUnit: UnitTypeReference;
|
|
3700
3700
|
|
|
3701
|
-
/**
|
|
3702
|
-
* translations
|
|
3703
|
-
*/
|
|
3704
|
-
translations: Array<DocumentTypeTerm>;
|
|
3705
|
-
|
|
3706
3701
|
/**
|
|
3707
3702
|
* Quelle für Paketgewicht
|
|
3708
3703
|
*/
|
|
3709
3704
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3710
3705
|
|
|
3711
3706
|
/**
|
|
3712
|
-
*
|
|
3707
|
+
* translations
|
|
3713
3708
|
*/
|
|
3714
|
-
|
|
3709
|
+
translations: Array<DocumentTypeTerm>;
|
|
3715
3710
|
|
|
3716
3711
|
/**
|
|
3717
3712
|
* Versand-Anbieter
|
|
3718
3713
|
*/
|
|
3719
3714
|
vdsCarrierId: number;
|
|
3720
3715
|
|
|
3716
|
+
/**
|
|
3717
|
+
* Gültige Ländercodes
|
|
3718
|
+
*/
|
|
3719
|
+
validCountryCodes: Array<string>;
|
|
3720
|
+
|
|
3721
3721
|
/**
|
|
3722
3722
|
* Standardgewichtseinheit
|
|
3723
3723
|
*/
|
|
@@ -3817,14 +3817,14 @@ export interface DeliveryTerm {
|
|
|
3817
3817
|
id: number;
|
|
3818
3818
|
|
|
3819
3819
|
/**
|
|
3820
|
-
*
|
|
3820
|
+
* Versandkostenartikel
|
|
3821
3821
|
*/
|
|
3822
|
-
|
|
3822
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3823
3823
|
|
|
3824
3824
|
/**
|
|
3825
|
-
*
|
|
3825
|
+
* free shipping net value
|
|
3826
3826
|
*/
|
|
3827
|
-
|
|
3827
|
+
freeShippingNetValue: number;
|
|
3828
3828
|
|
|
3829
3829
|
/**
|
|
3830
3830
|
* MetaInformations for this Object
|
|
@@ -3835,14 +3835,14 @@ export interface DeliveryTerm {
|
|
|
3835
3835
|
export interface Document {
|
|
3836
3836
|
|
|
3837
3837
|
/**
|
|
3838
|
-
*
|
|
3838
|
+
* Referenz zum Rechnungskonto
|
|
3839
3839
|
*/
|
|
3840
|
-
|
|
3840
|
+
billingAccountRef: ApiObjectReference;
|
|
3841
3841
|
|
|
3842
3842
|
/**
|
|
3843
|
-
*
|
|
3843
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3844
3844
|
*/
|
|
3845
|
-
|
|
3845
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3846
3846
|
|
|
3847
3847
|
/**
|
|
3848
3848
|
* Externe Belegnummer
|
|
@@ -3983,14 +3983,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3983
3983
|
accountId: number;
|
|
3984
3984
|
|
|
3985
3985
|
/**
|
|
3986
|
-
* Länderkennzeichen
|
|
3986
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3987
3987
|
*/
|
|
3988
|
-
|
|
3988
|
+
sourceCountryCode: string;
|
|
3989
3989
|
|
|
3990
3990
|
/**
|
|
3991
|
-
* Länderkennzeichen
|
|
3991
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3992
3992
|
*/
|
|
3993
|
-
|
|
3993
|
+
performanceCountryCode: string;
|
|
3994
3994
|
|
|
3995
3995
|
/**
|
|
3996
3996
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4033,14 +4033,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4033
4033
|
supplierNumber: string;
|
|
4034
4034
|
|
|
4035
4035
|
/**
|
|
4036
|
-
*
|
|
4036
|
+
* Gesamtpreis brutto
|
|
4037
4037
|
*/
|
|
4038
|
-
|
|
4038
|
+
totalGrossPrice: number;
|
|
4039
4039
|
|
|
4040
4040
|
/**
|
|
4041
|
-
*
|
|
4041
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4042
4042
|
*/
|
|
4043
|
-
|
|
4043
|
+
deliveryApproved: boolean;
|
|
4044
4044
|
|
|
4045
4045
|
/**
|
|
4046
4046
|
* Kassen-Zahlungspositionen
|
|
@@ -4109,26 +4109,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4109
4109
|
*/
|
|
4110
4110
|
accountNumber: string;
|
|
4111
4111
|
|
|
4112
|
-
/**
|
|
4113
|
-
* Referenz auf Zahlungsbedingung
|
|
4114
|
-
*/
|
|
4115
|
-
paymentTermRef: PaymentTermRef;
|
|
4116
|
-
|
|
4117
4112
|
/**
|
|
4118
4113
|
* Wird vom Workflow verarbeitet?
|
|
4119
4114
|
*/
|
|
4120
4115
|
processedByWorkflow: boolean;
|
|
4121
4116
|
|
|
4122
4117
|
/**
|
|
4123
|
-
*
|
|
4118
|
+
* Referenz auf Zahlungsbedingung
|
|
4124
4119
|
*/
|
|
4125
|
-
|
|
4120
|
+
paymentTermRef: PaymentTermRef;
|
|
4126
4121
|
|
|
4127
4122
|
/**
|
|
4128
4123
|
* Preisanpassungen - Beleg Basiswährung
|
|
4129
4124
|
*/
|
|
4130
4125
|
baseTotalDocumentPriceModifier: number;
|
|
4131
4126
|
|
|
4127
|
+
/**
|
|
4128
|
+
* Telefon an Versender übergeben
|
|
4129
|
+
*/
|
|
4130
|
+
forwardPhoneToShipper: boolean;
|
|
4131
|
+
|
|
4132
4132
|
/**
|
|
4133
4133
|
* Liste der Belegtexte
|
|
4134
4134
|
*/
|
|
@@ -4215,14 +4215,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4215
4215
|
dropShipping: boolean;
|
|
4216
4216
|
|
|
4217
4217
|
/**
|
|
4218
|
-
*
|
|
4218
|
+
* Gesamtpreis netto
|
|
4219
4219
|
*/
|
|
4220
|
-
|
|
4220
|
+
totalNetPrice: number;
|
|
4221
4221
|
|
|
4222
4222
|
/**
|
|
4223
|
-
*
|
|
4223
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4224
4224
|
*/
|
|
4225
|
-
|
|
4225
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4226
4226
|
|
|
4227
4227
|
/**
|
|
4228
4228
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4265,14 +4265,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4265
4265
|
documentTypeCategory: DocumentCategory;
|
|
4266
4266
|
|
|
4267
4267
|
/**
|
|
4268
|
-
*
|
|
4268
|
+
* Importmodus des Belegs
|
|
4269
4269
|
*/
|
|
4270
|
-
|
|
4270
|
+
importType: DocumentImportType;
|
|
4271
4271
|
|
|
4272
4272
|
/**
|
|
4273
|
-
*
|
|
4273
|
+
* Gesamtgewicht wurde manuell gesetzt
|
|
4274
4274
|
*/
|
|
4275
|
-
|
|
4275
|
+
userDefinedWeight: boolean;
|
|
4276
4276
|
|
|
4277
4277
|
/**
|
|
4278
4278
|
* Referenz zum zugeordneten Vertriebskanal
|
|
@@ -4330,9 +4330,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4330
4330
|
customerNumber: string;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* Versandkostenpositionen
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* Umsatzsteuer-Identifikationsnummer
|
|
@@ -4340,9 +4340,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4340
4340
|
taxIdentificationNumber: string;
|
|
4341
4341
|
|
|
4342
4342
|
/**
|
|
4343
|
-
*
|
|
4343
|
+
* Statusinstanz des Belegs
|
|
4344
4344
|
*/
|
|
4345
|
-
|
|
4345
|
+
documentState: DocumentTypeState;
|
|
4346
|
+
|
|
4347
|
+
/**
|
|
4348
|
+
* Rückgeld
|
|
4349
|
+
*/
|
|
4350
|
+
posReceiptChangeAmount: number;
|
|
4346
4351
|
|
|
4347
4352
|
/**
|
|
4348
4353
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4356,11 +4361,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4356
4361
|
*/
|
|
4357
4362
|
deliveryTermRef: ApiObjectReference;
|
|
4358
4363
|
|
|
4359
|
-
/**
|
|
4360
|
-
* Rückgeld
|
|
4361
|
-
*/
|
|
4362
|
-
posReceiptChangeAmount: number;
|
|
4363
|
-
|
|
4364
4364
|
/**
|
|
4365
4365
|
* Gesamtbruttogewicht
|
|
4366
4366
|
*/
|
|
@@ -4382,14 +4382,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4382
4382
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4383
4383
|
|
|
4384
4384
|
/**
|
|
4385
|
-
*
|
|
4385
|
+
* Rechnungsadresse
|
|
4386
4386
|
*/
|
|
4387
|
-
|
|
4387
|
+
billingAddress: DocumentAddress;
|
|
4388
4388
|
|
|
4389
4389
|
/**
|
|
4390
|
-
*
|
|
4390
|
+
* Status der USt-ID-Prüfung
|
|
4391
4391
|
*/
|
|
4392
|
-
|
|
4392
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4393
4393
|
|
|
4394
4394
|
/**
|
|
4395
4395
|
* Bestellt durch Ansprechpartner
|
|
@@ -4550,14 +4550,14 @@ export interface DocumentAddress {
|
|
|
4550
4550
|
postOfficeBox: string;
|
|
4551
4551
|
|
|
4552
4552
|
/**
|
|
4553
|
-
*
|
|
4553
|
+
* country code IsoAlpha3
|
|
4554
4554
|
*/
|
|
4555
|
-
|
|
4555
|
+
countryCode: string;
|
|
4556
4556
|
|
|
4557
4557
|
/**
|
|
4558
|
-
*
|
|
4558
|
+
* Street
|
|
4559
4559
|
*/
|
|
4560
|
-
|
|
4560
|
+
street: string;
|
|
4561
4561
|
|
|
4562
4562
|
/**
|
|
4563
4563
|
* Unique identifier of the Object
|
|
@@ -4575,14 +4575,14 @@ export interface DocumentAddress {
|
|
|
4575
4575
|
info: MetaInfo;
|
|
4576
4576
|
|
|
4577
4577
|
/**
|
|
4578
|
-
*
|
|
4578
|
+
* GLN
|
|
4579
4579
|
*/
|
|
4580
|
-
|
|
4580
|
+
globalLocationNumber: string;
|
|
4581
4581
|
|
|
4582
4582
|
/**
|
|
4583
|
-
*
|
|
4583
|
+
* Lieferart
|
|
4584
4584
|
*/
|
|
4585
|
-
|
|
4585
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4586
4586
|
|
|
4587
4587
|
/**
|
|
4588
4588
|
* Postcode
|
|
@@ -4933,31 +4933,31 @@ export const enum DocumentImportType {
|
|
|
4933
4933
|
|
|
4934
4934
|
export interface DocumentLine {
|
|
4935
4935
|
|
|
4936
|
-
/**
|
|
4937
|
-
* Leistungsdatum
|
|
4938
|
-
*/
|
|
4939
|
-
performanceDate: ScriptingDate;
|
|
4940
|
-
|
|
4941
4936
|
/**
|
|
4942
4937
|
* Zolltarifnummer
|
|
4943
4938
|
*/
|
|
4944
4939
|
customsTariffNumber: string;
|
|
4945
4940
|
|
|
4946
4941
|
/**
|
|
4947
|
-
*
|
|
4942
|
+
* Leistungsdatum
|
|
4948
4943
|
*/
|
|
4949
|
-
|
|
4944
|
+
performanceDate: ScriptingDate;
|
|
4950
4945
|
|
|
4951
4946
|
/**
|
|
4952
|
-
*
|
|
4947
|
+
* Land der Herkunft
|
|
4953
4948
|
*/
|
|
4954
|
-
|
|
4949
|
+
country: CountryReference;
|
|
4955
4950
|
|
|
4956
4951
|
/**
|
|
4957
4952
|
* wurde aufgelöst in Gebindeartikel
|
|
4958
4953
|
*/
|
|
4959
4954
|
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4960
4955
|
|
|
4956
|
+
/**
|
|
4957
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4958
|
+
*/
|
|
4959
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4960
|
+
|
|
4961
4961
|
/**
|
|
4962
4962
|
* verarbeitete Menge
|
|
4963
4963
|
*/
|
|
@@ -5004,14 +5004,14 @@ export interface DocumentLine {
|
|
|
5004
5004
|
number: string;
|
|
5005
5005
|
|
|
5006
5006
|
/**
|
|
5007
|
-
*
|
|
5007
|
+
* Gesamtbruttogewicht
|
|
5008
5008
|
*/
|
|
5009
|
-
|
|
5009
|
+
totalGrossWeight: number;
|
|
5010
5010
|
|
|
5011
5011
|
/**
|
|
5012
|
-
*
|
|
5012
|
+
* Referenz zur Kundenauftragszeile
|
|
5013
5013
|
*/
|
|
5014
|
-
|
|
5014
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5015
5015
|
|
|
5016
5016
|
/**
|
|
5017
5017
|
* skontierbare Position?
|
|
@@ -5029,9 +5029,9 @@ export interface DocumentLine {
|
|
|
5029
5029
|
price: number;
|
|
5030
5030
|
|
|
5031
5031
|
/**
|
|
5032
|
-
*
|
|
5032
|
+
* Gesamtpreis Position in Basiswährung
|
|
5033
5033
|
*/
|
|
5034
|
-
|
|
5034
|
+
baseTotalLinePrice: number;
|
|
5035
5035
|
|
|
5036
5036
|
/**
|
|
5037
5037
|
* FiBu-Buchung
|
|
@@ -5039,9 +5039,9 @@ export interface DocumentLine {
|
|
|
5039
5039
|
financeBooking: DocumentFinanceBooking;
|
|
5040
5040
|
|
|
5041
5041
|
/**
|
|
5042
|
-
*
|
|
5042
|
+
* Positionstyp
|
|
5043
5043
|
*/
|
|
5044
|
-
|
|
5044
|
+
lineType: DocumentLineType;
|
|
5045
5045
|
|
|
5046
5046
|
/**
|
|
5047
5047
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5074,9 +5074,9 @@ export interface DocumentLine {
|
|
|
5074
5074
|
id: number;
|
|
5075
5075
|
|
|
5076
5076
|
/**
|
|
5077
|
-
*
|
|
5077
|
+
* Serientyp
|
|
5078
5078
|
*/
|
|
5079
|
-
|
|
5079
|
+
serialType: ArticleSerialType;
|
|
5080
5080
|
|
|
5081
5081
|
/**
|
|
5082
5082
|
* Externe Referenz zum VDS-Paket
|
|
@@ -5089,9 +5089,9 @@ export interface DocumentLine {
|
|
|
5089
5089
|
basePrice: number;
|
|
5090
5090
|
|
|
5091
5091
|
/**
|
|
5092
|
-
*
|
|
5092
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5093
5093
|
*/
|
|
5094
|
-
|
|
5094
|
+
positionOfArticleLine: number;
|
|
5095
5095
|
|
|
5096
5096
|
/**
|
|
5097
5097
|
* MetaInformations for this Object
|
|
@@ -5254,14 +5254,14 @@ export interface DocumentLine {
|
|
|
5254
5254
|
unitType: UnitTypeReference;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Zubehör Einfügeart
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
insertTerm: AccessoryInsertTerm;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Referenz zur Basiszeile
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
baseLineId: number;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
5267
|
* Einheit Bruttogewicht
|
|
@@ -5528,14 +5528,14 @@ export interface DocumentLineComponent {
|
|
|
5528
5528
|
custom: EavDocumentlinecomponent;
|
|
5529
5529
|
|
|
5530
5530
|
/**
|
|
5531
|
-
*
|
|
5531
|
+
* Gelieferte Menge
|
|
5532
5532
|
*/
|
|
5533
|
-
|
|
5533
|
+
quantityCommitted: number;
|
|
5534
5534
|
|
|
5535
5535
|
/**
|
|
5536
|
-
*
|
|
5536
|
+
* Referenz auf den Artikel der Komponente
|
|
5537
5537
|
*/
|
|
5538
|
-
|
|
5538
|
+
articleId: number;
|
|
5539
5539
|
|
|
5540
5540
|
/**
|
|
5541
5541
|
* Beschreibung des Artikels
|
|
@@ -5667,14 +5667,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5667
5667
|
quantityFinished: number;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
|
-
*
|
|
5670
|
+
* Produzierte Seriennummern
|
|
5671
5671
|
*/
|
|
5672
|
-
|
|
5672
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
|
-
*
|
|
5675
|
+
* Menge defekt
|
|
5676
5676
|
*/
|
|
5677
|
-
|
|
5677
|
+
quantityDefective: number;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
5680
|
* Freifeld
|
|
@@ -5831,14 +5831,14 @@ export interface DocumentLineRef {
|
|
|
5831
5831
|
quantity: number;
|
|
5832
5832
|
|
|
5833
5833
|
/**
|
|
5834
|
-
*
|
|
5834
|
+
* Artikelnummer
|
|
5835
5835
|
*/
|
|
5836
|
-
|
|
5836
|
+
articleNumber: string;
|
|
5837
5837
|
|
|
5838
5838
|
/**
|
|
5839
|
-
*
|
|
5839
|
+
* Belegart
|
|
5840
5840
|
*/
|
|
5841
|
-
|
|
5841
|
+
documentType: string;
|
|
5842
5842
|
|
|
5843
5843
|
/**
|
|
5844
5844
|
* price per quantity [GROSS, NET]
|
|
@@ -6148,14 +6148,14 @@ export interface DocumentRef {
|
|
|
6148
6148
|
export interface DocumentShippingCost {
|
|
6149
6149
|
|
|
6150
6150
|
/**
|
|
6151
|
-
*
|
|
6151
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6152
6152
|
*/
|
|
6153
|
-
|
|
6153
|
+
manualCosts: boolean;
|
|
6154
6154
|
|
|
6155
6155
|
/**
|
|
6156
|
-
*
|
|
6156
|
+
* Die Versandkosten
|
|
6157
6157
|
*/
|
|
6158
|
-
|
|
6158
|
+
costs: number;
|
|
6159
6159
|
|
|
6160
6160
|
/**
|
|
6161
6161
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6886,14 +6886,14 @@ export interface FabricationRevertRequest {
|
|
|
6886
6886
|
quantity: number;
|
|
6887
6887
|
|
|
6888
6888
|
/**
|
|
6889
|
-
*
|
|
6889
|
+
* Material automatisch stornieren
|
|
6890
6890
|
*/
|
|
6891
|
-
|
|
6891
|
+
autoRevertComponents: boolean;
|
|
6892
6892
|
|
|
6893
6893
|
/**
|
|
6894
|
-
*
|
|
6894
|
+
* ID der zu stornierenden Position
|
|
6895
6895
|
*/
|
|
6896
|
-
|
|
6896
|
+
documentLineId: number;
|
|
6897
6897
|
|
|
6898
6898
|
/**
|
|
6899
6899
|
* Zu stornierende Seriennummern
|
|
@@ -6909,14 +6909,14 @@ export interface FabricationRevertRequest {
|
|
|
6909
6909
|
export interface FabricationSerialNumber {
|
|
6910
6910
|
|
|
6911
6911
|
/**
|
|
6912
|
-
*
|
|
6912
|
+
* MHD / Verfallsdatum
|
|
6913
6913
|
*/
|
|
6914
|
-
|
|
6914
|
+
expiryDate: ScriptingDate;
|
|
6915
6915
|
|
|
6916
6916
|
/**
|
|
6917
|
-
*
|
|
6917
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
6918
6918
|
*/
|
|
6919
|
-
|
|
6919
|
+
serialNumberId: number;
|
|
6920
6920
|
|
|
6921
6921
|
/**
|
|
6922
6922
|
* Bemerkung
|
|
@@ -7294,14 +7294,14 @@ export interface PickTrolley {
|
|
|
7294
7294
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7295
7295
|
|
|
7296
7296
|
/**
|
|
7297
|
-
*
|
|
7297
|
+
* Bearbeiter der Pickliste
|
|
7298
7298
|
*/
|
|
7299
|
-
|
|
7299
|
+
processedByUserRef: ApiObjectReference;
|
|
7300
7300
|
|
|
7301
7301
|
/**
|
|
7302
|
-
*
|
|
7302
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7303
7303
|
*/
|
|
7304
|
-
|
|
7304
|
+
storageBinRef: StorageBinRef;
|
|
7305
7305
|
|
|
7306
7306
|
/**
|
|
7307
7307
|
* Beschreibung des Wagens
|
|
@@ -7454,14 +7454,14 @@ export const enum PickingType {
|
|
|
7454
7454
|
export interface Picklist {
|
|
7455
7455
|
|
|
7456
7456
|
/**
|
|
7457
|
-
*
|
|
7457
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7458
7458
|
*/
|
|
7459
|
-
|
|
7459
|
+
usedTemplate: PicklistTemplate;
|
|
7460
7460
|
|
|
7461
7461
|
/**
|
|
7462
|
-
*
|
|
7462
|
+
* Ziellager für Nachschub
|
|
7463
7463
|
*/
|
|
7464
|
-
|
|
7464
|
+
targetStorageRef: ApiObjectReference;
|
|
7465
7465
|
|
|
7466
7466
|
/**
|
|
7467
7467
|
* Nummer der Pickliste
|
|
@@ -7557,14 +7557,14 @@ export interface PicklistLine {
|
|
|
7557
7557
|
articleNumber: string;
|
|
7558
7558
|
|
|
7559
7559
|
/**
|
|
7560
|
-
*
|
|
7560
|
+
* Lagernummer
|
|
7561
7561
|
*/
|
|
7562
|
-
|
|
7562
|
+
storageNumber: string;
|
|
7563
7563
|
|
|
7564
7564
|
/**
|
|
7565
|
-
*
|
|
7565
|
+
* Art der Position
|
|
7566
7566
|
*/
|
|
7567
|
-
|
|
7567
|
+
lineType: PicklistLineType;
|
|
7568
7568
|
|
|
7569
7569
|
/**
|
|
7570
7570
|
* ID der Ziel-Dokumentposition
|
|
@@ -7877,14 +7877,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7877
7877
|
maxArticleCountPerOrder: number;
|
|
7878
7878
|
|
|
7879
7879
|
/**
|
|
7880
|
-
*
|
|
7880
|
+
* Maximaler Auftragswert
|
|
7881
7881
|
*/
|
|
7882
|
-
|
|
7882
|
+
maxOrderValue: number;
|
|
7883
7883
|
|
|
7884
7884
|
/**
|
|
7885
|
-
*
|
|
7885
|
+
* Alternative Selektion in VQL
|
|
7886
7886
|
*/
|
|
7887
|
-
|
|
7887
|
+
alternativeSelectionInVql: string;
|
|
7888
7888
|
|
|
7889
7889
|
/**
|
|
7890
7890
|
* Nur vollständig lieferbare Positionen
|
|
@@ -7892,14 +7892,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7892
7892
|
onlyFullDeliverableOrderLines: boolean;
|
|
7893
7893
|
|
|
7894
7894
|
/**
|
|
7895
|
-
*
|
|
7895
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7896
7896
|
*/
|
|
7897
|
-
|
|
7897
|
+
maxOrderCount: number;
|
|
7898
7898
|
|
|
7899
7899
|
/**
|
|
7900
|
-
*
|
|
7900
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7901
7901
|
*/
|
|
7902
|
-
|
|
7902
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7903
7903
|
|
|
7904
7904
|
/**
|
|
7905
7905
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -7970,9 +7970,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7970
7970
|
maxPicklistLineCount: number;
|
|
7971
7971
|
|
|
7972
7972
|
/**
|
|
7973
|
-
*
|
|
7973
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7974
7974
|
*/
|
|
7975
|
-
|
|
7975
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7976
7976
|
|
|
7977
7977
|
/**
|
|
7978
7978
|
* Der zu verwendende Pickwagen
|
|
@@ -7980,19 +7980,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7980
7980
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7981
7981
|
|
|
7982
7982
|
/**
|
|
7983
|
-
*
|
|
7983
|
+
* Lagerplätze vorgeben
|
|
7984
7984
|
*/
|
|
7985
|
-
|
|
7985
|
+
specifyStorageBins: boolean;
|
|
7986
7986
|
|
|
7987
7987
|
/**
|
|
7988
|
-
*
|
|
7988
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7989
7989
|
*/
|
|
7990
|
-
|
|
7990
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
7991
7991
|
|
|
7992
7992
|
/**
|
|
7993
|
-
*
|
|
7993
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
7994
7994
|
*/
|
|
7995
|
-
|
|
7995
|
+
sortByRoutePosition: boolean;
|
|
7996
7996
|
|
|
7997
7997
|
/**
|
|
7998
7998
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8058,14 +8058,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8058
8058
|
useDigitalPicklist: boolean;
|
|
8059
8059
|
|
|
8060
8060
|
/**
|
|
8061
|
-
*
|
|
8061
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8062
8062
|
*/
|
|
8063
|
-
|
|
8063
|
+
allowPickingOfServiceArticles: boolean;
|
|
8064
8064
|
|
|
8065
8065
|
/**
|
|
8066
|
-
*
|
|
8066
|
+
* Sammelbestätigung erlauben
|
|
8067
8067
|
*/
|
|
8068
|
-
|
|
8068
|
+
allowFullConfirmation: boolean;
|
|
8069
8069
|
|
|
8070
8070
|
/**
|
|
8071
8071
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8288,14 +8288,14 @@ export interface Product {
|
|
|
8288
8288
|
bundle: boolean;
|
|
8289
8289
|
|
|
8290
8290
|
/**
|
|
8291
|
-
*
|
|
8291
|
+
* Serientyp
|
|
8292
8292
|
*/
|
|
8293
|
-
|
|
8293
|
+
serialType: ArticleSerialType;
|
|
8294
8294
|
|
|
8295
8295
|
/**
|
|
8296
|
-
*
|
|
8296
|
+
* Variantenwerte
|
|
8297
8297
|
*/
|
|
8298
|
-
|
|
8298
|
+
variantValues: Array<VariantValueReference>;
|
|
8299
8299
|
|
|
8300
8300
|
/**
|
|
8301
8301
|
* MetaInformations for this Object
|
|
@@ -8409,14 +8409,14 @@ export interface ProductDiscount {
|
|
|
8409
8409
|
modifierValueType: ValueType;
|
|
8410
8410
|
|
|
8411
8411
|
/**
|
|
8412
|
-
*
|
|
8412
|
+
* Name des Rabatts
|
|
8413
8413
|
*/
|
|
8414
|
-
|
|
8414
|
+
modifierName: string;
|
|
8415
8415
|
|
|
8416
8416
|
/**
|
|
8417
|
-
*
|
|
8417
|
+
* Account, für den der Rabatt gültig ist
|
|
8418
8418
|
*/
|
|
8419
|
-
|
|
8419
|
+
accountRef: ApiObjectReference;
|
|
8420
8420
|
|
|
8421
8421
|
/**
|
|
8422
8422
|
* Unique identifier of the Object
|
|
@@ -8681,11 +8681,6 @@ export interface RequestDocument {
|
|
|
8681
8681
|
*/
|
|
8682
8682
|
documentDate: ScriptingDate;
|
|
8683
8683
|
|
|
8684
|
-
/**
|
|
8685
|
-
* Leistungsdatum
|
|
8686
|
-
*/
|
|
8687
|
-
performanceDate: ScriptingDate;
|
|
8688
|
-
|
|
8689
8684
|
/**
|
|
8690
8685
|
* ID der Kassenschublade (bei POS)
|
|
8691
8686
|
*/
|
|
@@ -8696,6 +8691,11 @@ export interface RequestDocument {
|
|
|
8696
8691
|
*/
|
|
8697
8692
|
depositPaymentAmount: number;
|
|
8698
8693
|
|
|
8694
|
+
/**
|
|
8695
|
+
* Leistungsdatum
|
|
8696
|
+
*/
|
|
8697
|
+
performanceDate: ScriptingDate;
|
|
8698
|
+
|
|
8699
8699
|
/**
|
|
8700
8700
|
* Für interne Zwecke: Liefermethode für das Document
|
|
8701
8701
|
*/
|
|
@@ -8817,14 +8817,14 @@ export interface RequestDocument {
|
|
|
8817
8817
|
accountId: number;
|
|
8818
8818
|
|
|
8819
8819
|
/**
|
|
8820
|
-
*
|
|
8820
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
8821
8821
|
*/
|
|
8822
|
-
|
|
8822
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
8823
8823
|
|
|
8824
8824
|
/**
|
|
8825
|
-
*
|
|
8825
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
8826
8826
|
*/
|
|
8827
|
-
|
|
8827
|
+
processedByPicklistProcessing: boolean;
|
|
8828
8828
|
|
|
8829
8829
|
/**
|
|
8830
8830
|
* Die Rabatte des Beleges
|
|
@@ -8885,14 +8885,14 @@ export interface RequestDocumentLine {
|
|
|
8885
8885
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8886
8886
|
|
|
8887
8887
|
/**
|
|
8888
|
-
*
|
|
8888
|
+
* FiBu-Angaben
|
|
8889
8889
|
*/
|
|
8890
|
-
|
|
8890
|
+
financeBooking: DocumentFinanceBooking;
|
|
8891
8891
|
|
|
8892
8892
|
/**
|
|
8893
|
-
*
|
|
8893
|
+
* Typ dieser Position
|
|
8894
8894
|
*/
|
|
8895
|
-
|
|
8895
|
+
lineType: DocumentLineType;
|
|
8896
8896
|
|
|
8897
8897
|
/**
|
|
8898
8898
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9141,14 +9141,14 @@ export interface SalesAgent {
|
|
|
9141
9141
|
note: string;
|
|
9142
9142
|
|
|
9143
9143
|
/**
|
|
9144
|
-
*
|
|
9144
|
+
* reference to the delivery method
|
|
9145
9145
|
*/
|
|
9146
|
-
|
|
9146
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9147
9147
|
|
|
9148
9148
|
/**
|
|
9149
|
-
*
|
|
9149
|
+
* is sales agent taxable
|
|
9150
9150
|
*/
|
|
9151
|
-
|
|
9151
|
+
taxable: boolean;
|
|
9152
9152
|
|
|
9153
9153
|
/**
|
|
9154
9154
|
* Freifelder
|
|
@@ -9489,14 +9489,14 @@ export interface SequencerConfiguration {
|
|
|
9489
9489
|
key: string;
|
|
9490
9490
|
|
|
9491
9491
|
/**
|
|
9492
|
-
*
|
|
9492
|
+
* Contains details about the sequencer configuration
|
|
9493
9493
|
*/
|
|
9494
|
-
|
|
9494
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9495
9495
|
|
|
9496
9496
|
/**
|
|
9497
|
-
*
|
|
9497
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9498
9498
|
*/
|
|
9499
|
-
|
|
9499
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9500
9500
|
|
|
9501
9501
|
/**
|
|
9502
9502
|
* MetaInformations for this Object
|
|
@@ -9835,14 +9835,14 @@ export interface ShelfFile {
|
|
|
9835
9835
|
version: number;
|
|
9836
9836
|
|
|
9837
9837
|
/**
|
|
9838
|
-
*
|
|
9838
|
+
* current reference of this file in our storage
|
|
9839
9839
|
*/
|
|
9840
|
-
|
|
9840
|
+
storageHandle: string;
|
|
9841
9841
|
|
|
9842
9842
|
/**
|
|
9843
|
-
*
|
|
9843
|
+
* meta data
|
|
9844
9844
|
*/
|
|
9845
|
-
|
|
9845
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9846
9846
|
|
|
9847
9847
|
/**
|
|
9848
9848
|
* MetaInformations for this Object
|
|
@@ -10023,14 +10023,14 @@ export interface Stock {
|
|
|
10023
10023
|
storageBinId: number;
|
|
10024
10024
|
|
|
10025
10025
|
/**
|
|
10026
|
-
*
|
|
10026
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
10027
10027
|
*/
|
|
10028
|
-
|
|
10028
|
+
reservedSerialQuantity: number;
|
|
10029
10029
|
|
|
10030
10030
|
/**
|
|
10031
|
-
*
|
|
10031
|
+
* Artikel
|
|
10032
10032
|
*/
|
|
10033
|
-
|
|
10033
|
+
articleId: number;
|
|
10034
10034
|
}
|
|
10035
10035
|
|
|
10036
10036
|
export const enum StockJournalFactor {
|
|
@@ -10105,14 +10105,14 @@ export interface StockMovementManualApi {
|
|
|
10105
10105
|
export interface StockTransferApi {
|
|
10106
10106
|
|
|
10107
10107
|
/**
|
|
10108
|
-
*
|
|
10108
|
+
* Ziel-Lager
|
|
10109
10109
|
*/
|
|
10110
|
-
|
|
10110
|
+
targetStorageId: number;
|
|
10111
10111
|
|
|
10112
10112
|
/**
|
|
10113
|
-
*
|
|
10113
|
+
* Seriennummer
|
|
10114
10114
|
*/
|
|
10115
|
-
|
|
10115
|
+
serialNumberId: number;
|
|
10116
10116
|
|
|
10117
10117
|
/**
|
|
10118
10118
|
* Bemerkung
|
|
@@ -10415,14 +10415,14 @@ export interface TagDto {
|
|
|
10415
10415
|
editColor: string;
|
|
10416
10416
|
|
|
10417
10417
|
/**
|
|
10418
|
-
* Farbe
|
|
10418
|
+
* Farbe für die Anzeige des Tags
|
|
10419
10419
|
*/
|
|
10420
|
-
|
|
10420
|
+
color: string;
|
|
10421
10421
|
|
|
10422
10422
|
/**
|
|
10423
|
-
* Farbe
|
|
10423
|
+
* Farbe in Such-GUI
|
|
10424
10424
|
*/
|
|
10425
|
-
|
|
10425
|
+
searchColor: string;
|
|
10426
10426
|
|
|
10427
10427
|
/**
|
|
10428
10428
|
* Beschriftung des Tags
|
|
@@ -10466,14 +10466,14 @@ export const enum TagType {
|
|
|
10466
10466
|
export interface TaxIdForeignCountry {
|
|
10467
10467
|
|
|
10468
10468
|
/**
|
|
10469
|
-
*
|
|
10469
|
+
* Tax ID of the company in the associated country
|
|
10470
10470
|
*/
|
|
10471
|
-
|
|
10471
|
+
taxId: string;
|
|
10472
10472
|
|
|
10473
10473
|
/**
|
|
10474
|
-
*
|
|
10474
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
10475
10475
|
*/
|
|
10476
|
-
|
|
10476
|
+
countryCode: string;
|
|
10477
10477
|
|
|
10478
10478
|
/**
|
|
10479
10479
|
* Unique identifier of the Object
|
|
@@ -10956,14 +10956,14 @@ export interface VariantValue {
|
|
|
10956
10956
|
version: number;
|
|
10957
10957
|
|
|
10958
10958
|
/**
|
|
10959
|
-
*
|
|
10959
|
+
* Variantenattribut
|
|
10960
10960
|
*/
|
|
10961
|
-
|
|
10961
|
+
attributeRef: ApiObjectReference;
|
|
10962
10962
|
|
|
10963
10963
|
/**
|
|
10964
|
-
*
|
|
10964
|
+
* Mehrsprachige Bezeichnungen
|
|
10965
10965
|
*/
|
|
10966
|
-
|
|
10966
|
+
labels: Array<VariantDescription>;
|
|
10967
10967
|
|
|
10968
10968
|
/**
|
|
10969
10969
|
* MetaInformations for this Object
|