@vario-software/types 2026.32.8 → 2026.32.9
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/app/context.d.ts +3 -0
- package/package.json +1 -1
- package/scripting/services.d.ts +16 -16
- package/scripting/types.d.ts +310 -310
package/scripting/types.d.ts
CHANGED
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* GLN/ILN as location identifier for this address
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
globalLocationNumber: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* Leitweg-ID
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* abweichende Zahlungsart
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Parcel station customer number
|
|
416
416
|
*/
|
|
417
|
-
|
|
417
|
+
parcelStationCustomerNumber: string;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Default contacts
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
425
|
* Name3
|
|
@@ -1029,11 +1029,6 @@ export interface Article {
|
|
|
1029
1029
|
*/
|
|
1030
1030
|
baseCapacityUnit: UnitTypeReference;
|
|
1031
1031
|
|
|
1032
|
-
/**
|
|
1033
|
-
* is this product sellable without any quantity at the stock
|
|
1034
|
-
*/
|
|
1035
|
-
sellableWithoutStock: boolean;
|
|
1036
|
-
|
|
1037
1032
|
/**
|
|
1038
1033
|
* Seriennummern Auszeichnungsart
|
|
1039
1034
|
*/
|
|
@@ -1044,6 +1039,11 @@ export interface Article {
|
|
|
1044
1039
|
*/
|
|
1045
1040
|
initialAvgPurchasePrice: number;
|
|
1046
1041
|
|
|
1042
|
+
/**
|
|
1043
|
+
* is this product sellable without any quantity at the stock
|
|
1044
|
+
*/
|
|
1045
|
+
sellableWithoutStock: boolean;
|
|
1046
|
+
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Soll-Handelsspanne
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
targetTradingMargin: number;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Produktion
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
fabrication: boolean;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1195,14 +1195,14 @@ export interface Article {
|
|
|
1195
1195
|
returnable: boolean;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
*
|
|
1198
|
+
* Verkaufseinheit
|
|
1199
1199
|
*/
|
|
1200
|
-
|
|
1200
|
+
salesUnit: number;
|
|
1201
1201
|
|
|
1202
1202
|
/**
|
|
1203
|
-
*
|
|
1203
|
+
* weight and size inc. packaging
|
|
1204
1204
|
*/
|
|
1205
|
-
|
|
1205
|
+
grossMetric: Article$Metric;
|
|
1206
1206
|
|
|
1207
1207
|
/**
|
|
1208
1208
|
* name of this product
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Arbeitseinheit in Minuten
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
workUnitInMinutes: number;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Country code
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
countryOfOriginRef: CountryReference;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1235,14 +1235,14 @@ 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
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
taxLiabilityReversed: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* Notiz
|
|
@@ -1290,14 +1290,14 @@ export interface Article {
|
|
|
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
|
|
1299
1299
|
*/
|
|
1300
|
-
|
|
1300
|
+
defaultFabricationCost: number;
|
|
1301
1301
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
@@ -1320,9 +1320,9 @@ export interface Article {
|
|
|
1320
1320
|
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
|
-
*
|
|
1323
|
+
* alternative name of this product
|
|
1324
1324
|
*/
|
|
1325
|
-
|
|
1325
|
+
alternativeName: string;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
1328
|
* rabattierbarer Artikel?
|
|
@@ -1330,9 +1330,9 @@ export interface Article {
|
|
|
1330
1330
|
discountable: boolean;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* Kontingentartikel
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
contingentArticleRef: ApiObjectReference;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1370,14 +1370,14 @@ export interface Article {
|
|
|
1370
1370
|
custom: EavArticle;
|
|
1371
1371
|
|
|
1372
1372
|
/**
|
|
1373
|
-
*
|
|
1373
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1374
1374
|
*/
|
|
1375
|
-
|
|
1375
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1376
1376
|
|
|
1377
1377
|
/**
|
|
1378
|
-
*
|
|
1378
|
+
* Art des Haltbarkeitsdatums
|
|
1379
1379
|
*/
|
|
1380
|
-
|
|
1380
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* Hersteller
|
|
@@ -1553,19 +1553,19 @@ export interface ArticleCustomer {
|
|
|
1553
1553
|
articleName: string;
|
|
1554
1554
|
|
|
1555
1555
|
/**
|
|
1556
|
-
*
|
|
1556
|
+
* Etikettdruck-Einstellungen
|
|
1557
1557
|
*/
|
|
1558
|
-
|
|
1558
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1559
1559
|
|
|
1560
1560
|
/**
|
|
1561
|
-
*
|
|
1561
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1562
1562
|
*/
|
|
1563
|
-
|
|
1563
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1564
1564
|
|
|
1565
1565
|
/**
|
|
1566
|
-
*
|
|
1566
|
+
* Referenced Article
|
|
1567
1567
|
*/
|
|
1568
|
-
|
|
1568
|
+
articleId: number;
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
1571
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
@@ -1573,9 +1573,9 @@ export interface ArticleCustomer {
|
|
|
1573
1573
|
useDeviatingArticleDescription: boolean;
|
|
1574
1574
|
|
|
1575
1575
|
/**
|
|
1576
|
-
*
|
|
1576
|
+
* Kunden-Preise
|
|
1577
1577
|
*/
|
|
1578
|
-
|
|
1578
|
+
productPrices: Array<ProductPrice>;
|
|
1579
1579
|
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Aktiv?
|
|
@@ -1735,14 +1735,14 @@ export interface ArticleListing {
|
|
|
1735
1735
|
proposedLowestPriceGross: number;
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
1738
|
-
* der
|
|
1738
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1739
1739
|
*/
|
|
1740
|
-
|
|
1740
|
+
customLowestPriceGross: number;
|
|
1741
1741
|
|
|
1742
1742
|
/**
|
|
1743
|
-
*
|
|
1743
|
+
* der Sales Channel
|
|
1744
1744
|
*/
|
|
1745
|
-
|
|
1745
|
+
salesChannelRef: ApiObjectReference;
|
|
1746
1746
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* soll der Artikel gelistet werden
|
|
@@ -1775,14 +1775,14 @@ export interface ArticleListing {
|
|
|
1775
1775
|
alternativeName: WithDefaults<String>;
|
|
1776
1776
|
|
|
1777
1777
|
/**
|
|
1778
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1778
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1779
1779
|
*/
|
|
1780
|
-
|
|
1780
|
+
customLowestPriceNet: number;
|
|
1781
1781
|
|
|
1782
1782
|
/**
|
|
1783
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1783
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1784
1784
|
*/
|
|
1785
|
-
|
|
1785
|
+
proposedLowestPriceNet: number;
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* der aktuelle listing stand
|
|
@@ -1957,6 +1957,11 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
+
/**
|
|
1961
|
+
* Meldebestand
|
|
1962
|
+
*/
|
|
1963
|
+
reorderPoint: number;
|
|
1964
|
+
|
|
1960
1965
|
/**
|
|
1961
1966
|
* Bestellte Menge
|
|
1962
1967
|
*/
|
|
@@ -1968,20 +1973,15 @@ export interface ArticleStorage {
|
|
|
1968
1973
|
quantityInPicking: number;
|
|
1969
1974
|
|
|
1970
1975
|
/**
|
|
1971
|
-
*
|
|
1976
|
+
* Nachschub auf
|
|
1972
1977
|
*/
|
|
1973
|
-
|
|
1978
|
+
replenishmentOn: number;
|
|
1974
1979
|
|
|
1975
1980
|
/**
|
|
1976
1981
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1977
1982
|
*/
|
|
1978
1983
|
virtualStockAmount: number;
|
|
1979
1984
|
|
|
1980
|
-
/**
|
|
1981
|
-
* Nachschub auf
|
|
1982
|
-
*/
|
|
1983
|
-
replenishmentOn: number;
|
|
1984
|
-
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Reservierte Menge
|
|
1987
1987
|
*/
|
|
@@ -2050,11 +2050,6 @@ export interface ArticleStorage {
|
|
|
2050
2050
|
|
|
2051
2051
|
export interface ArticleSupplier {
|
|
2052
2052
|
|
|
2053
|
-
/**
|
|
2054
|
-
* Anzeigename des Accounts
|
|
2055
|
-
*/
|
|
2056
|
-
accountDisplayName: string;
|
|
2057
|
-
|
|
2058
2053
|
/**
|
|
2059
2054
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2060
2055
|
*/
|
|
@@ -2066,15 +2061,20 @@ export interface ArticleSupplier {
|
|
|
2066
2061
|
supplierReportingStock: number;
|
|
2067
2062
|
|
|
2068
2063
|
/**
|
|
2069
|
-
*
|
|
2064
|
+
* Anzeigename des Accounts
|
|
2070
2065
|
*/
|
|
2071
|
-
|
|
2066
|
+
accountDisplayName: string;
|
|
2072
2067
|
|
|
2073
2068
|
/**
|
|
2074
2069
|
* Lieferzeit in (Werk-)Tagen
|
|
2075
2070
|
*/
|
|
2076
2071
|
deliveryTime: number;
|
|
2077
2072
|
|
|
2073
|
+
/**
|
|
2074
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2075
|
+
*/
|
|
2076
|
+
useSupplierArticleIdentifier: boolean;
|
|
2077
|
+
|
|
2078
2078
|
/**
|
|
2079
2079
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2080
2080
|
*/
|
|
@@ -2131,14 +2131,14 @@ export interface ArticleSupplier {
|
|
|
2131
2131
|
articleName: string;
|
|
2132
2132
|
|
|
2133
2133
|
/**
|
|
2134
|
-
*
|
|
2134
|
+
* Referenced Article
|
|
2135
2135
|
*/
|
|
2136
|
-
|
|
2136
|
+
articleId: number;
|
|
2137
2137
|
|
|
2138
2138
|
/**
|
|
2139
|
-
*
|
|
2139
|
+
* Lieferanten-Preise
|
|
2140
2140
|
*/
|
|
2141
|
-
|
|
2141
|
+
productPrices: Array<ProductPrice>;
|
|
2142
2142
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* Aktiv?
|
|
@@ -2214,14 +2214,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2214
|
quantity: number;
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
2217
|
-
*
|
|
2217
|
+
* Buchungen zu der Komponente
|
|
2218
2218
|
*/
|
|
2219
|
-
|
|
2219
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2220
2220
|
|
|
2221
2221
|
/**
|
|
2222
|
-
*
|
|
2222
|
+
* ID der Baugruppen-Quellposition
|
|
2223
2223
|
*/
|
|
2224
|
-
|
|
2224
|
+
sourceLineId: number;
|
|
2225
2225
|
|
|
2226
2226
|
/**
|
|
2227
2227
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* Aktivität intern abgerechnet?
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
internalBilled: boolean;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* geplante Dauer
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
plannedDurationInSeconds: number;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
assignedUserRef: ApiObjectReference;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3267,14 +3267,14 @@ export interface CrmProject {
|
|
|
3267
3267
|
info: MetaInfo;
|
|
3268
3268
|
|
|
3269
3269
|
/**
|
|
3270
|
-
*
|
|
3270
|
+
* Projektleiter vom Auftraggeber
|
|
3271
3271
|
*/
|
|
3272
|
-
|
|
3272
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3273
3273
|
|
|
3274
3274
|
/**
|
|
3275
|
-
*
|
|
3275
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3276
3276
|
*/
|
|
3277
|
-
|
|
3277
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3278
3278
|
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Übergeordnete CRM-Objekte
|
|
@@ -3903,14 +3903,14 @@ export interface CurrencyReference {
|
|
|
3903
3903
|
export interface Customer {
|
|
3904
3904
|
|
|
3905
3905
|
/**
|
|
3906
|
-
*
|
|
3906
|
+
* Option für die Stapelverarbeitung
|
|
3907
3907
|
*/
|
|
3908
|
-
|
|
3908
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3909
3909
|
|
|
3910
3910
|
/**
|
|
3911
|
-
*
|
|
3911
|
+
* reference to customer group
|
|
3912
3912
|
*/
|
|
3913
|
-
|
|
3913
|
+
customerGroupRef: ApiObjectReference;
|
|
3914
3914
|
|
|
3915
3915
|
/**
|
|
3916
3916
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3928,14 +3928,14 @@ export interface Customer {
|
|
|
3928
3928
|
dueDate: ScriptingDate;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
|
-
*
|
|
3931
|
+
* Maximal mögliche Lieferungen
|
|
3932
3932
|
*/
|
|
3933
|
-
|
|
3933
|
+
maxDeliveries: number;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
|
-
*
|
|
3936
|
+
* collective billable
|
|
3937
3937
|
*/
|
|
3938
|
-
|
|
3938
|
+
collectiveBillable: boolean;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4217,14 +4217,14 @@ export interface DeliveryMethod {
|
|
|
4217
4217
|
translations: Array<DocumentTypeTerm>;
|
|
4218
4218
|
|
|
4219
4219
|
/**
|
|
4220
|
-
*
|
|
4220
|
+
* Versand-Anbieter
|
|
4221
4221
|
*/
|
|
4222
|
-
|
|
4222
|
+
vdsCarrierId: number;
|
|
4223
4223
|
|
|
4224
4224
|
/**
|
|
4225
|
-
*
|
|
4225
|
+
* Gültige Ländercodes
|
|
4226
4226
|
*/
|
|
4227
|
-
|
|
4227
|
+
validCountryCodes: Array<string>;
|
|
4228
4228
|
|
|
4229
4229
|
/**
|
|
4230
4230
|
* Standardgewichtseinheit
|
|
@@ -4473,14 +4473,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4473
4473
|
baseDepositPaymentAmount: number;
|
|
4474
4474
|
|
|
4475
4475
|
/**
|
|
4476
|
-
*
|
|
4476
|
+
* Ist der Beleg festgeschrieben?
|
|
4477
4477
|
*/
|
|
4478
|
-
|
|
4478
|
+
frozen: boolean;
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
|
-
*
|
|
4481
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4482
4482
|
*/
|
|
4483
|
-
|
|
4483
|
+
totalBeforeModifier: number;
|
|
4484
4484
|
|
|
4485
4485
|
/**
|
|
4486
4486
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4620,14 +4620,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4620
4620
|
contractDetail: DocumentContractDetail;
|
|
4621
4621
|
|
|
4622
4622
|
/**
|
|
4623
|
-
*
|
|
4623
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4624
4624
|
*/
|
|
4625
|
-
|
|
4625
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4626
4626
|
|
|
4627
4627
|
/**
|
|
4628
|
-
*
|
|
4628
|
+
* Zahlungsplan vorhanden?
|
|
4629
4629
|
*/
|
|
4630
|
-
|
|
4630
|
+
paymentPlan: boolean;
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
|
4633
4633
|
* Produktionsdetails
|
|
@@ -4635,14 +4635,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
4637
|
/**
|
|
4638
|
-
*
|
|
4638
|
+
* Berechnungsmodus
|
|
4639
4639
|
*/
|
|
4640
|
-
|
|
4640
|
+
calculationMode: CalculationMode;
|
|
4641
4641
|
|
|
4642
4642
|
/**
|
|
4643
|
-
*
|
|
4643
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4644
4644
|
*/
|
|
4645
|
-
|
|
4645
|
+
accountNumber: string;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
4648
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4684,26 +4684,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4684
4684
|
*/
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
|
-
/**
|
|
4688
|
-
* Verarbeitungsoption für Stapel
|
|
4689
|
-
*/
|
|
4690
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4691
|
-
|
|
4692
4687
|
/**
|
|
4693
4688
|
* Leistungsdatum
|
|
4694
4689
|
*/
|
|
4695
4690
|
performanceDate: ScriptingDate;
|
|
4696
4691
|
|
|
4697
4692
|
/**
|
|
4698
|
-
*
|
|
4693
|
+
* Verarbeitungsoption für Stapel
|
|
4699
4694
|
*/
|
|
4700
|
-
|
|
4695
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4701
4696
|
|
|
4702
4697
|
/**
|
|
4703
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4704
4699
|
*/
|
|
4705
4700
|
dropShippingInvoiceApproved: boolean;
|
|
4706
4701
|
|
|
4702
|
+
/**
|
|
4703
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4704
|
+
*/
|
|
4705
|
+
en16931Profile: EN16931Profile;
|
|
4706
|
+
|
|
4707
4707
|
/**
|
|
4708
4708
|
* Ort der steuerlichen Leistungserbringung
|
|
4709
4709
|
*/
|
|
@@ -4864,25 +4864,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4864
4864
|
*/
|
|
4865
4865
|
customerNumber: string;
|
|
4866
4866
|
|
|
4867
|
-
/**
|
|
4868
|
-
* Statusinstanz des Belegs
|
|
4869
|
-
*/
|
|
4870
|
-
documentState: DocumentTypeState;
|
|
4871
|
-
|
|
4872
4867
|
/**
|
|
4873
4868
|
* Umsatzsteuer-Identifikationsnummer
|
|
4874
4869
|
*/
|
|
4875
4870
|
taxIdentificationNumber: string;
|
|
4876
4871
|
|
|
4877
4872
|
/**
|
|
4878
|
-
*
|
|
4873
|
+
* Statusinstanz des Belegs
|
|
4879
4874
|
*/
|
|
4880
|
-
|
|
4875
|
+
documentState: DocumentTypeState;
|
|
4881
4876
|
|
|
4882
4877
|
/**
|
|
4883
|
-
*
|
|
4878
|
+
* Versandkostenpositionen
|
|
4884
4879
|
*/
|
|
4885
|
-
|
|
4880
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4886
4881
|
|
|
4887
4882
|
/**
|
|
4888
4883
|
* Referenz auf Lieferbedingung
|
|
@@ -4896,6 +4891,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4896
4891
|
*/
|
|
4897
4892
|
posReceiptBalanced: boolean;
|
|
4898
4893
|
|
|
4894
|
+
/**
|
|
4895
|
+
* Rückgeld
|
|
4896
|
+
*/
|
|
4897
|
+
posReceiptChangeAmount: number;
|
|
4898
|
+
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
4901
4901
|
*/
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Rechnungsadresse
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
billingAddress: DocumentAddress;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Status der USt-ID-Prüfung
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -5097,14 +5097,14 @@ export interface DocumentAddress {
|
|
|
5097
5097
|
info: MetaInfo;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
|
-
*
|
|
5100
|
+
* GLN
|
|
5101
5101
|
*/
|
|
5102
|
-
|
|
5102
|
+
globalLocationNumber: string;
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
|
-
*
|
|
5105
|
+
* Lieferart
|
|
5106
5106
|
*/
|
|
5107
|
-
|
|
5107
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5108
5108
|
|
|
5109
5109
|
/**
|
|
5110
5110
|
* Postcode
|
|
@@ -5560,14 +5560,14 @@ export interface DocumentLine {
|
|
|
5560
5560
|
positionOfArticleLine: number;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
|
-
*
|
|
5563
|
+
* Preiseinheit
|
|
5564
5564
|
*/
|
|
5565
|
-
|
|
5565
|
+
priceUnit: number;
|
|
5566
5566
|
|
|
5567
5567
|
/**
|
|
5568
|
-
*
|
|
5568
|
+
* Steuerschema
|
|
5569
5569
|
*/
|
|
5570
|
-
|
|
5570
|
+
taxSchemaRef: ApiObjectReference;
|
|
5571
5571
|
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5665,14 +5665,14 @@ export interface DocumentLine {
|
|
|
5665
5665
|
settledOpenItemDiscountAmount: number;
|
|
5666
5666
|
|
|
5667
5667
|
/**
|
|
5668
|
-
*
|
|
5668
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5669
5669
|
*/
|
|
5670
|
-
|
|
5670
|
+
baseSalesValueNet: number;
|
|
5671
5671
|
|
|
5672
5672
|
/**
|
|
5673
|
-
*
|
|
5673
|
+
* Vertragsinformationen
|
|
5674
5674
|
*/
|
|
5675
|
-
|
|
5675
|
+
contractDetail: DocumentContractDetail;
|
|
5676
5676
|
|
|
5677
5677
|
/**
|
|
5678
5678
|
* Einheit Nettogewicht
|
|
@@ -5870,14 +5870,14 @@ export interface DocumentLine {
|
|
|
5870
5870
|
description: string;
|
|
5871
5871
|
|
|
5872
5872
|
/**
|
|
5873
|
-
*
|
|
5873
|
+
* Preisherkunft
|
|
5874
5874
|
*/
|
|
5875
|
-
|
|
5875
|
+
priceOrigin: ProductPriceOrigin;
|
|
5876
5876
|
|
|
5877
5877
|
/**
|
|
5878
|
-
*
|
|
5878
|
+
* Referenz zum Lager
|
|
5879
5879
|
*/
|
|
5880
|
-
|
|
5880
|
+
storage: ApiObjectReference;
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
5883
5883
|
* Rohertragsermittlung
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Typ der Einlage/Ausgabe
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
depositExpenseTypeId: number;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Status der externen Zahlung
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6487,14 +6487,14 @@ export interface DocumentLinePosDetail {
|
|
|
6487
6487
|
balanceBeforeWithdrawal: number;
|
|
6488
6488
|
|
|
6489
6489
|
/**
|
|
6490
|
-
*
|
|
6490
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6491
6491
|
*/
|
|
6492
|
-
|
|
6492
|
+
externalPaymentId: string;
|
|
6493
6493
|
|
|
6494
6494
|
/**
|
|
6495
|
-
*
|
|
6495
|
+
* Typ der Position
|
|
6496
6496
|
*/
|
|
6497
|
-
|
|
6497
|
+
posLineType: PosLineType;
|
|
6498
6498
|
|
|
6499
6499
|
/**
|
|
6500
6500
|
* Unique identifier of the Object
|
|
@@ -6813,14 +6813,14 @@ export interface DocumentPosPayment {
|
|
|
6813
6813
|
balanceBeforeWithdrawal: number;
|
|
6814
6814
|
|
|
6815
6815
|
/**
|
|
6816
|
-
*
|
|
6816
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6817
6817
|
*/
|
|
6818
|
-
|
|
6818
|
+
externalPaymentId: string;
|
|
6819
6819
|
|
|
6820
6820
|
/**
|
|
6821
|
-
*
|
|
6821
|
+
* Typ der Position
|
|
6822
6822
|
*/
|
|
6823
|
-
|
|
6823
|
+
posLineType: PosLineType;
|
|
6824
6824
|
|
|
6825
6825
|
/**
|
|
6826
6826
|
* Unique identifier of the Object
|
|
@@ -6979,14 +6979,14 @@ export interface DocumentShippingCost {
|
|
|
6979
6979
|
manualCosts: boolean;
|
|
6980
6980
|
|
|
6981
6981
|
/**
|
|
6982
|
-
*
|
|
6982
|
+
* Keine Versandkosten (freier Versand)
|
|
6983
6983
|
*/
|
|
6984
|
-
|
|
6984
|
+
freeShipping: boolean;
|
|
6985
6985
|
|
|
6986
6986
|
/**
|
|
6987
|
-
*
|
|
6987
|
+
* Texte
|
|
6988
6988
|
*/
|
|
6989
|
-
|
|
6989
|
+
texts: Array<DocumentText>;
|
|
6990
6990
|
|
|
6991
6991
|
/**
|
|
6992
6992
|
* skontierbar
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
deleted: boolean;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
textPosition: TextPosition;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* nächste Belegnummer
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
nextNumber: string;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* Zählerkreis
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7399,14 +7399,14 @@ export const enum DropShippingPolicy {
|
|
|
7399
7399
|
export interface DummySerialNumberStockTransferApi {
|
|
7400
7400
|
|
|
7401
7401
|
/**
|
|
7402
|
-
*
|
|
7402
|
+
* Ziel-Lager
|
|
7403
7403
|
*/
|
|
7404
|
-
|
|
7404
|
+
targetStorageId: number;
|
|
7405
7405
|
|
|
7406
7406
|
/**
|
|
7407
|
-
*
|
|
7407
|
+
* Seriennummer
|
|
7408
7408
|
*/
|
|
7409
|
-
|
|
7409
|
+
serialNumberId: number;
|
|
7410
7410
|
|
|
7411
7411
|
/**
|
|
7412
7412
|
* Bemerkung
|
|
@@ -7416,18 +7416,18 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7416
7416
|
/**
|
|
7417
7417
|
* Buchungsdatum
|
|
7418
7418
|
*/
|
|
7419
|
-
bookDate: ScriptingDate;
|
|
7420
|
-
|
|
7421
|
-
/**
|
|
7422
|
-
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7423
|
-
*/
|
|
7424
|
-
targetExpiryDate: ScriptingDate;
|
|
7419
|
+
bookDate: ScriptingDate;
|
|
7425
7420
|
|
|
7426
7421
|
/**
|
|
7427
7422
|
* Die gültige Seriennummer
|
|
7428
7423
|
*/
|
|
7429
7424
|
targetSerialNumber: string;
|
|
7430
7425
|
|
|
7426
|
+
/**
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
|
+
*/
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
|
+
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
7433
7433
|
*/
|
|
@@ -7677,14 +7677,14 @@ export interface ExternalDocumentWithTaxesLine {
|
|
|
7677
7677
|
quantity: number;
|
|
7678
7678
|
|
|
7679
7679
|
/**
|
|
7680
|
-
*
|
|
7680
|
+
* Zeilen-Netto
|
|
7681
7681
|
*/
|
|
7682
|
-
|
|
7682
|
+
netAmount: number;
|
|
7683
7683
|
|
|
7684
7684
|
/**
|
|
7685
|
-
*
|
|
7685
|
+
* Steuerbetrag (nur bei steuerpflichtigem Beleg)
|
|
7686
7686
|
*/
|
|
7687
|
-
|
|
7687
|
+
taxValue: number;
|
|
7688
7688
|
|
|
7689
7689
|
/**
|
|
7690
7690
|
* Netto-Einzelpreis
|
|
@@ -7743,14 +7743,14 @@ export interface ExternalDocumentWithTaxesRequest {
|
|
|
7743
7743
|
lines: Array<ExternalDocumentWithTaxesLine>;
|
|
7744
7744
|
|
|
7745
7745
|
/**
|
|
7746
|
-
*
|
|
7746
|
+
* Key der Belegart
|
|
7747
7747
|
*/
|
|
7748
|
-
|
|
7748
|
+
documentTypeKey: string;
|
|
7749
7749
|
|
|
7750
7750
|
/**
|
|
7751
|
-
*
|
|
7751
|
+
* USt-IdNr des Empfängers (z.B. bei steuerfreier innergemeinschaftlicher Lieferung)
|
|
7752
7752
|
*/
|
|
7753
|
-
|
|
7753
|
+
taxIdentificationNumber: string;
|
|
7754
7754
|
}
|
|
7755
7755
|
|
|
7756
7756
|
export interface FabricationComponentForProduction {
|
|
@@ -7888,14 +7888,14 @@ export interface FabricationRevertRequest {
|
|
|
7888
7888
|
export interface FabricationSerialNumber {
|
|
7889
7889
|
|
|
7890
7890
|
/**
|
|
7891
|
-
*
|
|
7891
|
+
* MHD / Verfallsdatum
|
|
7892
7892
|
*/
|
|
7893
|
-
|
|
7893
|
+
expiryDate: ScriptingDate;
|
|
7894
7894
|
|
|
7895
7895
|
/**
|
|
7896
|
-
*
|
|
7896
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7897
7897
|
*/
|
|
7898
|
-
|
|
7898
|
+
serialNumberId: number;
|
|
7899
7899
|
|
|
7900
7900
|
/**
|
|
7901
7901
|
* Bemerkung
|
|
@@ -8352,14 +8352,14 @@ export interface OpenItem {
|
|
|
8352
8352
|
originalPaymentDueDate: ScriptingDate;
|
|
8353
8353
|
|
|
8354
8354
|
/**
|
|
8355
|
-
*
|
|
8355
|
+
* whether this open item is balanced, partially paid or open
|
|
8356
8356
|
*/
|
|
8357
|
-
|
|
8357
|
+
balanceState: OpenItemBalanceState;
|
|
8358
8358
|
|
|
8359
8359
|
/**
|
|
8360
|
-
*
|
|
8360
|
+
* Valutadatum
|
|
8361
8361
|
*/
|
|
8362
|
-
|
|
8362
|
+
valueDate: ScriptingDate;
|
|
8363
8363
|
|
|
8364
8364
|
/**
|
|
8365
8365
|
* Skontobetrag 1
|
|
@@ -8680,14 +8680,14 @@ export interface OpenItemRecord {
|
|
|
8680
8680
|
version: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* Buchungsbetrag in Basiswährung
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
baseAmount: number;
|
|
8686
8686
|
|
|
8687
8687
|
/**
|
|
8688
|
-
*
|
|
8688
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8689
8689
|
*/
|
|
8690
|
-
|
|
8690
|
+
transactionId: number;
|
|
8691
8691
|
|
|
8692
8692
|
/**
|
|
8693
8693
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8860,14 +8860,14 @@ export interface PaymentMethod {
|
|
|
8860
8860
|
dunnable: boolean;
|
|
8861
8861
|
|
|
8862
8862
|
/**
|
|
8863
|
-
*
|
|
8863
|
+
* translations
|
|
8864
8864
|
*/
|
|
8865
|
-
|
|
8865
|
+
translations: Array<DocumentTypeTerm>;
|
|
8866
8866
|
|
|
8867
8867
|
/**
|
|
8868
|
-
*
|
|
8868
|
+
* Debitoren-OP abschließen?
|
|
8869
8869
|
*/
|
|
8870
|
-
|
|
8870
|
+
closeCustomerAccountType: boolean;
|
|
8871
8871
|
|
|
8872
8872
|
/**
|
|
8873
8873
|
* +Tage für Folgelastschrift
|
|
@@ -8875,14 +8875,14 @@ export interface PaymentMethod {
|
|
|
8875
8875
|
daysToAddForFollowup: number;
|
|
8876
8876
|
|
|
8877
8877
|
/**
|
|
8878
|
-
*
|
|
8878
|
+
* external Payment Id
|
|
8879
8879
|
*/
|
|
8880
|
-
|
|
8880
|
+
externalPaymentId: string;
|
|
8881
8881
|
|
|
8882
8882
|
/**
|
|
8883
|
-
*
|
|
8883
|
+
* Die Business Transaction
|
|
8884
8884
|
*/
|
|
8885
|
-
|
|
8885
|
+
businessTransaction: ApiObjectReference;
|
|
8886
8886
|
|
|
8887
8887
|
/**
|
|
8888
8888
|
* Unique identifier of the Object
|
|
@@ -9104,14 +9104,14 @@ export interface PickTrolley {
|
|
|
9104
9104
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
9105
9105
|
|
|
9106
9106
|
/**
|
|
9107
|
-
*
|
|
9107
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
9108
9108
|
*/
|
|
9109
|
-
|
|
9109
|
+
storageBinRef: StorageBinRef;
|
|
9110
9110
|
|
|
9111
9111
|
/**
|
|
9112
|
-
*
|
|
9112
|
+
* Bearbeiter der Pickliste
|
|
9113
9113
|
*/
|
|
9114
|
-
|
|
9114
|
+
processedByUserRef: ApiObjectReference;
|
|
9115
9115
|
|
|
9116
9116
|
/**
|
|
9117
9117
|
* Beschreibung des Wagens
|
|
@@ -9324,14 +9324,14 @@ export interface Picklist {
|
|
|
9324
9324
|
export interface PicklistLine {
|
|
9325
9325
|
|
|
9326
9326
|
/**
|
|
9327
|
-
*
|
|
9327
|
+
* Gesammelte Menge der Position
|
|
9328
9328
|
*/
|
|
9329
|
-
|
|
9329
|
+
quantityCollected: number;
|
|
9330
9330
|
|
|
9331
9331
|
/**
|
|
9332
|
-
*
|
|
9332
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9333
9333
|
*/
|
|
9334
|
-
|
|
9334
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9335
9335
|
|
|
9336
9336
|
/**
|
|
9337
9337
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9500,14 +9500,14 @@ export interface PicklistLineComponent {
|
|
|
9500
9500
|
targetDocumentLineComponentId: number;
|
|
9501
9501
|
|
|
9502
9502
|
/**
|
|
9503
|
-
*
|
|
9503
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9504
9504
|
*/
|
|
9505
|
-
|
|
9505
|
+
quantityPerAssemblyGroup: number;
|
|
9506
9506
|
|
|
9507
9507
|
/**
|
|
9508
|
-
*
|
|
9508
|
+
* abweichende Artikelbezeichnung
|
|
9509
9509
|
*/
|
|
9510
|
-
|
|
9510
|
+
articleAlternativeName: string;
|
|
9511
9511
|
|
|
9512
9512
|
/**
|
|
9513
9513
|
* Verpackte Menge der Position
|
|
@@ -9779,14 +9779,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9779
9779
|
maxPicklistLineCount: number;
|
|
9780
9780
|
|
|
9781
9781
|
/**
|
|
9782
|
-
*
|
|
9782
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9783
9783
|
*/
|
|
9784
|
-
|
|
9784
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9785
9785
|
|
|
9786
9786
|
/**
|
|
9787
|
-
*
|
|
9787
|
+
* Der zu verwendende Pickwagen
|
|
9788
9788
|
*/
|
|
9789
|
-
|
|
9789
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9790
9790
|
|
|
9791
9791
|
/**
|
|
9792
9792
|
* Lagerplätze vorgeben
|
|
@@ -9794,14 +9794,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9794
9794
|
specifyStorageBins: boolean;
|
|
9795
9795
|
|
|
9796
9796
|
/**
|
|
9797
|
-
*
|
|
9797
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9798
9798
|
*/
|
|
9799
|
-
|
|
9799
|
+
sortByRoutePosition: boolean;
|
|
9800
9800
|
|
|
9801
9801
|
/**
|
|
9802
|
-
*
|
|
9802
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9803
9803
|
*/
|
|
9804
|
-
|
|
9804
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9805
9805
|
|
|
9806
9806
|
/**
|
|
9807
9807
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -9847,14 +9847,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9847
9847
|
alwaysShowDeliveryMethod: boolean;
|
|
9848
9848
|
|
|
9849
9849
|
/**
|
|
9850
|
-
*
|
|
9850
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9851
9851
|
*/
|
|
9852
|
-
|
|
9852
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9853
9853
|
|
|
9854
9854
|
/**
|
|
9855
|
-
*
|
|
9855
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9856
9856
|
*/
|
|
9857
|
-
|
|
9857
|
+
autoPrintDeliveryDocument: boolean;
|
|
9858
9858
|
|
|
9859
9859
|
/**
|
|
9860
9860
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -9862,24 +9862,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9862
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9863
9863
|
|
|
9864
9864
|
/**
|
|
9865
|
-
*
|
|
9865
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9866
9866
|
*/
|
|
9867
|
-
|
|
9867
|
+
useDigitalPicklist: boolean;
|
|
9868
9868
|
|
|
9869
9869
|
/**
|
|
9870
|
-
*
|
|
9870
|
+
* Sammelbestätigung erlauben
|
|
9871
9871
|
*/
|
|
9872
|
-
|
|
9872
|
+
allowFullConfirmation: boolean;
|
|
9873
9873
|
|
|
9874
9874
|
/**
|
|
9875
|
-
*
|
|
9875
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9876
9876
|
*/
|
|
9877
|
-
|
|
9877
|
+
allowPickingOfServiceArticles: boolean;
|
|
9878
9878
|
|
|
9879
9879
|
/**
|
|
9880
|
-
*
|
|
9880
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9881
9881
|
*/
|
|
9882
|
-
|
|
9882
|
+
printLabelOnScan: boolean;
|
|
9883
9883
|
|
|
9884
9884
|
/**
|
|
9885
9885
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10205,14 +10205,14 @@ export interface ProductDiscount {
|
|
|
10205
10205
|
fromQuantity: number;
|
|
10206
10206
|
|
|
10207
10207
|
/**
|
|
10208
|
-
*
|
|
10208
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10209
10209
|
*/
|
|
10210
|
-
|
|
10210
|
+
articleRef: ApiObjectReference;
|
|
10211
10211
|
|
|
10212
10212
|
/**
|
|
10213
|
-
*
|
|
10213
|
+
* Hersteller
|
|
10214
10214
|
*/
|
|
10215
|
-
|
|
10215
|
+
manufacturerRef: ApiObjectReference;
|
|
10216
10216
|
|
|
10217
10217
|
/**
|
|
10218
10218
|
* Gültig von
|
|
@@ -10220,14 +10220,14 @@ export interface ProductDiscount {
|
|
|
10220
10220
|
validFrom: ScriptingDate;
|
|
10221
10221
|
|
|
10222
10222
|
/**
|
|
10223
|
-
*
|
|
10223
|
+
* Bestimmt die Art des Rabatts
|
|
10224
10224
|
*/
|
|
10225
|
-
|
|
10225
|
+
modifierType: PriceModifierType;
|
|
10226
10226
|
|
|
10227
10227
|
/**
|
|
10228
|
-
*
|
|
10228
|
+
* Warengruppe
|
|
10229
10229
|
*/
|
|
10230
|
-
|
|
10230
|
+
productGroupRef: ApiObjectReference;
|
|
10231
10231
|
|
|
10232
10232
|
/**
|
|
10233
10233
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10245,14 +10245,14 @@ export interface ProductDiscount {
|
|
|
10245
10245
|
currencyRef: CurrencyReference;
|
|
10246
10246
|
|
|
10247
10247
|
/**
|
|
10248
|
-
*
|
|
10248
|
+
* Wert des Rabatts
|
|
10249
10249
|
*/
|
|
10250
|
-
|
|
10250
|
+
modifierValue: number;
|
|
10251
10251
|
|
|
10252
10252
|
/**
|
|
10253
|
-
*
|
|
10253
|
+
* Preisgruppe
|
|
10254
10254
|
*/
|
|
10255
|
-
|
|
10255
|
+
priceGroupRef: ApiObjectReference;
|
|
10256
10256
|
|
|
10257
10257
|
/**
|
|
10258
10258
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10275,14 +10275,14 @@ export interface ProductDiscount {
|
|
|
10275
10275
|
modifierValueType: ValueType;
|
|
10276
10276
|
|
|
10277
10277
|
/**
|
|
10278
|
-
*
|
|
10278
|
+
* Name des Rabatts
|
|
10279
10279
|
*/
|
|
10280
|
-
|
|
10280
|
+
modifierName: string;
|
|
10281
10281
|
|
|
10282
10282
|
/**
|
|
10283
|
-
*
|
|
10283
|
+
* Account, für den der Rabatt gültig ist
|
|
10284
10284
|
*/
|
|
10285
|
-
|
|
10285
|
+
accountRef: ApiObjectReference;
|
|
10286
10286
|
|
|
10287
10287
|
/**
|
|
10288
10288
|
* Unique identifier of the Object
|
|
@@ -10469,14 +10469,14 @@ export interface ProductPrice {
|
|
|
10469
10469
|
supplierGroupRef: ApiObjectReference;
|
|
10470
10470
|
|
|
10471
10471
|
/**
|
|
10472
|
-
*
|
|
10472
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10473
10473
|
*/
|
|
10474
|
-
|
|
10474
|
+
articleRef: ApiObjectReference;
|
|
10475
10475
|
|
|
10476
10476
|
/**
|
|
10477
|
-
*
|
|
10477
|
+
* Hersteller
|
|
10478
10478
|
*/
|
|
10479
|
-
|
|
10479
|
+
manufacturerRef: ApiObjectReference;
|
|
10480
10480
|
|
|
10481
10481
|
/**
|
|
10482
10482
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10499,14 +10499,14 @@ export interface ProductPrice {
|
|
|
10499
10499
|
qualifier: ProductPriceQualifier;
|
|
10500
10500
|
|
|
10501
10501
|
/**
|
|
10502
|
-
*
|
|
10502
|
+
* Aktionpreis
|
|
10503
10503
|
*/
|
|
10504
|
-
|
|
10504
|
+
specialOfferPrice: boolean;
|
|
10505
10505
|
|
|
10506
10506
|
/**
|
|
10507
|
-
*
|
|
10507
|
+
* Preisbasis
|
|
10508
10508
|
*/
|
|
10509
|
-
|
|
10509
|
+
priceBase: ArticlePriceBase;
|
|
10510
10510
|
|
|
10511
10511
|
/**
|
|
10512
10512
|
* Gültig bis
|
|
@@ -10614,14 +10614,14 @@ export const enum RegulationSet {
|
|
|
10614
10614
|
export interface RequestDocument {
|
|
10615
10615
|
|
|
10616
10616
|
/**
|
|
10617
|
-
*
|
|
10617
|
+
* Belegdatum
|
|
10618
10618
|
*/
|
|
10619
|
-
|
|
10619
|
+
documentDate: ScriptingDate;
|
|
10620
10620
|
|
|
10621
10621
|
/**
|
|
10622
|
-
*
|
|
10622
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10623
10623
|
*/
|
|
10624
|
-
|
|
10624
|
+
incomingGoodsStorageBinId: number;
|
|
10625
10625
|
|
|
10626
10626
|
/**
|
|
10627
10627
|
* Der Anzahlungsbetrag
|
|
@@ -10714,14 +10714,14 @@ export interface RequestDocument {
|
|
|
10714
10714
|
posRegisterId: number;
|
|
10715
10715
|
|
|
10716
10716
|
/**
|
|
10717
|
-
*
|
|
10717
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10718
10718
|
*/
|
|
10719
|
-
|
|
10719
|
+
supplierAccountId: number;
|
|
10720
10720
|
|
|
10721
10721
|
/**
|
|
10722
|
-
*
|
|
10722
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10723
10723
|
*/
|
|
10724
|
-
|
|
10724
|
+
paymentTermId: number;
|
|
10725
10725
|
|
|
10726
10726
|
/**
|
|
10727
10727
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10812,14 +10812,14 @@ export interface RequestDocumentLine {
|
|
|
10812
10812
|
description: string;
|
|
10813
10813
|
|
|
10814
10814
|
/**
|
|
10815
|
-
*
|
|
10815
|
+
* Herkunft des Preises
|
|
10816
10816
|
*/
|
|
10817
|
-
|
|
10817
|
+
priceOrigin: ProductPriceOrigin;
|
|
10818
10818
|
|
|
10819
10819
|
/**
|
|
10820
|
-
*
|
|
10820
|
+
* Quittungsdetails zur Belegposition
|
|
10821
10821
|
*/
|
|
10822
|
-
|
|
10822
|
+
posDetail: DocumentLinePosDetail;
|
|
10823
10823
|
|
|
10824
10824
|
/**
|
|
10825
10825
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10952,9 +10952,9 @@ export interface RequestDocumentLine {
|
|
|
10952
10952
|
name: string;
|
|
10953
10953
|
|
|
10954
10954
|
/**
|
|
10955
|
-
*
|
|
10955
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
10956
10956
|
*/
|
|
10957
|
-
|
|
10957
|
+
externalArticleNumber: string;
|
|
10958
10958
|
|
|
10959
10959
|
/**
|
|
10960
10960
|
* Buchungen zu dieser Belegposition
|
|
@@ -10962,9 +10962,9 @@ export interface RequestDocumentLine {
|
|
|
10962
10962
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10963
10963
|
|
|
10964
10964
|
/**
|
|
10965
|
-
*
|
|
10965
|
+
* ID der Quell-Belegposition
|
|
10966
10966
|
*/
|
|
10967
|
-
|
|
10967
|
+
sourceLineId: number;
|
|
10968
10968
|
|
|
10969
10969
|
/**
|
|
10970
10970
|
* Zu der Zeile Etikettendruck anstoßen
|
|
@@ -11139,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11139
11139
|
note: string;
|
|
11140
11140
|
|
|
11141
11141
|
/**
|
|
11142
|
-
*
|
|
11142
|
+
* is sales agent taxable
|
|
11143
11143
|
*/
|
|
11144
|
-
|
|
11144
|
+
taxable: boolean;
|
|
11145
11145
|
|
|
11146
11146
|
/**
|
|
11147
|
-
*
|
|
11147
|
+
* reference to the delivery method
|
|
11148
11148
|
*/
|
|
11149
|
-
|
|
11149
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11150
11150
|
|
|
11151
11151
|
/**
|
|
11152
11152
|
* Freifelder
|
|
@@ -11501,14 +11501,14 @@ export interface SequencerConfiguration {
|
|
|
11501
11501
|
key: string;
|
|
11502
11502
|
|
|
11503
11503
|
/**
|
|
11504
|
-
*
|
|
11504
|
+
* Contains details about the sequencer configuration
|
|
11505
11505
|
*/
|
|
11506
|
-
|
|
11506
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11507
11507
|
|
|
11508
11508
|
/**
|
|
11509
|
-
*
|
|
11509
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11510
11510
|
*/
|
|
11511
|
-
|
|
11511
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11512
11512
|
|
|
11513
11513
|
/**
|
|
11514
11514
|
* MetaInformations for this Object
|
|
@@ -11623,14 +11623,14 @@ export interface ShelfDocument {
|
|
|
11623
11623
|
tags: Array<TagDto>;
|
|
11624
11624
|
|
|
11625
11625
|
/**
|
|
11626
|
-
*
|
|
11626
|
+
* share informations
|
|
11627
11627
|
*/
|
|
11628
|
-
|
|
11628
|
+
shares: Array<ShelfShare>;
|
|
11629
11629
|
|
|
11630
11630
|
/**
|
|
11631
|
-
*
|
|
11631
|
+
* Mehrsprachige Bezeichnungen
|
|
11632
11632
|
*/
|
|
11633
|
-
|
|
11633
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11634
11634
|
|
|
11635
11635
|
/**
|
|
11636
11636
|
* Automatische Löschung ab
|
|
@@ -12123,14 +12123,14 @@ export interface StockMovementManualApi {
|
|
|
12123
12123
|
export interface StockTransferApi {
|
|
12124
12124
|
|
|
12125
12125
|
/**
|
|
12126
|
-
*
|
|
12126
|
+
* Ziel-Lager
|
|
12127
12127
|
*/
|
|
12128
|
-
|
|
12128
|
+
targetStorageId: number;
|
|
12129
12129
|
|
|
12130
12130
|
/**
|
|
12131
|
-
*
|
|
12131
|
+
* Seriennummer
|
|
12132
12132
|
*/
|
|
12133
|
-
|
|
12133
|
+
serialNumberId: number;
|
|
12134
12134
|
|
|
12135
12135
|
/**
|
|
12136
12136
|
* Bemerkung
|
|
@@ -12416,14 +12416,14 @@ export interface Supplier {
|
|
|
12416
12416
|
performanceCountryCode: string;
|
|
12417
12417
|
|
|
12418
12418
|
/**
|
|
12419
|
-
*
|
|
12419
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12420
12420
|
*/
|
|
12421
|
-
|
|
12421
|
+
defaultDeliveryTime: number;
|
|
12422
12422
|
|
|
12423
12423
|
/**
|
|
12424
|
-
*
|
|
12424
|
+
* reference to the payment method
|
|
12425
12425
|
*/
|
|
12426
|
-
|
|
12426
|
+
paymentMethodRef: ApiObjectReference;
|
|
12427
12427
|
|
|
12428
12428
|
/**
|
|
12429
12429
|
* Bestellsperre
|
|
@@ -12861,11 +12861,6 @@ export interface User {
|
|
|
12861
12861
|
*/
|
|
12862
12862
|
roles: Array<ApiObjectReference>;
|
|
12863
12863
|
|
|
12864
|
-
/**
|
|
12865
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12866
|
-
*/
|
|
12867
|
-
referencedCustomerUserId: number;
|
|
12868
|
-
|
|
12869
12864
|
/**
|
|
12870
12865
|
* Gruppen
|
|
12871
12866
|
*/
|
|
@@ -12876,6 +12871,11 @@ export interface User {
|
|
|
12876
12871
|
*/
|
|
12877
12872
|
active: boolean;
|
|
12878
12873
|
|
|
12874
|
+
/**
|
|
12875
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12876
|
+
*/
|
|
12877
|
+
referencedCustomerUserId: number;
|
|
12878
|
+
|
|
12879
12879
|
/**
|
|
12880
12880
|
* App-Identifier
|
|
12881
12881
|
*/
|