@vario-software/types 2026.26.1 → 2026.26.2
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 +24 -24
- package/scripting/types.d.ts +272 -272
package/scripting/types.d.ts
CHANGED
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -1009,20 +1009,25 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* is this product purchasable
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
purchasable: boolean;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
1023
1023
|
*/
|
|
1024
1024
|
baseCapacityUnit: UnitTypeReference;
|
|
1025
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* Durchschnittl. EKP (Startwert)
|
|
1028
|
+
*/
|
|
1029
|
+
initialAvgPurchasePrice: number;
|
|
1030
|
+
|
|
1026
1031
|
/**
|
|
1027
1032
|
* Seriennummern Auszeichnungsart
|
|
1028
1033
|
*/
|
|
@@ -1033,11 +1038,6 @@ export interface Article {
|
|
|
1033
1038
|
*/
|
|
1034
1039
|
sellableWithoutStock: boolean;
|
|
1035
1040
|
|
|
1036
|
-
/**
|
|
1037
|
-
* Durchschnittl. EKP (Startwert)
|
|
1038
|
-
*/
|
|
1039
|
-
initialAvgPurchasePrice: number;
|
|
1040
|
-
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
1043
1043
|
*/
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1134,14 +1134,14 @@ export interface Article {
|
|
|
1134
1134
|
deliveryMethodRef: ApiObjectReference;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Soll-Handelsspanne
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
targetTradingMargin: number;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
|
-
*
|
|
1142
|
+
* Produktion
|
|
1143
1143
|
*/
|
|
1144
|
-
|
|
1144
|
+
fabrication: boolean;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* active
|
|
@@ -1179,14 +1179,14 @@ export interface Article {
|
|
|
1179
1179
|
solvable: boolean;
|
|
1180
1180
|
|
|
1181
1181
|
/**
|
|
1182
|
-
*
|
|
1182
|
+
* Verkaufseinheit
|
|
1183
1183
|
*/
|
|
1184
|
-
|
|
1184
|
+
salesUnit: number;
|
|
1185
1185
|
|
|
1186
1186
|
/**
|
|
1187
|
-
*
|
|
1187
|
+
* weight and size inc. packaging
|
|
1188
1188
|
*/
|
|
1189
|
-
|
|
1189
|
+
grossMetric: Article$Metric;
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
1192
|
* name of this product
|
|
@@ -1198,26 +1198,26 @@ export interface Article {
|
|
|
1198
1198
|
*/
|
|
1199
1199
|
listingStateChangeTime: ScriptingDateTime;
|
|
1200
1200
|
|
|
1201
|
-
/**
|
|
1202
|
-
* Country code
|
|
1203
|
-
*/
|
|
1204
|
-
countryOfOriginRef: CountryReference;
|
|
1205
|
-
|
|
1206
1201
|
/**
|
|
1207
1202
|
* Arbeitseinheit in Minuten
|
|
1208
1203
|
*/
|
|
1209
1204
|
workUnitInMinutes: number;
|
|
1210
1205
|
|
|
1211
1206
|
/**
|
|
1212
|
-
*
|
|
1207
|
+
* Country code
|
|
1213
1208
|
*/
|
|
1214
|
-
|
|
1209
|
+
countryOfOriginRef: CountryReference;
|
|
1215
1210
|
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Frei kommissionierbar
|
|
1218
1213
|
*/
|
|
1219
1214
|
freelyPickable: boolean;
|
|
1220
1215
|
|
|
1216
|
+
/**
|
|
1217
|
+
* description custom data
|
|
1218
|
+
*/
|
|
1219
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
|
+
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1223
1223
|
*/
|
|
@@ -1298,6 +1298,11 @@ export interface Article {
|
|
|
1298
1298
|
*/
|
|
1299
1299
|
shippingLabelPrinting: boolean;
|
|
1300
1300
|
|
|
1301
|
+
/**
|
|
1302
|
+
* alternative name of this product
|
|
1303
|
+
*/
|
|
1304
|
+
alternativeName: string;
|
|
1305
|
+
|
|
1301
1306
|
/**
|
|
1302
1307
|
* rabattierbarer Artikel?
|
|
1303
1308
|
*/
|
|
@@ -1308,11 +1313,6 @@ export interface Article {
|
|
|
1308
1313
|
*/
|
|
1309
1314
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1315
|
|
|
1311
|
-
/**
|
|
1312
|
-
* alternative name of this product
|
|
1313
|
-
*/
|
|
1314
|
-
alternativeName: string;
|
|
1315
|
-
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
1318
1318
|
*/
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1494,14 +1494,14 @@ export interface ArticleCustomer {
|
|
|
1494
1494
|
articleName: string;
|
|
1495
1495
|
|
|
1496
1496
|
/**
|
|
1497
|
-
*
|
|
1497
|
+
* Etikettdruck-Einstellungen
|
|
1498
1498
|
*/
|
|
1499
|
-
|
|
1499
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
|
-
*
|
|
1502
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1504
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1505
1505
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Kunden-Preise
|
|
@@ -1509,14 +1509,14 @@ export interface ArticleCustomer {
|
|
|
1509
1509
|
productPrices: Array<ProductPrice>;
|
|
1510
1510
|
|
|
1511
1511
|
/**
|
|
1512
|
-
*
|
|
1512
|
+
* Referenced Article
|
|
1513
1513
|
*/
|
|
1514
|
-
|
|
1514
|
+
articleId: number;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
|
-
*
|
|
1517
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
useDeviatingArticleDescription: boolean;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Aktiv?
|
|
@@ -1909,14 +1909,14 @@ export interface ArticleStorage {
|
|
|
1909
1909
|
quantityInPicking: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1992,14 +1992,14 @@ export interface ArticleSupplier {
|
|
|
1992
1992
|
useSupplierArticleDescription: boolean;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
|
-
*
|
|
1995
|
+
* Lieferanten-Meldebestand
|
|
1996
1996
|
*/
|
|
1997
|
-
|
|
1997
|
+
supplierReportingStock: number;
|
|
1998
1998
|
|
|
1999
1999
|
/**
|
|
2000
|
-
*
|
|
2000
|
+
* Anzeigename des Accounts
|
|
2001
2001
|
*/
|
|
2002
|
-
|
|
2002
|
+
accountDisplayName: string;
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Lieferzeit in (Werk-)Tagen
|
|
@@ -2333,14 +2333,14 @@ export interface CountryReference {
|
|
|
2333
2333
|
export interface CreateNewDocumentRequest {
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
* Belegart
|
|
2336
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
|
-
*
|
|
2341
|
+
* Belegart
|
|
2342
2342
|
*/
|
|
2343
|
-
|
|
2343
|
+
documentTypeLabel: string;
|
|
2344
2344
|
|
|
2345
2345
|
/**
|
|
2346
2346
|
* Details zum Beleg
|
|
@@ -2406,14 +2406,14 @@ export interface CrmActivity {
|
|
|
2406
2406
|
info: MetaInfo;
|
|
2407
2407
|
|
|
2408
2408
|
/**
|
|
2409
|
-
*
|
|
2409
|
+
* geplante Dauer
|
|
2410
2410
|
*/
|
|
2411
|
-
|
|
2411
|
+
plannedDurationInSeconds: number;
|
|
2412
2412
|
|
|
2413
2413
|
/**
|
|
2414
|
-
*
|
|
2414
|
+
* Aktivität intern abgerechnet?
|
|
2415
2415
|
*/
|
|
2416
|
-
|
|
2416
|
+
internalBilled: boolean;
|
|
2417
2417
|
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2565,14 +2565,14 @@ export interface CrmActivityType {
|
|
|
2565
2565
|
export interface CrmChecklistItem {
|
|
2566
2566
|
|
|
2567
2567
|
/**
|
|
2568
|
-
*
|
|
2568
|
+
* Ist das Element "angehakt"?
|
|
2569
2569
|
*/
|
|
2570
|
-
|
|
2570
|
+
checked: boolean;
|
|
2571
2571
|
|
|
2572
2572
|
/**
|
|
2573
|
-
*
|
|
2573
|
+
* Text des Checklisten-Elements
|
|
2574
2574
|
*/
|
|
2575
|
-
|
|
2575
|
+
memo: string;
|
|
2576
2576
|
|
|
2577
2577
|
/**
|
|
2578
2578
|
* Unique identifier of the Object
|
|
@@ -2974,14 +2974,14 @@ export interface CrmProject {
|
|
|
2974
2974
|
priorityRef: ApiObjectReference;
|
|
2975
2975
|
|
|
2976
2976
|
/**
|
|
2977
|
-
*
|
|
2977
|
+
* Projektleiter vom Auftragnehmer
|
|
2978
2978
|
*/
|
|
2979
|
-
|
|
2979
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2980
2980
|
|
|
2981
2981
|
/**
|
|
2982
|
-
*
|
|
2982
|
+
* Phase
|
|
2983
2983
|
*/
|
|
2984
|
-
|
|
2984
|
+
phaseRef: ApiObjectReference;
|
|
2985
2985
|
|
|
2986
2986
|
/**
|
|
2987
2987
|
* Aufgaben-Nummer
|
|
@@ -3039,14 +3039,14 @@ export interface CrmProject {
|
|
|
3039
3039
|
info: MetaInfo;
|
|
3040
3040
|
|
|
3041
3041
|
/**
|
|
3042
|
-
*
|
|
3042
|
+
* Projektleiter vom Auftraggeber
|
|
3043
3043
|
*/
|
|
3044
|
-
|
|
3044
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3045
3045
|
|
|
3046
3046
|
/**
|
|
3047
|
-
*
|
|
3047
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3048
3048
|
*/
|
|
3049
|
-
|
|
3049
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3050
3050
|
|
|
3051
3051
|
/**
|
|
3052
3052
|
* Übergeordnete CRM-Objekte
|
|
@@ -3234,14 +3234,14 @@ export interface CrmState {
|
|
|
3234
3234
|
readyToBill: boolean;
|
|
3235
3235
|
|
|
3236
3236
|
/**
|
|
3237
|
-
*
|
|
3237
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3238
3238
|
*/
|
|
3239
|
-
|
|
3239
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3240
3240
|
|
|
3241
3241
|
/**
|
|
3242
|
-
*
|
|
3242
|
+
* Handelt es sich um einen Anfang-Status
|
|
3243
3243
|
*/
|
|
3244
|
-
|
|
3244
|
+
startState: boolean;
|
|
3245
3245
|
|
|
3246
3246
|
/**
|
|
3247
3247
|
* MetaInformations for this Object
|
|
@@ -3289,11 +3289,6 @@ export interface CrmSubType {
|
|
|
3289
3289
|
|
|
3290
3290
|
export interface CrmTask {
|
|
3291
3291
|
|
|
3292
|
-
/**
|
|
3293
|
-
* Liste von Erinnerungen
|
|
3294
|
-
*/
|
|
3295
|
-
reminders: Array<CrmReminder>;
|
|
3296
|
-
|
|
3297
3292
|
/**
|
|
3298
3293
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3299
3294
|
*/
|
|
@@ -3304,6 +3299,11 @@ export interface CrmTask {
|
|
|
3304
3299
|
*/
|
|
3305
3300
|
customerOfferRef: DocumentRef;
|
|
3306
3301
|
|
|
3302
|
+
/**
|
|
3303
|
+
* Liste von Erinnerungen
|
|
3304
|
+
*/
|
|
3305
|
+
reminders: Array<CrmReminder>;
|
|
3306
|
+
|
|
3307
3307
|
/**
|
|
3308
3308
|
* Notizen
|
|
3309
3309
|
*/
|
|
@@ -3495,14 +3495,14 @@ export interface CrmTask {
|
|
|
3495
3495
|
parentRefs: Array<CrmObjectRef>;
|
|
3496
3496
|
|
|
3497
3497
|
/**
|
|
3498
|
-
*
|
|
3498
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3499
3499
|
*/
|
|
3500
|
-
|
|
3500
|
+
externalRecordedTimes: number;
|
|
3501
3501
|
|
|
3502
3502
|
/**
|
|
3503
|
-
*
|
|
3503
|
+
* Beauftragte Zeit in Sekunden
|
|
3504
3504
|
*/
|
|
3505
|
-
|
|
3505
|
+
effortCommissioned: number;
|
|
3506
3506
|
|
|
3507
3507
|
/**
|
|
3508
3508
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3734,14 +3734,14 @@ export interface Customer {
|
|
|
3734
3734
|
stackProcessingPriority: number;
|
|
3735
3735
|
|
|
3736
3736
|
/**
|
|
3737
|
-
*
|
|
3737
|
+
* reference to product price group
|
|
3738
3738
|
*/
|
|
3739
|
-
|
|
3739
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3740
3740
|
|
|
3741
3741
|
/**
|
|
3742
|
-
*
|
|
3742
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3743
3743
|
*/
|
|
3744
|
-
|
|
3744
|
+
collectiveInvoiceManually: boolean;
|
|
3745
3745
|
|
|
3746
3746
|
/**
|
|
3747
3747
|
* Unique identifier of the Object
|
|
@@ -3759,14 +3759,14 @@ export interface Customer {
|
|
|
3759
3759
|
info: MetaInfo;
|
|
3760
3760
|
|
|
3761
3761
|
/**
|
|
3762
|
-
*
|
|
3762
|
+
* tax able or tax free
|
|
3763
3763
|
*/
|
|
3764
|
-
|
|
3764
|
+
taxable: boolean;
|
|
3765
3765
|
|
|
3766
3766
|
/**
|
|
3767
|
-
*
|
|
3767
|
+
* reference to the delivery method
|
|
3768
3768
|
*/
|
|
3769
|
-
|
|
3769
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3770
3770
|
|
|
3771
3771
|
/**
|
|
3772
3772
|
* active true/false
|
|
@@ -3918,14 +3918,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3918
3918
|
export interface DeliveryMethod {
|
|
3919
3919
|
|
|
3920
3920
|
/**
|
|
3921
|
-
*
|
|
3921
|
+
* E-Mail an Versender übergeben
|
|
3922
3922
|
*/
|
|
3923
|
-
|
|
3923
|
+
forwardEmailToShipper: boolean;
|
|
3924
3924
|
|
|
3925
3925
|
/**
|
|
3926
|
-
*
|
|
3926
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3927
3927
|
*/
|
|
3928
|
-
|
|
3928
|
+
splitIntoNewDocument: boolean;
|
|
3929
3929
|
|
|
3930
3930
|
/**
|
|
3931
3931
|
* Min. Gewicht pro Paket
|
|
@@ -3988,14 +3988,14 @@ export interface DeliveryMethod {
|
|
|
3988
3988
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3989
3989
|
|
|
3990
3990
|
/**
|
|
3991
|
-
*
|
|
3991
|
+
* Versand-Anbieter
|
|
3992
3992
|
*/
|
|
3993
|
-
|
|
3993
|
+
vdsCarrierId: number;
|
|
3994
3994
|
|
|
3995
3995
|
/**
|
|
3996
|
-
*
|
|
3996
|
+
* Gültige Ländercodes
|
|
3997
3997
|
*/
|
|
3998
|
-
|
|
3998
|
+
validCountryCodes: Array<string>;
|
|
3999
3999
|
|
|
4000
4000
|
/**
|
|
4001
4001
|
* Standardgewichtseinheit
|
|
@@ -4076,14 +4076,14 @@ export interface DeliveryTerm {
|
|
|
4076
4076
|
version: number;
|
|
4077
4077
|
|
|
4078
4078
|
/**
|
|
4079
|
-
*
|
|
4079
|
+
* translations
|
|
4080
4080
|
*/
|
|
4081
|
-
|
|
4081
|
+
translations: Array<DocumentTypeTerm>;
|
|
4082
4082
|
|
|
4083
4083
|
/**
|
|
4084
|
-
*
|
|
4084
|
+
* information, how the shipping charges should be calculated
|
|
4085
4085
|
*/
|
|
4086
|
-
|
|
4086
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4087
4087
|
|
|
4088
4088
|
/**
|
|
4089
4089
|
* Lieferarten
|
|
@@ -4262,14 +4262,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4262
4262
|
accountId: number;
|
|
4263
4263
|
|
|
4264
4264
|
/**
|
|
4265
|
-
* Länderkennzeichen
|
|
4265
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4266
4266
|
*/
|
|
4267
|
-
|
|
4267
|
+
performanceCountryCode: string;
|
|
4268
4268
|
|
|
4269
4269
|
/**
|
|
4270
|
-
* Länderkennzeichen
|
|
4270
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4271
4271
|
*/
|
|
4272
|
-
|
|
4272
|
+
sourceCountryCode: string;
|
|
4273
4273
|
|
|
4274
4274
|
/**
|
|
4275
4275
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4369,14 +4369,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4369
4369
|
contractDetail: DocumentContractDetail;
|
|
4370
4370
|
|
|
4371
4371
|
/**
|
|
4372
|
-
*
|
|
4372
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4373
4373
|
*/
|
|
4374
|
-
|
|
4374
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4375
4375
|
|
|
4376
4376
|
/**
|
|
4377
|
-
*
|
|
4377
|
+
* Zahlungsplan vorhanden?
|
|
4378
4378
|
*/
|
|
4379
|
-
|
|
4379
|
+
paymentPlan: boolean;
|
|
4380
4380
|
|
|
4381
4381
|
/**
|
|
4382
4382
|
* Produktionsdetails
|
|
@@ -4404,14 +4404,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4404
4404
|
processedByWorkflow: boolean;
|
|
4405
4405
|
|
|
4406
4406
|
/**
|
|
4407
|
-
*
|
|
4407
|
+
* Telefon an Versender übergeben
|
|
4408
4408
|
*/
|
|
4409
|
-
|
|
4409
|
+
forwardPhoneToShipper: boolean;
|
|
4410
4410
|
|
|
4411
4411
|
/**
|
|
4412
|
-
*
|
|
4412
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4413
4413
|
*/
|
|
4414
|
-
|
|
4414
|
+
baseTotalDocumentPriceModifier: number;
|
|
4415
4415
|
|
|
4416
4416
|
/**
|
|
4417
4417
|
* Liste der Belegtexte
|
|
@@ -4433,26 +4433,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4433
4433
|
*/
|
|
4434
4434
|
defaultAddress: DocumentAddress;
|
|
4435
4435
|
|
|
4436
|
-
/**
|
|
4437
|
-
* Verarbeitungsoption für Stapel
|
|
4438
|
-
*/
|
|
4439
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4440
|
-
|
|
4441
4436
|
/**
|
|
4442
4437
|
* Leistungsdatum
|
|
4443
4438
|
*/
|
|
4444
4439
|
performanceDate: ScriptingDate;
|
|
4445
4440
|
|
|
4446
4441
|
/**
|
|
4447
|
-
*
|
|
4442
|
+
* Verarbeitungsoption für Stapel
|
|
4448
4443
|
*/
|
|
4449
|
-
|
|
4444
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4450
4445
|
|
|
4451
4446
|
/**
|
|
4452
4447
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4453
4448
|
*/
|
|
4454
4449
|
dropShippingInvoiceApproved: boolean;
|
|
4455
4450
|
|
|
4451
|
+
/**
|
|
4452
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4453
|
+
*/
|
|
4454
|
+
en16931Profile: EN16931Profile;
|
|
4455
|
+
|
|
4456
4456
|
/**
|
|
4457
4457
|
* Ort der steuerlichen Leistungserbringung
|
|
4458
4458
|
*/
|
|
@@ -4614,14 +4614,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4614
4614
|
customerNumber: string;
|
|
4615
4615
|
|
|
4616
4616
|
/**
|
|
4617
|
-
*
|
|
4617
|
+
* Statusinstanz des Belegs
|
|
4618
4618
|
*/
|
|
4619
|
-
|
|
4619
|
+
documentState: DocumentTypeState;
|
|
4620
4620
|
|
|
4621
4621
|
/**
|
|
4622
|
-
*
|
|
4622
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4623
4623
|
*/
|
|
4624
|
-
|
|
4624
|
+
taxIdentificationNumber: string;
|
|
4625
4625
|
|
|
4626
4626
|
/**
|
|
4627
4627
|
* Versandkostenpositionen
|
|
@@ -4864,14 +4864,14 @@ export interface DocumentAddress {
|
|
|
4864
4864
|
info: MetaInfo;
|
|
4865
4865
|
|
|
4866
4866
|
/**
|
|
4867
|
-
*
|
|
4867
|
+
* GLN
|
|
4868
4868
|
*/
|
|
4869
|
-
|
|
4869
|
+
globalLocationNumber: string;
|
|
4870
4870
|
|
|
4871
4871
|
/**
|
|
4872
|
-
*
|
|
4872
|
+
* Lieferart
|
|
4873
4873
|
*/
|
|
4874
|
-
|
|
4874
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4875
4875
|
|
|
4876
4876
|
/**
|
|
4877
4877
|
* Postcode
|
|
@@ -5324,14 +5324,14 @@ export interface DocumentLine {
|
|
|
5324
5324
|
baseTotalLinePrice: number;
|
|
5325
5325
|
|
|
5326
5326
|
/**
|
|
5327
|
-
*
|
|
5327
|
+
* Positionstyp
|
|
5328
5328
|
*/
|
|
5329
|
-
|
|
5329
|
+
lineType: DocumentLineType;
|
|
5330
5330
|
|
|
5331
5331
|
/**
|
|
5332
|
-
*
|
|
5332
|
+
* FiBu-Buchung
|
|
5333
5333
|
*/
|
|
5334
|
-
|
|
5334
|
+
financeBooking: DocumentFinanceBooking;
|
|
5335
5335
|
|
|
5336
5336
|
/**
|
|
5337
5337
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5361,18 +5361,18 @@ export interface DocumentLine {
|
|
|
5361
5361
|
/**
|
|
5362
5362
|
* Unique identifier of the Object
|
|
5363
5363
|
*/
|
|
5364
|
-
id: number;
|
|
5365
|
-
|
|
5366
|
-
/**
|
|
5367
|
-
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5368
|
-
*/
|
|
5369
|
-
positionOfArticleLine: number;
|
|
5364
|
+
id: number;
|
|
5370
5365
|
|
|
5371
5366
|
/**
|
|
5372
5367
|
* Externe Referenz zum VDS-Paket
|
|
5373
5368
|
*/
|
|
5374
5369
|
externalReferenceVds: string;
|
|
5375
5370
|
|
|
5371
|
+
/**
|
|
5372
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5373
|
+
*/
|
|
5374
|
+
positionOfArticleLine: number;
|
|
5375
|
+
|
|
5376
5376
|
/**
|
|
5377
5377
|
* Preis pro Einheit in Basiswährung
|
|
5378
5378
|
*/
|
|
@@ -6035,14 +6035,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6035
6035
|
quantityFinished: number;
|
|
6036
6036
|
|
|
6037
6037
|
/**
|
|
6038
|
-
*
|
|
6038
|
+
* Produzierte Seriennummern
|
|
6039
6039
|
*/
|
|
6040
|
-
|
|
6040
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6041
6041
|
|
|
6042
6042
|
/**
|
|
6043
|
-
*
|
|
6043
|
+
* Menge defekt
|
|
6044
6044
|
*/
|
|
6045
|
-
|
|
6045
|
+
quantityDefective: number;
|
|
6046
6046
|
|
|
6047
6047
|
/**
|
|
6048
6048
|
* Freifeld
|
|
@@ -6562,14 +6562,14 @@ export const enum DocumentRounding {
|
|
|
6562
6562
|
export interface DocumentShippingCost {
|
|
6563
6563
|
|
|
6564
6564
|
/**
|
|
6565
|
-
*
|
|
6565
|
+
* Die Versandkosten
|
|
6566
6566
|
*/
|
|
6567
|
-
|
|
6567
|
+
costs: number;
|
|
6568
6568
|
|
|
6569
6569
|
/**
|
|
6570
|
-
*
|
|
6570
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6571
6571
|
*/
|
|
6572
|
-
|
|
6572
|
+
manualCosts: boolean;
|
|
6573
6573
|
|
|
6574
6574
|
/**
|
|
6575
6575
|
* Keine Versandkosten (freier Versand)
|
|
@@ -7002,14 +7002,14 @@ export const enum DropShippingPolicy {
|
|
|
7002
7002
|
export interface DummySerialNumberStockTransferApi {
|
|
7003
7003
|
|
|
7004
7004
|
/**
|
|
7005
|
-
*
|
|
7005
|
+
* Ziel-Lager
|
|
7006
7006
|
*/
|
|
7007
|
-
|
|
7007
|
+
targetStorageId: number;
|
|
7008
7008
|
|
|
7009
7009
|
/**
|
|
7010
|
-
*
|
|
7010
|
+
* Seriennummer
|
|
7011
7011
|
*/
|
|
7012
|
-
|
|
7012
|
+
serialNumberId: number;
|
|
7013
7013
|
|
|
7014
7014
|
/**
|
|
7015
7015
|
* Bemerkung
|
|
@@ -7391,14 +7391,14 @@ export interface FabricationRevertRequest {
|
|
|
7391
7391
|
export interface FabricationSerialNumber {
|
|
7392
7392
|
|
|
7393
7393
|
/**
|
|
7394
|
-
*
|
|
7394
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7395
7395
|
*/
|
|
7396
|
-
|
|
7396
|
+
serialNumberId: number;
|
|
7397
7397
|
|
|
7398
7398
|
/**
|
|
7399
|
-
*
|
|
7399
|
+
* MHD / Verfallsdatum
|
|
7400
7400
|
*/
|
|
7401
|
-
|
|
7401
|
+
expiryDate: ScriptingDate;
|
|
7402
7402
|
|
|
7403
7403
|
/**
|
|
7404
7404
|
* Bemerkung
|
|
@@ -7691,14 +7691,14 @@ export interface OpenItem {
|
|
|
7691
7691
|
paymentDueDate: ScriptingDate;
|
|
7692
7692
|
|
|
7693
7693
|
/**
|
|
7694
|
-
* Länderkennzeichen
|
|
7694
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7695
7695
|
*/
|
|
7696
|
-
|
|
7696
|
+
performanceCountryCode: string;
|
|
7697
7697
|
|
|
7698
7698
|
/**
|
|
7699
|
-
* Länderkennzeichen
|
|
7699
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7700
7700
|
*/
|
|
7701
|
-
|
|
7701
|
+
sourceCountryCode: string;
|
|
7702
7702
|
|
|
7703
7703
|
/**
|
|
7704
7704
|
* agreed Deposit payment date
|
|
@@ -8330,14 +8330,14 @@ export interface PaymentMethod {
|
|
|
8330
8330
|
daysToAddForFollowup: number;
|
|
8331
8331
|
|
|
8332
8332
|
/**
|
|
8333
|
-
*
|
|
8333
|
+
* external Payment Id
|
|
8334
8334
|
*/
|
|
8335
|
-
|
|
8335
|
+
externalPaymentId: string;
|
|
8336
8336
|
|
|
8337
8337
|
/**
|
|
8338
|
-
*
|
|
8338
|
+
* Die Business Transaction
|
|
8339
8339
|
*/
|
|
8340
|
-
|
|
8340
|
+
businessTransaction: ApiObjectReference;
|
|
8341
8341
|
|
|
8342
8342
|
/**
|
|
8343
8343
|
* Unique identifier of the Object
|
|
@@ -8421,14 +8421,14 @@ export interface PaymentTerm {
|
|
|
8421
8421
|
paymentDiscount2: number;
|
|
8422
8422
|
|
|
8423
8423
|
/**
|
|
8424
|
-
*
|
|
8424
|
+
* Percent for Discount 1
|
|
8425
8425
|
*/
|
|
8426
|
-
|
|
8426
|
+
paymentDiscount1: number;
|
|
8427
8427
|
|
|
8428
8428
|
/**
|
|
8429
|
-
*
|
|
8429
|
+
* printDescription
|
|
8430
8430
|
*/
|
|
8431
|
-
|
|
8431
|
+
printDescription: string;
|
|
8432
8432
|
|
|
8433
8433
|
/**
|
|
8434
8434
|
* for deposit: remaining term
|
|
@@ -8559,14 +8559,14 @@ export interface PickTrolley {
|
|
|
8559
8559
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
8560
8560
|
|
|
8561
8561
|
/**
|
|
8562
|
-
*
|
|
8562
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
8563
8563
|
*/
|
|
8564
|
-
|
|
8564
|
+
storageBinRef: StorageBinRef;
|
|
8565
8565
|
|
|
8566
8566
|
/**
|
|
8567
|
-
*
|
|
8567
|
+
* Bearbeiter der Pickliste
|
|
8568
8568
|
*/
|
|
8569
|
-
|
|
8569
|
+
processedByUserRef: ApiObjectReference;
|
|
8570
8570
|
|
|
8571
8571
|
/**
|
|
8572
8572
|
* Beschreibung des Wagens
|
|
@@ -8839,14 +8839,14 @@ export interface PicklistLine {
|
|
|
8839
8839
|
articleNumber: string;
|
|
8840
8840
|
|
|
8841
8841
|
/**
|
|
8842
|
-
*
|
|
8842
|
+
* Lagernummer
|
|
8843
8843
|
*/
|
|
8844
|
-
|
|
8844
|
+
storageNumber: string;
|
|
8845
8845
|
|
|
8846
8846
|
/**
|
|
8847
|
-
*
|
|
8847
|
+
* Art der Position
|
|
8848
8848
|
*/
|
|
8849
|
-
|
|
8849
|
+
lineType: PicklistLineType;
|
|
8850
8850
|
|
|
8851
8851
|
/**
|
|
8852
8852
|
* ID der Ziel-Dokumentposition
|
|
@@ -8985,14 +8985,14 @@ export interface PicklistLineComponent {
|
|
|
8985
8985
|
targetDocumentLineComponentId: number;
|
|
8986
8986
|
|
|
8987
8987
|
/**
|
|
8988
|
-
*
|
|
8988
|
+
* abweichende Artikelbezeichnung
|
|
8989
8989
|
*/
|
|
8990
|
-
|
|
8990
|
+
articleAlternativeName: string;
|
|
8991
8991
|
|
|
8992
8992
|
/**
|
|
8993
|
-
*
|
|
8993
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8994
8994
|
*/
|
|
8995
|
-
|
|
8995
|
+
quantityPerAssemblyGroup: number;
|
|
8996
8996
|
|
|
8997
8997
|
/**
|
|
8998
8998
|
* Verpackte Menge der Position
|
|
@@ -9161,14 +9161,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9161
9161
|
maxArticleCountPerOrder: number;
|
|
9162
9162
|
|
|
9163
9163
|
/**
|
|
9164
|
-
*
|
|
9164
|
+
* Alternative Selektion in VQL
|
|
9165
9165
|
*/
|
|
9166
|
-
|
|
9166
|
+
alternativeSelectionInVql: string;
|
|
9167
9167
|
|
|
9168
9168
|
/**
|
|
9169
|
-
*
|
|
9169
|
+
* Maximaler Auftragswert
|
|
9170
9170
|
*/
|
|
9171
|
-
|
|
9171
|
+
maxOrderValue: number;
|
|
9172
9172
|
|
|
9173
9173
|
/**
|
|
9174
9174
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -9176,14 +9176,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9176
9176
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9177
9177
|
|
|
9178
9178
|
/**
|
|
9179
|
-
* Nur
|
|
9179
|
+
* Nur vollständig lieferbare Positionen
|
|
9180
9180
|
*/
|
|
9181
|
-
|
|
9181
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9182
9182
|
|
|
9183
9183
|
/**
|
|
9184
|
-
* Nur
|
|
9184
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9185
9185
|
*/
|
|
9186
|
-
|
|
9186
|
+
maxOrderCount: number;
|
|
9187
9187
|
|
|
9188
9188
|
/**
|
|
9189
9189
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9264,14 +9264,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9264
9264
|
specifyStorageBins: boolean;
|
|
9265
9265
|
|
|
9266
9266
|
/**
|
|
9267
|
-
*
|
|
9267
|
+
* Der zu verwendende Pickwagen
|
|
9268
9268
|
*/
|
|
9269
|
-
|
|
9269
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9270
9270
|
|
|
9271
9271
|
/**
|
|
9272
|
-
*
|
|
9272
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9273
9273
|
*/
|
|
9274
|
-
|
|
9274
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9275
9275
|
|
|
9276
9276
|
/**
|
|
9277
9277
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -9327,14 +9327,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9327
9327
|
alwaysShowDeliveryMethod: boolean;
|
|
9328
9328
|
|
|
9329
9329
|
/**
|
|
9330
|
-
*
|
|
9330
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
9331
9331
|
*/
|
|
9332
|
-
|
|
9332
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
9333
9333
|
|
|
9334
9334
|
/**
|
|
9335
|
-
*
|
|
9335
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
9336
9336
|
*/
|
|
9337
|
-
|
|
9337
|
+
autoPrintDeliveryDocument: boolean;
|
|
9338
9338
|
|
|
9339
9339
|
/**
|
|
9340
9340
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -9342,24 +9342,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9342
9342
|
showShippingFormOnPickingFinish: boolean;
|
|
9343
9343
|
|
|
9344
9344
|
/**
|
|
9345
|
-
*
|
|
9345
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9346
9346
|
*/
|
|
9347
|
-
|
|
9347
|
+
allowPickingOfServiceArticles: boolean;
|
|
9348
9348
|
|
|
9349
9349
|
/**
|
|
9350
|
-
*
|
|
9350
|
+
* Sammelbestätigung erlauben
|
|
9351
9351
|
*/
|
|
9352
|
-
|
|
9352
|
+
allowFullConfirmation: boolean;
|
|
9353
9353
|
|
|
9354
9354
|
/**
|
|
9355
|
-
*
|
|
9355
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9356
9356
|
*/
|
|
9357
|
-
|
|
9357
|
+
useDigitalPicklist: boolean;
|
|
9358
9358
|
|
|
9359
9359
|
/**
|
|
9360
|
-
* Sollen
|
|
9360
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9361
9361
|
*/
|
|
9362
|
-
|
|
9362
|
+
printLabelOnScan: boolean;
|
|
9363
9363
|
|
|
9364
9364
|
/**
|
|
9365
9365
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9387,14 +9387,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9387
9387
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9388
9388
|
|
|
9389
9389
|
/**
|
|
9390
|
-
*
|
|
9390
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9391
9391
|
*/
|
|
9392
|
-
|
|
9392
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9393
9393
|
|
|
9394
9394
|
/**
|
|
9395
|
-
*
|
|
9395
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9396
9396
|
*/
|
|
9397
|
-
|
|
9397
|
+
autoDeterminationOfLots: boolean;
|
|
9398
9398
|
|
|
9399
9399
|
/**
|
|
9400
9400
|
* Zielmengen in Masken verstecken?
|
|
@@ -9470,14 +9470,14 @@ export interface PriceSelectionCriteria {
|
|
|
9470
9470
|
quantity: number;
|
|
9471
9471
|
|
|
9472
9472
|
/**
|
|
9473
|
-
* Liste von
|
|
9473
|
+
* Liste von Account-IDs
|
|
9474
9474
|
*/
|
|
9475
|
-
|
|
9475
|
+
accountIds: Array<number>;
|
|
9476
9476
|
|
|
9477
9477
|
/**
|
|
9478
|
-
* Liste von
|
|
9478
|
+
* Liste von Artikel-IDs
|
|
9479
9479
|
*/
|
|
9480
|
-
|
|
9480
|
+
articleIds: Array<number>;
|
|
9481
9481
|
|
|
9482
9482
|
/**
|
|
9483
9483
|
* ein qualifier
|
|
@@ -9644,14 +9644,14 @@ export interface ProductArticleRef {
|
|
|
9644
9644
|
export interface ProductDiscount {
|
|
9645
9645
|
|
|
9646
9646
|
/**
|
|
9647
|
-
*
|
|
9647
|
+
* Kundengruppe
|
|
9648
9648
|
*/
|
|
9649
|
-
|
|
9649
|
+
customerGroupRef: ApiObjectReference;
|
|
9650
9650
|
|
|
9651
9651
|
/**
|
|
9652
|
-
*
|
|
9652
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9653
9653
|
*/
|
|
9654
|
-
|
|
9654
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9655
9655
|
|
|
9656
9656
|
/**
|
|
9657
9657
|
* Lieferantengruppe
|
|
@@ -9853,14 +9853,14 @@ export interface ProductMainGroup {
|
|
|
9853
9853
|
export interface ProductPrice {
|
|
9854
9854
|
|
|
9855
9855
|
/**
|
|
9856
|
-
*
|
|
9856
|
+
* Kundengruppe
|
|
9857
9857
|
*/
|
|
9858
|
-
|
|
9858
|
+
customerGroupRef: ApiObjectReference;
|
|
9859
9859
|
|
|
9860
9860
|
/**
|
|
9861
|
-
*
|
|
9861
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
9862
9862
|
*/
|
|
9863
|
-
|
|
9863
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9864
9864
|
|
|
9865
9865
|
/**
|
|
9866
9866
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10073,9 +10073,9 @@ export interface RequestDocument {
|
|
|
10073
10073
|
documentDate: ScriptingDate;
|
|
10074
10074
|
|
|
10075
10075
|
/**
|
|
10076
|
-
*
|
|
10076
|
+
* ID der Kassenschublade (bei POS)
|
|
10077
10077
|
*/
|
|
10078
|
-
|
|
10078
|
+
cashDrawerId: number;
|
|
10079
10079
|
|
|
10080
10080
|
/**
|
|
10081
10081
|
* Leistungsdatum
|
|
@@ -10083,9 +10083,9 @@ export interface RequestDocument {
|
|
|
10083
10083
|
performanceDate: ScriptingDate;
|
|
10084
10084
|
|
|
10085
10085
|
/**
|
|
10086
|
-
*
|
|
10086
|
+
* Der Anzahlungsbetrag
|
|
10087
10087
|
*/
|
|
10088
|
-
|
|
10088
|
+
depositPaymentAmount: number;
|
|
10089
10089
|
|
|
10090
10090
|
/**
|
|
10091
10091
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10153,14 +10153,14 @@ export interface RequestDocument {
|
|
|
10153
10153
|
posRegisterId: number;
|
|
10154
10154
|
|
|
10155
10155
|
/**
|
|
10156
|
-
*
|
|
10156
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10157
10157
|
*/
|
|
10158
|
-
|
|
10158
|
+
paymentTermId: number;
|
|
10159
10159
|
|
|
10160
10160
|
/**
|
|
10161
|
-
*
|
|
10161
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10162
10162
|
*/
|
|
10163
|
-
|
|
10163
|
+
supplierAccountId: number;
|
|
10164
10164
|
|
|
10165
10165
|
/**
|
|
10166
10166
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -10208,14 +10208,14 @@ export interface RequestDocument {
|
|
|
10208
10208
|
texts: Array<DocumentText>;
|
|
10209
10209
|
|
|
10210
10210
|
/**
|
|
10211
|
-
*
|
|
10211
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10212
10212
|
*/
|
|
10213
|
-
|
|
10213
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10214
10214
|
|
|
10215
10215
|
/**
|
|
10216
|
-
*
|
|
10216
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10217
10217
|
*/
|
|
10218
|
-
|
|
10218
|
+
processedByPicklistProcessing: boolean;
|
|
10219
10219
|
|
|
10220
10220
|
/**
|
|
10221
10221
|
* Die Rabatte des Beleges
|
|
@@ -10271,14 +10271,14 @@ export interface RequestDocumentLine {
|
|
|
10271
10271
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10272
10272
|
|
|
10273
10273
|
/**
|
|
10274
|
-
*
|
|
10274
|
+
* Typ dieser Position
|
|
10275
10275
|
*/
|
|
10276
|
-
|
|
10276
|
+
lineType: DocumentLineType;
|
|
10277
10277
|
|
|
10278
10278
|
/**
|
|
10279
|
-
*
|
|
10279
|
+
* FiBu-Angaben
|
|
10280
10280
|
*/
|
|
10281
|
-
|
|
10281
|
+
financeBooking: DocumentFinanceBooking;
|
|
10282
10282
|
|
|
10283
10283
|
/**
|
|
10284
10284
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10381,14 +10381,14 @@ export interface RequestDocumentLine {
|
|
|
10381
10381
|
externalArticleNumber: string;
|
|
10382
10382
|
|
|
10383
10383
|
/**
|
|
10384
|
-
*
|
|
10384
|
+
* ID der Quell-Belegposition
|
|
10385
10385
|
*/
|
|
10386
|
-
|
|
10386
|
+
sourceLineId: number;
|
|
10387
10387
|
|
|
10388
10388
|
/**
|
|
10389
|
-
*
|
|
10389
|
+
* Buchungen zu dieser Belegposition
|
|
10390
10390
|
*/
|
|
10391
|
-
|
|
10391
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10392
10392
|
|
|
10393
10393
|
/**
|
|
10394
10394
|
* Zu der Zeile Etikettendruck anstoßen
|
|
@@ -10527,14 +10527,14 @@ export interface RequestDocumentText {
|
|
|
10527
10527
|
export interface RevenueCalculation {
|
|
10528
10528
|
|
|
10529
10529
|
/**
|
|
10530
|
-
*
|
|
10530
|
+
* Deckungsbeitrag (absolut)
|
|
10531
10531
|
*/
|
|
10532
|
-
|
|
10532
|
+
revenue: number;
|
|
10533
10533
|
|
|
10534
10534
|
/**
|
|
10535
|
-
*
|
|
10535
|
+
* Netto Umsatz
|
|
10536
10536
|
*/
|
|
10537
|
-
|
|
10537
|
+
salesValue: number;
|
|
10538
10538
|
|
|
10539
10539
|
/**
|
|
10540
10540
|
* Einkaufspreis
|
|
@@ -10555,14 +10555,14 @@ export interface SalesAgent {
|
|
|
10555
10555
|
note: string;
|
|
10556
10556
|
|
|
10557
10557
|
/**
|
|
10558
|
-
*
|
|
10558
|
+
* is sales agent taxable
|
|
10559
10559
|
*/
|
|
10560
|
-
|
|
10560
|
+
taxable: boolean;
|
|
10561
10561
|
|
|
10562
10562
|
/**
|
|
10563
|
-
*
|
|
10563
|
+
* reference to the delivery method
|
|
10564
10564
|
*/
|
|
10565
|
-
|
|
10565
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10566
10566
|
|
|
10567
10567
|
/**
|
|
10568
10568
|
* Freifelder
|
|
@@ -11519,14 +11519,14 @@ export interface StockMovementManualApi {
|
|
|
11519
11519
|
export interface StockTransferApi {
|
|
11520
11520
|
|
|
11521
11521
|
/**
|
|
11522
|
-
*
|
|
11522
|
+
* Ziel-Lager
|
|
11523
11523
|
*/
|
|
11524
|
-
|
|
11524
|
+
targetStorageId: number;
|
|
11525
11525
|
|
|
11526
11526
|
/**
|
|
11527
|
-
*
|
|
11527
|
+
* Seriennummer
|
|
11528
11528
|
*/
|
|
11529
|
-
|
|
11529
|
+
serialNumberId: number;
|
|
11530
11530
|
|
|
11531
11531
|
/**
|
|
11532
11532
|
* Bemerkung
|
|
@@ -11735,6 +11735,11 @@ export interface Supplier {
|
|
|
11735
11735
|
*/
|
|
11736
11736
|
info: MetaInfo;
|
|
11737
11737
|
|
|
11738
|
+
/**
|
|
11739
|
+
* tax able or tax free
|
|
11740
|
+
*/
|
|
11741
|
+
taxable: boolean;
|
|
11742
|
+
|
|
11738
11743
|
/**
|
|
11739
11744
|
* Lieferantengruppe
|
|
11740
11745
|
*/
|
|
@@ -11745,11 +11750,6 @@ export interface Supplier {
|
|
|
11745
11750
|
*/
|
|
11746
11751
|
deliveryMethodRef: ApiObjectReference;
|
|
11747
11752
|
|
|
11748
|
-
/**
|
|
11749
|
-
* tax able or tax free
|
|
11750
|
-
*/
|
|
11751
|
-
taxable: boolean;
|
|
11752
|
-
|
|
11753
11753
|
/**
|
|
11754
11754
|
* Mahnen?
|
|
11755
11755
|
*/
|
|
@@ -11829,14 +11829,14 @@ export interface TagDto {
|
|
|
11829
11829
|
editColor: string;
|
|
11830
11830
|
|
|
11831
11831
|
/**
|
|
11832
|
-
* Farbe
|
|
11832
|
+
* Farbe für die Anzeige des Tags
|
|
11833
11833
|
*/
|
|
11834
|
-
|
|
11834
|
+
color: string;
|
|
11835
11835
|
|
|
11836
11836
|
/**
|
|
11837
|
-
* Farbe
|
|
11837
|
+
* Farbe in Such-GUI
|
|
11838
11838
|
*/
|
|
11839
|
-
|
|
11839
|
+
searchColor: string;
|
|
11840
11840
|
|
|
11841
11841
|
/**
|
|
11842
11842
|
* Beschriftung des Tags
|
|
@@ -11880,14 +11880,14 @@ export const enum TagType {
|
|
|
11880
11880
|
export interface TaxIdForeignCountry {
|
|
11881
11881
|
|
|
11882
11882
|
/**
|
|
11883
|
-
*
|
|
11883
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
11884
11884
|
*/
|
|
11885
|
-
|
|
11885
|
+
countryCode: string;
|
|
11886
11886
|
|
|
11887
11887
|
/**
|
|
11888
|
-
*
|
|
11888
|
+
* Tax ID of the company in the associated country
|
|
11889
11889
|
*/
|
|
11890
|
-
|
|
11890
|
+
taxId: string;
|
|
11891
11891
|
|
|
11892
11892
|
/**
|
|
11893
11893
|
* Unique identifier of the Object
|