@vario-software/types 2026.28.1 → 2026.28.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 +40 -1
- package/scripting/services.d.ts +37 -37
- package/scripting/types.d.ts +250 -250
package/scripting/types.d.ts
CHANGED
|
@@ -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
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -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
|
|
@@ -1028,6 +1028,11 @@ export interface Article {
|
|
|
1028
1028
|
*/
|
|
1029
1029
|
baseCapacityUnit: UnitTypeReference;
|
|
1030
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Durchschnittl. EKP (Startwert)
|
|
1033
|
+
*/
|
|
1034
|
+
initialAvgPurchasePrice: number;
|
|
1035
|
+
|
|
1031
1036
|
/**
|
|
1032
1037
|
* is this product sellable without any quantity at the stock
|
|
1033
1038
|
*/
|
|
@@ -1038,11 +1043,6 @@ export interface Article {
|
|
|
1038
1043
|
*/
|
|
1039
1044
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1040
1045
|
|
|
1041
|
-
/**
|
|
1042
|
-
* Durchschnittl. EKP (Startwert)
|
|
1043
|
-
*/
|
|
1044
|
-
initialAvgPurchasePrice: number;
|
|
1045
|
-
|
|
1046
1046
|
/**
|
|
1047
1047
|
* gross Volume in cubic meters
|
|
1048
1048
|
*/
|
|
@@ -1144,14 +1144,14 @@ export interface Article {
|
|
|
1144
1144
|
deliveryMethodRef: ApiObjectReference;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
|
-
*
|
|
1147
|
+
* Soll-Handelsspanne
|
|
1148
1148
|
*/
|
|
1149
|
-
|
|
1149
|
+
targetTradingMargin: number;
|
|
1150
1150
|
|
|
1151
1151
|
/**
|
|
1152
|
-
*
|
|
1152
|
+
* Produktion
|
|
1153
1153
|
*/
|
|
1154
|
-
|
|
1154
|
+
fabrication: boolean;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
1157
|
* active
|
|
@@ -1209,14 +1209,14 @@ export interface Article {
|
|
|
1209
1209
|
listingStateChangeTime: ScriptingDateTime;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
|
-
*
|
|
1212
|
+
* Arbeitseinheit in Minuten
|
|
1213
1213
|
*/
|
|
1214
|
-
|
|
1214
|
+
workUnitInMinutes: number;
|
|
1215
1215
|
|
|
1216
1216
|
/**
|
|
1217
|
-
*
|
|
1217
|
+
* Country code
|
|
1218
1218
|
*/
|
|
1219
|
-
|
|
1219
|
+
countryOfOriginRef: CountryReference;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* description custom data
|
|
@@ -1279,14 +1279,14 @@ export interface Article {
|
|
|
1279
1279
|
capacity: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
|
-
*
|
|
1282
|
+
* gross sales prices
|
|
1283
1283
|
*/
|
|
1284
|
-
|
|
1284
|
+
grossSalesPrice: number;
|
|
1285
1285
|
|
|
1286
1286
|
/**
|
|
1287
|
-
*
|
|
1287
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1288
1288
|
*/
|
|
1289
|
-
|
|
1289
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
1292
|
* Letzter EKP (Startwert)
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
productRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* Kontingentartikel
|
|
@@ -1319,9 +1319,9 @@ export interface Article {
|
|
|
1319
1319
|
contingentArticleRef: ApiObjectReference;
|
|
1320
1320
|
|
|
1321
1321
|
/**
|
|
1322
|
-
*
|
|
1322
|
+
* alternative name of this product
|
|
1323
1323
|
*/
|
|
1324
|
-
|
|
1324
|
+
alternativeName: string;
|
|
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
|
|
@@ -1602,14 +1602,14 @@ export interface ArticleCustomer {
|
|
|
1602
1602
|
defaultGrossPrice: number;
|
|
1603
1603
|
|
|
1604
1604
|
/**
|
|
1605
|
-
*
|
|
1605
|
+
* Abweichende Produktnummer
|
|
1606
1606
|
*/
|
|
1607
|
-
|
|
1607
|
+
deviatingArticleNumber: string;
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
|
1610
|
-
*
|
|
1610
|
+
* Art der Preisermittlung
|
|
1611
1611
|
*/
|
|
1612
|
-
|
|
1612
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1613
1613
|
|
|
1614
1614
|
/**
|
|
1615
1615
|
* Artikelnummer
|
|
@@ -1932,14 +1932,14 @@ export const enum ArticleSerialType {
|
|
|
1932
1932
|
export interface ArticleStorage {
|
|
1933
1933
|
|
|
1934
1934
|
/**
|
|
1935
|
-
*
|
|
1935
|
+
* Nachschub ab
|
|
1936
1936
|
*/
|
|
1937
|
-
|
|
1937
|
+
replenishmentFrom: number;
|
|
1938
1938
|
|
|
1939
1939
|
/**
|
|
1940
|
-
*
|
|
1940
|
+
* Bestand im Lager
|
|
1941
1941
|
*/
|
|
1942
|
-
|
|
1942
|
+
quantityInStock: number;
|
|
1943
1943
|
|
|
1944
1944
|
/**
|
|
1945
1945
|
* Meldebestand
|
|
@@ -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
|
|
@@ -2050,14 +2050,14 @@ export interface ArticleSupplier {
|
|
|
2050
2050
|
supplierReportingStock: number;
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
2053
|
-
*
|
|
2053
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2054
2054
|
*/
|
|
2055
|
-
|
|
2055
|
+
deliveryTime: number;
|
|
2056
2056
|
|
|
2057
2057
|
/**
|
|
2058
|
-
*
|
|
2058
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2059
2059
|
*/
|
|
2060
|
-
|
|
2060
|
+
useSupplierArticleIdentifier: boolean;
|
|
2061
2061
|
|
|
2062
2062
|
/**
|
|
2063
2063
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -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
|
|
@@ -2585,14 +2585,14 @@ export interface CrmActivity {
|
|
|
2585
2585
|
info: MetaInfo;
|
|
2586
2586
|
|
|
2587
2587
|
/**
|
|
2588
|
-
*
|
|
2588
|
+
* Aktivität intern abgerechnet?
|
|
2589
2589
|
*/
|
|
2590
|
-
|
|
2590
|
+
internalBilled: boolean;
|
|
2591
2591
|
|
|
2592
2592
|
/**
|
|
2593
|
-
*
|
|
2593
|
+
* geplante Dauer
|
|
2594
2594
|
*/
|
|
2595
|
-
|
|
2595
|
+
plannedDurationInSeconds: number;
|
|
2596
2596
|
|
|
2597
2597
|
/**
|
|
2598
2598
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2744,14 +2744,14 @@ export interface CrmActivityType {
|
|
|
2744
2744
|
export interface CrmChecklistItem {
|
|
2745
2745
|
|
|
2746
2746
|
/**
|
|
2747
|
-
*
|
|
2747
|
+
* Text des Checklisten-Elements
|
|
2748
2748
|
*/
|
|
2749
|
-
|
|
2749
|
+
memo: string;
|
|
2750
2750
|
|
|
2751
2751
|
/**
|
|
2752
|
-
*
|
|
2752
|
+
* Ist das Element "angehakt"?
|
|
2753
2753
|
*/
|
|
2754
|
-
|
|
2754
|
+
checked: boolean;
|
|
2755
2755
|
|
|
2756
2756
|
/**
|
|
2757
2757
|
* Unique identifier of the Object
|
|
@@ -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)
|
|
@@ -3153,14 +3153,14 @@ export interface CrmProject {
|
|
|
3153
3153
|
priorityRef: ApiObjectReference;
|
|
3154
3154
|
|
|
3155
3155
|
/**
|
|
3156
|
-
*
|
|
3156
|
+
* Projektleiter vom Auftragnehmer
|
|
3157
3157
|
*/
|
|
3158
|
-
|
|
3158
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3159
3159
|
|
|
3160
3160
|
/**
|
|
3161
|
-
*
|
|
3161
|
+
* Phase
|
|
3162
3162
|
*/
|
|
3163
|
-
|
|
3163
|
+
phaseRef: ApiObjectReference;
|
|
3164
3164
|
|
|
3165
3165
|
/**
|
|
3166
3166
|
* Aufgaben-Nummer
|
|
@@ -3218,14 +3218,14 @@ export interface CrmProject {
|
|
|
3218
3218
|
info: MetaInfo;
|
|
3219
3219
|
|
|
3220
3220
|
/**
|
|
3221
|
-
*
|
|
3221
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3222
3222
|
*/
|
|
3223
|
-
|
|
3223
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3224
3224
|
|
|
3225
3225
|
/**
|
|
3226
|
-
*
|
|
3226
|
+
* Projektleiter vom Auftraggeber
|
|
3227
3227
|
*/
|
|
3228
|
-
|
|
3228
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3229
3229
|
|
|
3230
3230
|
/**
|
|
3231
3231
|
* Übergeordnete CRM-Objekte
|
|
@@ -3414,14 +3414,14 @@ export interface CrmState {
|
|
|
3414
3414
|
readyToBill: boolean;
|
|
3415
3415
|
|
|
3416
3416
|
/**
|
|
3417
|
-
*
|
|
3417
|
+
* Handelt es sich um einen Anfang-Status
|
|
3418
3418
|
*/
|
|
3419
|
-
|
|
3419
|
+
startState: boolean;
|
|
3420
3420
|
|
|
3421
3421
|
/**
|
|
3422
|
-
*
|
|
3422
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3423
3423
|
*/
|
|
3424
|
-
|
|
3424
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3425
3425
|
|
|
3426
3426
|
/**
|
|
3427
3427
|
* MetaInformations for this Object
|
|
@@ -3469,11 +3469,6 @@ export interface CrmSubType {
|
|
|
3469
3469
|
|
|
3470
3470
|
export interface CrmTask {
|
|
3471
3471
|
|
|
3472
|
-
/**
|
|
3473
|
-
* Liste von Erinnerungen
|
|
3474
|
-
*/
|
|
3475
|
-
reminders: Array<CrmReminder>;
|
|
3476
|
-
|
|
3477
3472
|
/**
|
|
3478
3473
|
* Angebot
|
|
3479
3474
|
*/
|
|
@@ -3484,6 +3479,11 @@ export interface CrmTask {
|
|
|
3484
3479
|
*/
|
|
3485
3480
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3486
3481
|
|
|
3482
|
+
/**
|
|
3483
|
+
* Liste von Erinnerungen
|
|
3484
|
+
*/
|
|
3485
|
+
reminders: Array<CrmReminder>;
|
|
3486
|
+
|
|
3487
3487
|
/**
|
|
3488
3488
|
* Notizen
|
|
3489
3489
|
*/
|
|
@@ -3854,14 +3854,14 @@ export interface CurrencyReference {
|
|
|
3854
3854
|
export interface Customer {
|
|
3855
3855
|
|
|
3856
3856
|
/**
|
|
3857
|
-
*
|
|
3857
|
+
* Option für die Stapelverarbeitung
|
|
3858
3858
|
*/
|
|
3859
|
-
|
|
3859
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3860
3860
|
|
|
3861
3861
|
/**
|
|
3862
|
-
*
|
|
3862
|
+
* reference to customer group
|
|
3863
3863
|
*/
|
|
3864
|
-
|
|
3864
|
+
customerGroupRef: ApiObjectReference;
|
|
3865
3865
|
|
|
3866
3866
|
/**
|
|
3867
3867
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -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
|
|
@@ -4419,14 +4419,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4419
4419
|
baseDepositPaymentAmount: number;
|
|
4420
4420
|
|
|
4421
4421
|
/**
|
|
4422
|
-
*
|
|
4422
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4423
4423
|
*/
|
|
4424
|
-
|
|
4424
|
+
totalBeforeModifier: number;
|
|
4425
4425
|
|
|
4426
4426
|
/**
|
|
4427
|
-
*
|
|
4427
|
+
* Ist der Beleg festgeschrieben?
|
|
4428
4428
|
*/
|
|
4429
|
-
|
|
4429
|
+
frozen: boolean;
|
|
4430
4430
|
|
|
4431
4431
|
/**
|
|
4432
4432
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -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
|
|
@@ -4494,14 +4494,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4494
4494
|
documentDate: ScriptingDate;
|
|
4495
4495
|
|
|
4496
4496
|
/**
|
|
4497
|
-
*
|
|
4497
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4498
4498
|
*/
|
|
4499
|
-
|
|
4499
|
+
taxLiabilityReversed: boolean;
|
|
4500
4500
|
|
|
4501
4501
|
/**
|
|
4502
|
-
*
|
|
4502
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4503
4503
|
*/
|
|
4504
|
-
|
|
4504
|
+
roundingAmount: number;
|
|
4505
4505
|
|
|
4506
4506
|
/**
|
|
4507
4507
|
* Versanddatum
|
|
@@ -4581,14 +4581,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4581
4581
|
fabricationDetail: DocumentFabricationDetail;
|
|
4582
4582
|
|
|
4583
4583
|
/**
|
|
4584
|
-
*
|
|
4584
|
+
* Berechnungsmodus
|
|
4585
4585
|
*/
|
|
4586
|
-
|
|
4586
|
+
calculationMode: CalculationMode;
|
|
4587
4587
|
|
|
4588
4588
|
/**
|
|
4589
|
-
*
|
|
4589
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4590
4590
|
*/
|
|
4591
|
-
|
|
4591
|
+
accountNumber: string;
|
|
4592
4592
|
|
|
4593
4593
|
/**
|
|
4594
4594
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4631,14 +4631,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4631
4631
|
defaultAddress: DocumentAddress;
|
|
4632
4632
|
|
|
4633
4633
|
/**
|
|
4634
|
-
*
|
|
4634
|
+
* Leistungsdatum
|
|
4635
4635
|
*/
|
|
4636
|
-
|
|
4636
|
+
performanceDate: ScriptingDate;
|
|
4637
4637
|
|
|
4638
4638
|
/**
|
|
4639
|
-
*
|
|
4639
|
+
* Verarbeitungsoption für Stapel
|
|
4640
4640
|
*/
|
|
4641
|
-
|
|
4641
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4642
4642
|
|
|
4643
4643
|
/**
|
|
4644
4644
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -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
|
|
@@ -4826,9 +4826,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4826
4826
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4827
4827
|
|
|
4828
4828
|
/**
|
|
4829
|
-
*
|
|
4829
|
+
* Rückgeld
|
|
4830
4830
|
*/
|
|
4831
|
-
|
|
4831
|
+
posReceiptChangeAmount: number;
|
|
4832
4832
|
|
|
4833
4833
|
/**
|
|
4834
4834
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4838,9 +4838,9 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4838
4838
|
posReceiptBalanced: boolean;
|
|
4839
4839
|
|
|
4840
4840
|
/**
|
|
4841
|
-
*
|
|
4841
|
+
* Referenz auf Lieferbedingung
|
|
4842
4842
|
*/
|
|
4843
|
-
|
|
4843
|
+
deliveryTermRef: ApiObjectReference;
|
|
4844
4844
|
|
|
4845
4845
|
/**
|
|
4846
4846
|
* Gesamtbruttogewicht
|
|
@@ -5036,14 +5036,14 @@ export interface DocumentAddress {
|
|
|
5036
5036
|
postOfficeBox: string;
|
|
5037
5037
|
|
|
5038
5038
|
/**
|
|
5039
|
-
*
|
|
5039
|
+
* country code IsoAlpha3
|
|
5040
5040
|
*/
|
|
5041
|
-
|
|
5041
|
+
countryCode: string;
|
|
5042
5042
|
|
|
5043
5043
|
/**
|
|
5044
|
-
*
|
|
5044
|
+
* Street
|
|
5045
5045
|
*/
|
|
5046
|
-
|
|
5046
|
+
street: string;
|
|
5047
5047
|
|
|
5048
5048
|
/**
|
|
5049
5049
|
* Unique identifier of the Object
|
|
@@ -5506,14 +5506,14 @@ export interface DocumentLine {
|
|
|
5506
5506
|
positionOfArticleLine: number;
|
|
5507
5507
|
|
|
5508
5508
|
/**
|
|
5509
|
-
*
|
|
5509
|
+
* Serientyp
|
|
5510
5510
|
*/
|
|
5511
|
-
|
|
5511
|
+
serialType: ArticleSerialType;
|
|
5512
5512
|
|
|
5513
5513
|
/**
|
|
5514
|
-
*
|
|
5514
|
+
* Preis pro Einheit in Basiswährung
|
|
5515
5515
|
*/
|
|
5516
|
-
|
|
5516
|
+
basePrice: number;
|
|
5517
5517
|
|
|
5518
5518
|
/**
|
|
5519
5519
|
* Steuerschema
|
|
@@ -5606,14 +5606,14 @@ export interface DocumentLine {
|
|
|
5606
5606
|
deliveryDateEnd: ScriptingDate;
|
|
5607
5607
|
|
|
5608
5608
|
/**
|
|
5609
|
-
*
|
|
5609
|
+
* Vertragsinformationen
|
|
5610
5610
|
*/
|
|
5611
|
-
|
|
5611
|
+
contractDetail: DocumentContractDetail;
|
|
5612
5612
|
|
|
5613
5613
|
/**
|
|
5614
|
-
*
|
|
5614
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5615
5615
|
*/
|
|
5616
|
-
|
|
5616
|
+
baseSalesValueNet: number;
|
|
5617
5617
|
|
|
5618
5618
|
/**
|
|
5619
5619
|
* Einheit Nettogewicht
|
|
@@ -6403,14 +6403,14 @@ export interface DocumentLinePosDetail {
|
|
|
6403
6403
|
balanceBeforeWithdrawal: number;
|
|
6404
6404
|
|
|
6405
6405
|
/**
|
|
6406
|
-
*
|
|
6406
|
+
* Typ der Position
|
|
6407
6407
|
*/
|
|
6408
|
-
|
|
6408
|
+
posLineType: PosLineType;
|
|
6409
6409
|
|
|
6410
6410
|
/**
|
|
6411
|
-
*
|
|
6411
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6412
6412
|
*/
|
|
6413
|
-
|
|
6413
|
+
externalPaymentId: string;
|
|
6414
6414
|
|
|
6415
6415
|
/**
|
|
6416
6416
|
* Unique identifier of the Object
|
|
@@ -6629,14 +6629,14 @@ export interface DocumentPosPayment {
|
|
|
6629
6629
|
version: number;
|
|
6630
6630
|
|
|
6631
6631
|
/**
|
|
6632
|
-
*
|
|
6632
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6633
6633
|
*/
|
|
6634
|
-
|
|
6634
|
+
withdrawalAmount: number;
|
|
6635
6635
|
|
|
6636
6636
|
/**
|
|
6637
|
-
*
|
|
6637
|
+
* Zahlungsart
|
|
6638
6638
|
*/
|
|
6639
|
-
|
|
6639
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6640
6640
|
|
|
6641
6641
|
/**
|
|
6642
6642
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6649,14 +6649,14 @@ export interface DocumentPosPayment {
|
|
|
6649
6649
|
balanceBeforeWithdrawal: number;
|
|
6650
6650
|
|
|
6651
6651
|
/**
|
|
6652
|
-
*
|
|
6652
|
+
* Typ der Position
|
|
6653
6653
|
*/
|
|
6654
|
-
|
|
6654
|
+
posLineType: PosLineType;
|
|
6655
6655
|
|
|
6656
6656
|
/**
|
|
6657
|
-
*
|
|
6657
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6658
6658
|
*/
|
|
6659
|
-
|
|
6659
|
+
externalPaymentId: string;
|
|
6660
6660
|
|
|
6661
6661
|
/**
|
|
6662
6662
|
* Unique identifier of the Object
|
|
@@ -7244,14 +7244,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7244
7244
|
bookDate: ScriptingDate;
|
|
7245
7245
|
|
|
7246
7246
|
/**
|
|
7247
|
-
*
|
|
7247
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7248
7248
|
*/
|
|
7249
|
-
|
|
7249
|
+
targetExpiryDate: ScriptingDate;
|
|
7250
7250
|
|
|
7251
7251
|
/**
|
|
7252
|
-
*
|
|
7252
|
+
* Die gültige Seriennummer
|
|
7253
7253
|
*/
|
|
7254
|
-
|
|
7254
|
+
targetSerialNumber: string;
|
|
7255
7255
|
|
|
7256
7256
|
/**
|
|
7257
7257
|
* Quell-Lagerplatz
|
|
@@ -7598,14 +7598,14 @@ export interface FabricationRevertRequest {
|
|
|
7598
7598
|
quantity: number;
|
|
7599
7599
|
|
|
7600
7600
|
/**
|
|
7601
|
-
*
|
|
7601
|
+
* Material automatisch stornieren
|
|
7602
7602
|
*/
|
|
7603
|
-
|
|
7603
|
+
autoRevertComponents: boolean;
|
|
7604
7604
|
|
|
7605
7605
|
/**
|
|
7606
|
-
*
|
|
7606
|
+
* ID der zu stornierenden Position
|
|
7607
7607
|
*/
|
|
7608
|
-
|
|
7608
|
+
documentLineId: number;
|
|
7609
7609
|
|
|
7610
7610
|
/**
|
|
7611
7611
|
* Zu stornierende Seriennummern
|
|
@@ -7621,14 +7621,14 @@ export interface FabricationRevertRequest {
|
|
|
7621
7621
|
export interface FabricationSerialNumber {
|
|
7622
7622
|
|
|
7623
7623
|
/**
|
|
7624
|
-
*
|
|
7624
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7625
7625
|
*/
|
|
7626
|
-
|
|
7626
|
+
serialNumberId: number;
|
|
7627
7627
|
|
|
7628
7628
|
/**
|
|
7629
|
-
*
|
|
7629
|
+
* MHD / Verfallsdatum
|
|
7630
7630
|
*/
|
|
7631
|
-
|
|
7631
|
+
expiryDate: ScriptingDate;
|
|
7632
7632
|
|
|
7633
7633
|
/**
|
|
7634
7634
|
* Bemerkung
|
|
@@ -7921,14 +7921,14 @@ export interface OpenItem {
|
|
|
7921
7921
|
paymentDueDate: ScriptingDate;
|
|
7922
7922
|
|
|
7923
7923
|
/**
|
|
7924
|
-
* Länderkennzeichen
|
|
7924
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7925
7925
|
*/
|
|
7926
|
-
|
|
7926
|
+
sourceCountryCode: string;
|
|
7927
7927
|
|
|
7928
7928
|
/**
|
|
7929
|
-
* Länderkennzeichen
|
|
7929
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7930
7930
|
*/
|
|
7931
|
-
|
|
7931
|
+
performanceCountryCode: string;
|
|
7932
7932
|
|
|
7933
7933
|
/**
|
|
7934
7934
|
* Valutadatum schreibgeschützt
|
|
@@ -8096,14 +8096,14 @@ export interface OpenItem {
|
|
|
8096
8096
|
taxRateRef: ApiObjectReference;
|
|
8097
8097
|
|
|
8098
8098
|
/**
|
|
8099
|
-
*
|
|
8099
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8100
8100
|
*/
|
|
8101
|
-
|
|
8101
|
+
baseCurrencyCode: string;
|
|
8102
8102
|
|
|
8103
8103
|
/**
|
|
8104
|
-
*
|
|
8104
|
+
* Anzahlungsrechnung
|
|
8105
8105
|
*/
|
|
8106
|
-
|
|
8106
|
+
depositInvoice: ApiObjectReference;
|
|
8107
8107
|
|
|
8108
8108
|
/**
|
|
8109
8109
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8379,14 +8379,14 @@ export interface OpenItemRecord {
|
|
|
8379
8379
|
version: number;
|
|
8380
8380
|
|
|
8381
8381
|
/**
|
|
8382
|
-
*
|
|
8382
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8383
8383
|
*/
|
|
8384
|
-
|
|
8384
|
+
transactionId: number;
|
|
8385
8385
|
|
|
8386
8386
|
/**
|
|
8387
|
-
*
|
|
8387
|
+
* Buchungsbetrag in Basiswährung
|
|
8388
8388
|
*/
|
|
8389
|
-
|
|
8389
|
+
baseAmount: number;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
8392
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8404,14 +8404,14 @@ export interface OpenItemRecord {
|
|
|
8404
8404
|
totalAmount: number;
|
|
8405
8405
|
|
|
8406
8406
|
/**
|
|
8407
|
-
*
|
|
8407
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8408
8408
|
*/
|
|
8409
|
-
|
|
8409
|
+
baseCurrencyCode: string;
|
|
8410
8410
|
|
|
8411
8411
|
/**
|
|
8412
|
-
*
|
|
8412
|
+
* id des records, der diesen storniert hat
|
|
8413
8413
|
*/
|
|
8414
|
-
|
|
8414
|
+
revertedByRecordId: number;
|
|
8415
8415
|
|
|
8416
8416
|
/**
|
|
8417
8417
|
* qualifier of open item
|
|
@@ -8789,14 +8789,14 @@ export interface PickTrolley {
|
|
|
8789
8789
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
8790
8790
|
|
|
8791
8791
|
/**
|
|
8792
|
-
*
|
|
8792
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
8793
8793
|
*/
|
|
8794
|
-
|
|
8794
|
+
storageBinRef: StorageBinRef;
|
|
8795
8795
|
|
|
8796
8796
|
/**
|
|
8797
|
-
*
|
|
8797
|
+
* Bearbeiter der Pickliste
|
|
8798
8798
|
*/
|
|
8799
|
-
|
|
8799
|
+
processedByUserRef: ApiObjectReference;
|
|
8800
8800
|
|
|
8801
8801
|
/**
|
|
8802
8802
|
* Beschreibung des Wagens
|
|
@@ -8951,14 +8951,14 @@ export const enum PickingType {
|
|
|
8951
8951
|
export interface Picklist {
|
|
8952
8952
|
|
|
8953
8953
|
/**
|
|
8954
|
-
*
|
|
8954
|
+
* Ziellager für Nachschub
|
|
8955
8955
|
*/
|
|
8956
|
-
|
|
8956
|
+
targetStorageRef: ApiObjectReference;
|
|
8957
8957
|
|
|
8958
8958
|
/**
|
|
8959
|
-
*
|
|
8959
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
8960
8960
|
*/
|
|
8961
|
-
|
|
8961
|
+
usedTemplate: PicklistTemplate;
|
|
8962
8962
|
|
|
8963
8963
|
/**
|
|
8964
8964
|
* Nummer der Pickliste
|
|
@@ -9069,14 +9069,14 @@ export interface PicklistLine {
|
|
|
9069
9069
|
articleNumber: string;
|
|
9070
9070
|
|
|
9071
9071
|
/**
|
|
9072
|
-
*
|
|
9072
|
+
* Art der Position
|
|
9073
9073
|
*/
|
|
9074
|
-
|
|
9074
|
+
lineType: PicklistLineType;
|
|
9075
9075
|
|
|
9076
9076
|
/**
|
|
9077
|
-
*
|
|
9077
|
+
* Lagernummer
|
|
9078
9078
|
*/
|
|
9079
|
-
|
|
9079
|
+
storageNumber: string;
|
|
9080
9080
|
|
|
9081
9081
|
/**
|
|
9082
9082
|
* ID der Ziel-Dokumentposition
|
|
@@ -9215,14 +9215,14 @@ export interface PicklistLineComponent {
|
|
|
9215
9215
|
targetDocumentLineComponentId: number;
|
|
9216
9216
|
|
|
9217
9217
|
/**
|
|
9218
|
-
*
|
|
9218
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9219
9219
|
*/
|
|
9220
|
-
|
|
9220
|
+
quantityPerAssemblyGroup: number;
|
|
9221
9221
|
|
|
9222
9222
|
/**
|
|
9223
|
-
*
|
|
9223
|
+
* abweichende Artikelbezeichnung
|
|
9224
9224
|
*/
|
|
9225
|
-
|
|
9225
|
+
articleAlternativeName: string;
|
|
9226
9226
|
|
|
9227
9227
|
/**
|
|
9228
9228
|
* Verpackte Menge der Position
|
|
@@ -9406,14 +9406,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9406
9406
|
onlyFullDeliverableOrderLines: boolean;
|
|
9407
9407
|
|
|
9408
9408
|
/**
|
|
9409
|
-
*
|
|
9409
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9410
9410
|
*/
|
|
9411
|
-
|
|
9411
|
+
maxOrderCount: number;
|
|
9412
9412
|
|
|
9413
9413
|
/**
|
|
9414
|
-
*
|
|
9414
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9415
9415
|
*/
|
|
9416
|
-
|
|
9416
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9417
9417
|
|
|
9418
9418
|
/**
|
|
9419
9419
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9478,15 +9478,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9478
9478
|
*/
|
|
9479
9479
|
printPicklist: boolean;
|
|
9480
9480
|
|
|
9481
|
+
/**
|
|
9482
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9483
|
+
*/
|
|
9484
|
+
maxPicklistLineCount: number;
|
|
9485
|
+
|
|
9481
9486
|
/**
|
|
9482
9487
|
* Die zu verwendende Pickwagengruppe
|
|
9483
9488
|
*/
|
|
9484
9489
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9485
9490
|
|
|
9486
9491
|
/**
|
|
9487
|
-
*
|
|
9492
|
+
* Lagerplätze vorgeben
|
|
9488
9493
|
*/
|
|
9489
|
-
|
|
9494
|
+
specifyStorageBins: boolean;
|
|
9490
9495
|
|
|
9491
9496
|
/**
|
|
9492
9497
|
* Der zu verwendende Pickwagen
|
|
@@ -9498,11 +9503,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9498
9503
|
*/
|
|
9499
9504
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9500
9505
|
|
|
9501
|
-
/**
|
|
9502
|
-
* Lagerplätze vorgeben
|
|
9503
|
-
*/
|
|
9504
|
-
specifyStorageBins: boolean;
|
|
9505
|
-
|
|
9506
9506
|
/**
|
|
9507
9507
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9508
9508
|
*/
|
|
@@ -9572,24 +9572,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9572
9572
|
showShippingFormOnPickingFinish: boolean;
|
|
9573
9573
|
|
|
9574
9574
|
/**
|
|
9575
|
-
*
|
|
9575
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9576
9576
|
*/
|
|
9577
|
-
|
|
9577
|
+
printLabelOnScan: boolean;
|
|
9578
9578
|
|
|
9579
9579
|
/**
|
|
9580
|
-
*
|
|
9580
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9581
9581
|
*/
|
|
9582
|
-
|
|
9582
|
+
allowPickingOfServiceArticles: boolean;
|
|
9583
9583
|
|
|
9584
9584
|
/**
|
|
9585
|
-
*
|
|
9585
|
+
* Sammelbestätigung erlauben
|
|
9586
9586
|
*/
|
|
9587
|
-
|
|
9587
|
+
allowFullConfirmation: boolean;
|
|
9588
9588
|
|
|
9589
9589
|
/**
|
|
9590
|
-
*
|
|
9590
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9591
9591
|
*/
|
|
9592
|
-
|
|
9592
|
+
useDigitalPicklist: boolean;
|
|
9593
9593
|
|
|
9594
9594
|
/**
|
|
9595
9595
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9880,14 +9880,14 @@ export interface ProductArticleRef {
|
|
|
9880
9880
|
export interface ProductDiscount {
|
|
9881
9881
|
|
|
9882
9882
|
/**
|
|
9883
|
-
*
|
|
9883
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9884
9884
|
*/
|
|
9885
|
-
|
|
9885
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9886
9886
|
|
|
9887
9887
|
/**
|
|
9888
|
-
*
|
|
9888
|
+
* Kundengruppe
|
|
9889
9889
|
*/
|
|
9890
|
-
|
|
9890
|
+
customerGroupRef: ApiObjectReference;
|
|
9891
9891
|
|
|
9892
9892
|
/**
|
|
9893
9893
|
* Lieferantengruppe
|
|
@@ -9965,14 +9965,14 @@ export interface ProductDiscount {
|
|
|
9965
9965
|
modifierValueType: ValueType;
|
|
9966
9966
|
|
|
9967
9967
|
/**
|
|
9968
|
-
*
|
|
9968
|
+
* Account, für den der Rabatt gültig ist
|
|
9969
9969
|
*/
|
|
9970
|
-
|
|
9970
|
+
accountRef: ApiObjectReference;
|
|
9971
9971
|
|
|
9972
9972
|
/**
|
|
9973
|
-
*
|
|
9973
|
+
* Name des Rabatts
|
|
9974
9974
|
*/
|
|
9975
|
-
|
|
9975
|
+
modifierName: string;
|
|
9976
9976
|
|
|
9977
9977
|
/**
|
|
9978
9978
|
* Unique identifier of the Object
|
|
@@ -10089,14 +10089,14 @@ export interface ProductMainGroup {
|
|
|
10089
10089
|
export interface ProductPrice {
|
|
10090
10090
|
|
|
10091
10091
|
/**
|
|
10092
|
-
*
|
|
10092
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10093
10093
|
*/
|
|
10094
|
-
|
|
10094
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10095
10095
|
|
|
10096
10096
|
/**
|
|
10097
|
-
*
|
|
10097
|
+
* Kundengruppe
|
|
10098
10098
|
*/
|
|
10099
|
-
|
|
10099
|
+
customerGroupRef: ApiObjectReference;
|
|
10100
10100
|
|
|
10101
10101
|
/**
|
|
10102
10102
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10379,14 +10379,14 @@ export interface RequestDocument {
|
|
|
10379
10379
|
lines: Array<RequestDocumentLine>;
|
|
10380
10380
|
|
|
10381
10381
|
/**
|
|
10382
|
-
*
|
|
10382
|
+
* Die Vertragsdetails
|
|
10383
10383
|
*/
|
|
10384
|
-
|
|
10384
|
+
contractDetail: DocumentContractDetail;
|
|
10385
10385
|
|
|
10386
10386
|
/**
|
|
10387
|
-
*
|
|
10387
|
+
* ID der Kasse (bei POS)
|
|
10388
10388
|
*/
|
|
10389
|
-
|
|
10389
|
+
posRegisterId: number;
|
|
10390
10390
|
|
|
10391
10391
|
/**
|
|
10392
10392
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10627,14 +10627,14 @@ export interface RequestDocumentLine {
|
|
|
10627
10627
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10628
10628
|
|
|
10629
10629
|
/**
|
|
10630
|
-
*
|
|
10630
|
+
* (optional) Preis des Artikels dieser Position
|
|
10631
10631
|
*/
|
|
10632
|
-
|
|
10632
|
+
productPrice: number;
|
|
10633
10633
|
|
|
10634
10634
|
/**
|
|
10635
|
-
*
|
|
10635
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10636
10636
|
*/
|
|
10637
|
-
|
|
10637
|
+
doLabelPrint: boolean;
|
|
10638
10638
|
}
|
|
10639
10639
|
|
|
10640
10640
|
export interface RequestDocumentLineBooking {
|
|
@@ -11148,14 +11148,14 @@ export interface SequencerConfiguration {
|
|
|
11148
11148
|
key: string;
|
|
11149
11149
|
|
|
11150
11150
|
/**
|
|
11151
|
-
*
|
|
11151
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11152
11152
|
*/
|
|
11153
|
-
|
|
11153
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11154
11154
|
|
|
11155
11155
|
/**
|
|
11156
|
-
*
|
|
11156
|
+
* Contains details about the sequencer configuration
|
|
11157
11157
|
*/
|
|
11158
|
-
|
|
11158
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11159
11159
|
|
|
11160
11160
|
/**
|
|
11161
11161
|
* MetaInformations for this Object
|
|
@@ -11988,14 +11988,14 @@ export interface Supplier {
|
|
|
11988
11988
|
info: MetaInfo;
|
|
11989
11989
|
|
|
11990
11990
|
/**
|
|
11991
|
-
*
|
|
11991
|
+
* reference to the delivery method
|
|
11992
11992
|
*/
|
|
11993
|
-
|
|
11993
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11994
11994
|
|
|
11995
11995
|
/**
|
|
11996
|
-
*
|
|
11996
|
+
* Lieferantengruppe
|
|
11997
11997
|
*/
|
|
11998
|
-
|
|
11998
|
+
supplierGroupRef: ApiObjectReference;
|
|
11999
11999
|
|
|
12000
12000
|
/**
|
|
12001
12001
|
* tax able or tax free
|
|
@@ -12394,11 +12394,6 @@ export interface User {
|
|
|
12394
12394
|
*/
|
|
12395
12395
|
roles: Array<ApiObjectReference>;
|
|
12396
12396
|
|
|
12397
|
-
/**
|
|
12398
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12399
|
-
*/
|
|
12400
|
-
referencedCustomerUserId: number;
|
|
12401
|
-
|
|
12402
12397
|
/**
|
|
12403
12398
|
* Gruppen
|
|
12404
12399
|
*/
|
|
@@ -12409,6 +12404,11 @@ export interface User {
|
|
|
12409
12404
|
*/
|
|
12410
12405
|
active: boolean;
|
|
12411
12406
|
|
|
12407
|
+
/**
|
|
12408
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12409
|
+
*/
|
|
12410
|
+
referencedCustomerUserId: number;
|
|
12411
|
+
|
|
12412
12412
|
/**
|
|
12413
12413
|
* App-Identifier
|
|
12414
12414
|
*/
|
|
@@ -12445,14 +12445,14 @@ export interface User {
|
|
|
12445
12445
|
id: number;
|
|
12446
12446
|
|
|
12447
12447
|
/**
|
|
12448
|
-
*
|
|
12448
|
+
* username
|
|
12449
12449
|
*/
|
|
12450
|
-
|
|
12450
|
+
username: string;
|
|
12451
12451
|
|
|
12452
12452
|
/**
|
|
12453
|
-
*
|
|
12453
|
+
* Valid to
|
|
12454
12454
|
*/
|
|
12455
|
-
|
|
12455
|
+
validTo: ScriptingDateTime;
|
|
12456
12456
|
|
|
12457
12457
|
/**
|
|
12458
12458
|
* MetaInformations for this Object
|