@vario-software/types 2026.18.3 → 2026.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +2396 -94
- package/scripting/services.d.ts +21 -21
- package/scripting/types.d.ts +294 -267
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -291,14 +291,14 @@ export interface AccountAddress {
|
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Post office box
|
|
295
295
|
*/
|
|
296
|
-
|
|
296
|
+
postOfficeBox: string;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Title
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
304
|
* Country code
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
|
|
|
562
562
|
nonInvoicedDocumentLoan: number;
|
|
563
563
|
|
|
564
564
|
/**
|
|
565
|
-
*
|
|
565
|
+
* Kreditlimit
|
|
566
566
|
*/
|
|
567
|
-
|
|
567
|
+
maximalLoan: number;
|
|
568
568
|
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
571
571
|
*/
|
|
572
|
-
|
|
572
|
+
payablesSum: number;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Überschrittener Kreditbetrag
|
|
@@ -955,25 +955,20 @@ export interface Article {
|
|
|
955
955
|
*/
|
|
956
956
|
customsTariffNumber: string;
|
|
957
957
|
|
|
958
|
-
/**
|
|
959
|
-
* Product custom data
|
|
960
|
-
*/
|
|
961
|
-
listingCustom: EavArticleListing;
|
|
962
|
-
|
|
963
958
|
/**
|
|
964
959
|
* is this product purchasable
|
|
965
960
|
*/
|
|
966
961
|
purchasable: boolean;
|
|
967
962
|
|
|
968
963
|
/**
|
|
969
|
-
*
|
|
964
|
+
* Product custom data
|
|
970
965
|
*/
|
|
971
|
-
|
|
966
|
+
listingCustom: EavArticleListing;
|
|
972
967
|
|
|
973
968
|
/**
|
|
974
|
-
*
|
|
969
|
+
* base capacity unit
|
|
975
970
|
*/
|
|
976
|
-
|
|
971
|
+
baseCapacityUnit: UnitTypeReference;
|
|
977
972
|
|
|
978
973
|
/**
|
|
979
974
|
* is this product sellable without any quantity at the stock
|
|
@@ -985,6 +980,11 @@ export interface Article {
|
|
|
985
980
|
*/
|
|
986
981
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
987
982
|
|
|
983
|
+
/**
|
|
984
|
+
* Durchschnittl. EKP (Startwert)
|
|
985
|
+
*/
|
|
986
|
+
initialAvgPurchasePrice: number;
|
|
987
|
+
|
|
988
988
|
/**
|
|
989
989
|
* gross Volume in cubic meters
|
|
990
990
|
*/
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1081,20 +1081,25 @@ export interface Article {
|
|
|
1081
1081
|
deliveryMethodRef: ApiObjectReference;
|
|
1082
1082
|
|
|
1083
1083
|
/**
|
|
1084
|
-
*
|
|
1084
|
+
* Produktion
|
|
1085
1085
|
*/
|
|
1086
|
-
|
|
1086
|
+
fabrication: boolean;
|
|
1087
1087
|
|
|
1088
1088
|
/**
|
|
1089
|
-
*
|
|
1089
|
+
* Soll-Handelsspanne
|
|
1090
1090
|
*/
|
|
1091
|
-
|
|
1091
|
+
targetTradingMargin: number;
|
|
1092
1092
|
|
|
1093
1093
|
/**
|
|
1094
1094
|
* active
|
|
1095
1095
|
*/
|
|
1096
1096
|
active: boolean;
|
|
1097
1097
|
|
|
1098
|
+
/**
|
|
1099
|
+
* Zuständiger Mitarbeiter
|
|
1100
|
+
*/
|
|
1101
|
+
responsibleUserRef: ApiObjectReference;
|
|
1102
|
+
|
|
1098
1103
|
/**
|
|
1099
1104
|
* die id des Listings
|
|
1100
1105
|
*/
|
|
@@ -1141,14 +1146,14 @@ export interface Article {
|
|
|
1141
1146
|
listingStateChangeTime: ScriptingDateTime;
|
|
1142
1147
|
|
|
1143
1148
|
/**
|
|
1144
|
-
*
|
|
1149
|
+
* Country code
|
|
1145
1150
|
*/
|
|
1146
|
-
|
|
1151
|
+
countryOfOriginRef: CountryReference;
|
|
1147
1152
|
|
|
1148
1153
|
/**
|
|
1149
|
-
*
|
|
1154
|
+
* Arbeitseinheit in Minuten
|
|
1150
1155
|
*/
|
|
1151
|
-
|
|
1156
|
+
workUnitInMinutes: number;
|
|
1152
1157
|
|
|
1153
1158
|
/**
|
|
1154
1159
|
* Frei kommissionierbar
|
|
@@ -1221,9 +1226,9 @@ export interface Article {
|
|
|
1221
1226
|
permissibleForOrderProposal: boolean;
|
|
1222
1227
|
|
|
1223
1228
|
/**
|
|
1224
|
-
*
|
|
1229
|
+
* Versandlabeldruck
|
|
1225
1230
|
*/
|
|
1226
|
-
|
|
1231
|
+
shippingLabelPrinting: boolean;
|
|
1227
1232
|
|
|
1228
1233
|
/**
|
|
1229
1234
|
* reference to Product
|
|
@@ -1231,9 +1236,14 @@ export interface Article {
|
|
|
1231
1236
|
productRef: ApiObjectReference;
|
|
1232
1237
|
|
|
1233
1238
|
/**
|
|
1234
|
-
*
|
|
1239
|
+
* Artikel ist Gefahrgut
|
|
1235
1240
|
*/
|
|
1236
|
-
|
|
1241
|
+
isDangerousGood: boolean;
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* Kontingentartikel
|
|
1245
|
+
*/
|
|
1246
|
+
contingentArticleRef: ApiObjectReference;
|
|
1237
1247
|
|
|
1238
1248
|
/**
|
|
1239
1249
|
* rabattierbarer Artikel?
|
|
@@ -1245,11 +1255,6 @@ export interface Article {
|
|
|
1245
1255
|
*/
|
|
1246
1256
|
alternativeName: string;
|
|
1247
1257
|
|
|
1248
|
-
/**
|
|
1249
|
-
* Kontingentartikel
|
|
1250
|
-
*/
|
|
1251
|
-
contingentArticleRef: ApiObjectReference;
|
|
1252
|
-
|
|
1253
1258
|
/**
|
|
1254
1259
|
* base capacity
|
|
1255
1260
|
*/
|
|
@@ -1281,14 +1286,14 @@ export interface Article {
|
|
|
1281
1286
|
custom: EavArticle;
|
|
1282
1287
|
|
|
1283
1288
|
/**
|
|
1284
|
-
*
|
|
1289
|
+
* Art des Haltbarkeitsdatums
|
|
1285
1290
|
*/
|
|
1286
|
-
|
|
1291
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1287
1292
|
|
|
1288
1293
|
/**
|
|
1289
|
-
*
|
|
1294
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1290
1295
|
*/
|
|
1291
|
-
|
|
1296
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1292
1297
|
|
|
1293
1298
|
/**
|
|
1294
1299
|
* Hersteller
|
|
@@ -1316,14 +1321,14 @@ export interface Article {
|
|
|
1316
1321
|
listed: boolean;
|
|
1317
1322
|
|
|
1318
1323
|
/**
|
|
1319
|
-
*
|
|
1324
|
+
* Nur manuelle Produktion
|
|
1320
1325
|
*/
|
|
1321
|
-
|
|
1326
|
+
onlyManualFabrication: boolean;
|
|
1322
1327
|
|
|
1323
1328
|
/**
|
|
1324
|
-
*
|
|
1329
|
+
* provisionsberechtiger Artikel?
|
|
1325
1330
|
*/
|
|
1326
|
-
|
|
1331
|
+
commissionable: boolean;
|
|
1327
1332
|
|
|
1328
1333
|
/**
|
|
1329
1334
|
* Preisbasis
|
|
@@ -1474,14 +1479,14 @@ export interface ArticleListing {
|
|
|
1474
1479
|
proposedLowestPriceGross: number;
|
|
1475
1480
|
|
|
1476
1481
|
/**
|
|
1477
|
-
* der
|
|
1482
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1478
1483
|
*/
|
|
1479
|
-
|
|
1484
|
+
customLowestPriceGross: number;
|
|
1480
1485
|
|
|
1481
1486
|
/**
|
|
1482
|
-
*
|
|
1487
|
+
* der Sales Channel
|
|
1483
1488
|
*/
|
|
1484
|
-
|
|
1489
|
+
salesChannelRef: ApiObjectReference;
|
|
1485
1490
|
|
|
1486
1491
|
/**
|
|
1487
1492
|
* soll der Artikel gelistet werden
|
|
@@ -1691,9 +1696,9 @@ export interface ArticleStorage {
|
|
|
1691
1696
|
quantityInStock: number;
|
|
1692
1697
|
|
|
1693
1698
|
/**
|
|
1694
|
-
*
|
|
1699
|
+
* Aktuelle Menge in Kommissionierung
|
|
1695
1700
|
*/
|
|
1696
|
-
|
|
1701
|
+
quantityInPicking: number;
|
|
1697
1702
|
|
|
1698
1703
|
/**
|
|
1699
1704
|
* Bestellte Menge
|
|
@@ -1701,19 +1706,19 @@ export interface ArticleStorage {
|
|
|
1701
1706
|
orderedQuantity: number;
|
|
1702
1707
|
|
|
1703
1708
|
/**
|
|
1704
|
-
*
|
|
1709
|
+
* Meldebestand
|
|
1705
1710
|
*/
|
|
1706
|
-
|
|
1711
|
+
reorderPoint: number;
|
|
1707
1712
|
|
|
1708
1713
|
/**
|
|
1709
|
-
*
|
|
1714
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1710
1715
|
*/
|
|
1711
|
-
|
|
1716
|
+
virtualStockAmount: number;
|
|
1712
1717
|
|
|
1713
1718
|
/**
|
|
1714
|
-
*
|
|
1719
|
+
* Nachschub auf
|
|
1715
1720
|
*/
|
|
1716
|
-
|
|
1721
|
+
replenishmentOn: number;
|
|
1717
1722
|
|
|
1718
1723
|
/**
|
|
1719
1724
|
* Reservierte Menge
|
|
@@ -1788,26 +1793,26 @@ export interface ArticleSupplier {
|
|
|
1788
1793
|
*/
|
|
1789
1794
|
accountDisplayName: string;
|
|
1790
1795
|
|
|
1791
|
-
/**
|
|
1792
|
-
* Lieferanten-Meldebestand
|
|
1793
|
-
*/
|
|
1794
|
-
supplierReportingStock: number;
|
|
1795
|
-
|
|
1796
1796
|
/**
|
|
1797
1797
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1798
1798
|
*/
|
|
1799
1799
|
useSupplierArticleDescription: boolean;
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
1802
|
-
*
|
|
1802
|
+
* Lieferanten-Meldebestand
|
|
1803
1803
|
*/
|
|
1804
|
-
|
|
1804
|
+
supplierReportingStock: number;
|
|
1805
1805
|
|
|
1806
1806
|
/**
|
|
1807
1807
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1808
1808
|
*/
|
|
1809
1809
|
useSupplierArticleIdentifier: boolean;
|
|
1810
1810
|
|
|
1811
|
+
/**
|
|
1812
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1813
|
+
*/
|
|
1814
|
+
deliveryTime: number;
|
|
1815
|
+
|
|
1811
1816
|
/**
|
|
1812
1817
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1813
1818
|
*/
|
|
@@ -1854,14 +1859,14 @@ export interface ArticleSupplier {
|
|
|
1854
1859
|
info: MetaInfo;
|
|
1855
1860
|
|
|
1856
1861
|
/**
|
|
1857
|
-
*
|
|
1862
|
+
* Verpackungseinheit
|
|
1858
1863
|
*/
|
|
1859
|
-
|
|
1864
|
+
packagingUnit: number;
|
|
1860
1865
|
|
|
1861
1866
|
/**
|
|
1862
|
-
*
|
|
1867
|
+
* Referenced Article name
|
|
1863
1868
|
*/
|
|
1864
|
-
|
|
1869
|
+
articleName: string;
|
|
1865
1870
|
|
|
1866
1871
|
/**
|
|
1867
1872
|
* Referenced Article
|
|
@@ -1909,9 +1914,9 @@ export interface ArticleSupplier {
|
|
|
1909
1914
|
defaultNetPrice: number;
|
|
1910
1915
|
|
|
1911
1916
|
/**
|
|
1912
|
-
*
|
|
1917
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1913
1918
|
*/
|
|
1914
|
-
|
|
1919
|
+
orderOnComponentBase: boolean;
|
|
1915
1920
|
|
|
1916
1921
|
/**
|
|
1917
1922
|
* Einkaufseinheit
|
|
@@ -1919,9 +1924,9 @@ export interface ArticleSupplier {
|
|
|
1919
1924
|
purchaseUnit: number;
|
|
1920
1925
|
|
|
1921
1926
|
/**
|
|
1922
|
-
*
|
|
1927
|
+
* Referenced Supplier-Account
|
|
1923
1928
|
*/
|
|
1924
|
-
|
|
1929
|
+
accountId: number;
|
|
1925
1930
|
|
|
1926
1931
|
/**
|
|
1927
1932
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -1946,6 +1951,7 @@ export const enum BankPaymentType {
|
|
|
1946
1951
|
SEPA_B2B_DIRECT_DEBIT = 'SEPA_B2B_DIRECT_DEBIT',
|
|
1947
1952
|
CLEARING = 'CLEARING',
|
|
1948
1953
|
CLEARING_WITH_PREDECESSOR_DOCUMENT = 'CLEARING_WITH_PREDECESSOR_DOCUMENT',
|
|
1954
|
+
APP = 'APP',
|
|
1949
1955
|
OTHER = 'OTHER'
|
|
1950
1956
|
}
|
|
1951
1957
|
|
|
@@ -2024,10 +2030,6 @@ export const enum CalculationModeOrigin {
|
|
|
2024
2030
|
USER_DEFINED = 'USER_DEFINED'
|
|
2025
2031
|
}
|
|
2026
2032
|
|
|
2027
|
-
export const enum CollectiveInvoicePeriodicity {
|
|
2028
|
-
MANUAL = 'MANUAL'
|
|
2029
|
-
}
|
|
2030
|
-
|
|
2031
2033
|
export const enum CommonUserType {
|
|
2032
2034
|
REGULAR = 'REGULAR',
|
|
2033
2035
|
SUPPORT = 'SUPPORT',
|
|
@@ -2122,14 +2124,14 @@ export interface CountryReference {
|
|
|
2122
2124
|
export interface CreateNewDocumentRequest {
|
|
2123
2125
|
|
|
2124
2126
|
/**
|
|
2125
|
-
*
|
|
2127
|
+
* Belegart
|
|
2126
2128
|
*/
|
|
2127
|
-
|
|
2129
|
+
documentTypeLabel: string;
|
|
2128
2130
|
|
|
2129
2131
|
/**
|
|
2130
|
-
* Belegart
|
|
2132
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2131
2133
|
*/
|
|
2132
|
-
|
|
2134
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2133
2135
|
|
|
2134
2136
|
/**
|
|
2135
2137
|
* Details zum Beleg
|
|
@@ -2195,14 +2197,14 @@ export interface CrmActivity {
|
|
|
2195
2197
|
info: MetaInfo;
|
|
2196
2198
|
|
|
2197
2199
|
/**
|
|
2198
|
-
*
|
|
2200
|
+
* Aktivität intern abgerechnet?
|
|
2199
2201
|
*/
|
|
2200
|
-
|
|
2202
|
+
internalBilled: boolean;
|
|
2201
2203
|
|
|
2202
2204
|
/**
|
|
2203
|
-
*
|
|
2205
|
+
* geplante Dauer
|
|
2204
2206
|
*/
|
|
2205
|
-
|
|
2207
|
+
plannedDurationInSeconds: number;
|
|
2206
2208
|
|
|
2207
2209
|
/**
|
|
2208
2210
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2472,14 +2474,14 @@ export interface CrmDeal {
|
|
|
2472
2474
|
info: MetaInfo;
|
|
2473
2475
|
|
|
2474
2476
|
/**
|
|
2475
|
-
*
|
|
2477
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2476
2478
|
*/
|
|
2477
|
-
|
|
2479
|
+
assignedUserRef: ApiObjectReference;
|
|
2478
2480
|
|
|
2479
2481
|
/**
|
|
2480
|
-
*
|
|
2482
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2481
2483
|
*/
|
|
2482
|
-
|
|
2484
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2483
2485
|
|
|
2484
2486
|
/**
|
|
2485
2487
|
* Chance (in Prozent)
|
|
@@ -2753,14 +2755,14 @@ export interface CrmProject {
|
|
|
2753
2755
|
priorityRef: ApiObjectReference;
|
|
2754
2756
|
|
|
2755
2757
|
/**
|
|
2756
|
-
*
|
|
2758
|
+
* Projektleiter vom Auftragnehmer
|
|
2757
2759
|
*/
|
|
2758
|
-
|
|
2760
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2759
2761
|
|
|
2760
2762
|
/**
|
|
2761
|
-
*
|
|
2763
|
+
* Phase
|
|
2762
2764
|
*/
|
|
2763
|
-
|
|
2765
|
+
phaseRef: ApiObjectReference;
|
|
2764
2766
|
|
|
2765
2767
|
/**
|
|
2766
2768
|
* Aufgaben-Nummer
|
|
@@ -3008,14 +3010,14 @@ export interface CrmState {
|
|
|
3008
3010
|
readyToBill: boolean;
|
|
3009
3011
|
|
|
3010
3012
|
/**
|
|
3011
|
-
*
|
|
3013
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3012
3014
|
*/
|
|
3013
|
-
|
|
3015
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3014
3016
|
|
|
3015
3017
|
/**
|
|
3016
|
-
*
|
|
3018
|
+
* Handelt es sich um einen Anfang-Status
|
|
3017
3019
|
*/
|
|
3018
|
-
|
|
3020
|
+
startState: boolean;
|
|
3019
3021
|
|
|
3020
3022
|
/**
|
|
3021
3023
|
* MetaInformations for this Object
|
|
@@ -3063,11 +3065,6 @@ export interface CrmSubType {
|
|
|
3063
3065
|
|
|
3064
3066
|
export interface CrmTask {
|
|
3065
3067
|
|
|
3066
|
-
/**
|
|
3067
|
-
* Liste von Erinnerungen
|
|
3068
|
-
*/
|
|
3069
|
-
reminders: Array<CrmReminder>;
|
|
3070
|
-
|
|
3071
3068
|
/**
|
|
3072
3069
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3073
3070
|
*/
|
|
@@ -3078,6 +3075,11 @@ export interface CrmTask {
|
|
|
3078
3075
|
*/
|
|
3079
3076
|
customerOfferRef: DocumentRef;
|
|
3080
3077
|
|
|
3078
|
+
/**
|
|
3079
|
+
* Liste von Erinnerungen
|
|
3080
|
+
*/
|
|
3081
|
+
reminders: Array<CrmReminder>;
|
|
3082
|
+
|
|
3081
3083
|
/**
|
|
3082
3084
|
* Notizen
|
|
3083
3085
|
*/
|
|
@@ -3259,14 +3261,14 @@ export interface CrmTask {
|
|
|
3259
3261
|
assignedUserRef: ApiObjectReference;
|
|
3260
3262
|
|
|
3261
3263
|
/**
|
|
3262
|
-
*
|
|
3264
|
+
* Beauftragte Zeit in Sekunden
|
|
3263
3265
|
*/
|
|
3264
|
-
|
|
3266
|
+
effortCommissioned: number;
|
|
3265
3267
|
|
|
3266
3268
|
/**
|
|
3267
|
-
*
|
|
3269
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3268
3270
|
*/
|
|
3269
|
-
|
|
3271
|
+
externalRecordedTimes: number;
|
|
3270
3272
|
|
|
3271
3273
|
/**
|
|
3272
3274
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3442,21 +3444,31 @@ export interface CurrencyReference {
|
|
|
3442
3444
|
|
|
3443
3445
|
export interface Customer {
|
|
3444
3446
|
|
|
3447
|
+
/**
|
|
3448
|
+
* reference to customer group
|
|
3449
|
+
*/
|
|
3450
|
+
customerGroupRef: ApiObjectReference;
|
|
3451
|
+
|
|
3445
3452
|
/**
|
|
3446
3453
|
* Option für die Stapelverarbeitung
|
|
3447
3454
|
*/
|
|
3448
3455
|
stackProcessingType: AccountOrderStackProcessingType;
|
|
3449
3456
|
|
|
3450
3457
|
/**
|
|
3451
|
-
*
|
|
3458
|
+
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
3452
3459
|
*/
|
|
3453
|
-
|
|
3460
|
+
dueDateCalculation: string;
|
|
3454
3461
|
|
|
3455
3462
|
/**
|
|
3456
3463
|
* Kreditlimit
|
|
3457
3464
|
*/
|
|
3458
3465
|
maximalLoan: number;
|
|
3459
3466
|
|
|
3467
|
+
/**
|
|
3468
|
+
* Fälligkeit der nächsten Sammelabrechnung
|
|
3469
|
+
*/
|
|
3470
|
+
dueDate: ScriptingDate;
|
|
3471
|
+
|
|
3460
3472
|
/**
|
|
3461
3473
|
* collective billable
|
|
3462
3474
|
*/
|
|
@@ -3482,11 +3494,21 @@ export interface Customer {
|
|
|
3482
3494
|
*/
|
|
3483
3495
|
billingType: AccountBillingType;
|
|
3484
3496
|
|
|
3497
|
+
/**
|
|
3498
|
+
* Nächste Fälligkeit nach der aktuellen
|
|
3499
|
+
*/
|
|
3500
|
+
nextDueDate: ScriptingDate;
|
|
3501
|
+
|
|
3485
3502
|
/**
|
|
3486
3503
|
* Priorität für die Stapelverarbeitung
|
|
3487
3504
|
*/
|
|
3488
3505
|
stackProcessingPriority: number;
|
|
3489
3506
|
|
|
3507
|
+
/**
|
|
3508
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3509
|
+
*/
|
|
3510
|
+
collectiveInvoiceManually: boolean;
|
|
3511
|
+
|
|
3490
3512
|
/**
|
|
3491
3513
|
* reference to product price group
|
|
3492
3514
|
*/
|
|
@@ -3552,11 +3574,6 @@ export interface Customer {
|
|
|
3552
3574
|
*/
|
|
3553
3575
|
performanceCountryCode: string;
|
|
3554
3576
|
|
|
3555
|
-
/**
|
|
3556
|
-
* periodicity of collective invoice
|
|
3557
|
-
*/
|
|
3558
|
-
collectiveInvoicePeriodicity: CollectiveInvoicePeriodicity;
|
|
3559
|
-
|
|
3560
3577
|
/**
|
|
3561
3578
|
* reference to the payment method
|
|
3562
3579
|
*/
|
|
@@ -3757,14 +3774,14 @@ export interface DeliveryTerm {
|
|
|
3757
3774
|
id: number;
|
|
3758
3775
|
|
|
3759
3776
|
/**
|
|
3760
|
-
*
|
|
3777
|
+
* Versandkostenartikel
|
|
3761
3778
|
*/
|
|
3762
|
-
|
|
3779
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
3763
3780
|
|
|
3764
3781
|
/**
|
|
3765
|
-
*
|
|
3782
|
+
* free shipping net value
|
|
3766
3783
|
*/
|
|
3767
|
-
|
|
3784
|
+
freeShippingNetValue: number;
|
|
3768
3785
|
|
|
3769
3786
|
/**
|
|
3770
3787
|
* MetaInformations for this Object
|
|
@@ -3923,14 +3940,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3923
3940
|
accountId: number;
|
|
3924
3941
|
|
|
3925
3942
|
/**
|
|
3926
|
-
* Länderkennzeichen
|
|
3943
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3927
3944
|
*/
|
|
3928
|
-
|
|
3945
|
+
sourceCountryCode: string;
|
|
3929
3946
|
|
|
3930
3947
|
/**
|
|
3931
|
-
* Länderkennzeichen
|
|
3948
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3932
3949
|
*/
|
|
3933
|
-
|
|
3950
|
+
performanceCountryCode: string;
|
|
3934
3951
|
|
|
3935
3952
|
/**
|
|
3936
3953
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4060,14 +4077,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4060
4077
|
processedByWorkflow: boolean;
|
|
4061
4078
|
|
|
4062
4079
|
/**
|
|
4063
|
-
*
|
|
4080
|
+
* Telefon an Versender übergeben
|
|
4064
4081
|
*/
|
|
4065
|
-
|
|
4082
|
+
forwardPhoneToShipper: boolean;
|
|
4066
4083
|
|
|
4067
4084
|
/**
|
|
4068
|
-
*
|
|
4085
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4069
4086
|
*/
|
|
4070
|
-
|
|
4087
|
+
baseTotalDocumentPriceModifier: number;
|
|
4071
4088
|
|
|
4072
4089
|
/**
|
|
4073
4090
|
* Liste der Belegtexte
|
|
@@ -4090,14 +4107,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4090
4107
|
defaultAddress: DocumentAddress;
|
|
4091
4108
|
|
|
4092
4109
|
/**
|
|
4093
|
-
*
|
|
4110
|
+
* Leistungsdatum
|
|
4094
4111
|
*/
|
|
4095
|
-
|
|
4112
|
+
performanceDate: ScriptingDate;
|
|
4096
4113
|
|
|
4097
4114
|
/**
|
|
4098
|
-
*
|
|
4115
|
+
* Verarbeitungsoption für Stapel
|
|
4099
4116
|
*/
|
|
4100
|
-
|
|
4117
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4101
4118
|
|
|
4102
4119
|
/**
|
|
4103
4120
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4155,14 +4172,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4155
4172
|
dropShipping: boolean;
|
|
4156
4173
|
|
|
4157
4174
|
/**
|
|
4158
|
-
*
|
|
4175
|
+
* Gesamtpreis netto
|
|
4159
4176
|
*/
|
|
4160
|
-
|
|
4177
|
+
totalNetPrice: number;
|
|
4161
4178
|
|
|
4162
4179
|
/**
|
|
4163
|
-
*
|
|
4180
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4164
4181
|
*/
|
|
4165
|
-
|
|
4182
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4166
4183
|
|
|
4167
4184
|
/**
|
|
4168
4185
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4275,14 +4292,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4275
4292
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4276
4293
|
|
|
4277
4294
|
/**
|
|
4278
|
-
*
|
|
4295
|
+
* Statusinstanz des Belegs
|
|
4279
4296
|
*/
|
|
4280
|
-
|
|
4297
|
+
documentState: DocumentTypeState;
|
|
4281
4298
|
|
|
4282
4299
|
/**
|
|
4283
|
-
*
|
|
4300
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4284
4301
|
*/
|
|
4285
|
-
|
|
4302
|
+
taxIdentificationNumber: string;
|
|
4286
4303
|
|
|
4287
4304
|
/**
|
|
4288
4305
|
* Rückgeld
|
|
@@ -4702,14 +4719,14 @@ export interface DocumentContractDetail {
|
|
|
4702
4719
|
runtimeToDate: ScriptingDate;
|
|
4703
4720
|
|
|
4704
4721
|
/**
|
|
4705
|
-
*
|
|
4722
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4706
4723
|
*/
|
|
4707
|
-
|
|
4724
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4708
4725
|
|
|
4709
4726
|
/**
|
|
4710
|
-
*
|
|
4727
|
+
* Nächste Fälligkeit
|
|
4711
4728
|
*/
|
|
4712
|
-
|
|
4729
|
+
nextDueDate: ScriptingDate;
|
|
4713
4730
|
|
|
4714
4731
|
/**
|
|
4715
4732
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4973,20 +4990,15 @@ export interface DocumentLine {
|
|
|
4973
4990
|
*/
|
|
4974
4991
|
baseTotalLinePrice: number;
|
|
4975
4992
|
|
|
4976
|
-
/**
|
|
4977
|
-
* FiBu-Buchung
|
|
4978
|
-
*/
|
|
4979
|
-
financeBooking: DocumentFinanceBooking;
|
|
4980
|
-
|
|
4981
4993
|
/**
|
|
4982
4994
|
* Positionstyp
|
|
4983
4995
|
*/
|
|
4984
4996
|
lineType: DocumentLineType;
|
|
4985
4997
|
|
|
4986
4998
|
/**
|
|
4987
|
-
*
|
|
4999
|
+
* FiBu-Buchung
|
|
4988
5000
|
*/
|
|
4989
|
-
|
|
5001
|
+
financeBooking: DocumentFinanceBooking;
|
|
4990
5002
|
|
|
4991
5003
|
/**
|
|
4992
5004
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -4998,6 +5010,11 @@ export interface DocumentLine {
|
|
|
4998
5010
|
*/
|
|
4999
5011
|
supplierOrderLineIds: Array<number>;
|
|
5000
5012
|
|
|
5013
|
+
/**
|
|
5014
|
+
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
5015
|
+
*/
|
|
5016
|
+
totalLinePriceModifier: number;
|
|
5017
|
+
|
|
5001
5018
|
/**
|
|
5002
5019
|
* Vorgabe zu Streckengeschäft
|
|
5003
5020
|
*/
|
|
@@ -5013,11 +5030,6 @@ export interface DocumentLine {
|
|
|
5013
5030
|
*/
|
|
5014
5031
|
id: number;
|
|
5015
5032
|
|
|
5016
|
-
/**
|
|
5017
|
-
* Serientyp
|
|
5018
|
-
*/
|
|
5019
|
-
serialType: ArticleSerialType;
|
|
5020
|
-
|
|
5021
5033
|
/**
|
|
5022
5034
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5023
5035
|
*/
|
|
@@ -5033,6 +5045,11 @@ export interface DocumentLine {
|
|
|
5033
5045
|
*/
|
|
5034
5046
|
basePrice: number;
|
|
5035
5047
|
|
|
5048
|
+
/**
|
|
5049
|
+
* Serientyp
|
|
5050
|
+
*/
|
|
5051
|
+
serialType: ArticleSerialType;
|
|
5052
|
+
|
|
5036
5053
|
/**
|
|
5037
5054
|
* MetaInformations for this Object
|
|
5038
5055
|
*/
|
|
@@ -5194,14 +5211,14 @@ export interface DocumentLine {
|
|
|
5194
5211
|
unitType: UnitTypeReference;
|
|
5195
5212
|
|
|
5196
5213
|
/**
|
|
5197
|
-
*
|
|
5214
|
+
* Zubehör Einfügeart
|
|
5198
5215
|
*/
|
|
5199
|
-
|
|
5216
|
+
insertTerm: AccessoryInsertTerm;
|
|
5200
5217
|
|
|
5201
5218
|
/**
|
|
5202
|
-
*
|
|
5219
|
+
* Referenz zur Basiszeile
|
|
5203
5220
|
*/
|
|
5204
|
-
|
|
5221
|
+
baseLineId: number;
|
|
5205
5222
|
|
|
5206
5223
|
/**
|
|
5207
5224
|
* Einheit Bruttogewicht
|
|
@@ -5254,14 +5271,14 @@ export interface DocumentLine {
|
|
|
5254
5271
|
deliveryText: string;
|
|
5255
5272
|
|
|
5256
5273
|
/**
|
|
5257
|
-
*
|
|
5274
|
+
* Vorgabewert für die Preiskalkulation
|
|
5258
5275
|
*/
|
|
5259
|
-
|
|
5276
|
+
presetPrice: number;
|
|
5260
5277
|
|
|
5261
5278
|
/**
|
|
5262
|
-
*
|
|
5279
|
+
* Produktionsdetails
|
|
5263
5280
|
*/
|
|
5264
|
-
|
|
5281
|
+
fabricationDetail: DocumentLineFabricationDetail;
|
|
5265
5282
|
|
|
5266
5283
|
/**
|
|
5267
5284
|
* Freifelder
|
|
@@ -5713,14 +5730,14 @@ export interface DocumentLinePosDetail {
|
|
|
5713
5730
|
externalPaymentErrorMessage: string;
|
|
5714
5731
|
|
|
5715
5732
|
/**
|
|
5716
|
-
*
|
|
5733
|
+
* Typ der Einlage/Ausgabe
|
|
5717
5734
|
*/
|
|
5718
|
-
|
|
5735
|
+
depositExpenseTypeId: number;
|
|
5719
5736
|
|
|
5720
5737
|
/**
|
|
5721
|
-
*
|
|
5738
|
+
* Status der externen Zahlung
|
|
5722
5739
|
*/
|
|
5723
|
-
|
|
5740
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5724
5741
|
|
|
5725
5742
|
/**
|
|
5726
5743
|
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
@@ -5796,14 +5813,14 @@ export interface DocumentLineRef {
|
|
|
5796
5813
|
documentId: number;
|
|
5797
5814
|
|
|
5798
5815
|
/**
|
|
5799
|
-
*
|
|
5816
|
+
* Positions-Nummer
|
|
5800
5817
|
*/
|
|
5801
|
-
|
|
5818
|
+
position: number;
|
|
5802
5819
|
|
|
5803
5820
|
/**
|
|
5804
|
-
*
|
|
5821
|
+
* Id der Dokumentzeile
|
|
5805
5822
|
*/
|
|
5806
|
-
|
|
5823
|
+
id: number;
|
|
5807
5824
|
|
|
5808
5825
|
/**
|
|
5809
5826
|
* Belegtyp
|
|
@@ -5874,6 +5891,11 @@ export interface DocumentPosDetail {
|
|
|
5874
5891
|
*/
|
|
5875
5892
|
revision: number;
|
|
5876
5893
|
|
|
5894
|
+
/**
|
|
5895
|
+
* Externe Referenz
|
|
5896
|
+
*/
|
|
5897
|
+
externalReference: string;
|
|
5898
|
+
|
|
5877
5899
|
/**
|
|
5878
5900
|
* Transaktion Startzeit
|
|
5879
5901
|
*/
|
|
@@ -6213,14 +6235,14 @@ export interface DocumentText {
|
|
|
6213
6235
|
transferableIntoSubsequentDocuments: boolean;
|
|
6214
6236
|
|
|
6215
6237
|
/**
|
|
6216
|
-
*
|
|
6238
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6217
6239
|
*/
|
|
6218
|
-
|
|
6240
|
+
textPosition: TextPosition;
|
|
6219
6241
|
|
|
6220
6242
|
/**
|
|
6221
|
-
*
|
|
6243
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6222
6244
|
*/
|
|
6223
|
-
|
|
6245
|
+
deleted: boolean;
|
|
6224
6246
|
|
|
6225
6247
|
/**
|
|
6226
6248
|
* textBaustein Vorlage
|
|
@@ -6816,14 +6838,14 @@ export interface FabricationRevertRequest {
|
|
|
6816
6838
|
quantity: number;
|
|
6817
6839
|
|
|
6818
6840
|
/**
|
|
6819
|
-
*
|
|
6841
|
+
* Material automatisch stornieren
|
|
6820
6842
|
*/
|
|
6821
|
-
|
|
6843
|
+
autoRevertComponents: boolean;
|
|
6822
6844
|
|
|
6823
6845
|
/**
|
|
6824
|
-
*
|
|
6846
|
+
* ID der zu stornierenden Position
|
|
6825
6847
|
*/
|
|
6826
|
-
|
|
6848
|
+
documentLineId: number;
|
|
6827
6849
|
|
|
6828
6850
|
/**
|
|
6829
6851
|
* Zu stornierende Seriennummern
|
|
@@ -7053,14 +7075,14 @@ export interface PaymentMethod {
|
|
|
7053
7075
|
daysToAddForFollowup: number;
|
|
7054
7076
|
|
|
7055
7077
|
/**
|
|
7056
|
-
*
|
|
7078
|
+
* Die Business Transaction
|
|
7057
7079
|
*/
|
|
7058
|
-
|
|
7080
|
+
businessTransaction: ApiObjectReference;
|
|
7059
7081
|
|
|
7060
7082
|
/**
|
|
7061
|
-
*
|
|
7083
|
+
* external Payment Id
|
|
7062
7084
|
*/
|
|
7063
|
-
|
|
7085
|
+
externalPaymentId: string;
|
|
7064
7086
|
|
|
7065
7087
|
/**
|
|
7066
7088
|
* Unique identifier of the Object
|
|
@@ -7427,14 +7449,14 @@ export interface Picklist {
|
|
|
7427
7449
|
export interface PicklistLine {
|
|
7428
7450
|
|
|
7429
7451
|
/**
|
|
7430
|
-
*
|
|
7452
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7431
7453
|
*/
|
|
7432
|
-
|
|
7454
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7433
7455
|
|
|
7434
7456
|
/**
|
|
7435
|
-
*
|
|
7457
|
+
* Gesammelte Menge der Position
|
|
7436
7458
|
*/
|
|
7437
|
-
|
|
7459
|
+
quantityCollected: number;
|
|
7438
7460
|
|
|
7439
7461
|
/**
|
|
7440
7462
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7472,14 +7494,14 @@ export interface PicklistLine {
|
|
|
7472
7494
|
version: number;
|
|
7473
7495
|
|
|
7474
7496
|
/**
|
|
7475
|
-
*
|
|
7497
|
+
* ID der Quell-Dokumentposition
|
|
7476
7498
|
*/
|
|
7477
|
-
|
|
7499
|
+
sourceDocumentLineId: number;
|
|
7478
7500
|
|
|
7479
7501
|
/**
|
|
7480
|
-
*
|
|
7502
|
+
* Lageranzeigename
|
|
7481
7503
|
*/
|
|
7482
|
-
|
|
7504
|
+
storageDisplayName: string;
|
|
7483
7505
|
|
|
7484
7506
|
/**
|
|
7485
7507
|
* Artikelnummer
|
|
@@ -7816,11 +7838,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7816
7838
|
*/
|
|
7817
7839
|
alternativeSelectionInVql: string;
|
|
7818
7840
|
|
|
7819
|
-
/**
|
|
7820
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7821
|
-
*/
|
|
7822
|
-
maxOrderCount: number;
|
|
7823
|
-
|
|
7824
7841
|
/**
|
|
7825
7842
|
* Selektion über den Bereich vom Lieferdatum
|
|
7826
7843
|
*/
|
|
@@ -7831,6 +7848,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7831
7848
|
*/
|
|
7832
7849
|
onlyFullDeliverableOrderLines: boolean;
|
|
7833
7850
|
|
|
7851
|
+
/**
|
|
7852
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7853
|
+
*/
|
|
7854
|
+
maxOrderCount: number;
|
|
7855
|
+
|
|
7834
7856
|
/**
|
|
7835
7857
|
* Selektion über den Bereich vom Belegdatum
|
|
7836
7858
|
*/
|
|
@@ -7900,9 +7922,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7900
7922
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7901
7923
|
|
|
7902
7924
|
/**
|
|
7903
|
-
*
|
|
7925
|
+
* Lagerplätze vorgeben
|
|
7904
7926
|
*/
|
|
7905
|
-
|
|
7927
|
+
specifyStorageBins: boolean;
|
|
7906
7928
|
|
|
7907
7929
|
/**
|
|
7908
7930
|
* Der zu verwendende Pickwagen
|
|
@@ -7910,9 +7932,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7910
7932
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7911
7933
|
|
|
7912
7934
|
/**
|
|
7913
|
-
*
|
|
7935
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7914
7936
|
*/
|
|
7915
|
-
|
|
7937
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7916
7938
|
|
|
7917
7939
|
/**
|
|
7918
7940
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -7987,15 +8009,20 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7987
8009
|
*/
|
|
7988
8010
|
allowPickingOfServiceArticles: boolean;
|
|
7989
8011
|
|
|
8012
|
+
/**
|
|
8013
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8014
|
+
*/
|
|
8015
|
+
useDigitalPicklist: boolean;
|
|
8016
|
+
|
|
7990
8017
|
/**
|
|
7991
8018
|
* Sammelbestätigung erlauben
|
|
7992
8019
|
*/
|
|
7993
8020
|
allowFullConfirmation: boolean;
|
|
7994
8021
|
|
|
7995
8022
|
/**
|
|
7996
|
-
*
|
|
8023
|
+
* Verwende die Verkaufseinheit als Standardmenge
|
|
7997
8024
|
*/
|
|
7998
|
-
|
|
8025
|
+
useSalesUnit: boolean;
|
|
7999
8026
|
|
|
8000
8027
|
/**
|
|
8001
8028
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -8213,14 +8240,14 @@ export interface Product {
|
|
|
8213
8240
|
bundle: boolean;
|
|
8214
8241
|
|
|
8215
8242
|
/**
|
|
8216
|
-
*
|
|
8243
|
+
* Variantenwerte
|
|
8217
8244
|
*/
|
|
8218
|
-
|
|
8245
|
+
variantValues: Array<VariantValueReference>;
|
|
8219
8246
|
|
|
8220
8247
|
/**
|
|
8221
|
-
*
|
|
8248
|
+
* Serientyp
|
|
8222
8249
|
*/
|
|
8223
|
-
|
|
8250
|
+
serialType: ArticleSerialType;
|
|
8224
8251
|
|
|
8225
8252
|
/**
|
|
8226
8253
|
* MetaInformations for this Object
|
|
@@ -8334,14 +8361,14 @@ export interface ProductDiscount {
|
|
|
8334
8361
|
modifierValueType: ValueType;
|
|
8335
8362
|
|
|
8336
8363
|
/**
|
|
8337
|
-
*
|
|
8364
|
+
* Name des Rabatts
|
|
8338
8365
|
*/
|
|
8339
|
-
|
|
8366
|
+
modifierName: string;
|
|
8340
8367
|
|
|
8341
8368
|
/**
|
|
8342
|
-
*
|
|
8369
|
+
* Account, für den der Rabatt gültig ist
|
|
8343
8370
|
*/
|
|
8344
|
-
|
|
8371
|
+
accountRef: ApiObjectReference;
|
|
8345
8372
|
|
|
8346
8373
|
/**
|
|
8347
8374
|
* Unique identifier of the Object
|
|
@@ -8681,26 +8708,26 @@ export interface RequestDocument {
|
|
|
8681
8708
|
*/
|
|
8682
8709
|
lines: Array<RequestDocumentLine>;
|
|
8683
8710
|
|
|
8684
|
-
/**
|
|
8685
|
-
* ID der Kasse (bei POS)
|
|
8686
|
-
*/
|
|
8687
|
-
posRegisterId: number;
|
|
8688
|
-
|
|
8689
8711
|
/**
|
|
8690
8712
|
* Die Vertragsdetails
|
|
8691
8713
|
*/
|
|
8692
8714
|
contractDetail: DocumentContractDetail;
|
|
8693
8715
|
|
|
8694
8716
|
/**
|
|
8695
|
-
*
|
|
8717
|
+
* ID der Kasse (bei POS)
|
|
8696
8718
|
*/
|
|
8697
|
-
|
|
8719
|
+
posRegisterId: number;
|
|
8698
8720
|
|
|
8699
8721
|
/**
|
|
8700
8722
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8701
8723
|
*/
|
|
8702
8724
|
supplierAccountId: number;
|
|
8703
8725
|
|
|
8726
|
+
/**
|
|
8727
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8728
|
+
*/
|
|
8729
|
+
paymentTermId: number;
|
|
8730
|
+
|
|
8704
8731
|
/**
|
|
8705
8732
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8706
8733
|
*/
|
|
@@ -8810,14 +8837,14 @@ export interface RequestDocumentLine {
|
|
|
8810
8837
|
commissions: Array<RequestDocumentLineCommission>;
|
|
8811
8838
|
|
|
8812
8839
|
/**
|
|
8813
|
-
*
|
|
8840
|
+
* Typ dieser Position
|
|
8814
8841
|
*/
|
|
8815
|
-
|
|
8842
|
+
lineType: DocumentLineType;
|
|
8816
8843
|
|
|
8817
8844
|
/**
|
|
8818
|
-
*
|
|
8845
|
+
* FiBu-Angaben
|
|
8819
8846
|
*/
|
|
8820
|
-
|
|
8847
|
+
financeBooking: DocumentFinanceBooking;
|
|
8821
8848
|
|
|
8822
8849
|
/**
|
|
8823
8850
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9066,14 +9093,14 @@ export interface SalesAgent {
|
|
|
9066
9093
|
note: string;
|
|
9067
9094
|
|
|
9068
9095
|
/**
|
|
9069
|
-
*
|
|
9096
|
+
* reference to the delivery method
|
|
9070
9097
|
*/
|
|
9071
|
-
|
|
9098
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9072
9099
|
|
|
9073
9100
|
/**
|
|
9074
|
-
*
|
|
9101
|
+
* is sales agent taxable
|
|
9075
9102
|
*/
|
|
9076
|
-
|
|
9103
|
+
taxable: boolean;
|
|
9077
9104
|
|
|
9078
9105
|
/**
|
|
9079
9106
|
* Freifelder
|
|
@@ -9533,14 +9560,14 @@ export interface ShelfDocument {
|
|
|
9533
9560
|
tags: Array<TagDto>;
|
|
9534
9561
|
|
|
9535
9562
|
/**
|
|
9536
|
-
*
|
|
9563
|
+
* share informations
|
|
9537
9564
|
*/
|
|
9538
|
-
|
|
9565
|
+
shares: Array<ShelfShare>;
|
|
9539
9566
|
|
|
9540
9567
|
/**
|
|
9541
|
-
*
|
|
9568
|
+
* Mehrsprachige Bezeichnungen
|
|
9542
9569
|
*/
|
|
9543
|
-
|
|
9570
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9544
9571
|
|
|
9545
9572
|
/**
|
|
9546
9573
|
* Automatische Löschung ab
|
|
@@ -9672,14 +9699,14 @@ export interface ShelfDocumentType {
|
|
|
9672
9699
|
active: boolean;
|
|
9673
9700
|
|
|
9674
9701
|
/**
|
|
9675
|
-
*
|
|
9702
|
+
* label of type
|
|
9676
9703
|
*/
|
|
9677
|
-
|
|
9704
|
+
label: string;
|
|
9678
9705
|
|
|
9679
9706
|
/**
|
|
9680
|
-
*
|
|
9707
|
+
* access level or reading
|
|
9681
9708
|
*/
|
|
9682
|
-
|
|
9709
|
+
accessLevelRead: number;
|
|
9683
9710
|
|
|
9684
9711
|
/**
|
|
9685
9712
|
* storage rule for revisions
|
|
@@ -9725,14 +9752,14 @@ export interface ShelfFile {
|
|
|
9725
9752
|
subFiles: Array<SubFileInfo>;
|
|
9726
9753
|
|
|
9727
9754
|
/**
|
|
9728
|
-
*
|
|
9755
|
+
* fileSize
|
|
9729
9756
|
*/
|
|
9730
|
-
|
|
9757
|
+
fileSize: number;
|
|
9731
9758
|
|
|
9732
9759
|
/**
|
|
9733
|
-
*
|
|
9760
|
+
* revision number of this file
|
|
9734
9761
|
*/
|
|
9735
|
-
|
|
9762
|
+
revisionNumber: number;
|
|
9736
9763
|
|
|
9737
9764
|
/**
|
|
9738
9765
|
* file-extension of this entry
|
|
@@ -9760,14 +9787,14 @@ export interface ShelfFile {
|
|
|
9760
9787
|
version: number;
|
|
9761
9788
|
|
|
9762
9789
|
/**
|
|
9763
|
-
*
|
|
9790
|
+
* meta data
|
|
9764
9791
|
*/
|
|
9765
|
-
|
|
9792
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
9766
9793
|
|
|
9767
9794
|
/**
|
|
9768
|
-
*
|
|
9795
|
+
* current reference of this file in our storage
|
|
9769
9796
|
*/
|
|
9770
|
-
|
|
9797
|
+
storageHandle: string;
|
|
9771
9798
|
|
|
9772
9799
|
/**
|
|
9773
9800
|
* MetaInformations for this Object
|
|
@@ -9811,14 +9838,14 @@ export interface ShelfShare {
|
|
|
9811
9838
|
publishState: ShelfSharePublishState;
|
|
9812
9839
|
|
|
9813
9840
|
/**
|
|
9814
|
-
*
|
|
9841
|
+
* Freifelder
|
|
9815
9842
|
*/
|
|
9816
|
-
|
|
9843
|
+
custom: EavShelfshare;
|
|
9817
9844
|
|
|
9818
9845
|
/**
|
|
9819
|
-
*
|
|
9846
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9820
9847
|
*/
|
|
9821
|
-
|
|
9848
|
+
publicUrlDurationInMinutes: number;
|
|
9822
9849
|
|
|
9823
9850
|
/**
|
|
9824
9851
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10312,14 +10339,14 @@ export interface Supplier {
|
|
|
10312
10339
|
performanceCountryCode: string;
|
|
10313
10340
|
|
|
10314
10341
|
/**
|
|
10315
|
-
*
|
|
10342
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10316
10343
|
*/
|
|
10317
|
-
|
|
10344
|
+
defaultDeliveryTime: number;
|
|
10318
10345
|
|
|
10319
10346
|
/**
|
|
10320
|
-
*
|
|
10347
|
+
* reference to the payment method
|
|
10321
10348
|
*/
|
|
10322
|
-
|
|
10349
|
+
paymentMethodRef: ApiObjectReference;
|
|
10323
10350
|
|
|
10324
10351
|
/**
|
|
10325
10352
|
* currency code IsoAlpha3
|
|
@@ -10340,14 +10367,14 @@ export interface TagDto {
|
|
|
10340
10367
|
editColor: string;
|
|
10341
10368
|
|
|
10342
10369
|
/**
|
|
10343
|
-
* Farbe
|
|
10370
|
+
* Farbe in Such-GUI
|
|
10344
10371
|
*/
|
|
10345
|
-
|
|
10372
|
+
searchColor: string;
|
|
10346
10373
|
|
|
10347
10374
|
/**
|
|
10348
|
-
* Farbe
|
|
10375
|
+
* Farbe für die Anzeige des Tags
|
|
10349
10376
|
*/
|
|
10350
|
-
|
|
10377
|
+
color: string;
|
|
10351
10378
|
|
|
10352
10379
|
/**
|
|
10353
10380
|
* Beschriftung des Tags
|
|
@@ -10671,14 +10698,14 @@ export interface User {
|
|
|
10671
10698
|
version: number;
|
|
10672
10699
|
|
|
10673
10700
|
/**
|
|
10674
|
-
*
|
|
10701
|
+
* is the email verified
|
|
10675
10702
|
*/
|
|
10676
|
-
|
|
10703
|
+
emailVerified: boolean;
|
|
10677
10704
|
|
|
10678
10705
|
/**
|
|
10679
|
-
*
|
|
10706
|
+
* first-name
|
|
10680
10707
|
*/
|
|
10681
|
-
|
|
10708
|
+
firstName: string;
|
|
10682
10709
|
|
|
10683
10710
|
/**
|
|
10684
10711
|
* email-address
|