@vario-software/types 2026.18.2 → 2026.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +29 -29
- package/scripting/types.d.ts +254 -254
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -551,21 +551,21 @@ export interface ArticleScriptingService {
|
|
|
551
551
|
readById(id: number, languageCode: string): Article;
|
|
552
552
|
|
|
553
553
|
/**
|
|
554
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
554
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
555
555
|
*
|
|
556
556
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
557
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
557
558
|
* @return {Article} Der gelesene Artikel
|
|
558
559
|
*/
|
|
559
|
-
readByNumber(articleNumber: string): Article;
|
|
560
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
560
561
|
|
|
561
562
|
/**
|
|
562
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
563
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
563
564
|
*
|
|
564
565
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
565
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
566
566
|
* @return {Article} Der gelesene Artikel
|
|
567
567
|
*/
|
|
568
|
-
readByNumber(articleNumber: string
|
|
568
|
+
readByNumber(articleNumber: string): Article;
|
|
569
569
|
|
|
570
570
|
/**
|
|
571
571
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1511,18 +1511,18 @@ export interface DocumentScriptingService {
|
|
|
1511
1511
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1512
1512
|
*
|
|
1513
1513
|
* @param {number} documentId - ID des Belegs
|
|
1514
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1514
1515
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1515
1516
|
*/
|
|
1516
|
-
edit(documentId: number): Document;
|
|
1517
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1517
1518
|
|
|
1518
1519
|
/**
|
|
1519
1520
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1520
1521
|
*
|
|
1521
1522
|
* @param {number} documentId - ID des Belegs
|
|
1522
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1523
1523
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1524
1524
|
*/
|
|
1525
|
-
edit(documentId: number
|
|
1525
|
+
edit(documentId: number): Document;
|
|
1526
1526
|
|
|
1527
1527
|
/**
|
|
1528
1528
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -1625,16 +1625,16 @@ export interface DocumentScriptingService {
|
|
|
1625
1625
|
* Versendet einen Beleg per Mail
|
|
1626
1626
|
*
|
|
1627
1627
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1628
|
-
* @param {string} reportGroupIdentifier -
|
|
1629
1628
|
*/
|
|
1630
|
-
sendViaMail(documentId: number
|
|
1629
|
+
sendViaMail(documentId: number): void;
|
|
1631
1630
|
|
|
1632
1631
|
/**
|
|
1633
1632
|
* Versendet einen Beleg per Mail
|
|
1634
1633
|
*
|
|
1635
1634
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1635
|
+
* @param {string} reportGroupIdentifier -
|
|
1636
1636
|
*/
|
|
1637
|
-
sendViaMail(documentId: number): void;
|
|
1637
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1638
1638
|
|
|
1639
1639
|
/**
|
|
1640
1640
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2501,26 +2501,26 @@ export interface ScriptingServiceList {
|
|
|
2501
2501
|
*/
|
|
2502
2502
|
crmTaskService: CrmTaskScriptingService;
|
|
2503
2503
|
|
|
2504
|
-
/**
|
|
2505
|
-
* Service zur Verarbeitung von Shelf-Documents
|
|
2506
|
-
*/
|
|
2507
|
-
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2508
|
-
|
|
2509
2504
|
/**
|
|
2510
2505
|
* Service zur Verarbeitung von Accounts
|
|
2511
2506
|
*/
|
|
2512
2507
|
accountService: AccountScriptingService;
|
|
2513
2508
|
|
|
2514
2509
|
/**
|
|
2515
|
-
*
|
|
2510
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2516
2511
|
*/
|
|
2517
|
-
|
|
2512
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2518
2513
|
|
|
2519
2514
|
/**
|
|
2520
2515
|
* Logging im Scripting
|
|
2521
2516
|
*/
|
|
2522
2517
|
logger: LoggingScriptingService;
|
|
2523
2518
|
|
|
2519
|
+
/**
|
|
2520
|
+
* Verwaltung von Versandarten
|
|
2521
|
+
*/
|
|
2522
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2523
|
+
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Service zur Verarbeitung von Deals
|
|
2526
2526
|
*/
|
|
@@ -2537,14 +2537,14 @@ export interface ScriptingServiceList {
|
|
|
2537
2537
|
productGroupService: ProductGroupScriptingService;
|
|
2538
2538
|
|
|
2539
2539
|
/**
|
|
2540
|
-
*
|
|
2540
|
+
* Ausgabe-Support Methoden
|
|
2541
2541
|
*/
|
|
2542
|
-
|
|
2542
|
+
outputHelper: ScriptOutputHelperService;
|
|
2543
2543
|
|
|
2544
2544
|
/**
|
|
2545
|
-
*
|
|
2545
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2546
2546
|
*/
|
|
2547
|
-
|
|
2547
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2548
2548
|
|
|
2549
2549
|
/**
|
|
2550
2550
|
* Erstellt DTOs zur Verwendung im Skript
|
|
@@ -2592,14 +2592,14 @@ export interface ScriptingServiceList {
|
|
|
2592
2592
|
articleStorageService: ArticleStorageScriptingService;
|
|
2593
2593
|
|
|
2594
2594
|
/**
|
|
2595
|
-
*
|
|
2595
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2596
2596
|
*/
|
|
2597
|
-
|
|
2597
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2598
2598
|
|
|
2599
2599
|
/**
|
|
2600
|
-
*
|
|
2600
|
+
* Verwaltung von Zahlungsarten
|
|
2601
2601
|
*/
|
|
2602
|
-
|
|
2602
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2603
2603
|
|
|
2604
2604
|
/**
|
|
2605
2605
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
|
@@ -2709,18 +2709,18 @@ export interface ScriptingUtilities {
|
|
|
2709
2709
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2710
2710
|
*
|
|
2711
2711
|
* @param {object} value - Der Quell-Wert
|
|
2712
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2713
2712
|
* @return {number} Ein BigDecimal-Wert
|
|
2714
2713
|
*/
|
|
2715
|
-
newBigDecimal(value: object
|
|
2714
|
+
newBigDecimal(value: object): number;
|
|
2716
2715
|
|
|
2717
2716
|
/**
|
|
2718
2717
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2719
2718
|
*
|
|
2720
2719
|
* @param {object} value - Der Quell-Wert
|
|
2720
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2721
2721
|
* @return {number} Ein BigDecimal-Wert
|
|
2722
2722
|
*/
|
|
2723
|
-
newBigDecimal(value: object): number;
|
|
2723
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2724
2724
|
|
|
2725
2725
|
/**
|
|
2726
2726
|
* Erstellt eine API-Referenz
|
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
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
|
+
* Street
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
street: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Country code
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
countryCode: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -971,9 +971,9 @@ export interface Article {
|
|
|
971
971
|
baseCapacityUnit: UnitTypeReference;
|
|
972
972
|
|
|
973
973
|
/**
|
|
974
|
-
*
|
|
974
|
+
* is this product sellable without any quantity at the stock
|
|
975
975
|
*/
|
|
976
|
-
|
|
976
|
+
sellableWithoutStock: boolean;
|
|
977
977
|
|
|
978
978
|
/**
|
|
979
979
|
* Seriennummern Auszeichnungsart
|
|
@@ -981,9 +981,9 @@ export interface Article {
|
|
|
981
981
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
982
982
|
|
|
983
983
|
/**
|
|
984
|
-
*
|
|
984
|
+
* Durchschnittl. EKP (Startwert)
|
|
985
985
|
*/
|
|
986
|
-
|
|
986
|
+
initialAvgPurchasePrice: number;
|
|
987
987
|
|
|
988
988
|
/**
|
|
989
989
|
* gross Volume in cubic meters
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1081,14 +1081,14 @@ export interface Article {
|
|
|
1081
1081
|
deliveryMethodRef: ApiObjectReference;
|
|
1082
1082
|
|
|
1083
1083
|
/**
|
|
1084
|
-
*
|
|
1084
|
+
* Produktion
|
|
1085
1085
|
*/
|
|
1086
|
-
|
|
1086
|
+
fabrication: boolean;
|
|
1087
1087
|
|
|
1088
1088
|
/**
|
|
1089
|
-
*
|
|
1089
|
+
* Soll-Handelsspanne
|
|
1090
1090
|
*/
|
|
1091
|
-
|
|
1091
|
+
targetTradingMargin: number;
|
|
1092
1092
|
|
|
1093
1093
|
/**
|
|
1094
1094
|
* active
|
|
@@ -1121,14 +1121,14 @@ export interface Article {
|
|
|
1121
1121
|
solvable: boolean;
|
|
1122
1122
|
|
|
1123
1123
|
/**
|
|
1124
|
-
*
|
|
1124
|
+
* weight and size inc. packaging
|
|
1125
1125
|
*/
|
|
1126
|
-
|
|
1126
|
+
grossMetric: Article$Metric;
|
|
1127
1127
|
|
|
1128
1128
|
/**
|
|
1129
|
-
*
|
|
1129
|
+
* Verkaufseinheit
|
|
1130
1130
|
*/
|
|
1131
|
-
|
|
1131
|
+
salesUnit: number;
|
|
1132
1132
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* name of this product
|
|
@@ -1140,26 +1140,26 @@ export interface Article {
|
|
|
1140
1140
|
*/
|
|
1141
1141
|
listingStateChangeTime: ScriptingDateTime;
|
|
1142
1142
|
|
|
1143
|
-
/**
|
|
1144
|
-
* Arbeitseinheit in Minuten
|
|
1145
|
-
*/
|
|
1146
|
-
workUnitInMinutes: number;
|
|
1147
|
-
|
|
1148
1143
|
/**
|
|
1149
1144
|
* Country code
|
|
1150
1145
|
*/
|
|
1151
1146
|
countryOfOriginRef: CountryReference;
|
|
1152
1147
|
|
|
1153
1148
|
/**
|
|
1154
|
-
*
|
|
1149
|
+
* Arbeitseinheit in Minuten
|
|
1155
1150
|
*/
|
|
1156
|
-
|
|
1151
|
+
workUnitInMinutes: number;
|
|
1157
1152
|
|
|
1158
1153
|
/**
|
|
1159
1154
|
* description custom data
|
|
1160
1155
|
*/
|
|
1161
1156
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1162
1157
|
|
|
1158
|
+
/**
|
|
1159
|
+
* Frei kommissionierbar
|
|
1160
|
+
*/
|
|
1161
|
+
freelyPickable: boolean;
|
|
1162
|
+
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1165
1165
|
*/
|
|
@@ -1221,9 +1221,9 @@ export interface Article {
|
|
|
1221
1221
|
permissibleForOrderProposal: boolean;
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* Versandlabeldruck
|
|
1225
1225
|
*/
|
|
1226
|
-
|
|
1226
|
+
shippingLabelPrinting: boolean;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
1229
|
* reference to Product
|
|
@@ -1231,19 +1231,19 @@ export interface Article {
|
|
|
1231
1231
|
productRef: ApiObjectReference;
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
1234
|
-
*
|
|
1234
|
+
* Artikel ist Gefahrgut
|
|
1235
1235
|
*/
|
|
1236
|
-
|
|
1236
|
+
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
1238
|
/**
|
|
1239
|
-
*
|
|
1239
|
+
* Kontingentartikel
|
|
1240
1240
|
*/
|
|
1241
|
-
|
|
1241
|
+
contingentArticleRef: ApiObjectReference;
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
*
|
|
1244
|
+
* alternative name of this product
|
|
1245
1245
|
*/
|
|
1246
|
-
|
|
1246
|
+
alternativeName: string;
|
|
1247
1247
|
|
|
1248
1248
|
/**
|
|
1249
1249
|
* rabattierbarer Artikel?
|
|
@@ -1281,14 +1281,14 @@ export interface Article {
|
|
|
1281
1281
|
custom: EavArticle;
|
|
1282
1282
|
|
|
1283
1283
|
/**
|
|
1284
|
-
*
|
|
1284
|
+
* Art des Haltbarkeitsdatums
|
|
1285
1285
|
*/
|
|
1286
|
-
|
|
1286
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1287
1287
|
|
|
1288
1288
|
/**
|
|
1289
|
-
*
|
|
1289
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1290
1290
|
*/
|
|
1291
|
-
|
|
1291
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1292
1292
|
|
|
1293
1293
|
/**
|
|
1294
1294
|
* Hersteller
|
|
@@ -1514,14 +1514,14 @@ export interface ArticleListing {
|
|
|
1514
1514
|
alternativeName: WithDefaults<String>;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1517
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1518
1518
|
*/
|
|
1519
|
-
|
|
1519
|
+
proposedLowestPriceNet: number;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1522
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
customLowestPriceNet: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* der aktuelle listing stand
|
|
@@ -1681,14 +1681,14 @@ export const enum ArticleSerialType {
|
|
|
1681
1681
|
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* Bestand im Lager
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
quantityInStock: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
|
-
*
|
|
1689
|
+
* Nachschub ab
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
replenishmentFrom: number;
|
|
1692
1692
|
|
|
1693
1693
|
/**
|
|
1694
1694
|
* Meldebestand
|
|
@@ -1696,14 +1696,14 @@ export interface ArticleStorage {
|
|
|
1696
1696
|
reorderPoint: number;
|
|
1697
1697
|
|
|
1698
1698
|
/**
|
|
1699
|
-
*
|
|
1699
|
+
* Aktuelle Menge in Kommissionierung
|
|
1700
1700
|
*/
|
|
1701
|
-
|
|
1701
|
+
quantityInPicking: number;
|
|
1702
1702
|
|
|
1703
1703
|
/**
|
|
1704
|
-
*
|
|
1704
|
+
* Bestellte Menge
|
|
1705
1705
|
*/
|
|
1706
|
-
|
|
1706
|
+
orderedQuantity: number;
|
|
1707
1707
|
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Nachschub auf
|
|
@@ -1784,9 +1784,9 @@ export interface ArticleStorage {
|
|
|
1784
1784
|
export interface ArticleSupplier {
|
|
1785
1785
|
|
|
1786
1786
|
/**
|
|
1787
|
-
*
|
|
1787
|
+
* Anzeigename des Accounts
|
|
1788
1788
|
*/
|
|
1789
|
-
|
|
1789
|
+
accountDisplayName: string;
|
|
1790
1790
|
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Lieferanten-Meldebestand
|
|
@@ -1794,19 +1794,19 @@ export interface ArticleSupplier {
|
|
|
1794
1794
|
supplierReportingStock: number;
|
|
1795
1795
|
|
|
1796
1796
|
/**
|
|
1797
|
-
*
|
|
1797
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1798
1798
|
*/
|
|
1799
|
-
|
|
1799
|
+
useSupplierArticleDescription: boolean;
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
1802
|
-
*
|
|
1802
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1803
1803
|
*/
|
|
1804
|
-
|
|
1804
|
+
useSupplierArticleIdentifier: boolean;
|
|
1805
1805
|
|
|
1806
1806
|
/**
|
|
1807
|
-
*
|
|
1807
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1808
1808
|
*/
|
|
1809
|
-
|
|
1809
|
+
deliveryTime: number;
|
|
1810
1810
|
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -1853,26 +1853,26 @@ export interface ArticleSupplier {
|
|
|
1853
1853
|
*/
|
|
1854
1854
|
info: MetaInfo;
|
|
1855
1855
|
|
|
1856
|
-
/**
|
|
1857
|
-
* Referenced Article name
|
|
1858
|
-
*/
|
|
1859
|
-
articleName: string;
|
|
1860
|
-
|
|
1861
1856
|
/**
|
|
1862
1857
|
* Verpackungseinheit
|
|
1863
1858
|
*/
|
|
1864
1859
|
packagingUnit: number;
|
|
1865
1860
|
|
|
1866
1861
|
/**
|
|
1867
|
-
* Referenced Article
|
|
1862
|
+
* Referenced Article name
|
|
1868
1863
|
*/
|
|
1869
|
-
|
|
1864
|
+
articleName: string;
|
|
1870
1865
|
|
|
1871
1866
|
/**
|
|
1872
1867
|
* Lieferanten-Preise
|
|
1873
1868
|
*/
|
|
1874
1869
|
productPrices: Array<ProductPrice>;
|
|
1875
1870
|
|
|
1871
|
+
/**
|
|
1872
|
+
* Referenced Article
|
|
1873
|
+
*/
|
|
1874
|
+
articleId: number;
|
|
1875
|
+
|
|
1876
1876
|
/**
|
|
1877
1877
|
* Aktiv?
|
|
1878
1878
|
*/
|
|
@@ -2122,14 +2122,14 @@ export interface CountryReference {
|
|
|
2122
2122
|
export interface CreateNewDocumentRequest {
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
|
-
*
|
|
2125
|
+
* Belegart
|
|
2126
2126
|
*/
|
|
2127
|
-
|
|
2127
|
+
documentTypeLabel: string;
|
|
2128
2128
|
|
|
2129
2129
|
/**
|
|
2130
|
-
* Belegart
|
|
2130
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2131
2131
|
*/
|
|
2132
|
-
|
|
2132
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2133
2133
|
|
|
2134
2134
|
/**
|
|
2135
2135
|
* Details zum Beleg
|
|
@@ -2195,14 +2195,14 @@ export interface CrmActivity {
|
|
|
2195
2195
|
info: MetaInfo;
|
|
2196
2196
|
|
|
2197
2197
|
/**
|
|
2198
|
-
*
|
|
2198
|
+
* Aktivität intern abgerechnet?
|
|
2199
2199
|
*/
|
|
2200
|
-
|
|
2200
|
+
internalBilled: boolean;
|
|
2201
2201
|
|
|
2202
2202
|
/**
|
|
2203
|
-
*
|
|
2203
|
+
* geplante Dauer
|
|
2204
2204
|
*/
|
|
2205
|
-
|
|
2205
|
+
plannedDurationInSeconds: number;
|
|
2206
2206
|
|
|
2207
2207
|
/**
|
|
2208
2208
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2472,14 +2472,14 @@ export interface CrmDeal {
|
|
|
2472
2472
|
info: MetaInfo;
|
|
2473
2473
|
|
|
2474
2474
|
/**
|
|
2475
|
-
*
|
|
2475
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2476
2476
|
*/
|
|
2477
|
-
|
|
2477
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2478
2478
|
|
|
2479
2479
|
/**
|
|
2480
|
-
*
|
|
2480
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2481
2481
|
*/
|
|
2482
|
-
|
|
2482
|
+
assignedUserRef: ApiObjectReference;
|
|
2483
2483
|
|
|
2484
2484
|
/**
|
|
2485
2485
|
* Chance (in Prozent)
|
|
@@ -2778,14 +2778,14 @@ export interface CrmProject {
|
|
|
2778
2778
|
billedTimes: number;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
|
-
*
|
|
2781
|
+
* Geplanter Projektzeitraum (von)
|
|
2782
2782
|
*/
|
|
2783
|
-
|
|
2783
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2784
2784
|
|
|
2785
2785
|
/**
|
|
2786
|
-
*
|
|
2786
|
+
* Einkaufsbelege
|
|
2787
2787
|
*/
|
|
2788
|
-
|
|
2788
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2789
2789
|
|
|
2790
2790
|
/**
|
|
2791
2791
|
* Verkaufsbelege
|
|
@@ -3008,14 +3008,14 @@ export interface CrmState {
|
|
|
3008
3008
|
readyToBill: boolean;
|
|
3009
3009
|
|
|
3010
3010
|
/**
|
|
3011
|
-
*
|
|
3011
|
+
* Handelt es sich um einen Anfang-Status
|
|
3012
3012
|
*/
|
|
3013
|
-
|
|
3013
|
+
startState: boolean;
|
|
3014
3014
|
|
|
3015
3015
|
/**
|
|
3016
|
-
*
|
|
3016
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3017
3017
|
*/
|
|
3018
|
-
|
|
3018
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3019
3019
|
|
|
3020
3020
|
/**
|
|
3021
3021
|
* MetaInformations for this Object
|
|
@@ -3064,14 +3064,14 @@ export interface CrmSubType {
|
|
|
3064
3064
|
export interface CrmTask {
|
|
3065
3065
|
|
|
3066
3066
|
/**
|
|
3067
|
-
*
|
|
3067
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3068
3068
|
*/
|
|
3069
|
-
|
|
3069
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3070
3070
|
|
|
3071
3071
|
/**
|
|
3072
|
-
*
|
|
3072
|
+
* Angebot
|
|
3073
3073
|
*/
|
|
3074
|
-
|
|
3074
|
+
customerOfferRef: DocumentRef;
|
|
3075
3075
|
|
|
3076
3076
|
/**
|
|
3077
3077
|
* Liste von Erinnerungen
|
|
@@ -3259,14 +3259,14 @@ export interface CrmTask {
|
|
|
3259
3259
|
assignedUserRef: ApiObjectReference;
|
|
3260
3260
|
|
|
3261
3261
|
/**
|
|
3262
|
-
*
|
|
3262
|
+
* Beauftragte Zeit in Sekunden
|
|
3263
3263
|
*/
|
|
3264
|
-
|
|
3264
|
+
effortCommissioned: number;
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
|
-
*
|
|
3267
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3268
3268
|
*/
|
|
3269
|
-
|
|
3269
|
+
externalRecordedTimes: number;
|
|
3270
3270
|
|
|
3271
3271
|
/**
|
|
3272
3272
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3579,14 +3579,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3579
3579
|
export interface DeliveryMethod {
|
|
3580
3580
|
|
|
3581
3581
|
/**
|
|
3582
|
-
*
|
|
3582
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3583
3583
|
*/
|
|
3584
|
-
|
|
3584
|
+
splitIntoNewDocument: boolean;
|
|
3585
3585
|
|
|
3586
3586
|
/**
|
|
3587
|
-
*
|
|
3587
|
+
* E-Mail an Versender übergeben
|
|
3588
3588
|
*/
|
|
3589
|
-
|
|
3589
|
+
forwardEmailToShipper: boolean;
|
|
3590
3590
|
|
|
3591
3591
|
/**
|
|
3592
3592
|
* Min. Gewicht pro Paket
|
|
@@ -3638,26 +3638,26 @@ export interface DeliveryMethod {
|
|
|
3638
3638
|
*/
|
|
3639
3639
|
defaultSizeUnit: UnitTypeReference;
|
|
3640
3640
|
|
|
3641
|
-
/**
|
|
3642
|
-
* translations
|
|
3643
|
-
*/
|
|
3644
|
-
translations: Array<DocumentTypeTerm>;
|
|
3645
|
-
|
|
3646
3641
|
/**
|
|
3647
3642
|
* Quelle für Paketgewicht
|
|
3648
3643
|
*/
|
|
3649
3644
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3650
3645
|
|
|
3651
3646
|
/**
|
|
3652
|
-
*
|
|
3647
|
+
* translations
|
|
3653
3648
|
*/
|
|
3654
|
-
|
|
3649
|
+
translations: Array<DocumentTypeTerm>;
|
|
3655
3650
|
|
|
3656
3651
|
/**
|
|
3657
3652
|
* Gültige Ländercodes
|
|
3658
3653
|
*/
|
|
3659
3654
|
validCountryCodes: Array<string>;
|
|
3660
3655
|
|
|
3656
|
+
/**
|
|
3657
|
+
* Versand-Anbieter
|
|
3658
|
+
*/
|
|
3659
|
+
vdsCarrierId: number;
|
|
3660
|
+
|
|
3661
3661
|
/**
|
|
3662
3662
|
* Standardgewichtseinheit
|
|
3663
3663
|
*/
|
|
@@ -3862,11 +3862,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3862
3862
|
*/
|
|
3863
3863
|
deliveryQuantityPackages: number;
|
|
3864
3864
|
|
|
3865
|
-
/**
|
|
3866
|
-
* Steuerpflichtig oder steuerfrei
|
|
3867
|
-
*/
|
|
3868
|
-
taxable: boolean;
|
|
3869
|
-
|
|
3870
3865
|
/**
|
|
3871
3866
|
* Leitweg-ID
|
|
3872
3867
|
*/
|
|
@@ -3877,6 +3872,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3877
3872
|
*/
|
|
3878
3873
|
referencedOrderNumber: string;
|
|
3879
3874
|
|
|
3875
|
+
/**
|
|
3876
|
+
* Steuerpflichtig oder steuerfrei
|
|
3877
|
+
*/
|
|
3878
|
+
taxable: boolean;
|
|
3879
|
+
|
|
3880
3880
|
/**
|
|
3881
3881
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
3882
3882
|
*/
|
|
@@ -4040,14 +4040,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4040
4040
|
fabricationDetail: DocumentFabricationDetail;
|
|
4041
4041
|
|
|
4042
4042
|
/**
|
|
4043
|
-
*
|
|
4043
|
+
* Berechnungsmodus
|
|
4044
4044
|
*/
|
|
4045
|
-
|
|
4045
|
+
calculationMode: CalculationMode;
|
|
4046
4046
|
|
|
4047
4047
|
/**
|
|
4048
|
-
*
|
|
4048
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4049
4049
|
*/
|
|
4050
|
-
|
|
4050
|
+
accountNumber: string;
|
|
4051
4051
|
|
|
4052
4052
|
/**
|
|
4053
4053
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4060,14 +4060,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4060
4060
|
processedByWorkflow: boolean;
|
|
4061
4061
|
|
|
4062
4062
|
/**
|
|
4063
|
-
*
|
|
4063
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4064
4064
|
*/
|
|
4065
|
-
|
|
4065
|
+
baseTotalDocumentPriceModifier: number;
|
|
4066
4066
|
|
|
4067
4067
|
/**
|
|
4068
|
-
*
|
|
4068
|
+
* Telefon an Versender übergeben
|
|
4069
4069
|
*/
|
|
4070
|
-
|
|
4070
|
+
forwardPhoneToShipper: boolean;
|
|
4071
4071
|
|
|
4072
4072
|
/**
|
|
4073
4073
|
* Liste der Belegtexte
|
|
@@ -4100,14 +4100,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4100
4100
|
stackProcessingType: OrderStackProcessingType;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
dropShippingInvoiceApproved: boolean;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
en16931Profile: EN16931Profile;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4125,14 +4125,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4125
4125
|
additionalInfo: DocumentAdditionalInfo;
|
|
4126
4126
|
|
|
4127
4127
|
/**
|
|
4128
|
-
*
|
|
4128
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4129
4129
|
*/
|
|
4130
|
-
|
|
4130
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4131
4131
|
|
|
4132
4132
|
/**
|
|
4133
|
-
*
|
|
4133
|
+
* Bestelldatum
|
|
4134
4134
|
*/
|
|
4135
|
-
|
|
4135
|
+
orderedOn: ScriptingDate;
|
|
4136
4136
|
|
|
4137
4137
|
/**
|
|
4138
4138
|
* MetaInformations for this Object
|
|
@@ -4490,14 +4490,14 @@ export interface DocumentAddress {
|
|
|
4490
4490
|
postOfficeBox: string;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
|
-
*
|
|
4493
|
+
* Street
|
|
4494
4494
|
*/
|
|
4495
|
-
|
|
4495
|
+
street: string;
|
|
4496
4496
|
|
|
4497
4497
|
/**
|
|
4498
|
-
*
|
|
4498
|
+
* country code IsoAlpha3
|
|
4499
4499
|
*/
|
|
4500
|
-
|
|
4500
|
+
countryCode: string;
|
|
4501
4501
|
|
|
4502
4502
|
/**
|
|
4503
4503
|
* Unique identifier of the Object
|
|
@@ -4515,14 +4515,14 @@ export interface DocumentAddress {
|
|
|
4515
4515
|
info: MetaInfo;
|
|
4516
4516
|
|
|
4517
4517
|
/**
|
|
4518
|
-
*
|
|
4518
|
+
* Lieferart
|
|
4519
4519
|
*/
|
|
4520
|
-
|
|
4520
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4521
4521
|
|
|
4522
4522
|
/**
|
|
4523
|
-
*
|
|
4523
|
+
* GLN
|
|
4524
4524
|
*/
|
|
4525
|
-
|
|
4525
|
+
globalLocationNumber: string;
|
|
4526
4526
|
|
|
4527
4527
|
/**
|
|
4528
4528
|
* Postcode
|
|
@@ -4944,14 +4944,14 @@ export interface DocumentLine {
|
|
|
4944
4944
|
number: string;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4947
|
+
* Gesamtbruttogewicht
|
|
4948
4948
|
*/
|
|
4949
|
-
|
|
4949
|
+
totalGrossWeight: number;
|
|
4950
4950
|
|
|
4951
4951
|
/**
|
|
4952
|
-
*
|
|
4952
|
+
* Referenz zur Kundenauftragszeile
|
|
4953
4953
|
*/
|
|
4954
|
-
|
|
4954
|
+
customerOrderLineRef: DocumentLineRef;
|
|
4955
4955
|
|
|
4956
4956
|
/**
|
|
4957
4957
|
* skontierbare Position?
|
|
@@ -5013,6 +5013,11 @@ export interface DocumentLine {
|
|
|
5013
5013
|
*/
|
|
5014
5014
|
id: number;
|
|
5015
5015
|
|
|
5016
|
+
/**
|
|
5017
|
+
* Serientyp
|
|
5018
|
+
*/
|
|
5019
|
+
serialType: ArticleSerialType;
|
|
5020
|
+
|
|
5016
5021
|
/**
|
|
5017
5022
|
* Externe Referenz zum VDS-Paket
|
|
5018
5023
|
*/
|
|
@@ -5028,11 +5033,6 @@ export interface DocumentLine {
|
|
|
5028
5033
|
*/
|
|
5029
5034
|
positionOfArticleLine: number;
|
|
5030
5035
|
|
|
5031
|
-
/**
|
|
5032
|
-
* Serientyp
|
|
5033
|
-
*/
|
|
5034
|
-
serialType: ArticleSerialType;
|
|
5035
|
-
|
|
5036
5036
|
/**
|
|
5037
5037
|
* MetaInformations for this Object
|
|
5038
5038
|
*/
|
|
@@ -5194,14 +5194,14 @@ export interface DocumentLine {
|
|
|
5194
5194
|
unitType: UnitTypeReference;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* Zubehör Einfügeart
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
insertTerm: AccessoryInsertTerm;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
|
-
*
|
|
5202
|
+
* Referenz zur Basiszeile
|
|
5203
5203
|
*/
|
|
5204
|
-
|
|
5204
|
+
baseLineId: number;
|
|
5205
5205
|
|
|
5206
5206
|
/**
|
|
5207
5207
|
* Einheit Bruttogewicht
|
|
@@ -5723,14 +5723,14 @@ export interface DocumentLinePosDetail {
|
|
|
5723
5723
|
externalPaymentStatus: PosPaymentStatus;
|
|
5724
5724
|
|
|
5725
5725
|
/**
|
|
5726
|
-
*
|
|
5726
|
+
* Typ der Position
|
|
5727
5727
|
*/
|
|
5728
|
-
|
|
5728
|
+
posLineType: PosLineType;
|
|
5729
5729
|
|
|
5730
5730
|
/**
|
|
5731
|
-
*
|
|
5731
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5732
5732
|
*/
|
|
5733
|
-
|
|
5733
|
+
externalPaymentId: string;
|
|
5734
5734
|
|
|
5735
5735
|
/**
|
|
5736
5736
|
* Unique identifier of the Object
|
|
@@ -5948,14 +5948,14 @@ export interface DocumentPosPayment {
|
|
|
5948
5948
|
externalPaymentErrorMessage: string;
|
|
5949
5949
|
|
|
5950
5950
|
/**
|
|
5951
|
-
*
|
|
5951
|
+
* Typ der Position
|
|
5952
5952
|
*/
|
|
5953
|
-
|
|
5953
|
+
posLineType: PosLineType;
|
|
5954
5954
|
|
|
5955
5955
|
/**
|
|
5956
|
-
*
|
|
5956
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5957
5957
|
*/
|
|
5958
|
-
|
|
5958
|
+
externalPaymentId: string;
|
|
5959
5959
|
|
|
5960
5960
|
/**
|
|
5961
5961
|
* Unique identifier of the Object
|
|
@@ -6078,14 +6078,14 @@ export interface DocumentRef {
|
|
|
6078
6078
|
export interface DocumentShippingCost {
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
manualCosts: boolean;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
|
-
*
|
|
6086
|
+
* Die Versandkosten
|
|
6087
6087
|
*/
|
|
6088
|
-
|
|
6088
|
+
costs: number;
|
|
6089
6089
|
|
|
6090
6090
|
/**
|
|
6091
6091
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6330,14 +6330,14 @@ export interface DocumentType {
|
|
|
6330
6330
|
labels: Array<DocumentTypeLabel>;
|
|
6331
6331
|
|
|
6332
6332
|
/**
|
|
6333
|
-
*
|
|
6333
|
+
* Zählerkreis
|
|
6334
6334
|
*/
|
|
6335
|
-
|
|
6335
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6336
6336
|
|
|
6337
6337
|
/**
|
|
6338
|
-
*
|
|
6338
|
+
* nächste Belegnummer
|
|
6339
6339
|
*/
|
|
6340
|
-
|
|
6340
|
+
nextNumber: string;
|
|
6341
6341
|
|
|
6342
6342
|
/**
|
|
6343
6343
|
* Sortierung
|
|
@@ -7053,14 +7053,14 @@ export interface PaymentMethod {
|
|
|
7053
7053
|
daysToAddForFollowup: number;
|
|
7054
7054
|
|
|
7055
7055
|
/**
|
|
7056
|
-
*
|
|
7056
|
+
* Die Business Transaction
|
|
7057
7057
|
*/
|
|
7058
|
-
|
|
7058
|
+
businessTransaction: ApiObjectReference;
|
|
7059
7059
|
|
|
7060
7060
|
/**
|
|
7061
|
-
*
|
|
7061
|
+
* external Payment Id
|
|
7062
7062
|
*/
|
|
7063
|
-
|
|
7063
|
+
externalPaymentId: string;
|
|
7064
7064
|
|
|
7065
7065
|
/**
|
|
7066
7066
|
* Unique identifier of the Object
|
|
@@ -7086,14 +7086,14 @@ export interface PaymentTerm {
|
|
|
7086
7086
|
paymentDiscount2: number;
|
|
7087
7087
|
|
|
7088
7088
|
/**
|
|
7089
|
-
*
|
|
7089
|
+
* Percent for Discount 1
|
|
7090
7090
|
*/
|
|
7091
|
-
|
|
7091
|
+
paymentDiscount1: number;
|
|
7092
7092
|
|
|
7093
7093
|
/**
|
|
7094
|
-
*
|
|
7094
|
+
* printDescription
|
|
7095
7095
|
*/
|
|
7096
|
-
|
|
7096
|
+
printDescription: string;
|
|
7097
7097
|
|
|
7098
7098
|
/**
|
|
7099
7099
|
* for deposit: remaining term
|
|
@@ -7806,20 +7806,15 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7806
7806
|
*/
|
|
7807
7807
|
maxArticleCountPerOrder: number;
|
|
7808
7808
|
|
|
7809
|
-
/**
|
|
7810
|
-
* Alternative Selektion in VQL
|
|
7811
|
-
*/
|
|
7812
|
-
alternativeSelectionInVql: string;
|
|
7813
|
-
|
|
7814
7809
|
/**
|
|
7815
7810
|
* Maximaler Auftragswert
|
|
7816
7811
|
*/
|
|
7817
7812
|
maxOrderValue: number;
|
|
7818
7813
|
|
|
7819
7814
|
/**
|
|
7820
|
-
* Selektion
|
|
7815
|
+
* Alternative Selektion in VQL
|
|
7821
7816
|
*/
|
|
7822
|
-
|
|
7817
|
+
alternativeSelectionInVql: string;
|
|
7823
7818
|
|
|
7824
7819
|
/**
|
|
7825
7820
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -7831,6 +7826,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7831
7826
|
*/
|
|
7832
7827
|
onlyFullDeliverableOrderLines: boolean;
|
|
7833
7828
|
|
|
7829
|
+
/**
|
|
7830
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
7831
|
+
*/
|
|
7832
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7833
|
+
|
|
7834
7834
|
/**
|
|
7835
7835
|
* Selektion über den Bereich vom Belegdatum
|
|
7836
7836
|
*/
|
|
@@ -7890,19 +7890,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7890
7890
|
printPicklist: boolean;
|
|
7891
7891
|
|
|
7892
7892
|
/**
|
|
7893
|
-
*
|
|
7893
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
7894
7894
|
*/
|
|
7895
|
-
|
|
7895
|
+
maxPicklistLineCount: number;
|
|
7896
7896
|
|
|
7897
7897
|
/**
|
|
7898
|
-
*
|
|
7898
|
+
* Die zu verwendende Pickwagengruppe
|
|
7899
7899
|
*/
|
|
7900
|
-
|
|
7900
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7901
7901
|
|
|
7902
7902
|
/**
|
|
7903
|
-
*
|
|
7903
|
+
* Lagerplätze vorgeben
|
|
7904
7904
|
*/
|
|
7905
|
-
|
|
7905
|
+
specifyStorageBins: boolean;
|
|
7906
7906
|
|
|
7907
7907
|
/**
|
|
7908
7908
|
* Der zu verwendende Pickwagen
|
|
@@ -7910,9 +7910,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7910
7910
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7911
7911
|
|
|
7912
7912
|
/**
|
|
7913
|
-
*
|
|
7913
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7914
7914
|
*/
|
|
7915
|
-
|
|
7915
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
7916
7916
|
|
|
7917
7917
|
/**
|
|
7918
7918
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -7982,6 +7982,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7982
7982
|
*/
|
|
7983
7983
|
showShippingFormOnPickingFinish: boolean;
|
|
7984
7984
|
|
|
7985
|
+
/**
|
|
7986
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7987
|
+
*/
|
|
7988
|
+
allowPickingOfServiceArticles: boolean;
|
|
7989
|
+
|
|
7985
7990
|
/**
|
|
7986
7991
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7987
7992
|
*/
|
|
@@ -7992,11 +7997,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7992
7997
|
*/
|
|
7993
7998
|
allowFullConfirmation: boolean;
|
|
7994
7999
|
|
|
7995
|
-
/**
|
|
7996
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
7997
|
-
*/
|
|
7998
|
-
allowPickingOfServiceArticles: boolean;
|
|
7999
|
-
|
|
8000
8000
|
/**
|
|
8001
8001
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
8002
8002
|
*/
|
|
@@ -8279,14 +8279,14 @@ export interface ProductDiscount {
|
|
|
8279
8279
|
validFrom: ScriptingDate;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* Warengruppe
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
productGroupRef: ApiObjectReference;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
|
-
*
|
|
8287
|
+
* Bestimmt die Art des Rabatts
|
|
8288
8288
|
*/
|
|
8289
|
-
|
|
8289
|
+
modifierType: PriceModifierType;
|
|
8290
8290
|
|
|
8291
8291
|
/**
|
|
8292
8292
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8304,14 +8304,14 @@ export interface ProductDiscount {
|
|
|
8304
8304
|
currencyRef: CurrencyReference;
|
|
8305
8305
|
|
|
8306
8306
|
/**
|
|
8307
|
-
*
|
|
8307
|
+
* Preisgruppe
|
|
8308
8308
|
*/
|
|
8309
|
-
|
|
8309
|
+
priceGroupRef: ApiObjectReference;
|
|
8310
8310
|
|
|
8311
8311
|
/**
|
|
8312
|
-
*
|
|
8312
|
+
* Wert des Rabatts
|
|
8313
8313
|
*/
|
|
8314
|
-
|
|
8314
|
+
modifierValue: number;
|
|
8315
8315
|
|
|
8316
8316
|
/**
|
|
8317
8317
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -8612,14 +8612,14 @@ export interface RequestDocument {
|
|
|
8612
8612
|
cashDrawerId: number;
|
|
8613
8613
|
|
|
8614
8614
|
/**
|
|
8615
|
-
*
|
|
8615
|
+
* Leistungsdatum
|
|
8616
8616
|
*/
|
|
8617
|
-
|
|
8617
|
+
performanceDate: ScriptingDate;
|
|
8618
8618
|
|
|
8619
8619
|
/**
|
|
8620
|
-
*
|
|
8620
|
+
* Der Anzahlungsbetrag
|
|
8621
8621
|
*/
|
|
8622
|
-
|
|
8622
|
+
depositPaymentAmount: number;
|
|
8623
8623
|
|
|
8624
8624
|
/**
|
|
8625
8625
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8681,26 +8681,26 @@ export interface RequestDocument {
|
|
|
8681
8681
|
*/
|
|
8682
8682
|
lines: Array<RequestDocumentLine>;
|
|
8683
8683
|
|
|
8684
|
-
/**
|
|
8685
|
-
* ID der Kasse (bei POS)
|
|
8686
|
-
*/
|
|
8687
|
-
posRegisterId: number;
|
|
8688
|
-
|
|
8689
8684
|
/**
|
|
8690
8685
|
* Die Vertragsdetails
|
|
8691
8686
|
*/
|
|
8692
8687
|
contractDetail: DocumentContractDetail;
|
|
8693
8688
|
|
|
8694
8689
|
/**
|
|
8695
|
-
*
|
|
8690
|
+
* ID der Kasse (bei POS)
|
|
8696
8691
|
*/
|
|
8697
|
-
|
|
8692
|
+
posRegisterId: number;
|
|
8698
8693
|
|
|
8699
8694
|
/**
|
|
8700
8695
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
8701
8696
|
*/
|
|
8702
8697
|
paymentTermId: number;
|
|
8703
8698
|
|
|
8699
|
+
/**
|
|
8700
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
8701
|
+
*/
|
|
8702
|
+
supplierAccountId: number;
|
|
8703
|
+
|
|
8704
8704
|
/**
|
|
8705
8705
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
8706
8706
|
*/
|
|
@@ -8830,14 +8830,14 @@ export interface RequestDocumentLine {
|
|
|
8830
8830
|
dropShippingPolicy: DropShippingPolicy;
|
|
8831
8831
|
|
|
8832
8832
|
/**
|
|
8833
|
-
*
|
|
8833
|
+
* (optional) Lager-ID
|
|
8834
8834
|
*/
|
|
8835
|
-
|
|
8835
|
+
storageId: number;
|
|
8836
8836
|
|
|
8837
8837
|
/**
|
|
8838
|
-
*
|
|
8838
|
+
* Positionsnummer der Artikel
|
|
8839
8839
|
*/
|
|
8840
|
-
|
|
8840
|
+
positionOfArticleLine: number;
|
|
8841
8841
|
|
|
8842
8842
|
/**
|
|
8843
8843
|
* Vertragsdetails zur Belegposition
|
|
@@ -9533,14 +9533,14 @@ export interface ShelfDocument {
|
|
|
9533
9533
|
tags: Array<TagDto>;
|
|
9534
9534
|
|
|
9535
9535
|
/**
|
|
9536
|
-
*
|
|
9536
|
+
* Mehrsprachige Bezeichnungen
|
|
9537
9537
|
*/
|
|
9538
|
-
|
|
9538
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9539
9539
|
|
|
9540
9540
|
/**
|
|
9541
|
-
*
|
|
9541
|
+
* share informations
|
|
9542
9542
|
*/
|
|
9543
|
-
|
|
9543
|
+
shares: Array<ShelfShare>;
|
|
9544
9544
|
|
|
9545
9545
|
/**
|
|
9546
9546
|
* Automatische Löschung ab
|
|
@@ -9672,14 +9672,14 @@ export interface ShelfDocumentType {
|
|
|
9672
9672
|
active: boolean;
|
|
9673
9673
|
|
|
9674
9674
|
/**
|
|
9675
|
-
*
|
|
9675
|
+
* access level or reading
|
|
9676
9676
|
*/
|
|
9677
|
-
|
|
9677
|
+
accessLevelRead: number;
|
|
9678
9678
|
|
|
9679
9679
|
/**
|
|
9680
|
-
*
|
|
9680
|
+
* label of type
|
|
9681
9681
|
*/
|
|
9682
|
-
|
|
9682
|
+
label: string;
|
|
9683
9683
|
|
|
9684
9684
|
/**
|
|
9685
9685
|
* storage rule for revisions
|
|
@@ -9725,14 +9725,14 @@ export interface ShelfFile {
|
|
|
9725
9725
|
subFiles: Array<SubFileInfo>;
|
|
9726
9726
|
|
|
9727
9727
|
/**
|
|
9728
|
-
*
|
|
9728
|
+
* revision number of this file
|
|
9729
9729
|
*/
|
|
9730
|
-
|
|
9730
|
+
revisionNumber: number;
|
|
9731
9731
|
|
|
9732
9732
|
/**
|
|
9733
|
-
*
|
|
9733
|
+
* fileSize
|
|
9734
9734
|
*/
|
|
9735
|
-
|
|
9735
|
+
fileSize: number;
|
|
9736
9736
|
|
|
9737
9737
|
/**
|
|
9738
9738
|
* file-extension of this entry
|
|
@@ -9811,14 +9811,14 @@ export interface ShelfShare {
|
|
|
9811
9811
|
publishState: ShelfSharePublishState;
|
|
9812
9812
|
|
|
9813
9813
|
/**
|
|
9814
|
-
*
|
|
9814
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
9815
9815
|
*/
|
|
9816
|
-
|
|
9816
|
+
publicUrlDurationInMinutes: number;
|
|
9817
9817
|
|
|
9818
9818
|
/**
|
|
9819
|
-
*
|
|
9819
|
+
* Freifelder
|
|
9820
9820
|
*/
|
|
9821
|
-
|
|
9821
|
+
custom: EavShelfshare;
|
|
9822
9822
|
|
|
9823
9823
|
/**
|
|
9824
9824
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10030,14 +10030,14 @@ export interface StockMovementManualApi {
|
|
|
10030
10030
|
export interface StockTransferApi {
|
|
10031
10031
|
|
|
10032
10032
|
/**
|
|
10033
|
-
*
|
|
10033
|
+
* Ziel-Lager
|
|
10034
10034
|
*/
|
|
10035
|
-
|
|
10035
|
+
targetStorageId: number;
|
|
10036
10036
|
|
|
10037
10037
|
/**
|
|
10038
|
-
*
|
|
10038
|
+
* Seriennummer
|
|
10039
10039
|
*/
|
|
10040
|
-
|
|
10040
|
+
serialNumberId: number;
|
|
10041
10041
|
|
|
10042
10042
|
/**
|
|
10043
10043
|
* Bemerkung
|
|
@@ -10247,14 +10247,14 @@ export interface Supplier {
|
|
|
10247
10247
|
info: MetaInfo;
|
|
10248
10248
|
|
|
10249
10249
|
/**
|
|
10250
|
-
*
|
|
10250
|
+
* Lieferantengruppe
|
|
10251
10251
|
*/
|
|
10252
|
-
|
|
10252
|
+
supplierGroupRef: ApiObjectReference;
|
|
10253
10253
|
|
|
10254
10254
|
/**
|
|
10255
|
-
*
|
|
10255
|
+
* reference to the delivery method
|
|
10256
10256
|
*/
|
|
10257
|
-
|
|
10257
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10258
10258
|
|
|
10259
10259
|
/**
|
|
10260
10260
|
* tax able or tax free
|
|
@@ -10340,14 +10340,14 @@ export interface TagDto {
|
|
|
10340
10340
|
editColor: string;
|
|
10341
10341
|
|
|
10342
10342
|
/**
|
|
10343
|
-
* Farbe
|
|
10343
|
+
* Farbe für die Anzeige des Tags
|
|
10344
10344
|
*/
|
|
10345
|
-
|
|
10345
|
+
color: string;
|
|
10346
10346
|
|
|
10347
10347
|
/**
|
|
10348
|
-
* Farbe
|
|
10348
|
+
* Farbe in Such-GUI
|
|
10349
10349
|
*/
|
|
10350
|
-
|
|
10350
|
+
searchColor: string;
|
|
10351
10351
|
|
|
10352
10352
|
/**
|
|
10353
10353
|
* Beschriftung des Tags
|