@vario-software/types 2026.29.2 → 2026.29.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +39 -39
- package/scripting/types.d.ts +310 -310
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
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -494,14 +494,14 @@ export interface AccountBankdetail {
|
|
|
494
494
|
version: number;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* city of the bank
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
bankCity: string;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
507
|
* origin type
|
|
@@ -1069,14 +1069,14 @@ export interface Article {
|
|
|
1069
1069
|
warrantyInMonths: number;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
|
-
*
|
|
1077
|
+
* weight and size w.o. packaging
|
|
1078
1078
|
*/
|
|
1079
|
-
|
|
1079
|
+
netMetric: Article$Metric;
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
1082
|
* unique product number
|
|
@@ -1229,14 +1229,14 @@ export interface Article {
|
|
|
1229
1229
|
freelyPickable: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
|
-
*
|
|
1232
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1233
1233
|
*/
|
|
1234
|
-
|
|
1234
|
+
taxLiabilityReversed: boolean;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
|
-
*
|
|
1237
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1238
1238
|
*/
|
|
1239
|
-
|
|
1239
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
1242
|
* Notiz
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
shippingLabelPrinting: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* alternative name of this product
|
|
@@ -1319,9 +1319,9 @@ export interface Article {
|
|
|
1319
1319
|
alternativeName: string;
|
|
1320
1320
|
|
|
1321
1321
|
/**
|
|
1322
|
-
*
|
|
1322
|
+
* Kontingentartikel
|
|
1323
1323
|
*/
|
|
1324
|
-
|
|
1324
|
+
contingentArticleRef: ApiObjectReference;
|
|
1325
1325
|
|
|
1326
1326
|
/**
|
|
1327
1327
|
* base capacity
|
|
@@ -1394,14 +1394,14 @@ export interface Article {
|
|
|
1394
1394
|
listed: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
|
-
*
|
|
1397
|
+
* provisionsberechtiger Artikel?
|
|
1398
1398
|
*/
|
|
1399
|
-
|
|
1399
|
+
commissionable: boolean;
|
|
1400
1400
|
|
|
1401
1401
|
/**
|
|
1402
|
-
*
|
|
1402
|
+
* Nur manuelle Produktion
|
|
1403
1403
|
*/
|
|
1404
|
-
|
|
1404
|
+
onlyManualFabrication: boolean;
|
|
1405
1405
|
|
|
1406
1406
|
/**
|
|
1407
1407
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1542,14 +1542,14 @@ export interface ArticleCustomer {
|
|
|
1542
1542
|
articleName: string;
|
|
1543
1543
|
|
|
1544
1544
|
/**
|
|
1545
|
-
*
|
|
1545
|
+
* Etikettdruck-Einstellungen
|
|
1546
1546
|
*/
|
|
1547
|
-
|
|
1547
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1548
1548
|
|
|
1549
1549
|
/**
|
|
1550
|
-
*
|
|
1550
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1551
1551
|
*/
|
|
1552
|
-
|
|
1552
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1553
1553
|
|
|
1554
1554
|
/**
|
|
1555
1555
|
* Kunden-Preise
|
|
@@ -1557,14 +1557,14 @@ export interface ArticleCustomer {
|
|
|
1557
1557
|
productPrices: Array<ProductPrice>;
|
|
1558
1558
|
|
|
1559
1559
|
/**
|
|
1560
|
-
*
|
|
1560
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1561
1561
|
*/
|
|
1562
|
-
|
|
1562
|
+
useDeviatingArticleDescription: boolean;
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
1565
|
-
*
|
|
1565
|
+
* Referenced Article
|
|
1566
1566
|
*/
|
|
1567
|
-
|
|
1567
|
+
articleId: number;
|
|
1568
1568
|
|
|
1569
1569
|
/**
|
|
1570
1570
|
* Aktiv?
|
|
@@ -1724,14 +1724,14 @@ export interface ArticleListing {
|
|
|
1724
1724
|
proposedLowestPriceGross: number;
|
|
1725
1725
|
|
|
1726
1726
|
/**
|
|
1727
|
-
*
|
|
1727
|
+
* der Sales Channel
|
|
1728
1728
|
*/
|
|
1729
|
-
|
|
1729
|
+
salesChannelRef: ApiObjectReference;
|
|
1730
1730
|
|
|
1731
1731
|
/**
|
|
1732
|
-
* der
|
|
1732
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1733
1733
|
*/
|
|
1734
|
-
|
|
1734
|
+
customLowestPriceGross: number;
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* soll der Artikel gelistet werden
|
|
@@ -1947,14 +1947,14 @@ export interface ArticleStorage {
|
|
|
1947
1947
|
reorderPoint: number;
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
|
-
*
|
|
1950
|
+
* Bestellte Menge
|
|
1951
1951
|
*/
|
|
1952
|
-
|
|
1952
|
+
orderedQuantity: number;
|
|
1953
1953
|
|
|
1954
1954
|
/**
|
|
1955
|
-
*
|
|
1955
|
+
* Aktuelle Menge in Kommissionierung
|
|
1956
1956
|
*/
|
|
1957
|
-
|
|
1957
|
+
quantityInPicking: number;
|
|
1958
1958
|
|
|
1959
1959
|
/**
|
|
1960
1960
|
* Nachschub auf
|
|
@@ -2040,14 +2040,14 @@ export interface ArticleSupplier {
|
|
|
2040
2040
|
accountDisplayName: string;
|
|
2041
2041
|
|
|
2042
2042
|
/**
|
|
2043
|
-
*
|
|
2043
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2044
2044
|
*/
|
|
2045
|
-
|
|
2045
|
+
useSupplierArticleDescription: boolean;
|
|
2046
2046
|
|
|
2047
2047
|
/**
|
|
2048
|
-
*
|
|
2048
|
+
* Lieferanten-Meldebestand
|
|
2049
2049
|
*/
|
|
2050
|
-
|
|
2050
|
+
supplierReportingStock: number;
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
2053
2053
|
* Lieferzeit in (Werk-)Tagen
|
|
@@ -2105,14 +2105,14 @@ export interface ArticleSupplier {
|
|
|
2105
2105
|
info: MetaInfo;
|
|
2106
2106
|
|
|
2107
2107
|
/**
|
|
2108
|
-
*
|
|
2108
|
+
* Verpackungseinheit
|
|
2109
2109
|
*/
|
|
2110
|
-
|
|
2110
|
+
packagingUnit: number;
|
|
2111
2111
|
|
|
2112
2112
|
/**
|
|
2113
|
-
*
|
|
2113
|
+
* Referenced Article name
|
|
2114
2114
|
*/
|
|
2115
|
-
|
|
2115
|
+
articleName: string;
|
|
2116
2116
|
|
|
2117
2117
|
/**
|
|
2118
2118
|
* Lieferanten-Preise
|
|
@@ -2512,14 +2512,14 @@ export interface CountryReference {
|
|
|
2512
2512
|
export interface CreateNewDocumentRequest {
|
|
2513
2513
|
|
|
2514
2514
|
/**
|
|
2515
|
-
*
|
|
2515
|
+
* Belegart
|
|
2516
2516
|
*/
|
|
2517
|
-
|
|
2517
|
+
documentTypeLabel: string;
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
* Belegart
|
|
2520
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Details zum Beleg
|
|
@@ -2867,14 +2867,14 @@ export interface CrmDeal {
|
|
|
2867
2867
|
info: MetaInfo;
|
|
2868
2868
|
|
|
2869
2869
|
/**
|
|
2870
|
-
*
|
|
2870
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2871
2871
|
*/
|
|
2872
|
-
|
|
2872
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2873
2873
|
|
|
2874
2874
|
/**
|
|
2875
|
-
*
|
|
2875
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2876
2876
|
*/
|
|
2877
|
-
|
|
2877
|
+
assignedUserRef: ApiObjectReference;
|
|
2878
2878
|
|
|
2879
2879
|
/**
|
|
2880
2880
|
* Chance (in Prozent)
|
|
@@ -3178,14 +3178,14 @@ export interface CrmProject {
|
|
|
3178
3178
|
billedTimes: number;
|
|
3179
3179
|
|
|
3180
3180
|
/**
|
|
3181
|
-
*
|
|
3181
|
+
* Geplanter Projektzeitraum (von)
|
|
3182
3182
|
*/
|
|
3183
|
-
|
|
3183
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3184
3184
|
|
|
3185
3185
|
/**
|
|
3186
|
-
*
|
|
3186
|
+
* Einkaufsbelege
|
|
3187
3187
|
*/
|
|
3188
|
-
|
|
3188
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3189
3189
|
|
|
3190
3190
|
/**
|
|
3191
3191
|
* Verkaufsbelege
|
|
@@ -3470,14 +3470,14 @@ export interface CrmSubType {
|
|
|
3470
3470
|
export interface CrmTask {
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Angebot
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
customerOfferRef: DocumentRef;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
|
-
*
|
|
3478
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3479
3479
|
*/
|
|
3480
|
-
|
|
3480
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
3483
|
* Liste von Erinnerungen
|
|
@@ -3675,14 +3675,14 @@ export interface CrmTask {
|
|
|
3675
3675
|
parentRefs: Array<CrmObjectRef>;
|
|
3676
3676
|
|
|
3677
3677
|
/**
|
|
3678
|
-
*
|
|
3678
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3679
3679
|
*/
|
|
3680
|
-
|
|
3680
|
+
externalRecordedTimes: number;
|
|
3681
3681
|
|
|
3682
3682
|
/**
|
|
3683
|
-
*
|
|
3683
|
+
* Beauftragte Zeit in Sekunden
|
|
3684
3684
|
*/
|
|
3685
|
-
|
|
3685
|
+
effortCommissioned: number;
|
|
3686
3686
|
|
|
3687
3687
|
/**
|
|
3688
3688
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3914,14 +3914,14 @@ export interface Customer {
|
|
|
3914
3914
|
stackProcessingPriority: number;
|
|
3915
3915
|
|
|
3916
3916
|
/**
|
|
3917
|
-
*
|
|
3917
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3918
3918
|
*/
|
|
3919
|
-
|
|
3919
|
+
collectiveInvoiceManually: boolean;
|
|
3920
3920
|
|
|
3921
3921
|
/**
|
|
3922
|
-
*
|
|
3922
|
+
* reference to product price group
|
|
3923
3923
|
*/
|
|
3924
|
-
|
|
3924
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3925
3925
|
|
|
3926
3926
|
/**
|
|
3927
3927
|
* Unique identifier of the Object
|
|
@@ -4098,14 +4098,14 @@ export const enum DealNotificationEventConfig {
|
|
|
4098
4098
|
export interface DeliveryMethod {
|
|
4099
4099
|
|
|
4100
4100
|
/**
|
|
4101
|
-
*
|
|
4101
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
4102
4102
|
*/
|
|
4103
|
-
|
|
4103
|
+
splitIntoNewDocument: boolean;
|
|
4104
4104
|
|
|
4105
4105
|
/**
|
|
4106
|
-
*
|
|
4106
|
+
* E-Mail an Versender übergeben
|
|
4107
4107
|
*/
|
|
4108
|
-
|
|
4108
|
+
forwardEmailToShipper: boolean;
|
|
4109
4109
|
|
|
4110
4110
|
/**
|
|
4111
4111
|
* Min. Gewicht pro Paket
|
|
@@ -4158,14 +4158,14 @@ export interface DeliveryMethod {
|
|
|
4158
4158
|
defaultSizeUnit: UnitTypeReference;
|
|
4159
4159
|
|
|
4160
4160
|
/**
|
|
4161
|
-
*
|
|
4161
|
+
* translations
|
|
4162
4162
|
*/
|
|
4163
|
-
|
|
4163
|
+
translations: Array<DocumentTypeTerm>;
|
|
4164
4164
|
|
|
4165
4165
|
/**
|
|
4166
|
-
*
|
|
4166
|
+
* Quelle für Paketgewicht
|
|
4167
4167
|
*/
|
|
4168
|
-
|
|
4168
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4169
4169
|
|
|
4170
4170
|
/**
|
|
4171
4171
|
* Gültige Ländercodes
|
|
@@ -4256,14 +4256,14 @@ export interface DeliveryTerm {
|
|
|
4256
4256
|
version: number;
|
|
4257
4257
|
|
|
4258
4258
|
/**
|
|
4259
|
-
*
|
|
4259
|
+
* translations
|
|
4260
4260
|
*/
|
|
4261
|
-
|
|
4261
|
+
translations: Array<DocumentTypeTerm>;
|
|
4262
4262
|
|
|
4263
4263
|
/**
|
|
4264
|
-
*
|
|
4264
|
+
* information, how the shipping charges should be calculated
|
|
4265
4265
|
*/
|
|
4266
|
-
|
|
4266
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4267
4267
|
|
|
4268
4268
|
/**
|
|
4269
4269
|
* Lieferarten
|
|
@@ -4306,14 +4306,14 @@ export interface DmsOutputStream {
|
|
|
4306
4306
|
export interface Document {
|
|
4307
4307
|
|
|
4308
4308
|
/**
|
|
4309
|
-
*
|
|
4309
|
+
* Referenz zum Rechnungskonto
|
|
4310
4310
|
*/
|
|
4311
|
-
|
|
4311
|
+
billingAccountRef: ApiObjectReference;
|
|
4312
4312
|
|
|
4313
4313
|
/**
|
|
4314
|
-
*
|
|
4314
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4315
4315
|
*/
|
|
4316
|
-
|
|
4316
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4317
4317
|
|
|
4318
4318
|
/**
|
|
4319
4319
|
* Externe Belegnummer
|
|
@@ -4394,9 +4394,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4394
4394
|
deliveryQuantityPackages: number;
|
|
4395
4395
|
|
|
4396
4396
|
/**
|
|
4397
|
-
*
|
|
4397
|
+
* Steuerpflichtig oder steuerfrei
|
|
4398
4398
|
*/
|
|
4399
|
-
|
|
4399
|
+
taxable: boolean;
|
|
4400
4400
|
|
|
4401
4401
|
/**
|
|
4402
4402
|
* Leitweg-ID
|
|
@@ -4404,9 +4404,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4404
4404
|
buyerReference: string;
|
|
4405
4405
|
|
|
4406
4406
|
/**
|
|
4407
|
-
*
|
|
4407
|
+
* Bestellnummer aus Vorbeleg
|
|
4408
4408
|
*/
|
|
4409
|
-
|
|
4409
|
+
referencedOrderNumber: string;
|
|
4410
4410
|
|
|
4411
4411
|
/**
|
|
4412
4412
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4459,14 +4459,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4459
4459
|
accountId: number;
|
|
4460
4460
|
|
|
4461
4461
|
/**
|
|
4462
|
-
* Länderkennzeichen
|
|
4462
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4463
4463
|
*/
|
|
4464
|
-
|
|
4464
|
+
sourceCountryCode: string;
|
|
4465
4465
|
|
|
4466
4466
|
/**
|
|
4467
|
-
* Länderkennzeichen
|
|
4467
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4468
4468
|
*/
|
|
4469
|
-
|
|
4469
|
+
performanceCountryCode: string;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
4472
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4591,14 +4591,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4591
4591
|
accountNumber: string;
|
|
4592
4592
|
|
|
4593
4593
|
/**
|
|
4594
|
-
*
|
|
4594
|
+
* Referenz auf Zahlungsbedingung
|
|
4595
4595
|
*/
|
|
4596
|
-
|
|
4596
|
+
paymentTermRef: PaymentTermRef;
|
|
4597
4597
|
|
|
4598
4598
|
/**
|
|
4599
|
-
*
|
|
4599
|
+
* Wird vom Workflow verarbeitet?
|
|
4600
4600
|
*/
|
|
4601
|
-
|
|
4601
|
+
processedByWorkflow: boolean;
|
|
4602
4602
|
|
|
4603
4603
|
/**
|
|
4604
4604
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4811,14 +4811,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4811
4811
|
customerNumber: string;
|
|
4812
4812
|
|
|
4813
4813
|
/**
|
|
4814
|
-
*
|
|
4814
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4815
4815
|
*/
|
|
4816
|
-
|
|
4816
|
+
taxIdentificationNumber: string;
|
|
4817
4817
|
|
|
4818
4818
|
/**
|
|
4819
|
-
*
|
|
4819
|
+
* Statusinstanz des Belegs
|
|
4820
4820
|
*/
|
|
4821
|
-
|
|
4821
|
+
documentState: DocumentTypeState;
|
|
4822
4822
|
|
|
4823
4823
|
/**
|
|
4824
4824
|
* Versandkostenpositionen
|
|
@@ -4863,14 +4863,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4863
4863
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4864
4864
|
|
|
4865
4865
|
/**
|
|
4866
|
-
*
|
|
4866
|
+
* Status der USt-ID-Prüfung
|
|
4867
4867
|
*/
|
|
4868
|
-
|
|
4868
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4869
4869
|
|
|
4870
4870
|
/**
|
|
4871
|
-
*
|
|
4871
|
+
* Rechnungsadresse
|
|
4872
4872
|
*/
|
|
4873
|
-
|
|
4873
|
+
billingAddress: DocumentAddress;
|
|
4874
4874
|
|
|
4875
4875
|
/**
|
|
4876
4876
|
* Bestellt durch Ansprechpartner
|
|
@@ -5036,14 +5036,14 @@ export interface DocumentAddress {
|
|
|
5036
5036
|
postOfficeBox: string;
|
|
5037
5037
|
|
|
5038
5038
|
/**
|
|
5039
|
-
*
|
|
5039
|
+
* Street
|
|
5040
5040
|
*/
|
|
5041
|
-
|
|
5041
|
+
street: string;
|
|
5042
5042
|
|
|
5043
5043
|
/**
|
|
5044
|
-
*
|
|
5044
|
+
* country code IsoAlpha3
|
|
5045
5045
|
*/
|
|
5046
|
-
|
|
5046
|
+
countryCode: string;
|
|
5047
5047
|
|
|
5048
5048
|
/**
|
|
5049
5049
|
* Unique identifier of the Object
|
|
@@ -5061,14 +5061,14 @@ export interface DocumentAddress {
|
|
|
5061
5061
|
info: MetaInfo;
|
|
5062
5062
|
|
|
5063
5063
|
/**
|
|
5064
|
-
*
|
|
5064
|
+
* Lieferart
|
|
5065
5065
|
*/
|
|
5066
|
-
|
|
5066
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5067
5067
|
|
|
5068
5068
|
/**
|
|
5069
|
-
*
|
|
5069
|
+
* GLN
|
|
5070
5070
|
*/
|
|
5071
|
-
|
|
5071
|
+
globalLocationNumber: string;
|
|
5072
5072
|
|
|
5073
5073
|
/**
|
|
5074
5074
|
* Postcode
|
|
@@ -5249,14 +5249,14 @@ export interface DocumentContractDetail {
|
|
|
5249
5249
|
runtimeToDate: ScriptingDate;
|
|
5250
5250
|
|
|
5251
5251
|
/**
|
|
5252
|
-
*
|
|
5252
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5253
5253
|
*/
|
|
5254
|
-
|
|
5254
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5255
5255
|
|
|
5256
5256
|
/**
|
|
5257
|
-
*
|
|
5257
|
+
* Nächste Fälligkeit
|
|
5258
5258
|
*/
|
|
5259
|
-
|
|
5259
|
+
nextDueDate: ScriptingDate;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
5262
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5457,14 +5457,14 @@ export interface DocumentLine {
|
|
|
5457
5457
|
number: string;
|
|
5458
5458
|
|
|
5459
5459
|
/**
|
|
5460
|
-
*
|
|
5460
|
+
* Referenz zur Kundenauftragszeile
|
|
5461
5461
|
*/
|
|
5462
|
-
|
|
5462
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5463
5463
|
|
|
5464
5464
|
/**
|
|
5465
|
-
*
|
|
5465
|
+
* Gesamtbruttogewicht
|
|
5466
5466
|
*/
|
|
5467
|
-
|
|
5467
|
+
totalGrossWeight: number;
|
|
5468
5468
|
|
|
5469
5469
|
/**
|
|
5470
5470
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5506,6 +5506,11 @@ export interface DocumentLine {
|
|
|
5506
5506
|
*/
|
|
5507
5507
|
id: number;
|
|
5508
5508
|
|
|
5509
|
+
/**
|
|
5510
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5511
|
+
*/
|
|
5512
|
+
positionOfArticleLine: number;
|
|
5513
|
+
|
|
5509
5514
|
/**
|
|
5510
5515
|
* Preis pro Einheit in Basiswährung
|
|
5511
5516
|
*/
|
|
@@ -5517,20 +5522,15 @@ export interface DocumentLine {
|
|
|
5517
5522
|
serialType: ArticleSerialType;
|
|
5518
5523
|
|
|
5519
5524
|
/**
|
|
5520
|
-
*
|
|
5525
|
+
* Steuerschema
|
|
5521
5526
|
*/
|
|
5522
|
-
|
|
5527
|
+
taxSchemaRef: ApiObjectReference;
|
|
5523
5528
|
|
|
5524
5529
|
/**
|
|
5525
5530
|
* Preiseinheit
|
|
5526
5531
|
*/
|
|
5527
5532
|
priceUnit: number;
|
|
5528
5533
|
|
|
5529
|
-
/**
|
|
5530
|
-
* Steuerschema
|
|
5531
|
-
*/
|
|
5532
|
-
taxSchemaRef: ApiObjectReference;
|
|
5533
|
-
|
|
5534
5534
|
/**
|
|
5535
5535
|
* Preisanpassungen - Position Basiswährung
|
|
5536
5536
|
*/
|
|
@@ -5622,14 +5622,14 @@ export interface DocumentLine {
|
|
|
5622
5622
|
settledOpenItemDiscountAmount: number;
|
|
5623
5623
|
|
|
5624
5624
|
/**
|
|
5625
|
-
*
|
|
5625
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5626
5626
|
*/
|
|
5627
|
-
|
|
5627
|
+
baseSalesValueNet: number;
|
|
5628
5628
|
|
|
5629
5629
|
/**
|
|
5630
|
-
*
|
|
5630
|
+
* Vertragsinformationen
|
|
5631
5631
|
*/
|
|
5632
|
-
|
|
5632
|
+
contractDetail: DocumentContractDetail;
|
|
5633
5633
|
|
|
5634
5634
|
/**
|
|
5635
5635
|
* Einheit Nettogewicht
|
|
@@ -5717,14 +5717,14 @@ export interface DocumentLine {
|
|
|
5717
5717
|
commissions: Array<DocumentLineCommission>;
|
|
5718
5718
|
|
|
5719
5719
|
/**
|
|
5720
|
-
*
|
|
5720
|
+
* Gesamtpreis Position in Basiswährung
|
|
5721
5721
|
*/
|
|
5722
|
-
|
|
5722
|
+
baseTotalLinePrice: number;
|
|
5723
5723
|
|
|
5724
5724
|
/**
|
|
5725
|
-
*
|
|
5725
|
+
* Positionstyp
|
|
5726
5726
|
*/
|
|
5727
|
-
|
|
5727
|
+
lineType: DocumentLineType;
|
|
5728
5728
|
|
|
5729
5729
|
/**
|
|
5730
5730
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5787,14 +5787,14 @@ export interface DocumentLine {
|
|
|
5787
5787
|
position: number;
|
|
5788
5788
|
|
|
5789
5789
|
/**
|
|
5790
|
-
*
|
|
5790
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5791
5791
|
*/
|
|
5792
|
-
|
|
5792
|
+
recalcLinePriceViaComponents: boolean;
|
|
5793
5793
|
|
|
5794
5794
|
/**
|
|
5795
|
-
*
|
|
5795
|
+
* Buchungen
|
|
5796
5796
|
*/
|
|
5797
|
-
|
|
5797
|
+
bookings: Array<DocumentLineBooking>;
|
|
5798
5798
|
|
|
5799
5799
|
/**
|
|
5800
5800
|
* unit gross Volume in cubic meters
|
|
@@ -5887,14 +5887,14 @@ export interface DocumentLine {
|
|
|
5887
5887
|
custom: EavDocumentline;
|
|
5888
5888
|
|
|
5889
5889
|
/**
|
|
5890
|
-
*
|
|
5890
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5891
5891
|
*/
|
|
5892
|
-
|
|
5892
|
+
settledOpenItemComment: string;
|
|
5893
5893
|
|
|
5894
5894
|
/**
|
|
5895
|
-
*
|
|
5895
|
+
* Artikel
|
|
5896
5896
|
*/
|
|
5897
|
-
|
|
5897
|
+
articleId: number;
|
|
5898
5898
|
|
|
5899
5899
|
/**
|
|
5900
5900
|
* Interne Preisänderungsinformationen
|
|
@@ -6394,14 +6394,14 @@ export interface DocumentLinePosDetail {
|
|
|
6394
6394
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6395
6395
|
|
|
6396
6396
|
/**
|
|
6397
|
-
*
|
|
6397
|
+
* Typ der Einlage/Ausgabe
|
|
6398
6398
|
*/
|
|
6399
|
-
|
|
6399
|
+
depositExpenseTypeId: number;
|
|
6400
6400
|
|
|
6401
6401
|
/**
|
|
6402
|
-
*
|
|
6402
|
+
* Status der externen Zahlung
|
|
6403
6403
|
*/
|
|
6404
|
-
|
|
6404
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6405
6405
|
|
|
6406
6406
|
/**
|
|
6407
6407
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6439,14 +6439,14 @@ export interface DocumentLinePosDetail {
|
|
|
6439
6439
|
balanceBeforeWithdrawal: number;
|
|
6440
6440
|
|
|
6441
6441
|
/**
|
|
6442
|
-
*
|
|
6442
|
+
* Typ der Position
|
|
6443
6443
|
*/
|
|
6444
|
-
|
|
6444
|
+
posLineType: PosLineType;
|
|
6445
6445
|
|
|
6446
6446
|
/**
|
|
6447
|
-
*
|
|
6447
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6448
6448
|
*/
|
|
6449
|
-
|
|
6449
|
+
externalPaymentId: string;
|
|
6450
6450
|
|
|
6451
6451
|
/**
|
|
6452
6452
|
* Unique identifier of the Object
|
|
@@ -6687,14 +6687,14 @@ export interface DocumentPosPayment {
|
|
|
6687
6687
|
balanceBeforeWithdrawal: number;
|
|
6688
6688
|
|
|
6689
6689
|
/**
|
|
6690
|
-
*
|
|
6690
|
+
* Typ der Position
|
|
6691
6691
|
*/
|
|
6692
|
-
|
|
6692
|
+
posLineType: PosLineType;
|
|
6693
6693
|
|
|
6694
6694
|
/**
|
|
6695
|
-
*
|
|
6695
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6696
6696
|
*/
|
|
6697
|
-
|
|
6697
|
+
externalPaymentId: string;
|
|
6698
6698
|
|
|
6699
6699
|
/**
|
|
6700
6700
|
* Unique identifier of the Object
|
|
@@ -6822,14 +6822,14 @@ export const enum DocumentRounding {
|
|
|
6822
6822
|
export interface DocumentShippingCost {
|
|
6823
6823
|
|
|
6824
6824
|
/**
|
|
6825
|
-
*
|
|
6825
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6826
6826
|
*/
|
|
6827
|
-
|
|
6827
|
+
manualCosts: boolean;
|
|
6828
6828
|
|
|
6829
6829
|
/**
|
|
6830
|
-
*
|
|
6830
|
+
* Die Versandkosten
|
|
6831
6831
|
*/
|
|
6832
|
-
|
|
6832
|
+
costs: number;
|
|
6833
6833
|
|
|
6834
6834
|
/**
|
|
6835
6835
|
* Keine Versandkosten (freier Versand)
|
|
@@ -7262,14 +7262,14 @@ export const enum DropShippingPolicy {
|
|
|
7262
7262
|
export interface DummySerialNumberStockTransferApi {
|
|
7263
7263
|
|
|
7264
7264
|
/**
|
|
7265
|
-
*
|
|
7265
|
+
* Seriennummer
|
|
7266
7266
|
*/
|
|
7267
|
-
|
|
7267
|
+
serialNumberId: number;
|
|
7268
7268
|
|
|
7269
7269
|
/**
|
|
7270
|
-
*
|
|
7270
|
+
* Ziel-Lager
|
|
7271
7271
|
*/
|
|
7272
|
-
|
|
7272
|
+
targetStorageId: number;
|
|
7273
7273
|
|
|
7274
7274
|
/**
|
|
7275
7275
|
* Bemerkung
|
|
@@ -7959,14 +7959,14 @@ export interface OpenItem {
|
|
|
7959
7959
|
paymentDueDate: ScriptingDate;
|
|
7960
7960
|
|
|
7961
7961
|
/**
|
|
7962
|
-
* Länderkennzeichen
|
|
7962
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7963
7963
|
*/
|
|
7964
|
-
|
|
7964
|
+
sourceCountryCode: string;
|
|
7965
7965
|
|
|
7966
7966
|
/**
|
|
7967
|
-
* Länderkennzeichen
|
|
7967
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7968
7968
|
*/
|
|
7969
|
-
|
|
7969
|
+
performanceCountryCode: string;
|
|
7970
7970
|
|
|
7971
7971
|
/**
|
|
7972
7972
|
* agreed Deposit payment date
|
|
@@ -8134,14 +8134,14 @@ export interface OpenItem {
|
|
|
8134
8134
|
taxRateRef: ApiObjectReference;
|
|
8135
8135
|
|
|
8136
8136
|
/**
|
|
8137
|
-
*
|
|
8137
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8138
8138
|
*/
|
|
8139
|
-
|
|
8139
|
+
baseCurrencyCode: string;
|
|
8140
8140
|
|
|
8141
8141
|
/**
|
|
8142
|
-
*
|
|
8142
|
+
* Anzahlungsrechnung
|
|
8143
8143
|
*/
|
|
8144
|
-
|
|
8144
|
+
depositInvoice: ApiObjectReference;
|
|
8145
8145
|
|
|
8146
8146
|
/**
|
|
8147
8147
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8583,14 +8583,14 @@ export interface PaymentMethod {
|
|
|
8583
8583
|
dunnable: boolean;
|
|
8584
8584
|
|
|
8585
8585
|
/**
|
|
8586
|
-
*
|
|
8586
|
+
* translations
|
|
8587
8587
|
*/
|
|
8588
|
-
|
|
8588
|
+
translations: Array<DocumentTypeTerm>;
|
|
8589
8589
|
|
|
8590
8590
|
/**
|
|
8591
|
-
*
|
|
8591
|
+
* Debitoren-OP abschließen?
|
|
8592
8592
|
*/
|
|
8593
|
-
|
|
8593
|
+
closeCustomerAccountType: boolean;
|
|
8594
8594
|
|
|
8595
8595
|
/**
|
|
8596
8596
|
* +Tage für Folgelastschrift
|
|
@@ -8689,14 +8689,14 @@ export interface PaymentTerm {
|
|
|
8689
8689
|
paymentDiscount2: number;
|
|
8690
8690
|
|
|
8691
8691
|
/**
|
|
8692
|
-
*
|
|
8692
|
+
* printDescription
|
|
8693
8693
|
*/
|
|
8694
|
-
|
|
8694
|
+
printDescription: string;
|
|
8695
8695
|
|
|
8696
8696
|
/**
|
|
8697
|
-
*
|
|
8697
|
+
* Percent for Discount 1
|
|
8698
8698
|
*/
|
|
8699
|
-
|
|
8699
|
+
paymentDiscount1: number;
|
|
8700
8700
|
|
|
8701
8701
|
/**
|
|
8702
8702
|
* for deposit: remaining term
|
|
@@ -9107,14 +9107,14 @@ export interface PicklistLine {
|
|
|
9107
9107
|
articleNumber: string;
|
|
9108
9108
|
|
|
9109
9109
|
/**
|
|
9110
|
-
*
|
|
9110
|
+
* Lagernummer
|
|
9111
9111
|
*/
|
|
9112
|
-
|
|
9112
|
+
storageNumber: string;
|
|
9113
9113
|
|
|
9114
9114
|
/**
|
|
9115
|
-
*
|
|
9115
|
+
* Art der Position
|
|
9116
9116
|
*/
|
|
9117
|
-
|
|
9117
|
+
lineType: PicklistLineType;
|
|
9118
9118
|
|
|
9119
9119
|
/**
|
|
9120
9120
|
* ID der Ziel-Dokumentposition
|
|
@@ -9253,14 +9253,14 @@ export interface PicklistLineComponent {
|
|
|
9253
9253
|
targetDocumentLineComponentId: number;
|
|
9254
9254
|
|
|
9255
9255
|
/**
|
|
9256
|
-
*
|
|
9256
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9257
9257
|
*/
|
|
9258
|
-
|
|
9258
|
+
quantityPerAssemblyGroup: number;
|
|
9259
9259
|
|
|
9260
9260
|
/**
|
|
9261
|
-
*
|
|
9261
|
+
* abweichende Artikelbezeichnung
|
|
9262
9262
|
*/
|
|
9263
|
-
|
|
9263
|
+
articleAlternativeName: string;
|
|
9264
9264
|
|
|
9265
9265
|
/**
|
|
9266
9266
|
* Verpackte Menge der Position
|
|
@@ -9439,9 +9439,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9439
9439
|
alternativeSelectionInVql: string;
|
|
9440
9440
|
|
|
9441
9441
|
/**
|
|
9442
|
-
*
|
|
9442
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9443
9443
|
*/
|
|
9444
|
-
|
|
9444
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9445
9445
|
|
|
9446
9446
|
/**
|
|
9447
9447
|
* Nur vollständig lieferbare Positionen
|
|
@@ -9449,9 +9449,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9449
9449
|
onlyFullDeliverableOrderLines: boolean;
|
|
9450
9450
|
|
|
9451
9451
|
/**
|
|
9452
|
-
*
|
|
9452
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9453
9453
|
*/
|
|
9454
|
-
|
|
9454
|
+
maxOrderCount: number;
|
|
9455
9455
|
|
|
9456
9456
|
/**
|
|
9457
9457
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9517,14 +9517,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9517
9517
|
printPicklist: boolean;
|
|
9518
9518
|
|
|
9519
9519
|
/**
|
|
9520
|
-
*
|
|
9520
|
+
* Die zu verwendende Pickwagengruppe
|
|
9521
9521
|
*/
|
|
9522
|
-
|
|
9522
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9523
9523
|
|
|
9524
9524
|
/**
|
|
9525
|
-
*
|
|
9525
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9526
9526
|
*/
|
|
9527
|
-
|
|
9527
|
+
maxPicklistLineCount: number;
|
|
9528
9528
|
|
|
9529
9529
|
/**
|
|
9530
9530
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9620,14 +9620,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9620
9620
|
useDigitalPicklist: boolean;
|
|
9621
9621
|
|
|
9622
9622
|
/**
|
|
9623
|
-
*
|
|
9623
|
+
* Sammelbestätigung erlauben
|
|
9624
9624
|
*/
|
|
9625
|
-
|
|
9625
|
+
allowFullConfirmation: boolean;
|
|
9626
9626
|
|
|
9627
9627
|
/**
|
|
9628
|
-
*
|
|
9628
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9629
9629
|
*/
|
|
9630
|
-
|
|
9630
|
+
printLabelOnScan: boolean;
|
|
9631
9631
|
|
|
9632
9632
|
/**
|
|
9633
9633
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9645,14 +9645,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9645
9645
|
printLabelOnCompleteOrder: boolean;
|
|
9646
9646
|
|
|
9647
9647
|
/**
|
|
9648
|
-
*
|
|
9648
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9649
9649
|
*/
|
|
9650
|
-
|
|
9650
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9651
9651
|
|
|
9652
9652
|
/**
|
|
9653
|
-
*
|
|
9653
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9654
9654
|
*/
|
|
9655
|
-
|
|
9655
|
+
printLabelAfterPicking: boolean;
|
|
9656
9656
|
|
|
9657
9657
|
/**
|
|
9658
9658
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -9744,14 +9744,14 @@ export interface PriceSelectionCriteria {
|
|
|
9744
9744
|
quantity: number;
|
|
9745
9745
|
|
|
9746
9746
|
/**
|
|
9747
|
-
* Liste von
|
|
9747
|
+
* Liste von Artikel-IDs
|
|
9748
9748
|
*/
|
|
9749
|
-
|
|
9749
|
+
articleIds: Array<number>;
|
|
9750
9750
|
|
|
9751
9751
|
/**
|
|
9752
|
-
* Liste von
|
|
9752
|
+
* Liste von Account-IDs
|
|
9753
9753
|
*/
|
|
9754
|
-
|
|
9754
|
+
accountIds: Array<number>;
|
|
9755
9755
|
|
|
9756
9756
|
/**
|
|
9757
9757
|
* ein qualifier
|
|
@@ -9918,14 +9918,14 @@ export interface ProductArticleRef {
|
|
|
9918
9918
|
export interface ProductDiscount {
|
|
9919
9919
|
|
|
9920
9920
|
/**
|
|
9921
|
-
*
|
|
9921
|
+
* Kundengruppe
|
|
9922
9922
|
*/
|
|
9923
|
-
|
|
9923
|
+
customerGroupRef: ApiObjectReference;
|
|
9924
9924
|
|
|
9925
9925
|
/**
|
|
9926
|
-
*
|
|
9926
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9927
9927
|
*/
|
|
9928
|
-
|
|
9928
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9929
9929
|
|
|
9930
9930
|
/**
|
|
9931
9931
|
* Lieferantengruppe
|
|
@@ -9973,14 +9973,14 @@ export interface ProductDiscount {
|
|
|
9973
9973
|
currencyRef: CurrencyReference;
|
|
9974
9974
|
|
|
9975
9975
|
/**
|
|
9976
|
-
*
|
|
9976
|
+
* Wert des Rabatts
|
|
9977
9977
|
*/
|
|
9978
|
-
|
|
9978
|
+
modifierValue: number;
|
|
9979
9979
|
|
|
9980
9980
|
/**
|
|
9981
|
-
*
|
|
9981
|
+
* Preisgruppe
|
|
9982
9982
|
*/
|
|
9983
|
-
|
|
9983
|
+
priceGroupRef: ApiObjectReference;
|
|
9984
9984
|
|
|
9985
9985
|
/**
|
|
9986
9986
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -10127,14 +10127,14 @@ export interface ProductMainGroup {
|
|
|
10127
10127
|
export interface ProductPrice {
|
|
10128
10128
|
|
|
10129
10129
|
/**
|
|
10130
|
-
*
|
|
10130
|
+
* Kundengruppe
|
|
10131
10131
|
*/
|
|
10132
|
-
|
|
10132
|
+
customerGroupRef: ApiObjectReference;
|
|
10133
10133
|
|
|
10134
10134
|
/**
|
|
10135
|
-
*
|
|
10135
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10136
10136
|
*/
|
|
10137
|
-
|
|
10137
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10138
10138
|
|
|
10139
10139
|
/**
|
|
10140
10140
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10417,14 +10417,14 @@ export interface RequestDocument {
|
|
|
10417
10417
|
lines: Array<RequestDocumentLine>;
|
|
10418
10418
|
|
|
10419
10419
|
/**
|
|
10420
|
-
*
|
|
10420
|
+
* Die Vertragsdetails
|
|
10421
10421
|
*/
|
|
10422
|
-
|
|
10422
|
+
contractDetail: DocumentContractDetail;
|
|
10423
10423
|
|
|
10424
10424
|
/**
|
|
10425
|
-
*
|
|
10425
|
+
* ID der Kasse (bei POS)
|
|
10426
10426
|
*/
|
|
10427
|
-
|
|
10427
|
+
posRegisterId: number;
|
|
10428
10428
|
|
|
10429
10429
|
/**
|
|
10430
10430
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10545,14 +10545,14 @@ export interface RequestDocumentLine {
|
|
|
10545
10545
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10546
10546
|
|
|
10547
10547
|
/**
|
|
10548
|
-
*
|
|
10548
|
+
* FiBu-Angaben
|
|
10549
10549
|
*/
|
|
10550
|
-
|
|
10550
|
+
financeBooking: DocumentFinanceBooking;
|
|
10551
10551
|
|
|
10552
10552
|
/**
|
|
10553
|
-
*
|
|
10553
|
+
* Typ dieser Position
|
|
10554
10554
|
*/
|
|
10555
|
-
|
|
10555
|
+
lineType: DocumentLineType;
|
|
10556
10556
|
|
|
10557
10557
|
/**
|
|
10558
10558
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10565,14 +10565,14 @@ export interface RequestDocumentLine {
|
|
|
10565
10565
|
dropShippingPolicy: DropShippingPolicy;
|
|
10566
10566
|
|
|
10567
10567
|
/**
|
|
10568
|
-
*
|
|
10568
|
+
* Positionsnummer der Artikel
|
|
10569
10569
|
*/
|
|
10570
|
-
|
|
10570
|
+
positionOfArticleLine: number;
|
|
10571
10571
|
|
|
10572
10572
|
/**
|
|
10573
|
-
*
|
|
10573
|
+
* (optional) Lager-ID
|
|
10574
10574
|
*/
|
|
10575
|
-
|
|
10575
|
+
storageId: number;
|
|
10576
10576
|
|
|
10577
10577
|
/**
|
|
10578
10578
|
* Vertragsdetails zur Belegposition
|
|
@@ -10610,14 +10610,14 @@ export interface RequestDocumentLine {
|
|
|
10610
10610
|
custom: EavDocumentline;
|
|
10611
10611
|
|
|
10612
10612
|
/**
|
|
10613
|
-
*
|
|
10613
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10614
10614
|
*/
|
|
10615
|
-
|
|
10615
|
+
settledOpenItemComment: string;
|
|
10616
10616
|
|
|
10617
10617
|
/**
|
|
10618
|
-
*
|
|
10618
|
+
* (optional) ID des Artikels dieser Position
|
|
10619
10619
|
*/
|
|
10620
|
-
|
|
10620
|
+
articleId: number;
|
|
10621
10621
|
|
|
10622
10622
|
/**
|
|
10623
10623
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -10660,9 +10660,9 @@ export interface RequestDocumentLine {
|
|
|
10660
10660
|
name: string;
|
|
10661
10661
|
|
|
10662
10662
|
/**
|
|
10663
|
-
*
|
|
10663
|
+
* ID der Quell-Belegposition
|
|
10664
10664
|
*/
|
|
10665
|
-
|
|
10665
|
+
sourceLineId: number;
|
|
10666
10666
|
|
|
10667
10667
|
/**
|
|
10668
10668
|
* Für interne Zwecke: Externe Artikelnummer
|
|
@@ -10670,19 +10670,19 @@ export interface RequestDocumentLine {
|
|
|
10670
10670
|
externalArticleNumber: string;
|
|
10671
10671
|
|
|
10672
10672
|
/**
|
|
10673
|
-
*
|
|
10673
|
+
* Buchungen zu dieser Belegposition
|
|
10674
10674
|
*/
|
|
10675
|
-
|
|
10675
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10676
10676
|
|
|
10677
10677
|
/**
|
|
10678
|
-
*
|
|
10678
|
+
* (optional) Preis des Artikels dieser Position
|
|
10679
10679
|
*/
|
|
10680
|
-
|
|
10680
|
+
productPrice: number;
|
|
10681
10681
|
|
|
10682
10682
|
/**
|
|
10683
|
-
*
|
|
10683
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10684
10684
|
*/
|
|
10685
|
-
|
|
10685
|
+
doLabelPrint: boolean;
|
|
10686
10686
|
}
|
|
10687
10687
|
|
|
10688
10688
|
export interface RequestDocumentLineBooking {
|
|
@@ -10811,14 +10811,14 @@ export interface RequestDocumentText {
|
|
|
10811
10811
|
export interface RevenueCalculation {
|
|
10812
10812
|
|
|
10813
10813
|
/**
|
|
10814
|
-
*
|
|
10814
|
+
* Netto Umsatz
|
|
10815
10815
|
*/
|
|
10816
|
-
|
|
10816
|
+
salesValue: number;
|
|
10817
10817
|
|
|
10818
10818
|
/**
|
|
10819
|
-
*
|
|
10819
|
+
* Deckungsbeitrag (absolut)
|
|
10820
10820
|
*/
|
|
10821
|
-
|
|
10821
|
+
revenue: number;
|
|
10822
10822
|
|
|
10823
10823
|
/**
|
|
10824
10824
|
* Einkaufspreis
|
|
@@ -10839,14 +10839,14 @@ export interface SalesAgent {
|
|
|
10839
10839
|
note: string;
|
|
10840
10840
|
|
|
10841
10841
|
/**
|
|
10842
|
-
*
|
|
10842
|
+
* reference to the delivery method
|
|
10843
10843
|
*/
|
|
10844
|
-
|
|
10844
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10845
10845
|
|
|
10846
10846
|
/**
|
|
10847
|
-
*
|
|
10847
|
+
* is sales agent taxable
|
|
10848
10848
|
*/
|
|
10849
|
-
|
|
10849
|
+
taxable: boolean;
|
|
10850
10850
|
|
|
10851
10851
|
/**
|
|
10852
10852
|
* Freifelder
|
|
@@ -11095,14 +11095,14 @@ export interface ScenarioDimensionValue {
|
|
|
11095
11095
|
export interface ScenarioFactDef {
|
|
11096
11096
|
|
|
11097
11097
|
/**
|
|
11098
|
-
* Attribut
|
|
11098
|
+
* Attribut Name
|
|
11099
11099
|
*/
|
|
11100
|
-
|
|
11100
|
+
factAttribute: string;
|
|
11101
11101
|
|
|
11102
11102
|
/**
|
|
11103
|
-
* Attribut
|
|
11103
|
+
* Attribut Typ
|
|
11104
11104
|
*/
|
|
11105
|
-
|
|
11105
|
+
attributeType: ScenarioFactDef$FactType;
|
|
11106
11106
|
|
|
11107
11107
|
/**
|
|
11108
11108
|
* Unique identifier of the Object
|
|
@@ -11323,14 +11323,14 @@ export interface ShelfDocument {
|
|
|
11323
11323
|
tags: Array<TagDto>;
|
|
11324
11324
|
|
|
11325
11325
|
/**
|
|
11326
|
-
*
|
|
11326
|
+
* share informations
|
|
11327
11327
|
*/
|
|
11328
|
-
|
|
11328
|
+
shares: Array<ShelfShare>;
|
|
11329
11329
|
|
|
11330
11330
|
/**
|
|
11331
|
-
*
|
|
11331
|
+
* Mehrsprachige Bezeichnungen
|
|
11332
11332
|
*/
|
|
11333
|
-
|
|
11333
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11334
11334
|
|
|
11335
11335
|
/**
|
|
11336
11336
|
* Automatische Löschung ab
|
|
@@ -11462,14 +11462,14 @@ export interface ShelfDocumentType {
|
|
|
11462
11462
|
active: boolean;
|
|
11463
11463
|
|
|
11464
11464
|
/**
|
|
11465
|
-
*
|
|
11465
|
+
* label of type
|
|
11466
11466
|
*/
|
|
11467
|
-
|
|
11467
|
+
label: string;
|
|
11468
11468
|
|
|
11469
11469
|
/**
|
|
11470
|
-
*
|
|
11470
|
+
* access level or reading
|
|
11471
11471
|
*/
|
|
11472
|
-
|
|
11472
|
+
accessLevelRead: number;
|
|
11473
11473
|
|
|
11474
11474
|
/**
|
|
11475
11475
|
* storage rule for revisions
|
|
@@ -11515,14 +11515,14 @@ export interface ShelfFile {
|
|
|
11515
11515
|
subFiles: Array<SubFileInfo>;
|
|
11516
11516
|
|
|
11517
11517
|
/**
|
|
11518
|
-
*
|
|
11518
|
+
* fileSize
|
|
11519
11519
|
*/
|
|
11520
|
-
|
|
11520
|
+
fileSize: number;
|
|
11521
11521
|
|
|
11522
11522
|
/**
|
|
11523
|
-
*
|
|
11523
|
+
* revision number of this file
|
|
11524
11524
|
*/
|
|
11525
|
-
|
|
11525
|
+
revisionNumber: number;
|
|
11526
11526
|
|
|
11527
11527
|
/**
|
|
11528
11528
|
* file-extension of this entry
|
|
@@ -11550,14 +11550,14 @@ export interface ShelfFile {
|
|
|
11550
11550
|
version: number;
|
|
11551
11551
|
|
|
11552
11552
|
/**
|
|
11553
|
-
*
|
|
11553
|
+
* current reference of this file in our storage
|
|
11554
11554
|
*/
|
|
11555
|
-
|
|
11555
|
+
storageHandle: string;
|
|
11556
11556
|
|
|
11557
11557
|
/**
|
|
11558
|
-
*
|
|
11558
|
+
* meta data
|
|
11559
11559
|
*/
|
|
11560
|
-
|
|
11560
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11561
11561
|
|
|
11562
11562
|
/**
|
|
11563
11563
|
* MetaInformations for this Object
|
|
@@ -11604,14 +11604,14 @@ export interface ShelfShare {
|
|
|
11604
11604
|
publishState: ShelfSharePublishState;
|
|
11605
11605
|
|
|
11606
11606
|
/**
|
|
11607
|
-
*
|
|
11607
|
+
* Freifelder
|
|
11608
11608
|
*/
|
|
11609
|
-
|
|
11609
|
+
custom: EavShelfshare;
|
|
11610
11610
|
|
|
11611
11611
|
/**
|
|
11612
|
-
*
|
|
11612
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11613
11613
|
*/
|
|
11614
|
-
|
|
11614
|
+
publicUrlDurationInMinutes: number;
|
|
11615
11615
|
|
|
11616
11616
|
/**
|
|
11617
11617
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11823,14 +11823,14 @@ export interface StockMovementManualApi {
|
|
|
11823
11823
|
export interface StockTransferApi {
|
|
11824
11824
|
|
|
11825
11825
|
/**
|
|
11826
|
-
*
|
|
11826
|
+
* Seriennummer
|
|
11827
11827
|
*/
|
|
11828
|
-
|
|
11828
|
+
serialNumberId: number;
|
|
11829
11829
|
|
|
11830
11830
|
/**
|
|
11831
|
-
*
|
|
11831
|
+
* Ziel-Lager
|
|
11832
11832
|
*/
|
|
11833
|
-
|
|
11833
|
+
targetStorageId: number;
|
|
11834
11834
|
|
|
11835
11835
|
/**
|
|
11836
11836
|
* Bemerkung
|
|
@@ -12046,14 +12046,14 @@ export interface Supplier {
|
|
|
12046
12046
|
info: MetaInfo;
|
|
12047
12047
|
|
|
12048
12048
|
/**
|
|
12049
|
-
*
|
|
12049
|
+
* reference to the delivery method
|
|
12050
12050
|
*/
|
|
12051
|
-
|
|
12051
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12052
12052
|
|
|
12053
12053
|
/**
|
|
12054
|
-
*
|
|
12054
|
+
* Lieferantengruppe
|
|
12055
12055
|
*/
|
|
12056
|
-
|
|
12056
|
+
supplierGroupRef: ApiObjectReference;
|
|
12057
12057
|
|
|
12058
12058
|
/**
|
|
12059
12059
|
* tax able or tax free
|
|
@@ -12139,14 +12139,14 @@ export interface TagDto {
|
|
|
12139
12139
|
editColor: string;
|
|
12140
12140
|
|
|
12141
12141
|
/**
|
|
12142
|
-
* Farbe
|
|
12142
|
+
* Farbe in Such-GUI
|
|
12143
12143
|
*/
|
|
12144
|
-
|
|
12144
|
+
searchColor: string;
|
|
12145
12145
|
|
|
12146
12146
|
/**
|
|
12147
|
-
* Farbe
|
|
12147
|
+
* Farbe für die Anzeige des Tags
|
|
12148
12148
|
*/
|
|
12149
|
-
|
|
12149
|
+
color: string;
|
|
12150
12150
|
|
|
12151
12151
|
/**
|
|
12152
12152
|
* Beschriftung des Tags
|
|
@@ -12698,14 +12698,14 @@ export interface VariantValue {
|
|
|
12698
12698
|
version: number;
|
|
12699
12699
|
|
|
12700
12700
|
/**
|
|
12701
|
-
*
|
|
12701
|
+
* Mehrsprachige Bezeichnungen
|
|
12702
12702
|
*/
|
|
12703
|
-
|
|
12703
|
+
labels: Array<VariantDescription>;
|
|
12704
12704
|
|
|
12705
12705
|
/**
|
|
12706
|
-
*
|
|
12706
|
+
* Variantenattribut
|
|
12707
12707
|
*/
|
|
12708
|
-
|
|
12708
|
+
attributeRef: ApiObjectReference;
|
|
12709
12709
|
|
|
12710
12710
|
/**
|
|
12711
12711
|
* MetaInformations for this Object
|