@vario-software/types 2026.27.1 → 2026.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +2021 -61
- package/scripting/services.d.ts +111 -46
- package/scripting/types.d.ts +362 -310
package/scripting/types.d.ts
CHANGED
|
@@ -360,6 +360,11 @@ export interface AccountAddress {
|
|
|
360
360
|
*/
|
|
361
361
|
postcode: string;
|
|
362
362
|
|
|
363
|
+
/**
|
|
364
|
+
* zugehöriger Hersteller
|
|
365
|
+
*/
|
|
366
|
+
manufacturerRef: ApiObjectReference;
|
|
367
|
+
|
|
363
368
|
/**
|
|
364
369
|
* Standard für den Account-Typ
|
|
365
370
|
*/
|
|
@@ -406,14 +411,14 @@ export interface AccountAddress {
|
|
|
406
411
|
streetAddressNumber: string;
|
|
407
412
|
|
|
408
413
|
/**
|
|
409
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
410
415
|
*/
|
|
411
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
412
417
|
|
|
413
418
|
/**
|
|
414
|
-
*
|
|
419
|
+
* Default contacts
|
|
415
420
|
*/
|
|
416
|
-
|
|
421
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
422
|
|
|
418
423
|
/**
|
|
419
424
|
* Name3
|
|
@@ -1008,25 +1013,20 @@ export interface Article {
|
|
|
1008
1013
|
*/
|
|
1009
1014
|
customsTariffNumber: string;
|
|
1010
1015
|
|
|
1011
|
-
/**
|
|
1012
|
-
* is this product purchasable
|
|
1013
|
-
*/
|
|
1014
|
-
purchasable: boolean;
|
|
1015
|
-
|
|
1016
1016
|
/**
|
|
1017
1017
|
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
1019
|
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* is this product purchasable
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
purchasable: boolean;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* base capacity unit
|
|
1028
1028
|
*/
|
|
1029
|
-
|
|
1029
|
+
baseCapacityUnit: UnitTypeReference;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
1032
|
* Seriennummern Auszeichnungsart
|
|
@@ -1038,6 +1038,11 @@ export interface Article {
|
|
|
1038
1038
|
*/
|
|
1039
1039
|
initialAvgPurchasePrice: number;
|
|
1040
1040
|
|
|
1041
|
+
/**
|
|
1042
|
+
* is this product sellable without any quantity at the stock
|
|
1043
|
+
*/
|
|
1044
|
+
sellableWithoutStock: boolean;
|
|
1045
|
+
|
|
1041
1046
|
/**
|
|
1042
1047
|
* gross Volume in cubic meters
|
|
1043
1048
|
*/
|
|
@@ -1139,14 +1144,14 @@ export interface Article {
|
|
|
1139
1144
|
deliveryMethodRef: ApiObjectReference;
|
|
1140
1145
|
|
|
1141
1146
|
/**
|
|
1142
|
-
*
|
|
1147
|
+
* Soll-Handelsspanne
|
|
1143
1148
|
*/
|
|
1144
|
-
|
|
1149
|
+
targetTradingMargin: number;
|
|
1145
1150
|
|
|
1146
1151
|
/**
|
|
1147
|
-
*
|
|
1152
|
+
* Produktion
|
|
1148
1153
|
*/
|
|
1149
|
-
|
|
1154
|
+
fabrication: boolean;
|
|
1150
1155
|
|
|
1151
1156
|
/**
|
|
1152
1157
|
* active
|
|
@@ -1203,20 +1208,15 @@ export interface Article {
|
|
|
1203
1208
|
*/
|
|
1204
1209
|
listingStateChangeTime: ScriptingDateTime;
|
|
1205
1210
|
|
|
1206
|
-
/**
|
|
1207
|
-
* Country code
|
|
1208
|
-
*/
|
|
1209
|
-
countryOfOriginRef: CountryReference;
|
|
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
|
|
@@ -1224,15 +1224,20 @@ export interface Article {
|
|
|
1224
1224
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Frei kommissionierbar
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
freelyPickable: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1233
1233
|
*/
|
|
1234
1234
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1235
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1238
|
+
*/
|
|
1239
|
+
taxLiabilityReversed: boolean;
|
|
1240
|
+
|
|
1236
1241
|
/**
|
|
1237
1242
|
* Notiz
|
|
1238
1243
|
*/
|
|
@@ -1274,14 +1279,14 @@ export interface Article {
|
|
|
1274
1279
|
capacity: number;
|
|
1275
1280
|
|
|
1276
1281
|
/**
|
|
1277
|
-
*
|
|
1282
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
1283
|
*/
|
|
1279
|
-
|
|
1284
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
1285
|
|
|
1281
1286
|
/**
|
|
1282
|
-
*
|
|
1287
|
+
* gross sales prices
|
|
1283
1288
|
*/
|
|
1284
|
-
|
|
1289
|
+
grossSalesPrice: number;
|
|
1285
1290
|
|
|
1286
1291
|
/**
|
|
1287
1292
|
* Letzter EKP (Startwert)
|
|
@@ -1293,20 +1298,15 @@ export interface Article {
|
|
|
1293
1298
|
*/
|
|
1294
1299
|
permissibleForOrderProposal: boolean;
|
|
1295
1300
|
|
|
1296
|
-
/**
|
|
1297
|
-
* Versandlabeldruck
|
|
1298
|
-
*/
|
|
1299
|
-
shippingLabelPrinting: boolean;
|
|
1300
|
-
|
|
1301
1301
|
/**
|
|
1302
1302
|
* reference to Product
|
|
1303
1303
|
*/
|
|
1304
1304
|
productRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* Versandlabeldruck
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
shippingLabelPrinting: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* rabattierbarer Artikel?
|
|
@@ -1318,6 +1318,11 @@ export interface Article {
|
|
|
1318
1318
|
*/
|
|
1319
1319
|
alternativeName: string;
|
|
1320
1320
|
|
|
1321
|
+
/**
|
|
1322
|
+
* Kontingentartikel
|
|
1323
|
+
*/
|
|
1324
|
+
contingentArticleRef: ApiObjectReference;
|
|
1325
|
+
|
|
1321
1326
|
/**
|
|
1322
1327
|
* base capacity
|
|
1323
1328
|
*/
|
|
@@ -1354,14 +1359,14 @@ export interface Article {
|
|
|
1354
1359
|
custom: EavArticle;
|
|
1355
1360
|
|
|
1356
1361
|
/**
|
|
1357
|
-
*
|
|
1362
|
+
* Art des Haltbarkeitsdatums
|
|
1358
1363
|
*/
|
|
1359
|
-
|
|
1364
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1360
1365
|
|
|
1361
1366
|
/**
|
|
1362
|
-
*
|
|
1367
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1363
1368
|
*/
|
|
1364
|
-
|
|
1369
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1365
1370
|
|
|
1366
1371
|
/**
|
|
1367
1372
|
* Hersteller
|
|
@@ -1389,14 +1394,14 @@ export interface Article {
|
|
|
1389
1394
|
listed: boolean;
|
|
1390
1395
|
|
|
1391
1396
|
/**
|
|
1392
|
-
*
|
|
1397
|
+
* provisionsberechtiger Artikel?
|
|
1393
1398
|
*/
|
|
1394
|
-
|
|
1399
|
+
commissionable: boolean;
|
|
1395
1400
|
|
|
1396
1401
|
/**
|
|
1397
|
-
*
|
|
1402
|
+
* Nur manuelle Produktion
|
|
1398
1403
|
*/
|
|
1399
|
-
|
|
1404
|
+
onlyManualFabrication: boolean;
|
|
1400
1405
|
|
|
1401
1406
|
/**
|
|
1402
1407
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1537,14 +1542,14 @@ export interface ArticleCustomer {
|
|
|
1537
1542
|
articleName: string;
|
|
1538
1543
|
|
|
1539
1544
|
/**
|
|
1540
|
-
*
|
|
1545
|
+
* Etikettdruck-Einstellungen
|
|
1541
1546
|
*/
|
|
1542
|
-
|
|
1547
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1543
1548
|
|
|
1544
1549
|
/**
|
|
1545
|
-
*
|
|
1550
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1546
1551
|
*/
|
|
1547
|
-
|
|
1552
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1548
1553
|
|
|
1549
1554
|
/**
|
|
1550
1555
|
* Kunden-Preise
|
|
@@ -1552,14 +1557,14 @@ export interface ArticleCustomer {
|
|
|
1552
1557
|
productPrices: Array<ProductPrice>;
|
|
1553
1558
|
|
|
1554
1559
|
/**
|
|
1555
|
-
*
|
|
1560
|
+
* Referenced Article
|
|
1556
1561
|
*/
|
|
1557
|
-
|
|
1562
|
+
articleId: number;
|
|
1558
1563
|
|
|
1559
1564
|
/**
|
|
1560
|
-
*
|
|
1565
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1561
1566
|
*/
|
|
1562
|
-
|
|
1567
|
+
useDeviatingArticleDescription: boolean;
|
|
1563
1568
|
|
|
1564
1569
|
/**
|
|
1565
1570
|
* Aktiv?
|
|
@@ -1597,14 +1602,14 @@ export interface ArticleCustomer {
|
|
|
1597
1602
|
defaultGrossPrice: number;
|
|
1598
1603
|
|
|
1599
1604
|
/**
|
|
1600
|
-
*
|
|
1605
|
+
* Art der Preisermittlung
|
|
1601
1606
|
*/
|
|
1602
|
-
|
|
1607
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1603
1608
|
|
|
1604
1609
|
/**
|
|
1605
|
-
*
|
|
1610
|
+
* Abweichende Produktnummer
|
|
1606
1611
|
*/
|
|
1607
|
-
|
|
1612
|
+
deviatingArticleNumber: string;
|
|
1608
1613
|
|
|
1609
1614
|
/**
|
|
1610
1615
|
* Artikelnummer
|
|
@@ -2029,11 +2034,6 @@ export interface ArticleStorage {
|
|
|
2029
2034
|
|
|
2030
2035
|
export interface ArticleSupplier {
|
|
2031
2036
|
|
|
2032
|
-
/**
|
|
2033
|
-
* Lieferanten-Meldebestand
|
|
2034
|
-
*/
|
|
2035
|
-
supplierReportingStock: number;
|
|
2036
|
-
|
|
2037
2037
|
/**
|
|
2038
2038
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2039
2039
|
*/
|
|
@@ -2044,6 +2044,11 @@ export interface ArticleSupplier {
|
|
|
2044
2044
|
*/
|
|
2045
2045
|
accountDisplayName: string;
|
|
2046
2046
|
|
|
2047
|
+
/**
|
|
2048
|
+
* Lieferanten-Meldebestand
|
|
2049
|
+
*/
|
|
2050
|
+
supplierReportingStock: number;
|
|
2051
|
+
|
|
2047
2052
|
/**
|
|
2048
2053
|
* Lieferzeit in (Werk-)Tagen
|
|
2049
2054
|
*/
|
|
@@ -2100,14 +2105,14 @@ export interface ArticleSupplier {
|
|
|
2100
2105
|
info: MetaInfo;
|
|
2101
2106
|
|
|
2102
2107
|
/**
|
|
2103
|
-
*
|
|
2108
|
+
* Referenced Article name
|
|
2104
2109
|
*/
|
|
2105
|
-
|
|
2110
|
+
articleName: string;
|
|
2106
2111
|
|
|
2107
2112
|
/**
|
|
2108
|
-
*
|
|
2113
|
+
* Verpackungseinheit
|
|
2109
2114
|
*/
|
|
2110
|
-
|
|
2115
|
+
packagingUnit: number;
|
|
2111
2116
|
|
|
2112
2117
|
/**
|
|
2113
2118
|
* Lieferanten-Preise
|
|
@@ -2507,14 +2512,14 @@ export interface CountryReference {
|
|
|
2507
2512
|
export interface CreateNewDocumentRequest {
|
|
2508
2513
|
|
|
2509
2514
|
/**
|
|
2510
|
-
* Belegart
|
|
2515
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2511
2516
|
*/
|
|
2512
|
-
|
|
2517
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2513
2518
|
|
|
2514
2519
|
/**
|
|
2515
|
-
*
|
|
2520
|
+
* Belegart
|
|
2516
2521
|
*/
|
|
2517
|
-
|
|
2522
|
+
documentTypeLabel: string;
|
|
2518
2523
|
|
|
2519
2524
|
/**
|
|
2520
2525
|
* Details zum Beleg
|
|
@@ -2580,14 +2585,14 @@ export interface CrmActivity {
|
|
|
2580
2585
|
info: MetaInfo;
|
|
2581
2586
|
|
|
2582
2587
|
/**
|
|
2583
|
-
*
|
|
2588
|
+
* Aktivität intern abgerechnet?
|
|
2584
2589
|
*/
|
|
2585
|
-
|
|
2590
|
+
internalBilled: boolean;
|
|
2586
2591
|
|
|
2587
2592
|
/**
|
|
2588
|
-
*
|
|
2593
|
+
* geplante Dauer
|
|
2589
2594
|
*/
|
|
2590
|
-
|
|
2595
|
+
plannedDurationInSeconds: number;
|
|
2591
2596
|
|
|
2592
2597
|
/**
|
|
2593
2598
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2625,14 +2630,14 @@ export interface CrmActivity {
|
|
|
2625
2630
|
userRef: ApiObjectReference;
|
|
2626
2631
|
|
|
2627
2632
|
/**
|
|
2628
|
-
*
|
|
2633
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2629
2634
|
*/
|
|
2630
|
-
|
|
2635
|
+
system: boolean;
|
|
2631
2636
|
|
|
2632
2637
|
/**
|
|
2633
|
-
*
|
|
2638
|
+
* tatsächliche Startzeit
|
|
2634
2639
|
*/
|
|
2635
|
-
|
|
2640
|
+
startDateTime: ScriptingDateTime;
|
|
2636
2641
|
|
|
2637
2642
|
/**
|
|
2638
2643
|
* Inhalt dieser Aktivität
|
|
@@ -2739,14 +2744,14 @@ export interface CrmActivityType {
|
|
|
2739
2744
|
export interface CrmChecklistItem {
|
|
2740
2745
|
|
|
2741
2746
|
/**
|
|
2742
|
-
*
|
|
2747
|
+
* Text des Checklisten-Elements
|
|
2743
2748
|
*/
|
|
2744
|
-
|
|
2749
|
+
memo: string;
|
|
2745
2750
|
|
|
2746
2751
|
/**
|
|
2747
|
-
*
|
|
2752
|
+
* Ist das Element "angehakt"?
|
|
2748
2753
|
*/
|
|
2749
|
-
|
|
2754
|
+
checked: boolean;
|
|
2750
2755
|
|
|
2751
2756
|
/**
|
|
2752
2757
|
* Unique identifier of the Object
|
|
@@ -2862,14 +2867,14 @@ export interface CrmDeal {
|
|
|
2862
2867
|
info: MetaInfo;
|
|
2863
2868
|
|
|
2864
2869
|
/**
|
|
2865
|
-
*
|
|
2870
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2866
2871
|
*/
|
|
2867
|
-
|
|
2872
|
+
assignedUserRef: ApiObjectReference;
|
|
2868
2873
|
|
|
2869
2874
|
/**
|
|
2870
|
-
*
|
|
2875
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2871
2876
|
*/
|
|
2872
|
-
|
|
2877
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2873
2878
|
|
|
2874
2879
|
/**
|
|
2875
2880
|
* Chance (in Prozent)
|
|
@@ -3148,14 +3153,14 @@ export interface CrmProject {
|
|
|
3148
3153
|
priorityRef: ApiObjectReference;
|
|
3149
3154
|
|
|
3150
3155
|
/**
|
|
3151
|
-
*
|
|
3156
|
+
* Phase
|
|
3152
3157
|
*/
|
|
3153
|
-
|
|
3158
|
+
phaseRef: ApiObjectReference;
|
|
3154
3159
|
|
|
3155
3160
|
/**
|
|
3156
|
-
*
|
|
3161
|
+
* Projektleiter vom Auftragnehmer
|
|
3157
3162
|
*/
|
|
3158
|
-
|
|
3163
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3159
3164
|
|
|
3160
3165
|
/**
|
|
3161
3166
|
* Aufgaben-Nummer
|
|
@@ -3173,14 +3178,14 @@ export interface CrmProject {
|
|
|
3173
3178
|
billedTimes: number;
|
|
3174
3179
|
|
|
3175
3180
|
/**
|
|
3176
|
-
*
|
|
3181
|
+
* Geplanter Projektzeitraum (von)
|
|
3177
3182
|
*/
|
|
3178
|
-
|
|
3183
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3179
3184
|
|
|
3180
3185
|
/**
|
|
3181
|
-
*
|
|
3186
|
+
* Einkaufsbelege
|
|
3182
3187
|
*/
|
|
3183
|
-
|
|
3188
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3184
3189
|
|
|
3185
3190
|
/**
|
|
3186
3191
|
* Verkaufsbelege
|
|
@@ -3213,14 +3218,14 @@ export interface CrmProject {
|
|
|
3213
3218
|
info: MetaInfo;
|
|
3214
3219
|
|
|
3215
3220
|
/**
|
|
3216
|
-
*
|
|
3221
|
+
* Projektleiter vom Auftraggeber
|
|
3217
3222
|
*/
|
|
3218
|
-
|
|
3223
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3219
3224
|
|
|
3220
3225
|
/**
|
|
3221
|
-
*
|
|
3226
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3222
3227
|
*/
|
|
3223
|
-
|
|
3228
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3224
3229
|
|
|
3225
3230
|
/**
|
|
3226
3231
|
* Übergeordnete CRM-Objekte
|
|
@@ -3465,9 +3470,9 @@ export interface CrmSubType {
|
|
|
3465
3470
|
export interface CrmTask {
|
|
3466
3471
|
|
|
3467
3472
|
/**
|
|
3468
|
-
*
|
|
3473
|
+
* Liste von Erinnerungen
|
|
3469
3474
|
*/
|
|
3470
|
-
|
|
3475
|
+
reminders: Array<CrmReminder>;
|
|
3471
3476
|
|
|
3472
3477
|
/**
|
|
3473
3478
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3475,9 +3480,9 @@ export interface CrmTask {
|
|
|
3475
3480
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3476
3481
|
|
|
3477
3482
|
/**
|
|
3478
|
-
*
|
|
3483
|
+
* Angebot
|
|
3479
3484
|
*/
|
|
3480
|
-
|
|
3485
|
+
customerOfferRef: DocumentRef;
|
|
3481
3486
|
|
|
3482
3487
|
/**
|
|
3483
3488
|
* Notizen
|
|
@@ -3670,14 +3675,14 @@ export interface CrmTask {
|
|
|
3670
3675
|
parentRefs: Array<CrmObjectRef>;
|
|
3671
3676
|
|
|
3672
3677
|
/**
|
|
3673
|
-
*
|
|
3678
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3674
3679
|
*/
|
|
3675
|
-
|
|
3680
|
+
externalRecordedTimes: number;
|
|
3676
3681
|
|
|
3677
3682
|
/**
|
|
3678
|
-
*
|
|
3683
|
+
* Beauftragte Zeit in Sekunden
|
|
3679
3684
|
*/
|
|
3680
|
-
|
|
3685
|
+
effortCommissioned: number;
|
|
3681
3686
|
|
|
3682
3687
|
/**
|
|
3683
3688
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3849,14 +3854,14 @@ export interface CurrencyReference {
|
|
|
3849
3854
|
export interface Customer {
|
|
3850
3855
|
|
|
3851
3856
|
/**
|
|
3852
|
-
*
|
|
3857
|
+
* Option für die Stapelverarbeitung
|
|
3853
3858
|
*/
|
|
3854
|
-
|
|
3859
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3855
3860
|
|
|
3856
3861
|
/**
|
|
3857
|
-
*
|
|
3862
|
+
* reference to customer group
|
|
3858
3863
|
*/
|
|
3859
|
-
|
|
3864
|
+
customerGroupRef: ApiObjectReference;
|
|
3860
3865
|
|
|
3861
3866
|
/**
|
|
3862
3867
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3874,14 +3879,14 @@ export interface Customer {
|
|
|
3874
3879
|
dueDate: ScriptingDate;
|
|
3875
3880
|
|
|
3876
3881
|
/**
|
|
3877
|
-
*
|
|
3882
|
+
* Maximal mögliche Lieferungen
|
|
3878
3883
|
*/
|
|
3879
|
-
|
|
3884
|
+
maxDeliveries: number;
|
|
3880
3885
|
|
|
3881
3886
|
/**
|
|
3882
|
-
*
|
|
3887
|
+
* collective billable
|
|
3883
3888
|
*/
|
|
3884
|
-
|
|
3889
|
+
collectiveBillable: boolean;
|
|
3885
3890
|
|
|
3886
3891
|
/**
|
|
3887
3892
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4251,14 +4256,14 @@ export interface DeliveryTerm {
|
|
|
4251
4256
|
version: number;
|
|
4252
4257
|
|
|
4253
4258
|
/**
|
|
4254
|
-
*
|
|
4259
|
+
* translations
|
|
4255
4260
|
*/
|
|
4256
|
-
|
|
4261
|
+
translations: Array<DocumentTypeTerm>;
|
|
4257
4262
|
|
|
4258
4263
|
/**
|
|
4259
|
-
*
|
|
4264
|
+
* information, how the shipping charges should be calculated
|
|
4260
4265
|
*/
|
|
4261
|
-
|
|
4266
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4262
4267
|
|
|
4263
4268
|
/**
|
|
4264
4269
|
* Lieferarten
|
|
@@ -4286,6 +4291,18 @@ export interface DeliveryTerm {
|
|
|
4286
4291
|
info: MetaInfo;
|
|
4287
4292
|
}
|
|
4288
4293
|
|
|
4294
|
+
/**
|
|
4295
|
+
* Leitet die geschriebenen Daten an ein Dokument im DMS weiter.
|
|
4296
|
+
*/
|
|
4297
|
+
export interface DmsOutputStream {
|
|
4298
|
+
|
|
4299
|
+
delegate: ShelfFileUploadSession;
|
|
4300
|
+
|
|
4301
|
+
producedFile: ShelfFile;
|
|
4302
|
+
|
|
4303
|
+
shelfCommonMapper: ShelfCommonMapper;
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4289
4306
|
export interface Document {
|
|
4290
4307
|
|
|
4291
4308
|
/**
|
|
@@ -4377,9 +4394,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4377
4394
|
deliveryQuantityPackages: number;
|
|
4378
4395
|
|
|
4379
4396
|
/**
|
|
4380
|
-
*
|
|
4397
|
+
* Leitweg-ID
|
|
4381
4398
|
*/
|
|
4382
|
-
|
|
4399
|
+
buyerReference: string;
|
|
4383
4400
|
|
|
4384
4401
|
/**
|
|
4385
4402
|
* Bestellnummer aus Vorbeleg
|
|
@@ -4387,9 +4404,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4387
4404
|
referencedOrderNumber: string;
|
|
4388
4405
|
|
|
4389
4406
|
/**
|
|
4390
|
-
*
|
|
4407
|
+
* Steuerpflichtig oder steuerfrei
|
|
4391
4408
|
*/
|
|
4392
|
-
|
|
4409
|
+
taxable: boolean;
|
|
4393
4410
|
|
|
4394
4411
|
/**
|
|
4395
4412
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4497,14 +4514,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4497
4514
|
supplierNumber: string;
|
|
4498
4515
|
|
|
4499
4516
|
/**
|
|
4500
|
-
*
|
|
4517
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4501
4518
|
*/
|
|
4502
|
-
|
|
4519
|
+
deliveryApproved: boolean;
|
|
4503
4520
|
|
|
4504
4521
|
/**
|
|
4505
|
-
*
|
|
4522
|
+
* Gesamtpreis brutto
|
|
4506
4523
|
*/
|
|
4507
|
-
|
|
4524
|
+
totalGrossPrice: number;
|
|
4508
4525
|
|
|
4509
4526
|
/**
|
|
4510
4527
|
* Kassen-Zahlungspositionen
|
|
@@ -4649,14 +4666,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4649
4666
|
additionalInfo: DocumentAdditionalInfo;
|
|
4650
4667
|
|
|
4651
4668
|
/**
|
|
4652
|
-
*
|
|
4669
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4653
4670
|
*/
|
|
4654
|
-
|
|
4671
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4655
4672
|
|
|
4656
4673
|
/**
|
|
4657
|
-
*
|
|
4674
|
+
* Bestelldatum
|
|
4658
4675
|
*/
|
|
4659
|
-
|
|
4676
|
+
orderedOn: ScriptingDate;
|
|
4660
4677
|
|
|
4661
4678
|
/**
|
|
4662
4679
|
* MetaInformations for this Object
|
|
@@ -4679,14 +4696,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4679
4696
|
dropShipping: boolean;
|
|
4680
4697
|
|
|
4681
4698
|
/**
|
|
4682
|
-
*
|
|
4699
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4683
4700
|
*/
|
|
4684
|
-
|
|
4701
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4685
4702
|
|
|
4686
4703
|
/**
|
|
4687
|
-
*
|
|
4704
|
+
* Gesamtpreis netto
|
|
4688
4705
|
*/
|
|
4689
|
-
|
|
4706
|
+
totalNetPrice: number;
|
|
4690
4707
|
|
|
4691
4708
|
/**
|
|
4692
4709
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4813,11 +4830,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4813
4830
|
*/
|
|
4814
4831
|
posReceiptChangeAmount: number;
|
|
4815
4832
|
|
|
4816
|
-
/**
|
|
4817
|
-
* Referenz auf Lieferbedingung
|
|
4818
|
-
*/
|
|
4819
|
-
deliveryTermRef: ApiObjectReference;
|
|
4820
|
-
|
|
4821
4833
|
/**
|
|
4822
4834
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4823
4835
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4825,6 +4837,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4825
4837
|
*/
|
|
4826
4838
|
posReceiptBalanced: boolean;
|
|
4827
4839
|
|
|
4840
|
+
/**
|
|
4841
|
+
* Referenz auf Lieferbedingung
|
|
4842
|
+
*/
|
|
4843
|
+
deliveryTermRef: ApiObjectReference;
|
|
4844
|
+
|
|
4828
4845
|
/**
|
|
4829
4846
|
* Gesamtbruttogewicht
|
|
4830
4847
|
*/
|
|
@@ -5044,14 +5061,14 @@ export interface DocumentAddress {
|
|
|
5044
5061
|
info: MetaInfo;
|
|
5045
5062
|
|
|
5046
5063
|
/**
|
|
5047
|
-
*
|
|
5064
|
+
* Lieferart
|
|
5048
5065
|
*/
|
|
5049
|
-
|
|
5066
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5050
5067
|
|
|
5051
5068
|
/**
|
|
5052
|
-
*
|
|
5069
|
+
* GLN
|
|
5053
5070
|
*/
|
|
5054
|
-
|
|
5071
|
+
globalLocationNumber: string;
|
|
5055
5072
|
|
|
5056
5073
|
/**
|
|
5057
5074
|
* Postcode
|
|
@@ -5232,14 +5249,14 @@ export interface DocumentContractDetail {
|
|
|
5232
5249
|
runtimeToDate: ScriptingDate;
|
|
5233
5250
|
|
|
5234
5251
|
/**
|
|
5235
|
-
*
|
|
5252
|
+
* Nächste Fälligkeit
|
|
5236
5253
|
*/
|
|
5237
|
-
|
|
5254
|
+
nextDueDate: ScriptingDate;
|
|
5238
5255
|
|
|
5239
5256
|
/**
|
|
5240
|
-
*
|
|
5257
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5241
5258
|
*/
|
|
5242
|
-
|
|
5259
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5243
5260
|
|
|
5244
5261
|
/**
|
|
5245
5262
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5439,14 +5456,14 @@ export interface DocumentLine {
|
|
|
5439
5456
|
number: string;
|
|
5440
5457
|
|
|
5441
5458
|
/**
|
|
5442
|
-
*
|
|
5459
|
+
* Gesamtbruttogewicht
|
|
5443
5460
|
*/
|
|
5444
|
-
|
|
5461
|
+
totalGrossWeight: number;
|
|
5445
5462
|
|
|
5446
5463
|
/**
|
|
5447
|
-
*
|
|
5464
|
+
* Referenz zur Kundenauftragszeile
|
|
5448
5465
|
*/
|
|
5449
|
-
|
|
5466
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5450
5467
|
|
|
5451
5468
|
/**
|
|
5452
5469
|
* skontierbare Position?
|
|
@@ -5488,26 +5505,26 @@ export interface DocumentLine {
|
|
|
5488
5505
|
*/
|
|
5489
5506
|
basePrice: number;
|
|
5490
5507
|
|
|
5491
|
-
/**
|
|
5492
|
-
* Serientyp
|
|
5493
|
-
*/
|
|
5494
|
-
serialType: ArticleSerialType;
|
|
5495
|
-
|
|
5496
5508
|
/**
|
|
5497
5509
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5498
5510
|
*/
|
|
5499
5511
|
positionOfArticleLine: number;
|
|
5500
5512
|
|
|
5501
5513
|
/**
|
|
5502
|
-
*
|
|
5514
|
+
* Serientyp
|
|
5503
5515
|
*/
|
|
5504
|
-
|
|
5516
|
+
serialType: ArticleSerialType;
|
|
5505
5517
|
|
|
5506
5518
|
/**
|
|
5507
5519
|
* Preiseinheit
|
|
5508
5520
|
*/
|
|
5509
5521
|
priceUnit: number;
|
|
5510
5522
|
|
|
5523
|
+
/**
|
|
5524
|
+
* Steuerschema
|
|
5525
|
+
*/
|
|
5526
|
+
taxSchemaRef: ApiObjectReference;
|
|
5527
|
+
|
|
5511
5528
|
/**
|
|
5512
5529
|
* Preisanpassungen - Position Basiswährung
|
|
5513
5530
|
*/
|
|
@@ -5679,14 +5696,14 @@ export interface DocumentLine {
|
|
|
5679
5696
|
commissions: Array<DocumentLineCommission>;
|
|
5680
5697
|
|
|
5681
5698
|
/**
|
|
5682
|
-
*
|
|
5699
|
+
* Positionstyp
|
|
5683
5700
|
*/
|
|
5684
|
-
|
|
5701
|
+
lineType: DocumentLineType;
|
|
5685
5702
|
|
|
5686
5703
|
/**
|
|
5687
|
-
*
|
|
5704
|
+
* Gesamtpreis Position in Basiswährung
|
|
5688
5705
|
*/
|
|
5689
|
-
|
|
5706
|
+
baseTotalLinePrice: number;
|
|
5690
5707
|
|
|
5691
5708
|
/**
|
|
5692
5709
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -6028,14 +6045,14 @@ export interface DocumentLineComponent {
|
|
|
6028
6045
|
custom: EavDocumentlinecomponent;
|
|
6029
6046
|
|
|
6030
6047
|
/**
|
|
6031
|
-
*
|
|
6048
|
+
* Referenz auf den Artikel der Komponente
|
|
6032
6049
|
*/
|
|
6033
|
-
|
|
6050
|
+
articleId: number;
|
|
6034
6051
|
|
|
6035
6052
|
/**
|
|
6036
|
-
*
|
|
6053
|
+
* Gelieferte Menge
|
|
6037
6054
|
*/
|
|
6038
|
-
|
|
6055
|
+
quantityCommitted: number;
|
|
6039
6056
|
|
|
6040
6057
|
/**
|
|
6041
6058
|
* Beschreibung des Artikels
|
|
@@ -6235,14 +6252,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6235
6252
|
quantityFinished: number;
|
|
6236
6253
|
|
|
6237
6254
|
/**
|
|
6238
|
-
*
|
|
6255
|
+
* Produzierte Seriennummern
|
|
6239
6256
|
*/
|
|
6240
|
-
|
|
6257
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6241
6258
|
|
|
6242
6259
|
/**
|
|
6243
|
-
*
|
|
6260
|
+
* Menge defekt
|
|
6244
6261
|
*/
|
|
6245
|
-
|
|
6262
|
+
quantityDefective: number;
|
|
6246
6263
|
|
|
6247
6264
|
/**
|
|
6248
6265
|
* Freifeld
|
|
@@ -6386,14 +6403,14 @@ export interface DocumentLinePosDetail {
|
|
|
6386
6403
|
balanceBeforeWithdrawal: number;
|
|
6387
6404
|
|
|
6388
6405
|
/**
|
|
6389
|
-
*
|
|
6406
|
+
* Typ der Position
|
|
6390
6407
|
*/
|
|
6391
|
-
|
|
6408
|
+
posLineType: PosLineType;
|
|
6392
6409
|
|
|
6393
6410
|
/**
|
|
6394
|
-
*
|
|
6411
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6395
6412
|
*/
|
|
6396
|
-
|
|
6413
|
+
externalPaymentId: string;
|
|
6397
6414
|
|
|
6398
6415
|
/**
|
|
6399
6416
|
* Unique identifier of the Object
|
|
@@ -6493,6 +6510,11 @@ export interface DocumentPosDetail {
|
|
|
6493
6510
|
*/
|
|
6494
6511
|
tssSerialNumber: string;
|
|
6495
6512
|
|
|
6513
|
+
/**
|
|
6514
|
+
* Fiskalisierungs-Backend, mit dem der Beleg angelegt wurde
|
|
6515
|
+
*/
|
|
6516
|
+
fiscalizationBackendRef: ApiObjectReference;
|
|
6517
|
+
|
|
6496
6518
|
/**
|
|
6497
6519
|
* Signatur
|
|
6498
6520
|
*/
|
|
@@ -6607,14 +6629,14 @@ export interface DocumentPosPayment {
|
|
|
6607
6629
|
version: number;
|
|
6608
6630
|
|
|
6609
6631
|
/**
|
|
6610
|
-
*
|
|
6632
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6611
6633
|
*/
|
|
6612
|
-
|
|
6634
|
+
withdrawalAmount: number;
|
|
6613
6635
|
|
|
6614
6636
|
/**
|
|
6615
|
-
*
|
|
6637
|
+
* Zahlungsart
|
|
6616
6638
|
*/
|
|
6617
|
-
|
|
6639
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6618
6640
|
|
|
6619
6641
|
/**
|
|
6620
6642
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6627,14 +6649,14 @@ export interface DocumentPosPayment {
|
|
|
6627
6649
|
balanceBeforeWithdrawal: number;
|
|
6628
6650
|
|
|
6629
6651
|
/**
|
|
6630
|
-
*
|
|
6652
|
+
* Typ der Position
|
|
6631
6653
|
*/
|
|
6632
|
-
|
|
6654
|
+
posLineType: PosLineType;
|
|
6633
6655
|
|
|
6634
6656
|
/**
|
|
6635
|
-
*
|
|
6657
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6636
6658
|
*/
|
|
6637
|
-
|
|
6659
|
+
externalPaymentId: string;
|
|
6638
6660
|
|
|
6639
6661
|
/**
|
|
6640
6662
|
* Unique identifier of the Object
|
|
@@ -7202,14 +7224,14 @@ export const enum DropShippingPolicy {
|
|
|
7202
7224
|
export interface DummySerialNumberStockTransferApi {
|
|
7203
7225
|
|
|
7204
7226
|
/**
|
|
7205
|
-
*
|
|
7227
|
+
* Seriennummer
|
|
7206
7228
|
*/
|
|
7207
|
-
|
|
7229
|
+
serialNumberId: number;
|
|
7208
7230
|
|
|
7209
7231
|
/**
|
|
7210
|
-
*
|
|
7232
|
+
* Ziel-Lager
|
|
7211
7233
|
*/
|
|
7212
|
-
|
|
7234
|
+
targetStorageId: number;
|
|
7213
7235
|
|
|
7214
7236
|
/**
|
|
7215
7237
|
* Bemerkung
|
|
@@ -7219,18 +7241,18 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7219
7241
|
/**
|
|
7220
7242
|
* Buchungsdatum
|
|
7221
7243
|
*/
|
|
7222
|
-
bookDate: ScriptingDate;
|
|
7223
|
-
|
|
7224
|
-
/**
|
|
7225
|
-
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7226
|
-
*/
|
|
7227
|
-
targetExpiryDate: ScriptingDate;
|
|
7244
|
+
bookDate: ScriptingDate;
|
|
7228
7245
|
|
|
7229
7246
|
/**
|
|
7230
7247
|
* Die gültige Seriennummer
|
|
7231
7248
|
*/
|
|
7232
7249
|
targetSerialNumber: string;
|
|
7233
7250
|
|
|
7251
|
+
/**
|
|
7252
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7253
|
+
*/
|
|
7254
|
+
targetExpiryDate: ScriptingDate;
|
|
7255
|
+
|
|
7234
7256
|
/**
|
|
7235
7257
|
* Quell-Lagerplatz
|
|
7236
7258
|
*/
|
|
@@ -7358,6 +7380,8 @@ export const enum EDocumentTransition {
|
|
|
7358
7380
|
CANCEL_EDITING_ACCEPTED = 'CANCEL_EDITING_ACCEPTED',
|
|
7359
7381
|
/**Speichern (für übernommenen Beleg) **/
|
|
7360
7382
|
SAVE_ACCEPTED = 'SAVE_ACCEPTED',
|
|
7383
|
+
/**Neue Version erstellen **/
|
|
7384
|
+
CREATE_NEW_VERSION = 'CREATE_NEW_VERSION',
|
|
7361
7385
|
/**Auftrag in Kommissionierung übernehmen **/
|
|
7362
7386
|
ORDER_IN_PICKING = 'ORDER_IN_PICKING',
|
|
7363
7387
|
/**Auftrags aus Kommissionierung stornieren **/
|
|
@@ -7402,6 +7426,12 @@ export const enum EInvoiceValidationState {
|
|
|
7402
7426
|
NOT_VALID = 'NOT_VALID'
|
|
7403
7427
|
}
|
|
7404
7428
|
|
|
7429
|
+
export const enum ELinebreakType {
|
|
7430
|
+
CR_LF = 'CR_LF',
|
|
7431
|
+
CR = 'CR',
|
|
7432
|
+
LF = 'LF'
|
|
7433
|
+
}
|
|
7434
|
+
|
|
7405
7435
|
export const enum EN16931Origin {
|
|
7406
7436
|
FROM_BILLING_ADDRESS = 'FROM_BILLING_ADDRESS',
|
|
7407
7437
|
FROM_DEFAULT_ADDRESS = 'FROM_DEFAULT_ADDRESS',
|
|
@@ -8349,14 +8379,14 @@ export interface OpenItemRecord {
|
|
|
8349
8379
|
version: number;
|
|
8350
8380
|
|
|
8351
8381
|
/**
|
|
8352
|
-
*
|
|
8382
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8353
8383
|
*/
|
|
8354
|
-
|
|
8384
|
+
transactionId: number;
|
|
8355
8385
|
|
|
8356
8386
|
/**
|
|
8357
|
-
*
|
|
8387
|
+
* Buchungsbetrag in Basiswährung
|
|
8358
8388
|
*/
|
|
8359
|
-
|
|
8389
|
+
baseAmount: number;
|
|
8360
8390
|
|
|
8361
8391
|
/**
|
|
8362
8392
|
* Abzugsbetrag in Basiswährung
|
|
@@ -8759,14 +8789,14 @@ export interface PickTrolley {
|
|
|
8759
8789
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
8760
8790
|
|
|
8761
8791
|
/**
|
|
8762
|
-
*
|
|
8792
|
+
* Bearbeiter der Pickliste
|
|
8763
8793
|
*/
|
|
8764
|
-
|
|
8794
|
+
processedByUserRef: ApiObjectReference;
|
|
8765
8795
|
|
|
8766
8796
|
/**
|
|
8767
|
-
*
|
|
8797
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
8768
8798
|
*/
|
|
8769
|
-
|
|
8799
|
+
storageBinRef: StorageBinRef;
|
|
8770
8800
|
|
|
8771
8801
|
/**
|
|
8772
8802
|
* Beschreibung des Wagens
|
|
@@ -8921,14 +8951,14 @@ export const enum PickingType {
|
|
|
8921
8951
|
export interface Picklist {
|
|
8922
8952
|
|
|
8923
8953
|
/**
|
|
8924
|
-
*
|
|
8954
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
8925
8955
|
*/
|
|
8926
|
-
|
|
8956
|
+
usedTemplate: PicklistTemplate;
|
|
8927
8957
|
|
|
8928
8958
|
/**
|
|
8929
|
-
*
|
|
8959
|
+
* Ziellager für Nachschub
|
|
8930
8960
|
*/
|
|
8931
|
-
|
|
8961
|
+
targetStorageRef: ApiObjectReference;
|
|
8932
8962
|
|
|
8933
8963
|
/**
|
|
8934
8964
|
* Nummer der Pickliste
|
|
@@ -9185,14 +9215,14 @@ export interface PicklistLineComponent {
|
|
|
9185
9215
|
targetDocumentLineComponentId: number;
|
|
9186
9216
|
|
|
9187
9217
|
/**
|
|
9188
|
-
*
|
|
9218
|
+
* abweichende Artikelbezeichnung
|
|
9189
9219
|
*/
|
|
9190
|
-
|
|
9220
|
+
articleAlternativeName: string;
|
|
9191
9221
|
|
|
9192
9222
|
/**
|
|
9193
|
-
*
|
|
9223
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9194
9224
|
*/
|
|
9195
|
-
|
|
9225
|
+
quantityPerAssemblyGroup: number;
|
|
9196
9226
|
|
|
9197
9227
|
/**
|
|
9198
9228
|
* Verpackte Menge der Position
|
|
@@ -9360,20 +9390,15 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9360
9390
|
*/
|
|
9361
9391
|
maxArticleCountPerOrder: number;
|
|
9362
9392
|
|
|
9363
|
-
/**
|
|
9364
|
-
* Maximaler Auftragswert
|
|
9365
|
-
*/
|
|
9366
|
-
maxOrderValue: number;
|
|
9367
|
-
|
|
9368
9393
|
/**
|
|
9369
9394
|
* Alternative Selektion in VQL
|
|
9370
9395
|
*/
|
|
9371
9396
|
alternativeSelectionInVql: string;
|
|
9372
9397
|
|
|
9373
9398
|
/**
|
|
9374
|
-
*
|
|
9399
|
+
* Maximaler Auftragswert
|
|
9375
9400
|
*/
|
|
9376
|
-
|
|
9401
|
+
maxOrderValue: number;
|
|
9377
9402
|
|
|
9378
9403
|
/**
|
|
9379
9404
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -9385,6 +9410,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9385
9410
|
*/
|
|
9386
9411
|
onlyFullDeliverableOrderLines: boolean;
|
|
9387
9412
|
|
|
9413
|
+
/**
|
|
9414
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9415
|
+
*/
|
|
9416
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9417
|
+
|
|
9388
9418
|
/**
|
|
9389
9419
|
* Selektion über den Bereich vom Belegdatum
|
|
9390
9420
|
*/
|
|
@@ -9448,15 +9478,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9448
9478
|
*/
|
|
9449
9479
|
printPicklist: boolean;
|
|
9450
9480
|
|
|
9481
|
+
/**
|
|
9482
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9483
|
+
*/
|
|
9484
|
+
maxPicklistLineCount: number;
|
|
9485
|
+
|
|
9451
9486
|
/**
|
|
9452
9487
|
* Die zu verwendende Pickwagengruppe
|
|
9453
9488
|
*/
|
|
9454
9489
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9455
9490
|
|
|
9456
9491
|
/**
|
|
9457
|
-
*
|
|
9492
|
+
* Lagerplätze vorgeben
|
|
9458
9493
|
*/
|
|
9459
|
-
|
|
9494
|
+
specifyStorageBins: boolean;
|
|
9460
9495
|
|
|
9461
9496
|
/**
|
|
9462
9497
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9468,11 +9503,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9468
9503
|
*/
|
|
9469
9504
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9470
9505
|
|
|
9471
|
-
/**
|
|
9472
|
-
* Lagerplätze vorgeben
|
|
9473
|
-
*/
|
|
9474
|
-
specifyStorageBins: boolean;
|
|
9475
|
-
|
|
9476
9506
|
/**
|
|
9477
9507
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9478
9508
|
*/
|
|
@@ -9527,14 +9557,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9527
9557
|
alwaysShowDeliveryMethod: boolean;
|
|
9528
9558
|
|
|
9529
9559
|
/**
|
|
9530
|
-
*
|
|
9560
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9531
9561
|
*/
|
|
9532
|
-
|
|
9562
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9533
9563
|
|
|
9534
9564
|
/**
|
|
9535
|
-
*
|
|
9565
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9536
9566
|
*/
|
|
9537
|
-
|
|
9567
|
+
autoPrintDeliveryDocument: boolean;
|
|
9538
9568
|
|
|
9539
9569
|
/**
|
|
9540
9570
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -9542,9 +9572,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9542
9572
|
showShippingFormOnPickingFinish: boolean;
|
|
9543
9573
|
|
|
9544
9574
|
/**
|
|
9545
|
-
* Sollen
|
|
9575
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9546
9576
|
*/
|
|
9547
|
-
|
|
9577
|
+
allowPickingOfServiceArticles: boolean;
|
|
9548
9578
|
|
|
9549
9579
|
/**
|
|
9550
9580
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -9552,9 +9582,9 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9552
9582
|
useDigitalPicklist: boolean;
|
|
9553
9583
|
|
|
9554
9584
|
/**
|
|
9555
|
-
* Sollen
|
|
9585
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9556
9586
|
*/
|
|
9557
|
-
|
|
9587
|
+
printLabelOnScan: boolean;
|
|
9558
9588
|
|
|
9559
9589
|
/**
|
|
9560
9590
|
* Sammelbestätigung erlauben
|
|
@@ -9576,26 +9606,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9576
9606
|
*/
|
|
9577
9607
|
printLabelOnCompleteOrder: boolean;
|
|
9578
9608
|
|
|
9579
|
-
/**
|
|
9580
|
-
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9581
|
-
*/
|
|
9582
|
-
printLabelAfterPicking: boolean;
|
|
9583
|
-
|
|
9584
9609
|
/**
|
|
9585
9610
|
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9586
9611
|
*/
|
|
9587
9612
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9588
9613
|
|
|
9589
9614
|
/**
|
|
9590
|
-
*
|
|
9615
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9591
9616
|
*/
|
|
9592
|
-
|
|
9617
|
+
printLabelAfterPicking: boolean;
|
|
9593
9618
|
|
|
9594
9619
|
/**
|
|
9595
9620
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9596
9621
|
*/
|
|
9597
9622
|
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9598
9623
|
|
|
9624
|
+
/**
|
|
9625
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9626
|
+
*/
|
|
9627
|
+
autoDeterminationOfLots: boolean;
|
|
9628
|
+
|
|
9599
9629
|
/**
|
|
9600
9630
|
* Zielmengen in Masken verstecken?
|
|
9601
9631
|
*/
|
|
@@ -9615,6 +9645,12 @@ export interface PicklistTemplate$PicklistScript {
|
|
|
9615
9645
|
source: string;
|
|
9616
9646
|
}
|
|
9617
9647
|
|
|
9648
|
+
/**
|
|
9649
|
+
* Writer für einfache Texte ohne besondere Formatierung
|
|
9650
|
+
*/
|
|
9651
|
+
export interface PlainScriptingWriter {
|
|
9652
|
+
}
|
|
9653
|
+
|
|
9618
9654
|
export const enum PosLineType {
|
|
9619
9655
|
CASH_PAYMENT = 'CASH_PAYMENT',
|
|
9620
9656
|
CASH_CHANGE = 'CASH_CHANGE',
|
|
@@ -9670,14 +9706,14 @@ export interface PriceSelectionCriteria {
|
|
|
9670
9706
|
quantity: number;
|
|
9671
9707
|
|
|
9672
9708
|
/**
|
|
9673
|
-
* Liste von
|
|
9709
|
+
* Liste von Artikel-IDs
|
|
9674
9710
|
*/
|
|
9675
|
-
|
|
9711
|
+
articleIds: Array<number>;
|
|
9676
9712
|
|
|
9677
9713
|
/**
|
|
9678
|
-
* Liste von
|
|
9714
|
+
* Liste von Account-IDs
|
|
9679
9715
|
*/
|
|
9680
|
-
|
|
9716
|
+
accountIds: Array<number>;
|
|
9681
9717
|
|
|
9682
9718
|
/**
|
|
9683
9719
|
* ein qualifier
|
|
@@ -9844,14 +9880,14 @@ export interface ProductArticleRef {
|
|
|
9844
9880
|
export interface ProductDiscount {
|
|
9845
9881
|
|
|
9846
9882
|
/**
|
|
9847
|
-
*
|
|
9883
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9848
9884
|
*/
|
|
9849
|
-
|
|
9885
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9850
9886
|
|
|
9851
9887
|
/**
|
|
9852
|
-
*
|
|
9888
|
+
* Kundengruppe
|
|
9853
9889
|
*/
|
|
9854
|
-
|
|
9890
|
+
customerGroupRef: ApiObjectReference;
|
|
9855
9891
|
|
|
9856
9892
|
/**
|
|
9857
9893
|
* Lieferantengruppe
|
|
@@ -9874,14 +9910,14 @@ export interface ProductDiscount {
|
|
|
9874
9910
|
validFrom: ScriptingDate;
|
|
9875
9911
|
|
|
9876
9912
|
/**
|
|
9877
|
-
*
|
|
9913
|
+
* Bestimmt die Art des Rabatts
|
|
9878
9914
|
*/
|
|
9879
|
-
|
|
9915
|
+
modifierType: PriceModifierType;
|
|
9880
9916
|
|
|
9881
9917
|
/**
|
|
9882
|
-
*
|
|
9918
|
+
* Warengruppe
|
|
9883
9919
|
*/
|
|
9884
|
-
|
|
9920
|
+
productGroupRef: ApiObjectReference;
|
|
9885
9921
|
|
|
9886
9922
|
/**
|
|
9887
9923
|
* Version Identifier for this Object (for PUT)
|
|
@@ -9899,14 +9935,14 @@ export interface ProductDiscount {
|
|
|
9899
9935
|
currencyRef: CurrencyReference;
|
|
9900
9936
|
|
|
9901
9937
|
/**
|
|
9902
|
-
*
|
|
9938
|
+
* Wert des Rabatts
|
|
9903
9939
|
*/
|
|
9904
|
-
|
|
9940
|
+
modifierValue: number;
|
|
9905
9941
|
|
|
9906
9942
|
/**
|
|
9907
|
-
*
|
|
9943
|
+
* Preisgruppe
|
|
9908
9944
|
*/
|
|
9909
|
-
|
|
9945
|
+
priceGroupRef: ApiObjectReference;
|
|
9910
9946
|
|
|
9911
9947
|
/**
|
|
9912
9948
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -9929,14 +9965,14 @@ export interface ProductDiscount {
|
|
|
9929
9965
|
modifierValueType: ValueType;
|
|
9930
9966
|
|
|
9931
9967
|
/**
|
|
9932
|
-
*
|
|
9968
|
+
* Name des Rabatts
|
|
9933
9969
|
*/
|
|
9934
|
-
|
|
9970
|
+
modifierName: string;
|
|
9935
9971
|
|
|
9936
9972
|
/**
|
|
9937
|
-
*
|
|
9973
|
+
* Account, für den der Rabatt gültig ist
|
|
9938
9974
|
*/
|
|
9939
|
-
|
|
9975
|
+
accountRef: ApiObjectReference;
|
|
9940
9976
|
|
|
9941
9977
|
/**
|
|
9942
9978
|
* Unique identifier of the Object
|
|
@@ -10053,14 +10089,14 @@ export interface ProductMainGroup {
|
|
|
10053
10089
|
export interface ProductPrice {
|
|
10054
10090
|
|
|
10055
10091
|
/**
|
|
10056
|
-
*
|
|
10092
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10057
10093
|
*/
|
|
10058
|
-
|
|
10094
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10059
10095
|
|
|
10060
10096
|
/**
|
|
10061
|
-
*
|
|
10097
|
+
* Kundengruppe
|
|
10062
10098
|
*/
|
|
10063
|
-
|
|
10099
|
+
customerGroupRef: ApiObjectReference;
|
|
10064
10100
|
|
|
10065
10101
|
/**
|
|
10066
10102
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10343,14 +10379,14 @@ export interface RequestDocument {
|
|
|
10343
10379
|
lines: Array<RequestDocumentLine>;
|
|
10344
10380
|
|
|
10345
10381
|
/**
|
|
10346
|
-
*
|
|
10382
|
+
* Die Vertragsdetails
|
|
10347
10383
|
*/
|
|
10348
|
-
|
|
10384
|
+
contractDetail: DocumentContractDetail;
|
|
10349
10385
|
|
|
10350
10386
|
/**
|
|
10351
|
-
*
|
|
10387
|
+
* ID der Kasse (bei POS)
|
|
10352
10388
|
*/
|
|
10353
|
-
|
|
10389
|
+
posRegisterId: number;
|
|
10354
10390
|
|
|
10355
10391
|
/**
|
|
10356
10392
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10408,14 +10444,14 @@ export interface RequestDocument {
|
|
|
10408
10444
|
texts: Array<DocumentText>;
|
|
10409
10445
|
|
|
10410
10446
|
/**
|
|
10411
|
-
*
|
|
10447
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10412
10448
|
*/
|
|
10413
|
-
|
|
10449
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10414
10450
|
|
|
10415
10451
|
/**
|
|
10416
|
-
*
|
|
10452
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10417
10453
|
*/
|
|
10418
|
-
|
|
10454
|
+
processedByPicklistProcessing: boolean;
|
|
10419
10455
|
|
|
10420
10456
|
/**
|
|
10421
10457
|
* Die Rabatte des Beleges
|
|
@@ -10471,14 +10507,14 @@ export interface RequestDocumentLine {
|
|
|
10471
10507
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10472
10508
|
|
|
10473
10509
|
/**
|
|
10474
|
-
*
|
|
10510
|
+
* Typ dieser Position
|
|
10475
10511
|
*/
|
|
10476
|
-
|
|
10512
|
+
lineType: DocumentLineType;
|
|
10477
10513
|
|
|
10478
10514
|
/**
|
|
10479
|
-
*
|
|
10515
|
+
* FiBu-Angaben
|
|
10480
10516
|
*/
|
|
10481
|
-
|
|
10517
|
+
financeBooking: DocumentFinanceBooking;
|
|
10482
10518
|
|
|
10483
10519
|
/**
|
|
10484
10520
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10491,14 +10527,14 @@ export interface RequestDocumentLine {
|
|
|
10491
10527
|
dropShippingPolicy: DropShippingPolicy;
|
|
10492
10528
|
|
|
10493
10529
|
/**
|
|
10494
|
-
*
|
|
10530
|
+
* (optional) Lager-ID
|
|
10495
10531
|
*/
|
|
10496
|
-
|
|
10532
|
+
storageId: number;
|
|
10497
10533
|
|
|
10498
10534
|
/**
|
|
10499
|
-
*
|
|
10535
|
+
* Positionsnummer der Artikel
|
|
10500
10536
|
*/
|
|
10501
|
-
|
|
10537
|
+
positionOfArticleLine: number;
|
|
10502
10538
|
|
|
10503
10539
|
/**
|
|
10504
10540
|
* Vertragsdetails zur Belegposition
|
|
@@ -10591,14 +10627,14 @@ export interface RequestDocumentLine {
|
|
|
10591
10627
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10592
10628
|
|
|
10593
10629
|
/**
|
|
10594
|
-
*
|
|
10630
|
+
* (optional) Preis des Artikels dieser Position
|
|
10595
10631
|
*/
|
|
10596
|
-
|
|
10632
|
+
productPrice: number;
|
|
10597
10633
|
|
|
10598
10634
|
/**
|
|
10599
|
-
*
|
|
10635
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10600
10636
|
*/
|
|
10601
|
-
|
|
10637
|
+
doLabelPrint: boolean;
|
|
10602
10638
|
}
|
|
10603
10639
|
|
|
10604
10640
|
export interface RequestDocumentLineBooking {
|
|
@@ -10727,14 +10763,14 @@ export interface RequestDocumentText {
|
|
|
10727
10763
|
export interface RevenueCalculation {
|
|
10728
10764
|
|
|
10729
10765
|
/**
|
|
10730
|
-
*
|
|
10766
|
+
* Deckungsbeitrag (absolut)
|
|
10731
10767
|
*/
|
|
10732
|
-
|
|
10768
|
+
revenue: number;
|
|
10733
10769
|
|
|
10734
10770
|
/**
|
|
10735
|
-
*
|
|
10771
|
+
* Netto Umsatz
|
|
10736
10772
|
*/
|
|
10737
|
-
|
|
10773
|
+
salesValue: number;
|
|
10738
10774
|
|
|
10739
10775
|
/**
|
|
10740
10776
|
* Einkaufspreis
|
|
@@ -11056,6 +11092,15 @@ export interface ScriptingDate {
|
|
|
11056
11092
|
export interface ScriptingDateTime {
|
|
11057
11093
|
}
|
|
11058
11094
|
|
|
11095
|
+
export interface ScriptingOutputStream {
|
|
11096
|
+
}
|
|
11097
|
+
|
|
11098
|
+
/**
|
|
11099
|
+
* Zum einfachen Schreiben von Daten im XML-Format
|
|
11100
|
+
*/
|
|
11101
|
+
export interface ScriptingXmlWriter {
|
|
11102
|
+
}
|
|
11103
|
+
|
|
11059
11104
|
/**
|
|
11060
11105
|
* HTTP-Client fürs Scripting
|
|
11061
11106
|
*/
|
|
@@ -11174,6 +11219,9 @@ export interface SerialNumberWithQuantityApi {
|
|
|
11174
11219
|
serialNumber: ArticleSerialNumber;
|
|
11175
11220
|
}
|
|
11176
11221
|
|
|
11222
|
+
export interface ShelfCommonMapper {
|
|
11223
|
+
}
|
|
11224
|
+
|
|
11177
11225
|
export interface ShelfDocument {
|
|
11178
11226
|
|
|
11179
11227
|
/**
|
|
@@ -11222,14 +11270,14 @@ export interface ShelfDocument {
|
|
|
11222
11270
|
tags: Array<TagDto>;
|
|
11223
11271
|
|
|
11224
11272
|
/**
|
|
11225
|
-
*
|
|
11273
|
+
* share informations
|
|
11226
11274
|
*/
|
|
11227
|
-
|
|
11275
|
+
shares: Array<ShelfShare>;
|
|
11228
11276
|
|
|
11229
11277
|
/**
|
|
11230
|
-
*
|
|
11278
|
+
* Mehrsprachige Bezeichnungen
|
|
11231
11279
|
*/
|
|
11232
|
-
|
|
11280
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11233
11281
|
|
|
11234
11282
|
/**
|
|
11235
11283
|
* Automatische Löschung ab
|
|
@@ -11414,14 +11462,14 @@ export interface ShelfFile {
|
|
|
11414
11462
|
subFiles: Array<SubFileInfo>;
|
|
11415
11463
|
|
|
11416
11464
|
/**
|
|
11417
|
-
*
|
|
11465
|
+
* fileSize
|
|
11418
11466
|
*/
|
|
11419
|
-
|
|
11467
|
+
fileSize: number;
|
|
11420
11468
|
|
|
11421
11469
|
/**
|
|
11422
|
-
*
|
|
11470
|
+
* revision number of this file
|
|
11423
11471
|
*/
|
|
11424
|
-
|
|
11472
|
+
revisionNumber: number;
|
|
11425
11473
|
|
|
11426
11474
|
/**
|
|
11427
11475
|
* file-extension of this entry
|
|
@@ -11492,6 +11540,9 @@ export interface ShelfFileMetaData {
|
|
|
11492
11540
|
info: MetaInfo;
|
|
11493
11541
|
}
|
|
11494
11542
|
|
|
11543
|
+
export interface ShelfFileUploadSession {
|
|
11544
|
+
}
|
|
11545
|
+
|
|
11495
11546
|
export interface ShelfShare {
|
|
11496
11547
|
|
|
11497
11548
|
/**
|
|
@@ -11500,14 +11551,14 @@ export interface ShelfShare {
|
|
|
11500
11551
|
publishState: ShelfSharePublishState;
|
|
11501
11552
|
|
|
11502
11553
|
/**
|
|
11503
|
-
*
|
|
11554
|
+
* Freifelder
|
|
11504
11555
|
*/
|
|
11505
|
-
|
|
11556
|
+
custom: EavShelfshare;
|
|
11506
11557
|
|
|
11507
11558
|
/**
|
|
11508
|
-
*
|
|
11559
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11509
11560
|
*/
|
|
11510
|
-
|
|
11561
|
+
publicUrlDurationInMinutes: number;
|
|
11511
11562
|
|
|
11512
11563
|
/**
|
|
11513
11564
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -11636,11 +11687,6 @@ export interface Stock {
|
|
|
11636
11687
|
*/
|
|
11637
11688
|
storageBinId: number;
|
|
11638
11689
|
|
|
11639
|
-
/**
|
|
11640
|
-
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
11641
|
-
*/
|
|
11642
|
-
reservedSerialQuantity: number;
|
|
11643
|
-
|
|
11644
11690
|
/**
|
|
11645
11691
|
* Artikel
|
|
11646
11692
|
*/
|
|
@@ -11719,14 +11765,14 @@ export interface StockMovementManualApi {
|
|
|
11719
11765
|
export interface StockTransferApi {
|
|
11720
11766
|
|
|
11721
11767
|
/**
|
|
11722
|
-
*
|
|
11768
|
+
* Seriennummer
|
|
11723
11769
|
*/
|
|
11724
|
-
|
|
11770
|
+
serialNumberId: number;
|
|
11725
11771
|
|
|
11726
11772
|
/**
|
|
11727
|
-
*
|
|
11773
|
+
* Ziel-Lager
|
|
11728
11774
|
*/
|
|
11729
|
-
|
|
11775
|
+
targetStorageId: number;
|
|
11730
11776
|
|
|
11731
11777
|
/**
|
|
11732
11778
|
* Bemerkung
|
|
@@ -11845,6 +11891,12 @@ export interface StorageBinRef {
|
|
|
11845
11891
|
id: number;
|
|
11846
11892
|
}
|
|
11847
11893
|
|
|
11894
|
+
/**
|
|
11895
|
+
* Speichert die geschriebenen Daten als String.
|
|
11896
|
+
*/
|
|
11897
|
+
export interface StringCollectorOutputStream {
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11848
11900
|
export interface SubFileInfo {
|
|
11849
11901
|
|
|
11850
11902
|
/**
|
|
@@ -12001,14 +12053,14 @@ export interface Supplier {
|
|
|
12001
12053
|
performanceCountryCode: string;
|
|
12002
12054
|
|
|
12003
12055
|
/**
|
|
12004
|
-
*
|
|
12056
|
+
* reference to the payment method
|
|
12005
12057
|
*/
|
|
12006
|
-
|
|
12058
|
+
paymentMethodRef: ApiObjectReference;
|
|
12007
12059
|
|
|
12008
12060
|
/**
|
|
12009
|
-
*
|
|
12061
|
+
* Lieferzeit in (Werk-)Tagen
|
|
12010
12062
|
*/
|
|
12011
|
-
|
|
12063
|
+
defaultDeliveryTime: number;
|
|
12012
12064
|
|
|
12013
12065
|
/**
|
|
12014
12066
|
* currency code IsoAlpha3
|