@vario-software/types 2026.31.1 → 2026.31.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/schema/erp.d.ts +2 -0
- package/scripting/services.d.ts +15 -15
- package/scripting/types.d.ts +263 -263
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -111839,6 +111839,8 @@ export interface components {
|
|
|
111839
111839
|
finishedDocuments?: components["schemas"]["erp-pos-PosDocumentClosingPreviewCategoryStats"][];
|
|
111840
111840
|
/** @description Reiner Waren-/Leistungsumsatz der abgeschlossenen Belege: Kassenquittungen (POS_CASH_RECEIPT) positiv, Kassenretouren (POS_RETURN_CASH_RECEIPT) negativ, jeweils abzüglich der OP-Buchungen (openItemPaymentTotal) — ohne Kundeneinzahlungen und OP-Ausgleiche */
|
|
111841
111841
|
finishedDocumentsNetSum?: number;
|
|
111842
|
+
/** @description Bruttosumme der abgeschlossenen Kassenquittungen (POS_CASH_RECEIPT) abzüglich Kassenretouren (POS_RETURN_CASH_RECEIPT), inklusive OP-Ausgleiche und Kundeneinzahlungen — ohne Einlagen, Ausgaben und Abschöpfungen */
|
|
111843
|
+
finishedReceiptsTotalGross?: number;
|
|
111842
111844
|
/** @description Umsatz je nicht-barer Zahlungsart aus diesem Kassenbuch-Lauf */
|
|
111843
111845
|
nonCashPayments?: components["schemas"]["erp-pos-CashJournalClosingNonCashPayment"][];
|
|
111844
111846
|
/** @description Summe der Umsätze über alle nicht-baren Zahlungsarten */
|
package/scripting/services.d.ts
CHANGED
|
@@ -1775,20 +1775,20 @@ export interface DocumentScriptingService {
|
|
|
1775
1775
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1776
1776
|
*
|
|
1777
1777
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1778
|
-
* @param {string}
|
|
1779
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1778
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1780
1779
|
* @return {Document} Der kopierte Beleg
|
|
1781
1780
|
*/
|
|
1782
|
-
copy(documentId: number,
|
|
1781
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1783
1782
|
|
|
1784
1783
|
/**
|
|
1785
1784
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1786
1785
|
*
|
|
1787
1786
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1788
|
-
* @param {string}
|
|
1787
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1788
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1789
1789
|
* @return {Document} Der kopierte Beleg
|
|
1790
1790
|
*/
|
|
1791
|
-
copy(documentId: number,
|
|
1791
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1792
1792
|
|
|
1793
1793
|
/**
|
|
1794
1794
|
* Erstellt einen neuen Beleg
|
|
@@ -1819,18 +1819,18 @@ export interface DocumentScriptingService {
|
|
|
1819
1819
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1820
1820
|
*
|
|
1821
1821
|
* @param {number} documentId - ID des Belegs
|
|
1822
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1822
1823
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1823
1824
|
*/
|
|
1824
|
-
edit(documentId: number): Document;
|
|
1825
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1825
1826
|
|
|
1826
1827
|
/**
|
|
1827
1828
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1828
1829
|
*
|
|
1829
1830
|
* @param {number} documentId - ID des Belegs
|
|
1830
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1831
1831
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1832
1832
|
*/
|
|
1833
|
-
edit(documentId: number
|
|
1833
|
+
edit(documentId: number): Document;
|
|
1834
1834
|
|
|
1835
1835
|
/**
|
|
1836
1836
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -2872,14 +2872,14 @@ export interface ScriptingServiceList {
|
|
|
2872
2872
|
crmTaskService: CrmTaskScriptingService;
|
|
2873
2873
|
|
|
2874
2874
|
/**
|
|
2875
|
-
* Service zur Verarbeitung von
|
|
2875
|
+
* Service zur Verarbeitung von Accounts
|
|
2876
2876
|
*/
|
|
2877
|
-
|
|
2877
|
+
accountService: AccountScriptingService;
|
|
2878
2878
|
|
|
2879
2879
|
/**
|
|
2880
|
-
* Service zur Verarbeitung von
|
|
2880
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2881
2881
|
*/
|
|
2882
|
-
|
|
2882
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2883
2883
|
|
|
2884
2884
|
/**
|
|
2885
2885
|
* Logging im Scripting
|
|
@@ -3114,18 +3114,18 @@ export interface ScriptingUtilities {
|
|
|
3114
3114
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3115
3115
|
*
|
|
3116
3116
|
* @param {object} value - Der Quell-Wert
|
|
3117
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
3117
3118
|
* @return {number} Ein BigDecimal-Wert
|
|
3118
3119
|
*/
|
|
3119
|
-
newBigDecimal(value: object): number;
|
|
3120
|
+
newBigDecimal(value: object, scale: number): number;
|
|
3120
3121
|
|
|
3121
3122
|
/**
|
|
3122
3123
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3123
3124
|
*
|
|
3124
3125
|
* @param {object} value - Der Quell-Wert
|
|
3125
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
3126
3126
|
* @return {number} Ein BigDecimal-Wert
|
|
3127
3127
|
*/
|
|
3128
|
-
newBigDecimal(value: object
|
|
3128
|
+
newBigDecimal(value: object): number;
|
|
3129
3129
|
|
|
3130
3130
|
/**
|
|
3131
3131
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -179,14 +179,14 @@ export interface Account {
|
|
|
179
179
|
responsibleUserRef: ApiObjectReference;
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* Erstkontakt am
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
initialContactAt: ScriptingDate;
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
|
-
*
|
|
187
|
+
* calculation mode of this document
|
|
188
188
|
*/
|
|
189
|
-
|
|
189
|
+
calculationMode: CalculationMode;
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* Sprache des Accounts
|
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Standard-Ansprechpartner
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
defaultPerson: AccountPerson;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Country code
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
countryCode: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Street
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
street: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -412,14 +412,14 @@ export interface AccountAddress {
|
|
|
412
412
|
streetAddressNumber: string;
|
|
413
413
|
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Default contacts
|
|
416
416
|
*/
|
|
417
|
-
|
|
417
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Parcel station customer number
|
|
421
421
|
*/
|
|
422
|
-
|
|
422
|
+
parcelStationCustomerNumber: string;
|
|
423
423
|
|
|
424
424
|
/**
|
|
425
425
|
* Name3
|
|
@@ -1035,14 +1035,14 @@ export interface Article {
|
|
|
1035
1035
|
sellableWithoutStock: boolean;
|
|
1036
1036
|
|
|
1037
1037
|
/**
|
|
1038
|
-
*
|
|
1038
|
+
* Durchschnittl. EKP (Startwert)
|
|
1039
1039
|
*/
|
|
1040
|
-
|
|
1040
|
+
initialAvgPurchasePrice: number;
|
|
1041
1041
|
|
|
1042
1042
|
/**
|
|
1043
|
-
*
|
|
1043
|
+
* Seriennummern Auszeichnungsart
|
|
1044
1044
|
*/
|
|
1045
|
-
|
|
1045
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1046
1046
|
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
@@ -1284,11 +1284,6 @@ export interface Article {
|
|
|
1284
1284
|
*/
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
|
-
/**
|
|
1288
|
-
* gross sales prices
|
|
1289
|
-
*/
|
|
1290
|
-
grossSalesPrice: number;
|
|
1291
|
-
|
|
1292
1287
|
/**
|
|
1293
1288
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1294
1289
|
*/
|
|
@@ -1299,6 +1294,11 @@ export interface Article {
|
|
|
1299
1294
|
*/
|
|
1300
1295
|
defaultFabricationCost: number;
|
|
1301
1296
|
|
|
1297
|
+
/**
|
|
1298
|
+
* gross sales prices
|
|
1299
|
+
*/
|
|
1300
|
+
grossSalesPrice: number;
|
|
1301
|
+
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
1304
1304
|
*/
|
|
@@ -1319,6 +1319,11 @@ export interface Article {
|
|
|
1319
1319
|
*/
|
|
1320
1320
|
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
|
+
/**
|
|
1323
|
+
* alternative name of this product
|
|
1324
|
+
*/
|
|
1325
|
+
alternativeName: string;
|
|
1326
|
+
|
|
1322
1327
|
/**
|
|
1323
1328
|
* Kontingentartikel
|
|
1324
1329
|
*/
|
|
@@ -1329,11 +1334,6 @@ export interface Article {
|
|
|
1329
1334
|
*/
|
|
1330
1335
|
discountable: boolean;
|
|
1331
1336
|
|
|
1332
|
-
/**
|
|
1333
|
-
* alternative name of this product
|
|
1334
|
-
*/
|
|
1335
|
-
alternativeName: string;
|
|
1336
|
-
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
1339
1339
|
*/
|
|
@@ -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
|
|
@@ -1957,11 +1957,6 @@ export interface ArticleStorage {
|
|
|
1957
1957
|
*/
|
|
1958
1958
|
replenishmentFrom: number;
|
|
1959
1959
|
|
|
1960
|
-
/**
|
|
1961
|
-
* Bestellte Menge
|
|
1962
|
-
*/
|
|
1963
|
-
orderedQuantity: number;
|
|
1964
|
-
|
|
1965
1960
|
/**
|
|
1966
1961
|
* Aktuelle Menge in Kommissionierung
|
|
1967
1962
|
*/
|
|
@@ -1972,6 +1967,11 @@ export interface ArticleStorage {
|
|
|
1972
1967
|
*/
|
|
1973
1968
|
reorderPoint: number;
|
|
1974
1969
|
|
|
1970
|
+
/**
|
|
1971
|
+
* Bestellte Menge
|
|
1972
|
+
*/
|
|
1973
|
+
orderedQuantity: number;
|
|
1974
|
+
|
|
1975
1975
|
/**
|
|
1976
1976
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1977
1977
|
*/
|
|
@@ -2056,14 +2056,14 @@ export interface ArticleSupplier {
|
|
|
2056
2056
|
accountDisplayName: string;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
|
-
*
|
|
2059
|
+
* Lieferanten-Meldebestand
|
|
2060
2060
|
*/
|
|
2061
|
-
|
|
2061
|
+
supplierReportingStock: number;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
|
-
*
|
|
2064
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2065
2065
|
*/
|
|
2066
|
-
|
|
2066
|
+
useSupplierArticleDescription: boolean;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2176,14 +2176,14 @@ export interface ArticleSupplier {
|
|
|
2176
2176
|
defaultNetPrice: number;
|
|
2177
2177
|
|
|
2178
2178
|
/**
|
|
2179
|
-
*
|
|
2179
|
+
* Einkaufseinheit
|
|
2180
2180
|
*/
|
|
2181
|
-
|
|
2181
|
+
purchaseUnit: number;
|
|
2182
2182
|
|
|
2183
2183
|
/**
|
|
2184
|
-
*
|
|
2184
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2185
2185
|
*/
|
|
2186
|
-
|
|
2186
|
+
orderOnComponentBase: boolean;
|
|
2187
2187
|
|
|
2188
2188
|
/**
|
|
2189
2189
|
* Referenced Supplier-Account
|
|
@@ -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
|
|
@@ -2262,14 +2262,14 @@ export interface Asset {
|
|
|
2262
2262
|
active: boolean;
|
|
2263
2263
|
|
|
2264
2264
|
/**
|
|
2265
|
-
*
|
|
2265
|
+
* Ende Garantie
|
|
2266
2266
|
*/
|
|
2267
|
-
|
|
2267
|
+
warrantyEndDate: ScriptingDate;
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
2270
|
-
*
|
|
2270
|
+
* Zugehörige Assets
|
|
2271
2271
|
*/
|
|
2272
|
-
|
|
2272
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2273
2273
|
|
|
2274
2274
|
/**
|
|
2275
2275
|
* Asset-Bezeichnung
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* geplante Dauer
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
plannedDurationInSeconds: number;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* Aktivität intern abgerechnet?
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
internalBilled: boolean;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2679,14 +2679,14 @@ export interface CrmActivity {
|
|
|
2679
2679
|
userRef: ApiObjectReference;
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
|
-
*
|
|
2682
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2683
2683
|
*/
|
|
2684
|
-
|
|
2684
|
+
system: boolean;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* tatsächliche Startzeit
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
startDateTime: ScriptingDateTime;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Inhalt dieser Aktivität
|
|
@@ -2793,14 +2793,14 @@ export interface CrmActivityType {
|
|
|
2793
2793
|
export interface CrmChecklistItem {
|
|
2794
2794
|
|
|
2795
2795
|
/**
|
|
2796
|
-
*
|
|
2796
|
+
* Ist das Element "angehakt"?
|
|
2797
2797
|
*/
|
|
2798
|
-
|
|
2798
|
+
checked: boolean;
|
|
2799
2799
|
|
|
2800
2800
|
/**
|
|
2801
|
-
*
|
|
2801
|
+
* Text des Checklisten-Elements
|
|
2802
2802
|
*/
|
|
2803
|
-
|
|
2803
|
+
memo: string;
|
|
2804
2804
|
|
|
2805
2805
|
/**
|
|
2806
2806
|
* Unique identifier of the Object
|
|
@@ -3519,14 +3519,14 @@ export interface CrmSubType {
|
|
|
3519
3519
|
export interface CrmTask {
|
|
3520
3520
|
|
|
3521
3521
|
/**
|
|
3522
|
-
*
|
|
3522
|
+
* Angebot
|
|
3523
3523
|
*/
|
|
3524
|
-
|
|
3524
|
+
customerOfferRef: DocumentRef;
|
|
3525
3525
|
|
|
3526
3526
|
/**
|
|
3527
|
-
*
|
|
3527
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3528
3528
|
*/
|
|
3529
|
-
|
|
3529
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3530
3530
|
|
|
3531
3531
|
/**
|
|
3532
3532
|
* Liste von Erinnerungen
|
|
@@ -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
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
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
|
|
@@ -4305,14 +4305,14 @@ export interface DeliveryTerm {
|
|
|
4305
4305
|
version: number;
|
|
4306
4306
|
|
|
4307
4307
|
/**
|
|
4308
|
-
*
|
|
4308
|
+
* translations
|
|
4309
4309
|
*/
|
|
4310
|
-
|
|
4310
|
+
translations: Array<DocumentTypeTerm>;
|
|
4311
4311
|
|
|
4312
4312
|
/**
|
|
4313
|
-
*
|
|
4313
|
+
* information, how the shipping charges should be calculated
|
|
4314
4314
|
*/
|
|
4315
|
-
|
|
4315
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4316
4316
|
|
|
4317
4317
|
/**
|
|
4318
4318
|
* Lieferarten
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* free shipping net value
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
freeShippingNetValue: number;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* Versandkostenartikel
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* MetaInformations for this Object
|
|
@@ -4355,14 +4355,14 @@ export interface DmsOutputStream {
|
|
|
4355
4355
|
export interface Document {
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Referenz zum Rechnungskonto
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
billingAccountRef: ApiObjectReference;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
|
-
*
|
|
4363
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4364
4364
|
*/
|
|
4365
|
-
|
|
4365
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4366
4366
|
|
|
4367
4367
|
/**
|
|
4368
4368
|
* Externe Belegnummer
|
|
@@ -4634,26 +4634,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4634
4634
|
*/
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
|
-
/**
|
|
4638
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4639
|
-
*/
|
|
4640
|
-
accountNumber: string;
|
|
4641
|
-
|
|
4642
4637
|
/**
|
|
4643
4638
|
* Berechnungsmodus
|
|
4644
4639
|
*/
|
|
4645
4640
|
calculationMode: CalculationMode;
|
|
4646
4641
|
|
|
4647
4642
|
/**
|
|
4648
|
-
*
|
|
4643
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4649
4644
|
*/
|
|
4650
|
-
|
|
4645
|
+
accountNumber: string;
|
|
4651
4646
|
|
|
4652
4647
|
/**
|
|
4653
4648
|
* Referenz auf Zahlungsbedingung
|
|
4654
4649
|
*/
|
|
4655
4650
|
paymentTermRef: PaymentTermRef;
|
|
4656
4651
|
|
|
4652
|
+
/**
|
|
4653
|
+
* Wird vom Workflow verarbeitet?
|
|
4654
|
+
*/
|
|
4655
|
+
processedByWorkflow: boolean;
|
|
4656
|
+
|
|
4657
4657
|
/**
|
|
4658
4658
|
* Preisanpassungen - Beleg Basiswährung
|
|
4659
4659
|
*/
|
|
@@ -4685,14 +4685,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4685
4685
|
defaultAddress: DocumentAddress;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Leistungsdatum
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
performanceDate: ScriptingDate;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Verarbeitungsoption für Stapel
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4916,25 +4916,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4916
4916
|
*/
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
|
-
/**
|
|
4920
|
-
* Status der USt-ID-Prüfung
|
|
4921
|
-
*/
|
|
4922
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4923
|
-
|
|
4924
4919
|
/**
|
|
4925
4920
|
* Rechnungsadresse
|
|
4926
4921
|
*/
|
|
4927
4922
|
billingAddress: DocumentAddress;
|
|
4928
4923
|
|
|
4929
4924
|
/**
|
|
4930
|
-
*
|
|
4925
|
+
* Status der USt-ID-Prüfung
|
|
4931
4926
|
*/
|
|
4932
|
-
|
|
4927
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4933
4928
|
|
|
4934
4929
|
/**
|
|
4935
4930
|
* Report-Gruppe, falls vom Standard abweichend
|
|
4936
4931
|
*/
|
|
4937
4932
|
reportGroupRef: ApiObjectReference;
|
|
4933
|
+
|
|
4934
|
+
/**
|
|
4935
|
+
* Bestellt durch Ansprechpartner
|
|
4936
|
+
*/
|
|
4937
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4938
4938
|
}
|
|
4939
4939
|
|
|
4940
4940
|
export interface DocumentAdditionalInfo {
|
|
@@ -4945,14 +4945,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4945
4945
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4946
4946
|
|
|
4947
4947
|
/**
|
|
4948
|
-
*
|
|
4948
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4949
4949
|
*/
|
|
4950
|
-
|
|
4950
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4951
4951
|
|
|
4952
4952
|
/**
|
|
4953
|
-
*
|
|
4953
|
+
* Herkunft der Sprache
|
|
4954
4954
|
*/
|
|
4955
|
-
|
|
4955
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4956
4956
|
|
|
4957
4957
|
/**
|
|
4958
4958
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -4965,14 +4965,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4965
4965
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
4966
4966
|
|
|
4967
4967
|
/**
|
|
4968
|
-
*
|
|
4968
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
4969
4969
|
*/
|
|
4970
|
-
|
|
4970
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
4971
4971
|
|
|
4972
4972
|
/**
|
|
4973
|
-
*
|
|
4973
|
+
* Herkunft des Berechnungsmodus
|
|
4974
4974
|
*/
|
|
4975
|
-
|
|
4975
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
4976
4976
|
|
|
4977
4977
|
/**
|
|
4978
4978
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAddress {
|
|
|
5072
5072
|
postOfficeBox: string;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* country code IsoAlpha3
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
countryCode: string;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* Street
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
street: string;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Unique identifier of the Object
|
|
@@ -5097,14 +5097,14 @@ export interface DocumentAddress {
|
|
|
5097
5097
|
info: MetaInfo;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
|
-
*
|
|
5100
|
+
* Lieferart
|
|
5101
5101
|
*/
|
|
5102
|
-
|
|
5102
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
|
-
*
|
|
5105
|
+
* GLN
|
|
5106
5106
|
*/
|
|
5107
|
-
|
|
5107
|
+
globalLocationNumber: string;
|
|
5108
5108
|
|
|
5109
5109
|
/**
|
|
5110
5110
|
* Postcode
|
|
@@ -5544,11 +5544,6 @@ export interface DocumentLine {
|
|
|
5544
5544
|
*/
|
|
5545
5545
|
id: number;
|
|
5546
5546
|
|
|
5547
|
-
/**
|
|
5548
|
-
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5549
|
-
*/
|
|
5550
|
-
positionOfArticleLine: number;
|
|
5551
|
-
|
|
5552
5547
|
/**
|
|
5553
5548
|
* Preis pro Einheit in Basiswährung
|
|
5554
5549
|
*/
|
|
@@ -5560,15 +5555,20 @@ export interface DocumentLine {
|
|
|
5560
5555
|
serialType: ArticleSerialType;
|
|
5561
5556
|
|
|
5562
5557
|
/**
|
|
5563
|
-
*
|
|
5558
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5564
5559
|
*/
|
|
5565
|
-
|
|
5560
|
+
positionOfArticleLine: number;
|
|
5566
5561
|
|
|
5567
5562
|
/**
|
|
5568
5563
|
* Preiseinheit
|
|
5569
5564
|
*/
|
|
5570
5565
|
priceUnit: number;
|
|
5571
5566
|
|
|
5567
|
+
/**
|
|
5568
|
+
* Steuerschema
|
|
5569
|
+
*/
|
|
5570
|
+
taxSchemaRef: ApiObjectReference;
|
|
5571
|
+
|
|
5572
5572
|
/**
|
|
5573
5573
|
* Preisanpassungen - Position Basiswährung
|
|
5574
5574
|
*/
|
|
@@ -5762,18 +5762,18 @@ export interface DocumentLine {
|
|
|
5762
5762
|
/**
|
|
5763
5763
|
* Provisionen
|
|
5764
5764
|
*/
|
|
5765
|
-
commissions: Array<DocumentLineCommission>;
|
|
5766
|
-
|
|
5767
|
-
/**
|
|
5768
|
-
* Gesamtpreis Position in Basiswährung
|
|
5769
|
-
*/
|
|
5770
|
-
baseTotalLinePrice: number;
|
|
5765
|
+
commissions: Array<DocumentLineCommission>;
|
|
5771
5766
|
|
|
5772
5767
|
/**
|
|
5773
5768
|
* Positionstyp
|
|
5774
5769
|
*/
|
|
5775
5770
|
lineType: DocumentLineType;
|
|
5776
5771
|
|
|
5772
|
+
/**
|
|
5773
|
+
* Gesamtpreis Position in Basiswährung
|
|
5774
|
+
*/
|
|
5775
|
+
baseTotalLinePrice: number;
|
|
5776
|
+
|
|
5777
5777
|
/**
|
|
5778
5778
|
* vorgeorderte Menge in Pickvorgang
|
|
5779
5779
|
*/
|
|
@@ -5835,14 +5835,14 @@ export interface DocumentLine {
|
|
|
5835
5835
|
position: number;
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
|
-
*
|
|
5838
|
+
* Buchungen
|
|
5839
5839
|
*/
|
|
5840
|
-
|
|
5840
|
+
bookings: Array<DocumentLineBooking>;
|
|
5841
5841
|
|
|
5842
5842
|
/**
|
|
5843
|
-
*
|
|
5843
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5844
5844
|
*/
|
|
5845
|
-
|
|
5845
|
+
recalcLinePriceViaComponents: boolean;
|
|
5846
5846
|
|
|
5847
5847
|
/**
|
|
5848
5848
|
* unit gross Volume in cubic meters
|
|
@@ -5935,14 +5935,14 @@ export interface DocumentLine {
|
|
|
5935
5935
|
custom: EavDocumentline;
|
|
5936
5936
|
|
|
5937
5937
|
/**
|
|
5938
|
-
*
|
|
5938
|
+
* Artikel
|
|
5939
5939
|
*/
|
|
5940
|
-
|
|
5940
|
+
articleId: number;
|
|
5941
5941
|
|
|
5942
5942
|
/**
|
|
5943
|
-
*
|
|
5943
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5944
5944
|
*/
|
|
5945
|
-
|
|
5945
|
+
settledOpenItemComment: string;
|
|
5946
5946
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Interne Preisänderungsinformationen
|
|
@@ -6442,14 +6442,14 @@ export interface DocumentLinePosDetail {
|
|
|
6442
6442
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6443
6443
|
|
|
6444
6444
|
/**
|
|
6445
|
-
*
|
|
6445
|
+
* Status der externen Zahlung
|
|
6446
6446
|
*/
|
|
6447
|
-
|
|
6447
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6448
6448
|
|
|
6449
6449
|
/**
|
|
6450
|
-
*
|
|
6450
|
+
* Typ der Einlage/Ausgabe
|
|
6451
6451
|
*/
|
|
6452
|
-
|
|
6452
|
+
depositExpenseTypeId: number;
|
|
6453
6453
|
|
|
6454
6454
|
/**
|
|
6455
6455
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -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
|
|
@@ -8227,14 +8227,14 @@ export interface OpenItem {
|
|
|
8227
8227
|
performanceCountryCode: string;
|
|
8228
8228
|
|
|
8229
8229
|
/**
|
|
8230
|
-
*
|
|
8230
|
+
* Valutadatum schreibgeschützt
|
|
8231
8231
|
*/
|
|
8232
|
-
|
|
8232
|
+
valueDateReadOnly: boolean;
|
|
8233
8233
|
|
|
8234
8234
|
/**
|
|
8235
|
-
*
|
|
8235
|
+
* agreed Deposit payment date
|
|
8236
8236
|
*/
|
|
8237
|
-
|
|
8237
|
+
depositPaymentDate: ScriptingDate;
|
|
8238
8238
|
|
|
8239
8239
|
/**
|
|
8240
8240
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8302,14 +8302,14 @@ export interface OpenItem {
|
|
|
8302
8302
|
paymentAmount: number;
|
|
8303
8303
|
|
|
8304
8304
|
/**
|
|
8305
|
-
*
|
|
8305
|
+
* how should a refund be done?
|
|
8306
8306
|
*/
|
|
8307
|
-
|
|
8307
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* Rechnungskorrektur
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
creditNote: ApiObjectReference;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
8315
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8675,14 +8675,14 @@ export interface OpenItemRecord {
|
|
|
8675
8675
|
version: number;
|
|
8676
8676
|
|
|
8677
8677
|
/**
|
|
8678
|
-
*
|
|
8678
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8679
8679
|
*/
|
|
8680
|
-
|
|
8680
|
+
transactionId: number;
|
|
8681
8681
|
|
|
8682
8682
|
/**
|
|
8683
|
-
*
|
|
8683
|
+
* Buchungsbetrag in Basiswährung
|
|
8684
8684
|
*/
|
|
8685
|
-
|
|
8685
|
+
baseAmount: number;
|
|
8686
8686
|
|
|
8687
8687
|
/**
|
|
8688
8688
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8700,14 +8700,14 @@ export interface OpenItemRecord {
|
|
|
8700
8700
|
totalAmount: number;
|
|
8701
8701
|
|
|
8702
8702
|
/**
|
|
8703
|
-
*
|
|
8703
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8704
8704
|
*/
|
|
8705
|
-
|
|
8705
|
+
baseCurrencyCode: string;
|
|
8706
8706
|
|
|
8707
8707
|
/**
|
|
8708
|
-
*
|
|
8708
|
+
* id des records, der diesen storniert hat
|
|
8709
8709
|
*/
|
|
8710
|
-
|
|
8710
|
+
revertedByRecordId: number;
|
|
8711
8711
|
|
|
8712
8712
|
/**
|
|
8713
8713
|
* qualifier of open item
|
|
@@ -8857,14 +8857,14 @@ export interface PaymentMethod {
|
|
|
8857
8857
|
daysToAddForFollowup: number;
|
|
8858
8858
|
|
|
8859
8859
|
/**
|
|
8860
|
-
*
|
|
8860
|
+
* external Payment Id
|
|
8861
8861
|
*/
|
|
8862
|
-
|
|
8862
|
+
externalPaymentId: string;
|
|
8863
8863
|
|
|
8864
8864
|
/**
|
|
8865
|
-
*
|
|
8865
|
+
* Die Business Transaction
|
|
8866
8866
|
*/
|
|
8867
|
-
|
|
8867
|
+
businessTransaction: ApiObjectReference;
|
|
8868
8868
|
|
|
8869
8869
|
/**
|
|
8870
8870
|
* Unique identifier of the Object
|
|
@@ -9366,14 +9366,14 @@ export interface PicklistLine {
|
|
|
9366
9366
|
articleNumber: string;
|
|
9367
9367
|
|
|
9368
9368
|
/**
|
|
9369
|
-
*
|
|
9369
|
+
* Lagernummer
|
|
9370
9370
|
*/
|
|
9371
|
-
|
|
9371
|
+
storageNumber: string;
|
|
9372
9372
|
|
|
9373
9373
|
/**
|
|
9374
|
-
*
|
|
9374
|
+
* Art der Position
|
|
9375
9375
|
*/
|
|
9376
|
-
|
|
9376
|
+
lineType: PicklistLineType;
|
|
9377
9377
|
|
|
9378
9378
|
/**
|
|
9379
9379
|
* ID der Ziel-Dokumentposition
|
|
@@ -9698,14 +9698,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9698
9698
|
alternativeSelectionInVql: string;
|
|
9699
9699
|
|
|
9700
9700
|
/**
|
|
9701
|
-
*
|
|
9701
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9702
9702
|
*/
|
|
9703
|
-
|
|
9703
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9704
9704
|
|
|
9705
9705
|
/**
|
|
9706
|
-
*
|
|
9706
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9707
9707
|
*/
|
|
9708
|
-
|
|
9708
|
+
maxOrderCount: number;
|
|
9709
9709
|
|
|
9710
9710
|
/**
|
|
9711
9711
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9873,6 +9873,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9873
9873
|
*/
|
|
9874
9874
|
showShippingFormOnPickingFinish: boolean;
|
|
9875
9875
|
|
|
9876
|
+
/**
|
|
9877
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9878
|
+
*/
|
|
9879
|
+
allowPickingOfServiceArticles: boolean;
|
|
9880
|
+
|
|
9876
9881
|
/**
|
|
9877
9882
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9878
9883
|
*/
|
|
@@ -9883,11 +9888,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9883
9888
|
*/
|
|
9884
9889
|
allowFullConfirmation: boolean;
|
|
9885
9890
|
|
|
9886
|
-
/**
|
|
9887
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
9888
|
-
*/
|
|
9889
|
-
allowPickingOfServiceArticles: boolean;
|
|
9890
|
-
|
|
9891
9891
|
/**
|
|
9892
9892
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9893
9893
|
*/
|
|
@@ -9909,14 +9909,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9909
9909
|
printLabelOnCompleteOrder: boolean;
|
|
9910
9910
|
|
|
9911
9911
|
/**
|
|
9912
|
-
*
|
|
9912
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9913
9913
|
*/
|
|
9914
|
-
|
|
9914
|
+
printLabelAfterPicking: boolean;
|
|
9915
9915
|
|
|
9916
9916
|
/**
|
|
9917
|
-
*
|
|
9917
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9918
9918
|
*/
|
|
9919
|
-
|
|
9919
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9920
9920
|
|
|
9921
9921
|
/**
|
|
9922
9922
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -10008,14 +10008,14 @@ export interface PriceSelectionCriteria {
|
|
|
10008
10008
|
quantity: number;
|
|
10009
10009
|
|
|
10010
10010
|
/**
|
|
10011
|
-
* Liste von
|
|
10011
|
+
* Liste von Artikel-IDs
|
|
10012
10012
|
*/
|
|
10013
|
-
|
|
10013
|
+
articleIds: Array<number>;
|
|
10014
10014
|
|
|
10015
10015
|
/**
|
|
10016
|
-
* Liste von
|
|
10016
|
+
* Liste von Account-IDs
|
|
10017
10017
|
*/
|
|
10018
|
-
|
|
10018
|
+
accountIds: Array<number>;
|
|
10019
10019
|
|
|
10020
10020
|
/**
|
|
10021
10021
|
* ein qualifier
|
|
@@ -10217,14 +10217,14 @@ export interface ProductDiscount {
|
|
|
10217
10217
|
validFrom: ScriptingDate;
|
|
10218
10218
|
|
|
10219
10219
|
/**
|
|
10220
|
-
*
|
|
10220
|
+
* Warengruppe
|
|
10221
10221
|
*/
|
|
10222
|
-
|
|
10222
|
+
productGroupRef: ApiObjectReference;
|
|
10223
10223
|
|
|
10224
10224
|
/**
|
|
10225
|
-
*
|
|
10225
|
+
* Bestimmt die Art des Rabatts
|
|
10226
10226
|
*/
|
|
10227
|
-
|
|
10227
|
+
modifierType: PriceModifierType;
|
|
10228
10228
|
|
|
10229
10229
|
/**
|
|
10230
10230
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10501,14 +10501,14 @@ export interface ProductPrice {
|
|
|
10501
10501
|
specialOfferPrice: boolean;
|
|
10502
10502
|
|
|
10503
10503
|
/**
|
|
10504
|
-
*
|
|
10504
|
+
* Gültig bis
|
|
10505
10505
|
*/
|
|
10506
|
-
|
|
10506
|
+
validUntil: ScriptingDate;
|
|
10507
10507
|
|
|
10508
10508
|
/**
|
|
10509
|
-
*
|
|
10509
|
+
* Preisbasis
|
|
10510
10510
|
*/
|
|
10511
|
-
|
|
10511
|
+
priceBase: ArticlePriceBase;
|
|
10512
10512
|
|
|
10513
10513
|
/**
|
|
10514
10514
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
@@ -10611,14 +10611,14 @@ export const enum RegulationSet {
|
|
|
10611
10611
|
export interface RequestDocument {
|
|
10612
10612
|
|
|
10613
10613
|
/**
|
|
10614
|
-
*
|
|
10614
|
+
* Belegdatum
|
|
10615
10615
|
*/
|
|
10616
|
-
|
|
10616
|
+
documentDate: ScriptingDate;
|
|
10617
10617
|
|
|
10618
10618
|
/**
|
|
10619
|
-
*
|
|
10619
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10620
10620
|
*/
|
|
10621
|
-
|
|
10621
|
+
incomingGoodsStorageBinId: number;
|
|
10622
10622
|
|
|
10623
10623
|
/**
|
|
10624
10624
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10700,26 +10700,26 @@ export interface RequestDocument {
|
|
|
10700
10700
|
*/
|
|
10701
10701
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10702
10702
|
|
|
10703
|
-
/**
|
|
10704
|
-
* Die Vertragsdetails
|
|
10705
|
-
*/
|
|
10706
|
-
contractDetail: DocumentContractDetail;
|
|
10707
|
-
|
|
10708
10703
|
/**
|
|
10709
10704
|
* ID der Kasse (bei POS)
|
|
10710
10705
|
*/
|
|
10711
10706
|
posRegisterId: number;
|
|
10712
10707
|
|
|
10713
10708
|
/**
|
|
10714
|
-
*
|
|
10709
|
+
* Die Vertragsdetails
|
|
10715
10710
|
*/
|
|
10716
|
-
|
|
10711
|
+
contractDetail: DocumentContractDetail;
|
|
10717
10712
|
|
|
10718
10713
|
/**
|
|
10719
10714
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10720
10715
|
*/
|
|
10721
10716
|
supplierAccountId: number;
|
|
10722
10717
|
|
|
10718
|
+
/**
|
|
10719
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10720
|
+
*/
|
|
10721
|
+
paymentTermId: number;
|
|
10722
|
+
|
|
10723
10723
|
/**
|
|
10724
10724
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
10725
10725
|
*/
|
|
@@ -10834,14 +10834,14 @@ export interface RequestDocumentLine {
|
|
|
10834
10834
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10835
10835
|
|
|
10836
10836
|
/**
|
|
10837
|
-
*
|
|
10837
|
+
* Typ dieser Position
|
|
10838
10838
|
*/
|
|
10839
|
-
|
|
10839
|
+
lineType: DocumentLineType;
|
|
10840
10840
|
|
|
10841
10841
|
/**
|
|
10842
|
-
*
|
|
10842
|
+
* FiBu-Angaben
|
|
10843
10843
|
*/
|
|
10844
|
-
|
|
10844
|
+
financeBooking: DocumentFinanceBooking;
|
|
10845
10845
|
|
|
10846
10846
|
/**
|
|
10847
10847
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10854,14 +10854,14 @@ export interface RequestDocumentLine {
|
|
|
10854
10854
|
dropShippingPolicy: DropShippingPolicy;
|
|
10855
10855
|
|
|
10856
10856
|
/**
|
|
10857
|
-
*
|
|
10857
|
+
* (optional) Lager-ID
|
|
10858
10858
|
*/
|
|
10859
|
-
|
|
10859
|
+
storageId: number;
|
|
10860
10860
|
|
|
10861
10861
|
/**
|
|
10862
|
-
*
|
|
10862
|
+
* Positionsnummer der Artikel
|
|
10863
10863
|
*/
|
|
10864
|
-
|
|
10864
|
+
positionOfArticleLine: number;
|
|
10865
10865
|
|
|
10866
10866
|
/**
|
|
10867
10867
|
* Vertragsdetails zur Belegposition
|
|
@@ -10899,14 +10899,14 @@ export interface RequestDocumentLine {
|
|
|
10899
10899
|
custom: EavDocumentline;
|
|
10900
10900
|
|
|
10901
10901
|
/**
|
|
10902
|
-
*
|
|
10902
|
+
* (optional) ID des Artikels dieser Position
|
|
10903
10903
|
*/
|
|
10904
|
-
|
|
10904
|
+
articleId: number;
|
|
10905
10905
|
|
|
10906
10906
|
/**
|
|
10907
|
-
*
|
|
10907
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10908
10908
|
*/
|
|
10909
|
-
|
|
10909
|
+
settledOpenItemComment: string;
|
|
10910
10910
|
|
|
10911
10911
|
/**
|
|
10912
10912
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10948,6 +10948,11 @@ export interface RequestDocumentLine {
|
|
|
10948
10948
|
*/
|
|
10949
10949
|
name: string;
|
|
10950
10950
|
|
|
10951
|
+
/**
|
|
10952
|
+
* Buchungen zu dieser Belegposition
|
|
10953
|
+
*/
|
|
10954
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10955
|
+
|
|
10951
10956
|
/**
|
|
10952
10957
|
* Für interne Zwecke: Externe Artikelnummer
|
|
10953
10958
|
*/
|
|
@@ -10958,11 +10963,6 @@ export interface RequestDocumentLine {
|
|
|
10958
10963
|
*/
|
|
10959
10964
|
sourceLineId: number;
|
|
10960
10965
|
|
|
10961
|
-
/**
|
|
10962
|
-
* Buchungen zu dieser Belegposition
|
|
10963
|
-
*/
|
|
10964
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
10965
|
-
|
|
10966
10966
|
/**
|
|
10967
10967
|
* (optional) Preis des Artikels dieser Position
|
|
10968
10968
|
*/
|
|
@@ -11392,14 +11392,14 @@ export interface ScenarioDimensionValue {
|
|
|
11392
11392
|
export interface ScenarioFactDef {
|
|
11393
11393
|
|
|
11394
11394
|
/**
|
|
11395
|
-
* Attribut
|
|
11395
|
+
* Attribut Typ
|
|
11396
11396
|
*/
|
|
11397
|
-
|
|
11397
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11398
11398
|
|
|
11399
11399
|
/**
|
|
11400
|
-
* Attribut
|
|
11400
|
+
* Attribut Name
|
|
11401
11401
|
*/
|
|
11402
|
-
|
|
11402
|
+
factAttribute: string;
|
|
11403
11403
|
|
|
11404
11404
|
/**
|
|
11405
11405
|
* Unique identifier of the Object
|
|
@@ -11620,14 +11620,14 @@ export interface ShelfDocument {
|
|
|
11620
11620
|
tags: Array<TagDto>;
|
|
11621
11621
|
|
|
11622
11622
|
/**
|
|
11623
|
-
*
|
|
11623
|
+
* share informations
|
|
11624
11624
|
*/
|
|
11625
|
-
|
|
11625
|
+
shares: Array<ShelfShare>;
|
|
11626
11626
|
|
|
11627
11627
|
/**
|
|
11628
|
-
*
|
|
11628
|
+
* Mehrsprachige Bezeichnungen
|
|
11629
11629
|
*/
|
|
11630
|
-
|
|
11630
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11631
11631
|
|
|
11632
11632
|
/**
|
|
11633
11633
|
* Automatische Löschung ab
|
|
@@ -11812,14 +11812,14 @@ export interface ShelfFile {
|
|
|
11812
11812
|
subFiles: Array<SubFileInfo>;
|
|
11813
11813
|
|
|
11814
11814
|
/**
|
|
11815
|
-
*
|
|
11815
|
+
* fileSize
|
|
11816
11816
|
*/
|
|
11817
|
-
|
|
11817
|
+
fileSize: number;
|
|
11818
11818
|
|
|
11819
11819
|
/**
|
|
11820
|
-
*
|
|
11820
|
+
* revision number of this file
|
|
11821
11821
|
*/
|
|
11822
|
-
|
|
11822
|
+
revisionNumber: number;
|
|
11823
11823
|
|
|
11824
11824
|
/**
|
|
11825
11825
|
* file-extension of this entry
|
|
@@ -12120,14 +12120,14 @@ export interface StockMovementManualApi {
|
|
|
12120
12120
|
export interface StockTransferApi {
|
|
12121
12121
|
|
|
12122
12122
|
/**
|
|
12123
|
-
*
|
|
12123
|
+
* Ziel-Lager
|
|
12124
12124
|
*/
|
|
12125
|
-
|
|
12125
|
+
targetStorageId: number;
|
|
12126
12126
|
|
|
12127
12127
|
/**
|
|
12128
|
-
*
|
|
12128
|
+
* Seriennummer
|
|
12129
12129
|
*/
|
|
12130
|
-
|
|
12130
|
+
serialNumberId: number;
|
|
12131
12131
|
|
|
12132
12132
|
/**
|
|
12133
12133
|
* Bemerkung
|
|
@@ -12408,14 +12408,14 @@ export interface Supplier {
|
|
|
12408
12408
|
performanceCountryCode: string;
|
|
12409
12409
|
|
|
12410
12410
|
/**
|
|
12411
|
-
*
|
|
12411
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12412
12412
|
*/
|
|
12413
|
-
|
|
12413
|
+
defaultDeliveryTime: number;
|
|
12414
12414
|
|
|
12415
12415
|
/**
|
|
12416
|
-
*
|
|
12416
|
+
* reference to the payment method
|
|
12417
12417
|
*/
|
|
12418
|
-
|
|
12418
|
+
paymentMethodRef: ApiObjectReference;
|
|
12419
12419
|
|
|
12420
12420
|
/**
|
|
12421
12421
|
* Bestellsperre
|
|
@@ -12884,14 +12884,14 @@ export interface User {
|
|
|
12884
12884
|
version: number;
|
|
12885
12885
|
|
|
12886
12886
|
/**
|
|
12887
|
-
*
|
|
12887
|
+
* is the email verified
|
|
12888
12888
|
*/
|
|
12889
|
-
|
|
12889
|
+
emailVerified: boolean;
|
|
12890
12890
|
|
|
12891
12891
|
/**
|
|
12892
|
-
*
|
|
12892
|
+
* first-name
|
|
12893
12893
|
*/
|
|
12894
|
-
|
|
12894
|
+
firstName: string;
|
|
12895
12895
|
|
|
12896
12896
|
/**
|
|
12897
12897
|
* email-address
|