@vario-software/types 2026.23.3 → 2026.24.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 +2048 -1886
- package/scripting/services.d.ts +51 -43
- package/scripting/types.d.ts +402 -296
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
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
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
|
|
@@ -391,14 +391,14 @@ export interface AccountAddress {
|
|
|
391
391
|
additionalAddressLine1: string;
|
|
392
392
|
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* Parcel station
|
|
395
395
|
*/
|
|
396
|
-
|
|
396
|
+
parcelStation: string;
|
|
397
397
|
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* Additional address line2
|
|
400
400
|
*/
|
|
401
|
-
|
|
401
|
+
additionalAddressLine2: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
404
|
* Street address number
|
|
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
|
|
|
469
469
|
active: boolean;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
*
|
|
472
|
+
* post-code of the bank
|
|
473
473
|
*/
|
|
474
|
-
|
|
474
|
+
bankPostCode: string;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* name of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankName: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* account from, if differs from account-address
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* origin type
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Is default bank?
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
defaultBank: boolean;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Kreditlimit
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
maximalLoan: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
payablesSum: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1209,14 +1209,14 @@ export interface Article {
|
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
|
-
*
|
|
1212
|
+
* description custom data
|
|
1213
1213
|
*/
|
|
1214
|
-
|
|
1214
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1215
1215
|
|
|
1216
1216
|
/**
|
|
1217
|
-
*
|
|
1217
|
+
* Frei kommissionierbar
|
|
1218
1218
|
*/
|
|
1219
|
-
|
|
1219
|
+
freelyPickable: boolean;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* gross sales prices
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
grossSalesPrice: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1299,14 +1299,14 @@ export interface Article {
|
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* rabattierbarer Artikel?
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
discountable: boolean;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* Kontingentartikel
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
contingentArticleRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* alternative name of this product
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* Nur manuelle Produktion
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
onlyManualFabrication: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* provisionsberechtiger Artikel?
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
commissionable: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1494,14 +1494,14 @@ export interface ArticleCustomer {
|
|
|
1494
1494
|
articleName: string;
|
|
1495
1495
|
|
|
1496
1496
|
/**
|
|
1497
|
-
*
|
|
1497
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1498
1498
|
*/
|
|
1499
|
-
|
|
1499
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
|
-
*
|
|
1502
|
+
* Etikettdruck-Einstellungen
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1504
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1505
1505
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Kunden-Preise
|
|
@@ -1992,14 +1992,14 @@ export interface ArticleSupplier {
|
|
|
1992
1992
|
accountDisplayName: string;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
|
-
*
|
|
1995
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1996
1996
|
*/
|
|
1997
|
-
|
|
1997
|
+
useSupplierArticleDescription: boolean;
|
|
1998
1998
|
|
|
1999
1999
|
/**
|
|
2000
|
-
*
|
|
2000
|
+
* Lieferanten-Meldebestand
|
|
2001
2001
|
*/
|
|
2002
|
-
|
|
2002
|
+
supplierReportingStock: number;
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Referenced Article name
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
articleName: string;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Verpackungseinheit
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
packagingUnit: number;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2097,14 +2097,14 @@ export interface ArticleSupplier {
|
|
|
2097
2097
|
dropShippingAllowed: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
* Abweichende
|
|
2100
|
+
* Abweichende Produktbeschreibung
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierArticleDescription: string;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
|
-
* Abweichende
|
|
2105
|
+
* Abweichende Produktbezeichnung
|
|
2106
2106
|
*/
|
|
2107
|
-
|
|
2107
|
+
supplierArticleName: string;
|
|
2108
2108
|
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Standardpreis Netto
|
|
@@ -2112,14 +2112,14 @@ export interface ArticleSupplier {
|
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
2114
|
/**
|
|
2115
|
-
*
|
|
2115
|
+
* Einkaufseinheit
|
|
2116
2116
|
*/
|
|
2117
|
-
|
|
2117
|
+
purchaseUnit: number;
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
*
|
|
2120
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
orderOnComponentBase: boolean;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
2125
|
* Referenced Supplier-Account
|
|
@@ -2452,14 +2452,14 @@ export interface CrmActivity {
|
|
|
2452
2452
|
userRef: ApiObjectReference;
|
|
2453
2453
|
|
|
2454
2454
|
/**
|
|
2455
|
-
*
|
|
2455
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2456
2456
|
*/
|
|
2457
|
-
|
|
2457
|
+
system: boolean;
|
|
2458
2458
|
|
|
2459
2459
|
/**
|
|
2460
|
-
*
|
|
2460
|
+
* tatsächliche Startzeit
|
|
2461
2461
|
*/
|
|
2462
|
-
|
|
2462
|
+
startDateTime: ScriptingDateTime;
|
|
2463
2463
|
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Inhalt dieser Aktivität
|
|
@@ -2566,14 +2566,14 @@ export interface CrmActivityType {
|
|
|
2566
2566
|
export interface CrmChecklistItem {
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
|
-
*
|
|
2569
|
+
* Text des Checklisten-Elements
|
|
2570
2570
|
*/
|
|
2571
|
-
|
|
2571
|
+
memo: string;
|
|
2572
2572
|
|
|
2573
2573
|
/**
|
|
2574
|
-
*
|
|
2574
|
+
* Ist das Element "angehakt"?
|
|
2575
2575
|
*/
|
|
2576
|
-
|
|
2576
|
+
checked: boolean;
|
|
2577
2577
|
|
|
2578
2578
|
/**
|
|
2579
2579
|
* Unique identifier of the Object
|
|
@@ -2684,14 +2684,14 @@ export interface CrmDeal {
|
|
|
2684
2684
|
info: MetaInfo;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2693
2693
|
*/
|
|
2694
|
-
|
|
2694
|
+
assignedUserRef: ApiObjectReference;
|
|
2695
2695
|
|
|
2696
2696
|
/**
|
|
2697
2697
|
* Chance (in Prozent)
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Phase
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
phaseRef: ApiObjectReference;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Projektleiter vom Auftragnehmer
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Aufgaben-Nummer
|
|
@@ -3025,14 +3025,14 @@ export interface CrmProject {
|
|
|
3025
3025
|
info: MetaInfo;
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
|
-
*
|
|
3028
|
+
* Projektleiter vom Auftraggeber
|
|
3029
3029
|
*/
|
|
3030
|
-
|
|
3030
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3031
3031
|
|
|
3032
3032
|
/**
|
|
3033
|
-
*
|
|
3033
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3034
3034
|
*/
|
|
3035
|
-
|
|
3035
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Übergeordnete CRM-Objekte
|
|
@@ -3220,14 +3220,14 @@ export interface CrmState {
|
|
|
3220
3220
|
readyToBill: boolean;
|
|
3221
3221
|
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
3223
|
+
* Handelt es sich um einen Anfang-Status
|
|
3224
3224
|
*/
|
|
3225
|
-
|
|
3225
|
+
startState: boolean;
|
|
3226
3226
|
|
|
3227
3227
|
/**
|
|
3228
|
-
*
|
|
3228
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3229
3229
|
*/
|
|
3230
|
-
|
|
3230
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3231
3231
|
|
|
3232
3232
|
/**
|
|
3233
3233
|
* MetaInformations for this Object
|
|
@@ -3715,14 +3715,14 @@ export interface Customer {
|
|
|
3715
3715
|
stackProcessingPriority: number;
|
|
3716
3716
|
|
|
3717
3717
|
/**
|
|
3718
|
-
*
|
|
3718
|
+
* reference to product price group
|
|
3719
3719
|
*/
|
|
3720
|
-
|
|
3720
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3721
3721
|
|
|
3722
3722
|
/**
|
|
3723
|
-
*
|
|
3723
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3724
3724
|
*/
|
|
3725
|
-
|
|
3725
|
+
collectiveInvoiceManually: boolean;
|
|
3726
3726
|
|
|
3727
3727
|
/**
|
|
3728
3728
|
* Unique identifier of the Object
|
|
@@ -3958,26 +3958,26 @@ export interface DeliveryMethod {
|
|
|
3958
3958
|
*/
|
|
3959
3959
|
defaultSizeUnit: UnitTypeReference;
|
|
3960
3960
|
|
|
3961
|
-
/**
|
|
3962
|
-
* translations
|
|
3963
|
-
*/
|
|
3964
|
-
translations: Array<DocumentTypeTerm>;
|
|
3965
|
-
|
|
3966
3961
|
/**
|
|
3967
3962
|
* Quelle für Paketgewicht
|
|
3968
3963
|
*/
|
|
3969
3964
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3970
3965
|
|
|
3971
3966
|
/**
|
|
3972
|
-
*
|
|
3967
|
+
* translations
|
|
3973
3968
|
*/
|
|
3974
|
-
|
|
3969
|
+
translations: Array<DocumentTypeTerm>;
|
|
3975
3970
|
|
|
3976
3971
|
/**
|
|
3977
3972
|
* Versand-Anbieter
|
|
3978
3973
|
*/
|
|
3979
3974
|
vdsCarrierId: number;
|
|
3980
3975
|
|
|
3976
|
+
/**
|
|
3977
|
+
* Gültige Ländercodes
|
|
3978
|
+
*/
|
|
3979
|
+
validCountryCodes: Array<string>;
|
|
3980
|
+
|
|
3981
3981
|
/**
|
|
3982
3982
|
* Standardgewichtseinheit
|
|
3983
3983
|
*/
|
|
@@ -4182,11 +4182,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4182
4182
|
*/
|
|
4183
4183
|
deliveryQuantityPackages: number;
|
|
4184
4184
|
|
|
4185
|
-
/**
|
|
4186
|
-
* Steuerpflichtig oder steuerfrei
|
|
4187
|
-
*/
|
|
4188
|
-
taxable: boolean;
|
|
4189
|
-
|
|
4190
4185
|
/**
|
|
4191
4186
|
* Leitweg-ID
|
|
4192
4187
|
*/
|
|
@@ -4197,6 +4192,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4197
4192
|
*/
|
|
4198
4193
|
referencedOrderNumber: string;
|
|
4199
4194
|
|
|
4195
|
+
/**
|
|
4196
|
+
* Steuerpflichtig oder steuerfrei
|
|
4197
|
+
*/
|
|
4198
|
+
taxable: boolean;
|
|
4199
|
+
|
|
4200
4200
|
/**
|
|
4201
4201
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4202
4202
|
*/
|
|
@@ -4277,6 +4277,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4277
4277
|
*/
|
|
4278
4278
|
documentDate: ScriptingDate;
|
|
4279
4279
|
|
|
4280
|
+
/**
|
|
4281
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4282
|
+
*/
|
|
4283
|
+
roundingAmount: number;
|
|
4284
|
+
|
|
4280
4285
|
/**
|
|
4281
4286
|
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4282
4287
|
*/
|
|
@@ -4293,14 +4298,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4293
4298
|
supplierNumber: string;
|
|
4294
4299
|
|
|
4295
4300
|
/**
|
|
4296
|
-
*
|
|
4301
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4297
4302
|
*/
|
|
4298
|
-
|
|
4303
|
+
deliveryApproved: boolean;
|
|
4299
4304
|
|
|
4300
4305
|
/**
|
|
4301
|
-
*
|
|
4306
|
+
* Gesamtpreis brutto
|
|
4302
4307
|
*/
|
|
4303
|
-
|
|
4308
|
+
totalGrossPrice: number;
|
|
4304
4309
|
|
|
4305
4310
|
/**
|
|
4306
4311
|
* Kassen-Zahlungspositionen
|
|
@@ -4345,14 +4350,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4345
4350
|
contractDetail: DocumentContractDetail;
|
|
4346
4351
|
|
|
4347
4352
|
/**
|
|
4348
|
-
*
|
|
4353
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4349
4354
|
*/
|
|
4350
|
-
|
|
4355
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4351
4356
|
|
|
4352
4357
|
/**
|
|
4353
|
-
*
|
|
4358
|
+
* Zahlungsplan vorhanden?
|
|
4354
4359
|
*/
|
|
4355
|
-
|
|
4360
|
+
paymentPlan: boolean;
|
|
4356
4361
|
|
|
4357
4362
|
/**
|
|
4358
4363
|
* Produktionsdetails
|
|
@@ -4409,26 +4414,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4409
4414
|
*/
|
|
4410
4415
|
defaultAddress: DocumentAddress;
|
|
4411
4416
|
|
|
4412
|
-
/**
|
|
4413
|
-
* Verarbeitungsoption für Stapel
|
|
4414
|
-
*/
|
|
4415
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4416
|
-
|
|
4417
4417
|
/**
|
|
4418
4418
|
* Leistungsdatum
|
|
4419
4419
|
*/
|
|
4420
4420
|
performanceDate: ScriptingDate;
|
|
4421
4421
|
|
|
4422
4422
|
/**
|
|
4423
|
-
*
|
|
4423
|
+
* Verarbeitungsoption für Stapel
|
|
4424
4424
|
*/
|
|
4425
|
-
|
|
4425
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4426
4426
|
|
|
4427
4427
|
/**
|
|
4428
4428
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4429
4429
|
*/
|
|
4430
4430
|
dropShippingInvoiceApproved: boolean;
|
|
4431
4431
|
|
|
4432
|
+
/**
|
|
4433
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4434
|
+
*/
|
|
4435
|
+
en16931Profile: EN16931Profile;
|
|
4436
|
+
|
|
4432
4437
|
/**
|
|
4433
4438
|
* Ort der steuerlichen Leistungserbringung
|
|
4434
4439
|
*/
|
|
@@ -4475,14 +4480,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4475
4480
|
dropShipping: boolean;
|
|
4476
4481
|
|
|
4477
4482
|
/**
|
|
4478
|
-
*
|
|
4483
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4479
4484
|
*/
|
|
4480
|
-
|
|
4485
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4481
4486
|
|
|
4482
4487
|
/**
|
|
4483
|
-
*
|
|
4488
|
+
* Gesamtpreis netto
|
|
4484
4489
|
*/
|
|
4485
|
-
|
|
4490
|
+
totalNetPrice: number;
|
|
4486
4491
|
|
|
4487
4492
|
/**
|
|
4488
4493
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4589,25 +4594,25 @@ true wenn die Quittung bezahlt ist
|
|
|
4589
4594
|
*/
|
|
4590
4595
|
customerNumber: string;
|
|
4591
4596
|
|
|
4592
|
-
/**
|
|
4593
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4594
|
-
*/
|
|
4595
|
-
taxIdentificationNumber: string;
|
|
4596
|
-
|
|
4597
4597
|
/**
|
|
4598
4598
|
* Statusinstanz des Belegs
|
|
4599
4599
|
*/
|
|
4600
4600
|
documentState: DocumentTypeState;
|
|
4601
4601
|
|
|
4602
4602
|
/**
|
|
4603
|
-
*
|
|
4603
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4604
|
+
*/
|
|
4605
|
+
taxIdentificationNumber: string;
|
|
4606
|
+
|
|
4607
|
+
/**
|
|
4608
|
+
* Versandkostenpositionen
|
|
4604
4609
|
*/
|
|
4605
4610
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4606
4611
|
|
|
4607
4612
|
/**
|
|
4608
|
-
*
|
|
4613
|
+
* Rückgeld
|
|
4609
4614
|
*/
|
|
4610
|
-
|
|
4615
|
+
posReceiptChangeAmount: number;
|
|
4611
4616
|
|
|
4612
4617
|
/**
|
|
4613
4618
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4617,9 +4622,9 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4617
4622
|
posReceiptBalanced: boolean;
|
|
4618
4623
|
|
|
4619
4624
|
/**
|
|
4620
|
-
*
|
|
4625
|
+
* Referenz auf Lieferbedingung
|
|
4621
4626
|
*/
|
|
4622
|
-
|
|
4627
|
+
deliveryTermRef: ApiObjectReference;
|
|
4623
4628
|
|
|
4624
4629
|
/**
|
|
4625
4630
|
* Gesamtbruttogewicht
|
|
@@ -4679,6 +4684,11 @@ export interface DocumentAdditionalInfo {
|
|
|
4679
4684
|
*/
|
|
4680
4685
|
contextParameters: Array<AdditionalParameter>;
|
|
4681
4686
|
|
|
4687
|
+
/**
|
|
4688
|
+
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
4689
|
+
*/
|
|
4690
|
+
roundingMode: DocumentRounding;
|
|
4691
|
+
|
|
4682
4692
|
/**
|
|
4683
4693
|
* Herkunft der Käufer-Referenz
|
|
4684
4694
|
*/
|
|
@@ -4810,14 +4820,14 @@ export interface DocumentAddress {
|
|
|
4810
4820
|
postOfficeBox: string;
|
|
4811
4821
|
|
|
4812
4822
|
/**
|
|
4813
|
-
*
|
|
4823
|
+
* Street
|
|
4814
4824
|
*/
|
|
4815
|
-
|
|
4825
|
+
street: string;
|
|
4816
4826
|
|
|
4817
4827
|
/**
|
|
4818
|
-
*
|
|
4828
|
+
* country code IsoAlpha3
|
|
4819
4829
|
*/
|
|
4820
|
-
|
|
4830
|
+
countryCode: string;
|
|
4821
4831
|
|
|
4822
4832
|
/**
|
|
4823
4833
|
* Unique identifier of the Object
|
|
@@ -5023,14 +5033,14 @@ export interface DocumentContractDetail {
|
|
|
5023
5033
|
runtimeToDate: ScriptingDate;
|
|
5024
5034
|
|
|
5025
5035
|
/**
|
|
5026
|
-
*
|
|
5036
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5027
5037
|
*/
|
|
5028
|
-
|
|
5038
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5029
5039
|
|
|
5030
5040
|
/**
|
|
5031
|
-
*
|
|
5041
|
+
* Nächste Fälligkeit
|
|
5032
5042
|
*/
|
|
5033
|
-
|
|
5043
|
+
nextDueDate: ScriptingDate;
|
|
5034
5044
|
|
|
5035
5045
|
/**
|
|
5036
5046
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5290,14 +5300,14 @@ export interface DocumentLine {
|
|
|
5290
5300
|
price: number;
|
|
5291
5301
|
|
|
5292
5302
|
/**
|
|
5293
|
-
*
|
|
5303
|
+
* Gesamtpreis Position in Basiswährung
|
|
5294
5304
|
*/
|
|
5295
|
-
|
|
5305
|
+
baseTotalLinePrice: number;
|
|
5296
5306
|
|
|
5297
5307
|
/**
|
|
5298
|
-
*
|
|
5308
|
+
* FiBu-Buchung
|
|
5299
5309
|
*/
|
|
5300
|
-
|
|
5310
|
+
financeBooking: DocumentFinanceBooking;
|
|
5301
5311
|
|
|
5302
5312
|
/**
|
|
5303
5313
|
* Positionstyp
|
|
@@ -5334,26 +5344,26 @@ export interface DocumentLine {
|
|
|
5334
5344
|
*/
|
|
5335
5345
|
id: number;
|
|
5336
5346
|
|
|
5337
|
-
/**
|
|
5338
|
-
* Externe Referenz zum VDS-Paket
|
|
5339
|
-
*/
|
|
5340
|
-
externalReferenceVds: string;
|
|
5341
|
-
|
|
5342
5347
|
/**
|
|
5343
5348
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5344
5349
|
*/
|
|
5345
5350
|
positionOfArticleLine: number;
|
|
5346
5351
|
|
|
5347
5352
|
/**
|
|
5348
|
-
*
|
|
5353
|
+
* Externe Referenz zum VDS-Paket
|
|
5349
5354
|
*/
|
|
5350
|
-
|
|
5355
|
+
externalReferenceVds: string;
|
|
5351
5356
|
|
|
5352
5357
|
/**
|
|
5353
5358
|
* Preis pro Einheit in Basiswährung
|
|
5354
5359
|
*/
|
|
5355
5360
|
basePrice: number;
|
|
5356
5361
|
|
|
5362
|
+
/**
|
|
5363
|
+
* Serientyp
|
|
5364
|
+
*/
|
|
5365
|
+
serialType: ArticleSerialType;
|
|
5366
|
+
|
|
5357
5367
|
/**
|
|
5358
5368
|
* MetaInformations for this Object
|
|
5359
5369
|
*/
|
|
@@ -5429,6 +5439,11 @@ export interface DocumentLine {
|
|
|
5429
5439
|
*/
|
|
5430
5440
|
position: number;
|
|
5431
5441
|
|
|
5442
|
+
/**
|
|
5443
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5444
|
+
*/
|
|
5445
|
+
recalcLinePriceViaComponents: boolean;
|
|
5446
|
+
|
|
5432
5447
|
/**
|
|
5433
5448
|
* Buchungen
|
|
5434
5449
|
*/
|
|
@@ -5644,6 +5659,11 @@ export interface DocumentLine {
|
|
|
5644
5659
|
*/
|
|
5645
5660
|
complete: boolean;
|
|
5646
5661
|
|
|
5662
|
+
/**
|
|
5663
|
+
* Komponenten
|
|
5664
|
+
*/
|
|
5665
|
+
fabricationComponents: Array<DocumentLineFabricationComponent>;
|
|
5666
|
+
|
|
5647
5667
|
/**
|
|
5648
5668
|
* Produktvariantenwerte
|
|
5649
5669
|
*/
|
|
@@ -5925,6 +5945,69 @@ export interface DocumentLineFabricationBookedComponent {
|
|
|
5925
5945
|
description: string;
|
|
5926
5946
|
}
|
|
5927
5947
|
|
|
5948
|
+
export interface DocumentLineFabricationComponent {
|
|
5949
|
+
|
|
5950
|
+
/**
|
|
5951
|
+
* Quell-Gebindeartikel für die Umlagerung von Material
|
|
5952
|
+
*/
|
|
5953
|
+
sourceBundleArticleRef: ProductArticleRef;
|
|
5954
|
+
|
|
5955
|
+
/**
|
|
5956
|
+
* Abweichende Herstellungskosten
|
|
5957
|
+
*/
|
|
5958
|
+
deviatingUnitPrice: number;
|
|
5959
|
+
|
|
5960
|
+
/**
|
|
5961
|
+
* Menge
|
|
5962
|
+
*/
|
|
5963
|
+
quantity: number;
|
|
5964
|
+
|
|
5965
|
+
/**
|
|
5966
|
+
* Beschreibung
|
|
5967
|
+
*/
|
|
5968
|
+
description: string;
|
|
5969
|
+
|
|
5970
|
+
/**
|
|
5971
|
+
* Abweichende Produkteinheit
|
|
5972
|
+
*/
|
|
5973
|
+
deviatingUnitRef: UnitTypeReference;
|
|
5974
|
+
|
|
5975
|
+
/**
|
|
5976
|
+
* Version Identifier for this Object (for PUT)
|
|
5977
|
+
*/
|
|
5978
|
+
version: number;
|
|
5979
|
+
|
|
5980
|
+
/**
|
|
5981
|
+
* Basis für die Vererbung der Seriennummer
|
|
5982
|
+
*/
|
|
5983
|
+
forSerialInheritance: boolean;
|
|
5984
|
+
|
|
5985
|
+
/**
|
|
5986
|
+
* Bezeichnung
|
|
5987
|
+
*/
|
|
5988
|
+
name: string;
|
|
5989
|
+
|
|
5990
|
+
/**
|
|
5991
|
+
* Position
|
|
5992
|
+
*/
|
|
5993
|
+
position: number;
|
|
5994
|
+
|
|
5995
|
+
/**
|
|
5996
|
+
* Unique identifier of the Object
|
|
5997
|
+
*/
|
|
5998
|
+
id: number;
|
|
5999
|
+
|
|
6000
|
+
/**
|
|
6001
|
+
* Komponentenartikel
|
|
6002
|
+
*/
|
|
6003
|
+
componentArticleRef: ProductArticleRef;
|
|
6004
|
+
|
|
6005
|
+
/**
|
|
6006
|
+
* MetaInformations for this Object
|
|
6007
|
+
*/
|
|
6008
|
+
info: MetaInfo;
|
|
6009
|
+
}
|
|
6010
|
+
|
|
5928
6011
|
export interface DocumentLineFabricationDetail {
|
|
5929
6012
|
|
|
5930
6013
|
/**
|
|
@@ -5933,14 +6016,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5933
6016
|
quantityFinished: number;
|
|
5934
6017
|
|
|
5935
6018
|
/**
|
|
5936
|
-
*
|
|
6019
|
+
* Menge defekt
|
|
5937
6020
|
*/
|
|
5938
|
-
|
|
6021
|
+
quantityDefective: number;
|
|
5939
6022
|
|
|
5940
6023
|
/**
|
|
5941
|
-
*
|
|
6024
|
+
* Produzierte Seriennummern
|
|
5942
6025
|
*/
|
|
5943
|
-
|
|
6026
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5944
6027
|
|
|
5945
6028
|
/**
|
|
5946
6029
|
* Freifeld
|
|
@@ -6175,7 +6258,8 @@ export const enum DocumentLineType {
|
|
|
6175
6258
|
TEXT_LINE = 'TEXT_LINE',
|
|
6176
6259
|
SHIPPING_COST_LINE = 'SHIPPING_COST_LINE',
|
|
6177
6260
|
SUBTOTAL = 'SUBTOTAL',
|
|
6178
|
-
POS = 'POS'
|
|
6261
|
+
POS = 'POS',
|
|
6262
|
+
ROUNDING_LINE = 'ROUNDING_LINE'
|
|
6179
6263
|
}
|
|
6180
6264
|
|
|
6181
6265
|
export interface DocumentPosDetail {
|
|
@@ -6451,6 +6535,11 @@ export interface DocumentRef {
|
|
|
6451
6535
|
documentState: string;
|
|
6452
6536
|
}
|
|
6453
6537
|
|
|
6538
|
+
export const enum DocumentRounding {
|
|
6539
|
+
NONE = 'NONE',
|
|
6540
|
+
SWITZERLAND = 'SWITZERLAND'
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6454
6543
|
export interface DocumentShippingCost {
|
|
6455
6544
|
|
|
6456
6545
|
/**
|
|
@@ -6706,14 +6795,14 @@ export interface DocumentType {
|
|
|
6706
6795
|
labels: Array<DocumentTypeLabel>;
|
|
6707
6796
|
|
|
6708
6797
|
/**
|
|
6709
|
-
*
|
|
6798
|
+
* nächste Belegnummer
|
|
6710
6799
|
*/
|
|
6711
|
-
|
|
6800
|
+
nextNumber: string;
|
|
6712
6801
|
|
|
6713
6802
|
/**
|
|
6714
|
-
*
|
|
6803
|
+
* Zählerkreis
|
|
6715
6804
|
*/
|
|
6716
|
-
|
|
6805
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6717
6806
|
|
|
6718
6807
|
/**
|
|
6719
6808
|
* Sortierung
|
|
@@ -7081,7 +7170,9 @@ export const enum EDocumentTransition {
|
|
|
7081
7170
|
/**QS-Prüfung abschließen **/
|
|
7082
7171
|
FINISH_FABRICATION_QA = 'FINISH_FABRICATION_QA',
|
|
7083
7172
|
/**Produktion abschließen **/
|
|
7084
|
-
FINISH_FABRICATION = 'FINISH_FABRICATION'
|
|
7173
|
+
FINISH_FABRICATION = 'FINISH_FABRICATION',
|
|
7174
|
+
/**Kundenauftrag in Produktionsauftrag übernehmen **/
|
|
7175
|
+
CUSTOMER_ORDER_TO_FABRICATION_ORDER = 'CUSTOMER_ORDER_TO_FABRICATION_ORDER'
|
|
7085
7176
|
}
|
|
7086
7177
|
|
|
7087
7178
|
export const enum EInvoiceValidationState {
|
|
@@ -7195,14 +7286,14 @@ export const enum FabricationOfComponents {
|
|
|
7195
7286
|
export interface FabricationProduceRequest {
|
|
7196
7287
|
|
|
7197
7288
|
/**
|
|
7198
|
-
*
|
|
7289
|
+
* Material automatisch bestätigen
|
|
7199
7290
|
*/
|
|
7200
|
-
|
|
7291
|
+
autoCommitComponents: boolean;
|
|
7201
7292
|
|
|
7202
7293
|
/**
|
|
7203
|
-
*
|
|
7294
|
+
* Zu produzierende Menge
|
|
7204
7295
|
*/
|
|
7205
|
-
|
|
7296
|
+
quantity: number;
|
|
7206
7297
|
|
|
7207
7298
|
/**
|
|
7208
7299
|
* Für die Produktion zu verwendendes Material
|
|
@@ -7279,14 +7370,14 @@ export interface FabricationRevertRequest {
|
|
|
7279
7370
|
export interface FabricationSerialNumber {
|
|
7280
7371
|
|
|
7281
7372
|
/**
|
|
7282
|
-
*
|
|
7373
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7283
7374
|
*/
|
|
7284
|
-
|
|
7375
|
+
serialNumberId: number;
|
|
7285
7376
|
|
|
7286
7377
|
/**
|
|
7287
|
-
*
|
|
7378
|
+
* MHD / Verfallsdatum
|
|
7288
7379
|
*/
|
|
7289
|
-
|
|
7380
|
+
expiryDate: ScriptingDate;
|
|
7290
7381
|
|
|
7291
7382
|
/**
|
|
7292
7383
|
* Bemerkung
|
|
@@ -7498,14 +7589,14 @@ export interface PaymentMethod {
|
|
|
7498
7589
|
daysToAddForFollowup: number;
|
|
7499
7590
|
|
|
7500
7591
|
/**
|
|
7501
|
-
*
|
|
7592
|
+
* external Payment Id
|
|
7502
7593
|
*/
|
|
7503
|
-
|
|
7594
|
+
externalPaymentId: string;
|
|
7504
7595
|
|
|
7505
7596
|
/**
|
|
7506
|
-
*
|
|
7597
|
+
* Die Business Transaction
|
|
7507
7598
|
*/
|
|
7508
|
-
|
|
7599
|
+
businessTransaction: ApiObjectReference;
|
|
7509
7600
|
|
|
7510
7601
|
/**
|
|
7511
7602
|
* Unique identifier of the Object
|
|
@@ -7674,14 +7765,14 @@ export interface PickTrolley {
|
|
|
7674
7765
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7675
7766
|
|
|
7676
7767
|
/**
|
|
7677
|
-
*
|
|
7768
|
+
* Bearbeiter der Pickliste
|
|
7678
7769
|
*/
|
|
7679
|
-
|
|
7770
|
+
processedByUserRef: ApiObjectReference;
|
|
7680
7771
|
|
|
7681
7772
|
/**
|
|
7682
|
-
*
|
|
7773
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7683
7774
|
*/
|
|
7684
|
-
|
|
7775
|
+
storageBinRef: StorageBinRef;
|
|
7685
7776
|
|
|
7686
7777
|
/**
|
|
7687
7778
|
* Beschreibung des Wagens
|
|
@@ -7836,14 +7927,14 @@ export const enum PickingType {
|
|
|
7836
7927
|
export interface Picklist {
|
|
7837
7928
|
|
|
7838
7929
|
/**
|
|
7839
|
-
*
|
|
7930
|
+
* Ziellager für Nachschub
|
|
7840
7931
|
*/
|
|
7841
|
-
|
|
7932
|
+
targetStorageRef: ApiObjectReference;
|
|
7842
7933
|
|
|
7843
7934
|
/**
|
|
7844
|
-
*
|
|
7935
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7845
7936
|
*/
|
|
7846
|
-
|
|
7937
|
+
usedTemplate: PicklistTemplate;
|
|
7847
7938
|
|
|
7848
7939
|
/**
|
|
7849
7940
|
* Nummer der Pickliste
|
|
@@ -7894,14 +7985,14 @@ export interface Picklist {
|
|
|
7894
7985
|
export interface PicklistLine {
|
|
7895
7986
|
|
|
7896
7987
|
/**
|
|
7897
|
-
*
|
|
7988
|
+
* Gesammelte Menge der Position
|
|
7898
7989
|
*/
|
|
7899
|
-
|
|
7990
|
+
quantityCollected: number;
|
|
7900
7991
|
|
|
7901
7992
|
/**
|
|
7902
|
-
*
|
|
7993
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7903
7994
|
*/
|
|
7904
|
-
|
|
7995
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7905
7996
|
|
|
7906
7997
|
/**
|
|
7907
7998
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7939,14 +8030,14 @@ export interface PicklistLine {
|
|
|
7939
8030
|
version: number;
|
|
7940
8031
|
|
|
7941
8032
|
/**
|
|
7942
|
-
*
|
|
8033
|
+
* Lageranzeigename
|
|
7943
8034
|
*/
|
|
7944
|
-
|
|
8035
|
+
storageDisplayName: string;
|
|
7945
8036
|
|
|
7946
8037
|
/**
|
|
7947
|
-
*
|
|
8038
|
+
* ID der Quell-Dokumentposition
|
|
7948
8039
|
*/
|
|
7949
|
-
|
|
8040
|
+
sourceDocumentLineId: number;
|
|
7950
8041
|
|
|
7951
8042
|
/**
|
|
7952
8043
|
* Artikelnummer
|
|
@@ -7954,14 +8045,14 @@ export interface PicklistLine {
|
|
|
7954
8045
|
articleNumber: string;
|
|
7955
8046
|
|
|
7956
8047
|
/**
|
|
7957
|
-
*
|
|
8048
|
+
* Lagernummer
|
|
7958
8049
|
*/
|
|
7959
|
-
|
|
8050
|
+
storageNumber: string;
|
|
7960
8051
|
|
|
7961
8052
|
/**
|
|
7962
|
-
*
|
|
8053
|
+
* Art der Position
|
|
7963
8054
|
*/
|
|
7964
|
-
|
|
8055
|
+
lineType: PicklistLineType;
|
|
7965
8056
|
|
|
7966
8057
|
/**
|
|
7967
8058
|
* ID der Ziel-Dokumentposition
|
|
@@ -8100,14 +8191,14 @@ export interface PicklistLineComponent {
|
|
|
8100
8191
|
targetDocumentLineComponentId: number;
|
|
8101
8192
|
|
|
8102
8193
|
/**
|
|
8103
|
-
*
|
|
8194
|
+
* abweichende Artikelbezeichnung
|
|
8104
8195
|
*/
|
|
8105
|
-
|
|
8196
|
+
articleAlternativeName: string;
|
|
8106
8197
|
|
|
8107
8198
|
/**
|
|
8108
|
-
*
|
|
8199
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8109
8200
|
*/
|
|
8110
|
-
|
|
8201
|
+
quantityPerAssemblyGroup: number;
|
|
8111
8202
|
|
|
8112
8203
|
/**
|
|
8113
8204
|
* Verpackte Menge der Position
|
|
@@ -8275,26 +8366,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8275
8366
|
*/
|
|
8276
8367
|
maxArticleCountPerOrder: number;
|
|
8277
8368
|
|
|
8278
|
-
/**
|
|
8279
|
-
* Maximaler Auftragswert
|
|
8280
|
-
*/
|
|
8281
|
-
maxOrderValue: number;
|
|
8282
|
-
|
|
8283
8369
|
/**
|
|
8284
8370
|
* Alternative Selektion in VQL
|
|
8285
8371
|
*/
|
|
8286
8372
|
alternativeSelectionInVql: string;
|
|
8287
8373
|
|
|
8288
8374
|
/**
|
|
8289
|
-
*
|
|
8375
|
+
* Maximaler Auftragswert
|
|
8290
8376
|
*/
|
|
8291
|
-
|
|
8377
|
+
maxOrderValue: number;
|
|
8292
8378
|
|
|
8293
8379
|
/**
|
|
8294
8380
|
* Selektion über den Bereich vom Lieferdatum
|
|
8295
8381
|
*/
|
|
8296
8382
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8297
8383
|
|
|
8384
|
+
/**
|
|
8385
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8386
|
+
*/
|
|
8387
|
+
maxOrderCount: number;
|
|
8388
|
+
|
|
8298
8389
|
/**
|
|
8299
8390
|
* Nur vollständig lieferbare Positionen
|
|
8300
8391
|
*/
|
|
@@ -8348,6 +8439,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8348
8439
|
*/
|
|
8349
8440
|
fastOrderPickingTemplateToUseRef: ApiObjectReference;
|
|
8350
8441
|
|
|
8442
|
+
/**
|
|
8443
|
+
* Soll nach der Erstellung automatisch die Etiketten gedruckt werden?
|
|
8444
|
+
*/
|
|
8445
|
+
printLabelsOnCreation: boolean;
|
|
8446
|
+
|
|
8351
8447
|
/**
|
|
8352
8448
|
* Maximale Menge einer Auftragsposition für Schnellkommissionierungs-Picklisten
|
|
8353
8449
|
*/
|
|
@@ -8359,19 +8455,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8359
8455
|
printPicklist: boolean;
|
|
8360
8456
|
|
|
8361
8457
|
/**
|
|
8362
|
-
*
|
|
8458
|
+
* Die zu verwendende Pickwagengruppe
|
|
8363
8459
|
*/
|
|
8364
|
-
|
|
8460
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8365
8461
|
|
|
8366
8462
|
/**
|
|
8367
|
-
*
|
|
8463
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8368
8464
|
*/
|
|
8369
|
-
|
|
8465
|
+
maxPicklistLineCount: number;
|
|
8370
8466
|
|
|
8371
8467
|
/**
|
|
8372
|
-
*
|
|
8468
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8373
8469
|
*/
|
|
8374
|
-
|
|
8470
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8375
8471
|
|
|
8376
8472
|
/**
|
|
8377
8473
|
* Der zu verwendende Pickwagen
|
|
@@ -8379,19 +8475,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8379
8475
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
8380
8476
|
|
|
8381
8477
|
/**
|
|
8382
|
-
*
|
|
8478
|
+
* Lagerplätze vorgeben
|
|
8383
8479
|
*/
|
|
8384
|
-
|
|
8480
|
+
specifyStorageBins: boolean;
|
|
8385
8481
|
|
|
8386
8482
|
/**
|
|
8387
|
-
*
|
|
8483
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8388
8484
|
*/
|
|
8389
|
-
|
|
8485
|
+
sortByRoutePosition: boolean;
|
|
8390
8486
|
|
|
8391
8487
|
/**
|
|
8392
|
-
*
|
|
8488
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8393
8489
|
*/
|
|
8394
|
-
|
|
8490
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8395
8491
|
|
|
8396
8492
|
/**
|
|
8397
8493
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
@@ -8437,20 +8533,30 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8437
8533
|
alwaysShowDeliveryMethod: boolean;
|
|
8438
8534
|
|
|
8439
8535
|
/**
|
|
8440
|
-
*
|
|
8536
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8441
8537
|
*/
|
|
8442
|
-
|
|
8538
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8443
8539
|
|
|
8444
8540
|
/**
|
|
8445
|
-
*
|
|
8541
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8446
8542
|
*/
|
|
8447
|
-
|
|
8543
|
+
autoPrintDeliveryDocument: boolean;
|
|
8448
8544
|
|
|
8449
8545
|
/**
|
|
8450
8546
|
* Versand-Dialog beim Abschluss zeigen
|
|
8451
8547
|
*/
|
|
8452
8548
|
showShippingFormOnPickingFinish: boolean;
|
|
8453
8549
|
|
|
8550
|
+
/**
|
|
8551
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8552
|
+
*/
|
|
8553
|
+
printLabelOnScan: boolean;
|
|
8554
|
+
|
|
8555
|
+
/**
|
|
8556
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8557
|
+
*/
|
|
8558
|
+
allowPickingOfServiceArticles: boolean;
|
|
8559
|
+
|
|
8454
8560
|
/**
|
|
8455
8561
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8456
8562
|
*/
|
|
@@ -8461,11 +8567,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8461
8567
|
*/
|
|
8462
8568
|
allowFullConfirmation: boolean;
|
|
8463
8569
|
|
|
8464
|
-
/**
|
|
8465
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
8466
|
-
*/
|
|
8467
|
-
allowPickingOfServiceArticles: boolean;
|
|
8468
|
-
|
|
8469
8570
|
/**
|
|
8470
8571
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
8471
8572
|
*/
|
|
@@ -8477,20 +8578,30 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8477
8578
|
scanDeliveryDocumentAndShippingLabelOnFinish: boolean;
|
|
8478
8579
|
|
|
8479
8580
|
/**
|
|
8480
|
-
*
|
|
8581
|
+
* Sollen bei Abschluss des Auftrages automatisch die Etiketten gedruckt werden?
|
|
8481
8582
|
*/
|
|
8482
|
-
|
|
8583
|
+
printLabelOnCompleteOrder: boolean;
|
|
8483
8584
|
|
|
8484
8585
|
/**
|
|
8485
|
-
* Sollen
|
|
8586
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8486
8587
|
*/
|
|
8487
|
-
|
|
8588
|
+
printLabelAfterPicking: boolean;
|
|
8589
|
+
|
|
8590
|
+
/**
|
|
8591
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8592
|
+
*/
|
|
8593
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8488
8594
|
|
|
8489
8595
|
/**
|
|
8490
8596
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8491
8597
|
*/
|
|
8492
8598
|
autoDeterminationOfLots: boolean;
|
|
8493
8599
|
|
|
8600
|
+
/**
|
|
8601
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8602
|
+
*/
|
|
8603
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8604
|
+
|
|
8494
8605
|
/**
|
|
8495
8606
|
* Zielmengen in Masken verstecken?
|
|
8496
8607
|
*/
|
|
@@ -8565,14 +8676,14 @@ export interface PriceSelectionCriteria {
|
|
|
8565
8676
|
quantity: number;
|
|
8566
8677
|
|
|
8567
8678
|
/**
|
|
8568
|
-
* Liste von
|
|
8679
|
+
* Liste von Artikel-IDs
|
|
8569
8680
|
*/
|
|
8570
|
-
|
|
8681
|
+
articleIds: Array<number>;
|
|
8571
8682
|
|
|
8572
8683
|
/**
|
|
8573
|
-
* Liste von
|
|
8684
|
+
* Liste von Account-IDs
|
|
8574
8685
|
*/
|
|
8575
|
-
|
|
8686
|
+
accountIds: Array<number>;
|
|
8576
8687
|
|
|
8577
8688
|
/**
|
|
8578
8689
|
* ein qualifier
|
|
@@ -8739,14 +8850,14 @@ export interface ProductArticleRef {
|
|
|
8739
8850
|
export interface ProductDiscount {
|
|
8740
8851
|
|
|
8741
8852
|
/**
|
|
8742
|
-
*
|
|
8853
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8743
8854
|
*/
|
|
8744
|
-
|
|
8855
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8745
8856
|
|
|
8746
8857
|
/**
|
|
8747
|
-
*
|
|
8858
|
+
* Kundengruppe
|
|
8748
8859
|
*/
|
|
8749
|
-
|
|
8860
|
+
customerGroupRef: ApiObjectReference;
|
|
8750
8861
|
|
|
8751
8862
|
/**
|
|
8752
8863
|
* Lieferantengruppe
|
|
@@ -8948,14 +9059,14 @@ export interface ProductMainGroup {
|
|
|
8948
9059
|
export interface ProductPrice {
|
|
8949
9060
|
|
|
8950
9061
|
/**
|
|
8951
|
-
*
|
|
9062
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8952
9063
|
*/
|
|
8953
|
-
|
|
9064
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8954
9065
|
|
|
8955
9066
|
/**
|
|
8956
|
-
*
|
|
9067
|
+
* Kundengruppe
|
|
8957
9068
|
*/
|
|
8958
|
-
|
|
9069
|
+
customerGroupRef: ApiObjectReference;
|
|
8959
9070
|
|
|
8960
9071
|
/**
|
|
8961
9072
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -9152,14 +9263,14 @@ export interface RequestDocument {
|
|
|
9152
9263
|
cashDrawerId: number;
|
|
9153
9264
|
|
|
9154
9265
|
/**
|
|
9155
|
-
*
|
|
9266
|
+
* Leistungsdatum
|
|
9156
9267
|
*/
|
|
9157
|
-
|
|
9268
|
+
performanceDate: ScriptingDate;
|
|
9158
9269
|
|
|
9159
9270
|
/**
|
|
9160
|
-
*
|
|
9271
|
+
* Der Anzahlungsbetrag
|
|
9161
9272
|
*/
|
|
9162
|
-
|
|
9273
|
+
depositPaymentAmount: number;
|
|
9163
9274
|
|
|
9164
9275
|
/**
|
|
9165
9276
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9206,11 +9317,6 @@ export interface RequestDocument {
|
|
|
9206
9317
|
*/
|
|
9207
9318
|
deliveryTermId: number;
|
|
9208
9319
|
|
|
9209
|
-
/**
|
|
9210
|
-
* IDs der zu übernehmenden Abschlagsrechnungen (für Teilrechnungen)
|
|
9211
|
-
*/
|
|
9212
|
-
progressInvoiceIds: Array<number>;
|
|
9213
|
-
|
|
9214
9320
|
/**
|
|
9215
9321
|
* Für interne Zwecke: Währung für das Document
|
|
9216
9322
|
*/
|
|
@@ -9232,14 +9338,14 @@ export interface RequestDocument {
|
|
|
9232
9338
|
contractDetail: DocumentContractDetail;
|
|
9233
9339
|
|
|
9234
9340
|
/**
|
|
9235
|
-
*
|
|
9341
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9236
9342
|
*/
|
|
9237
|
-
|
|
9343
|
+
paymentTermId: number;
|
|
9238
9344
|
|
|
9239
9345
|
/**
|
|
9240
|
-
*
|
|
9346
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9241
9347
|
*/
|
|
9242
|
-
|
|
9348
|
+
supplierAccountId: number;
|
|
9243
9349
|
|
|
9244
9350
|
/**
|
|
9245
9351
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -9295,11 +9401,6 @@ export interface RequestDocument {
|
|
|
9295
9401
|
* Die Rabatte des Beleges
|
|
9296
9402
|
*/
|
|
9297
9403
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
9298
|
-
|
|
9299
|
-
/**
|
|
9300
|
-
* IDs der zu übernehmenden Anzahlungsrechnungen (für Teilrechnungen)
|
|
9301
|
-
*/
|
|
9302
|
-
depositInvoiceIds: Array<number>;
|
|
9303
9404
|
}
|
|
9304
9405
|
|
|
9305
9406
|
export interface RequestDocumentLine {
|
|
@@ -9455,20 +9556,25 @@ export interface RequestDocumentLine {
|
|
|
9455
9556
|
name: string;
|
|
9456
9557
|
|
|
9457
9558
|
/**
|
|
9458
|
-
*
|
|
9559
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9459
9560
|
*/
|
|
9460
|
-
|
|
9561
|
+
externalArticleNumber: string;
|
|
9461
9562
|
|
|
9462
9563
|
/**
|
|
9463
|
-
*
|
|
9564
|
+
* ID der Quell-Belegposition
|
|
9464
9565
|
*/
|
|
9465
|
-
|
|
9566
|
+
sourceLineId: number;
|
|
9466
9567
|
|
|
9467
9568
|
/**
|
|
9468
9569
|
* Buchungen zu dieser Belegposition
|
|
9469
9570
|
*/
|
|
9470
9571
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9471
9572
|
|
|
9573
|
+
/**
|
|
9574
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
9575
|
+
*/
|
|
9576
|
+
doLabelPrint: boolean;
|
|
9577
|
+
|
|
9472
9578
|
/**
|
|
9473
9579
|
* (optional) Preis des Artikels dieser Position
|
|
9474
9580
|
*/
|
|
@@ -9629,14 +9735,14 @@ export interface SalesAgent {
|
|
|
9629
9735
|
note: string;
|
|
9630
9736
|
|
|
9631
9737
|
/**
|
|
9632
|
-
*
|
|
9738
|
+
* is sales agent taxable
|
|
9633
9739
|
*/
|
|
9634
|
-
|
|
9740
|
+
taxable: boolean;
|
|
9635
9741
|
|
|
9636
9742
|
/**
|
|
9637
|
-
*
|
|
9743
|
+
* reference to the delivery method
|
|
9638
9744
|
*/
|
|
9639
|
-
|
|
9745
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9640
9746
|
|
|
9641
9747
|
/**
|
|
9642
9748
|
* Freifelder
|
|
@@ -10096,14 +10202,14 @@ export interface ShelfDocument {
|
|
|
10096
10202
|
tags: Array<TagDto>;
|
|
10097
10203
|
|
|
10098
10204
|
/**
|
|
10099
|
-
*
|
|
10205
|
+
* share informations
|
|
10100
10206
|
*/
|
|
10101
|
-
|
|
10207
|
+
shares: Array<ShelfShare>;
|
|
10102
10208
|
|
|
10103
10209
|
/**
|
|
10104
|
-
*
|
|
10210
|
+
* Mehrsprachige Bezeichnungen
|
|
10105
10211
|
*/
|
|
10106
|
-
|
|
10212
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10107
10213
|
|
|
10108
10214
|
/**
|
|
10109
10215
|
* Automatische Löschung ab
|
|
@@ -10235,14 +10341,14 @@ export interface ShelfDocumentType {
|
|
|
10235
10341
|
active: boolean;
|
|
10236
10342
|
|
|
10237
10343
|
/**
|
|
10238
|
-
*
|
|
10344
|
+
* label of type
|
|
10239
10345
|
*/
|
|
10240
|
-
|
|
10346
|
+
label: string;
|
|
10241
10347
|
|
|
10242
10348
|
/**
|
|
10243
|
-
*
|
|
10349
|
+
* access level or reading
|
|
10244
10350
|
*/
|
|
10245
|
-
|
|
10351
|
+
accessLevelRead: number;
|
|
10246
10352
|
|
|
10247
10353
|
/**
|
|
10248
10354
|
* storage rule for revisions
|
|
@@ -10288,14 +10394,14 @@ export interface ShelfFile {
|
|
|
10288
10394
|
subFiles: Array<SubFileInfo>;
|
|
10289
10395
|
|
|
10290
10396
|
/**
|
|
10291
|
-
*
|
|
10397
|
+
* fileSize
|
|
10292
10398
|
*/
|
|
10293
|
-
|
|
10399
|
+
fileSize: number;
|
|
10294
10400
|
|
|
10295
10401
|
/**
|
|
10296
|
-
*
|
|
10402
|
+
* revision number of this file
|
|
10297
10403
|
*/
|
|
10298
|
-
|
|
10404
|
+
revisionNumber: number;
|
|
10299
10405
|
|
|
10300
10406
|
/**
|
|
10301
10407
|
* file-extension of this entry
|
|
@@ -10323,14 +10429,14 @@ export interface ShelfFile {
|
|
|
10323
10429
|
version: number;
|
|
10324
10430
|
|
|
10325
10431
|
/**
|
|
10326
|
-
*
|
|
10432
|
+
* current reference of this file in our storage
|
|
10327
10433
|
*/
|
|
10328
|
-
|
|
10434
|
+
storageHandle: string;
|
|
10329
10435
|
|
|
10330
10436
|
/**
|
|
10331
|
-
*
|
|
10437
|
+
* meta data
|
|
10332
10438
|
*/
|
|
10333
|
-
|
|
10439
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10334
10440
|
|
|
10335
10441
|
/**
|
|
10336
10442
|
* MetaInformations for this Object
|
|
@@ -10374,14 +10480,14 @@ export interface ShelfShare {
|
|
|
10374
10480
|
publishState: ShelfSharePublishState;
|
|
10375
10481
|
|
|
10376
10482
|
/**
|
|
10377
|
-
*
|
|
10483
|
+
* Freifelder
|
|
10378
10484
|
*/
|
|
10379
|
-
|
|
10485
|
+
custom: EavShelfshare;
|
|
10380
10486
|
|
|
10381
10487
|
/**
|
|
10382
|
-
*
|
|
10488
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
10383
10489
|
*/
|
|
10384
|
-
|
|
10490
|
+
publicUrlDurationInMinutes: number;
|
|
10385
10491
|
|
|
10386
10492
|
/**
|
|
10387
10493
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10810,14 +10916,14 @@ export interface Supplier {
|
|
|
10810
10916
|
info: MetaInfo;
|
|
10811
10917
|
|
|
10812
10918
|
/**
|
|
10813
|
-
*
|
|
10919
|
+
* Lieferantengruppe
|
|
10814
10920
|
*/
|
|
10815
|
-
|
|
10921
|
+
supplierGroupRef: ApiObjectReference;
|
|
10816
10922
|
|
|
10817
10923
|
/**
|
|
10818
|
-
*
|
|
10924
|
+
* reference to the delivery method
|
|
10819
10925
|
*/
|
|
10820
|
-
|
|
10926
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10821
10927
|
|
|
10822
10928
|
/**
|
|
10823
10929
|
* tax able or tax free
|
|
@@ -10875,14 +10981,14 @@ export interface Supplier {
|
|
|
10875
10981
|
performanceCountryCode: string;
|
|
10876
10982
|
|
|
10877
10983
|
/**
|
|
10878
|
-
*
|
|
10984
|
+
* reference to the payment method
|
|
10879
10985
|
*/
|
|
10880
|
-
|
|
10986
|
+
paymentMethodRef: ApiObjectReference;
|
|
10881
10987
|
|
|
10882
10988
|
/**
|
|
10883
|
-
*
|
|
10989
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10884
10990
|
*/
|
|
10885
|
-
|
|
10991
|
+
defaultDeliveryTime: number;
|
|
10886
10992
|
|
|
10887
10993
|
/**
|
|
10888
10994
|
* currency code IsoAlpha3
|