@vario-software/types 2026.31.4 → 2026.32.1
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 +3331 -1101
- package/scripting/services.d.ts +16 -16
- package/scripting/types.d.ts +268 -260
package/scripting/types.d.ts
CHANGED
|
@@ -291,26 +291,26 @@ export interface AccountAddress {
|
|
|
291
291
|
*/
|
|
292
292
|
regionRef: ApiObjectReference;
|
|
293
293
|
|
|
294
|
-
/**
|
|
295
|
-
* Post office box
|
|
296
|
-
*/
|
|
297
|
-
postOfficeBox: string;
|
|
298
|
-
|
|
299
294
|
/**
|
|
300
295
|
* Title
|
|
301
296
|
*/
|
|
302
297
|
titleRef: ApiCreatableReference;
|
|
303
298
|
|
|
304
299
|
/**
|
|
305
|
-
*
|
|
300
|
+
* Post office box
|
|
306
301
|
*/
|
|
307
|
-
|
|
302
|
+
postOfficeBox: string;
|
|
308
303
|
|
|
309
304
|
/**
|
|
310
305
|
* Street
|
|
311
306
|
*/
|
|
312
307
|
street: string;
|
|
313
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Country code
|
|
311
|
+
*/
|
|
312
|
+
countryCode: string;
|
|
313
|
+
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
316
316
|
*/
|
|
@@ -495,14 +495,14 @@ export interface AccountBankdetail {
|
|
|
495
495
|
version: number;
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
|
-
*
|
|
498
|
+
* city of the bank
|
|
499
499
|
*/
|
|
500
|
-
|
|
500
|
+
bankCity: string;
|
|
501
501
|
|
|
502
502
|
/**
|
|
503
|
-
*
|
|
503
|
+
* Hauptbankverbindung für
|
|
504
504
|
*/
|
|
505
|
-
|
|
505
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
508
|
* origin type
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
payablesSum: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Kreditlimit
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
maximalLoan: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1014,25 +1014,20 @@ export interface Article {
|
|
|
1014
1014
|
*/
|
|
1015
1015
|
customsTariffNumber: string;
|
|
1016
1016
|
|
|
1017
|
-
/**
|
|
1018
|
-
* Product custom data
|
|
1019
|
-
*/
|
|
1020
|
-
listingCustom: EavArticleListing;
|
|
1021
|
-
|
|
1022
1017
|
/**
|
|
1023
1018
|
* is this product purchasable
|
|
1024
1019
|
*/
|
|
1025
1020
|
purchasable: boolean;
|
|
1026
1021
|
|
|
1027
1022
|
/**
|
|
1028
|
-
*
|
|
1023
|
+
* Product custom data
|
|
1029
1024
|
*/
|
|
1030
|
-
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1031
1026
|
|
|
1032
1027
|
/**
|
|
1033
|
-
*
|
|
1028
|
+
* base capacity unit
|
|
1034
1029
|
*/
|
|
1035
|
-
|
|
1030
|
+
baseCapacityUnit: UnitTypeReference;
|
|
1036
1031
|
|
|
1037
1032
|
/**
|
|
1038
1033
|
* is this product sellable without any quantity at the stock
|
|
@@ -1044,6 +1039,11 @@ export interface Article {
|
|
|
1044
1039
|
*/
|
|
1045
1040
|
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1046
1041
|
|
|
1042
|
+
/**
|
|
1043
|
+
* Durchschnittl. EKP (Startwert)
|
|
1044
|
+
*/
|
|
1045
|
+
initialAvgPurchasePrice: number;
|
|
1046
|
+
|
|
1047
1047
|
/**
|
|
1048
1048
|
* gross Volume in cubic meters
|
|
1049
1049
|
*/
|
|
@@ -1070,14 +1070,14 @@ export interface Article {
|
|
|
1070
1070
|
warrantyInMonths: number;
|
|
1071
1071
|
|
|
1072
1072
|
/**
|
|
1073
|
-
*
|
|
1073
|
+
* weight and size w.o. packaging
|
|
1074
1074
|
*/
|
|
1075
|
-
|
|
1075
|
+
netMetric: Article$Metric;
|
|
1076
1076
|
|
|
1077
1077
|
/**
|
|
1078
|
-
*
|
|
1078
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1079
1079
|
*/
|
|
1080
|
-
|
|
1080
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1081
1081
|
|
|
1082
1082
|
/**
|
|
1083
1083
|
* unique product number
|
|
@@ -1145,14 +1145,14 @@ export interface Article {
|
|
|
1145
1145
|
deliveryMethodRef: ApiObjectReference;
|
|
1146
1146
|
|
|
1147
1147
|
/**
|
|
1148
|
-
*
|
|
1148
|
+
* Produktion
|
|
1149
1149
|
*/
|
|
1150
|
-
|
|
1150
|
+
fabrication: boolean;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
*
|
|
1153
|
+
* Soll-Handelsspanne
|
|
1154
1154
|
*/
|
|
1155
|
-
|
|
1155
|
+
targetTradingMargin: number;
|
|
1156
1156
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* active
|
|
@@ -1215,14 +1215,14 @@ export interface Article {
|
|
|
1215
1215
|
listingStateChangeTime: ScriptingDateTime;
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* Country code
|
|
1219
1219
|
*/
|
|
1220
|
-
|
|
1220
|
+
countryOfOriginRef: CountryReference;
|
|
1221
1221
|
|
|
1222
1222
|
/**
|
|
1223
|
-
*
|
|
1223
|
+
* Arbeitseinheit in Minuten
|
|
1224
1224
|
*/
|
|
1225
|
-
|
|
1225
|
+
workUnitInMinutes: number;
|
|
1226
1226
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* description custom data
|
|
@@ -1235,14 +1235,14 @@ export interface Article {
|
|
|
1235
1235
|
freelyPickable: boolean;
|
|
1236
1236
|
|
|
1237
1237
|
/**
|
|
1238
|
-
*
|
|
1238
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1239
1239
|
*/
|
|
1240
|
-
|
|
1240
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
taxLiabilityReversed: boolean;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* Notiz
|
|
@@ -1285,9 +1285,9 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* gross sales prices
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
grossSalesPrice: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
@@ -1295,9 +1295,9 @@ export interface Article {
|
|
|
1295
1295
|
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
|
-
*
|
|
1298
|
+
* Vorgabe Herstellungskosten
|
|
1299
1299
|
*/
|
|
1300
|
-
|
|
1300
|
+
defaultFabricationCost: number;
|
|
1301
1301
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Letzter EKP (Startwert)
|
|
@@ -1310,14 +1310,14 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* reference to Product
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
productRef: ApiObjectReference;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* Versandlabeldruck
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* Kontingentartikel
|
|
@@ -1325,14 +1325,14 @@ export interface Article {
|
|
|
1325
1325
|
contingentArticleRef: ApiObjectReference;
|
|
1326
1326
|
|
|
1327
1327
|
/**
|
|
1328
|
-
*
|
|
1328
|
+
* alternative name of this product
|
|
1329
1329
|
*/
|
|
1330
|
-
|
|
1330
|
+
alternativeName: string;
|
|
1331
1331
|
|
|
1332
1332
|
/**
|
|
1333
|
-
*
|
|
1333
|
+
* rabattierbarer Artikel?
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
discountable: boolean;
|
|
1336
1336
|
|
|
1337
1337
|
/**
|
|
1338
1338
|
* base capacity
|
|
@@ -1553,14 +1553,14 @@ export interface ArticleCustomer {
|
|
|
1553
1553
|
articleName: string;
|
|
1554
1554
|
|
|
1555
1555
|
/**
|
|
1556
|
-
*
|
|
1556
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1557
1557
|
*/
|
|
1558
|
-
|
|
1558
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1559
1559
|
|
|
1560
1560
|
/**
|
|
1561
|
-
*
|
|
1561
|
+
* Etikettdruck-Einstellungen
|
|
1562
1562
|
*/
|
|
1563
|
-
|
|
1563
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1564
1564
|
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Kunden-Preise
|
|
@@ -1613,14 +1613,14 @@ export interface ArticleCustomer {
|
|
|
1613
1613
|
defaultGrossPrice: number;
|
|
1614
1614
|
|
|
1615
1615
|
/**
|
|
1616
|
-
*
|
|
1616
|
+
* Art der Preisermittlung
|
|
1617
1617
|
*/
|
|
1618
|
-
|
|
1618
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1619
1619
|
|
|
1620
1620
|
/**
|
|
1621
|
-
*
|
|
1621
|
+
* Abweichende Produktnummer
|
|
1622
1622
|
*/
|
|
1623
|
-
|
|
1623
|
+
deviatingArticleNumber: string;
|
|
1624
1624
|
|
|
1625
1625
|
/**
|
|
1626
1626
|
* Artikelnummer
|
|
@@ -2214,14 +2214,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2214
2214
|
quantity: number;
|
|
2215
2215
|
|
|
2216
2216
|
/**
|
|
2217
|
-
*
|
|
2217
|
+
* Buchungen zu der Komponente
|
|
2218
2218
|
*/
|
|
2219
|
-
|
|
2219
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2220
2220
|
|
|
2221
2221
|
/**
|
|
2222
|
-
*
|
|
2222
|
+
* ID der Baugruppen-Quellposition
|
|
2223
2223
|
*/
|
|
2224
|
-
|
|
2224
|
+
sourceLineId: number;
|
|
2225
2225
|
|
|
2226
2226
|
/**
|
|
2227
2227
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2634,14 +2634,14 @@ export interface CrmActivity {
|
|
|
2634
2634
|
info: MetaInfo;
|
|
2635
2635
|
|
|
2636
2636
|
/**
|
|
2637
|
-
*
|
|
2637
|
+
* Aktivität intern abgerechnet?
|
|
2638
2638
|
*/
|
|
2639
|
-
|
|
2639
|
+
internalBilled: boolean;
|
|
2640
2640
|
|
|
2641
2641
|
/**
|
|
2642
|
-
*
|
|
2642
|
+
* geplante Dauer
|
|
2643
2643
|
*/
|
|
2644
|
-
|
|
2644
|
+
plannedDurationInSeconds: number;
|
|
2645
2645
|
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2916,14 +2916,14 @@ export interface CrmDeal {
|
|
|
2916
2916
|
info: MetaInfo;
|
|
2917
2917
|
|
|
2918
2918
|
/**
|
|
2919
|
-
*
|
|
2919
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2920
2920
|
*/
|
|
2921
|
-
|
|
2921
|
+
assignedUserRef: ApiObjectReference;
|
|
2922
2922
|
|
|
2923
2923
|
/**
|
|
2924
|
-
*
|
|
2924
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* Chance (in Prozent)
|
|
@@ -3963,14 +3963,14 @@ export interface Customer {
|
|
|
3963
3963
|
stackProcessingPriority: number;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
|
-
*
|
|
3966
|
+
* reference to product price group
|
|
3967
3967
|
*/
|
|
3968
|
-
|
|
3968
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
3971
|
-
*
|
|
3971
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3972
3972
|
*/
|
|
3973
|
-
|
|
3973
|
+
collectiveInvoiceManually: boolean;
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
3976
|
* Unique identifier of the Object
|
|
@@ -4206,26 +4206,26 @@ export interface DeliveryMethod {
|
|
|
4206
4206
|
*/
|
|
4207
4207
|
defaultSizeUnit: UnitTypeReference;
|
|
4208
4208
|
|
|
4209
|
-
/**
|
|
4210
|
-
* Quelle für Paketgewicht
|
|
4211
|
-
*/
|
|
4212
|
-
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4213
|
-
|
|
4214
4209
|
/**
|
|
4215
4210
|
* translations
|
|
4216
4211
|
*/
|
|
4217
4212
|
translations: Array<DocumentTypeTerm>;
|
|
4218
4213
|
|
|
4219
4214
|
/**
|
|
4220
|
-
*
|
|
4215
|
+
* Quelle für Paketgewicht
|
|
4221
4216
|
*/
|
|
4222
|
-
|
|
4217
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4223
4218
|
|
|
4224
4219
|
/**
|
|
4225
4220
|
* Gültige Ländercodes
|
|
4226
4221
|
*/
|
|
4227
4222
|
validCountryCodes: Array<string>;
|
|
4228
4223
|
|
|
4224
|
+
/**
|
|
4225
|
+
* Versand-Anbieter
|
|
4226
|
+
*/
|
|
4227
|
+
vdsCarrierId: number;
|
|
4228
|
+
|
|
4229
4229
|
/**
|
|
4230
4230
|
* Standardgewichtseinheit
|
|
4231
4231
|
*/
|
|
@@ -4325,14 +4325,14 @@ export interface DeliveryTerm {
|
|
|
4325
4325
|
id: number;
|
|
4326
4326
|
|
|
4327
4327
|
/**
|
|
4328
|
-
*
|
|
4328
|
+
* Versandkostenartikel
|
|
4329
4329
|
*/
|
|
4330
|
-
|
|
4330
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4331
4331
|
|
|
4332
4332
|
/**
|
|
4333
|
-
*
|
|
4333
|
+
* free shipping net value
|
|
4334
4334
|
*/
|
|
4335
|
-
|
|
4335
|
+
freeShippingNetValue: number;
|
|
4336
4336
|
|
|
4337
4337
|
/**
|
|
4338
4338
|
* MetaInformations for this Object
|
|
@@ -4448,14 +4448,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4448
4448
|
returnDeliveryAddress: DocumentAddress;
|
|
4449
4449
|
|
|
4450
4450
|
/**
|
|
4451
|
-
*
|
|
4451
|
+
* Leitweg-ID
|
|
4452
4452
|
*/
|
|
4453
|
-
|
|
4453
|
+
buyerReference: string;
|
|
4454
4454
|
|
|
4455
4455
|
/**
|
|
4456
|
-
*
|
|
4456
|
+
* Bestellnummer aus Vorbeleg
|
|
4457
4457
|
*/
|
|
4458
|
-
|
|
4458
|
+
referencedOrderNumber: string;
|
|
4459
4459
|
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4582,13 +4582,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4582
4582
|
*/
|
|
4583
4583
|
posPayments: Array<DocumentPosPayment>;
|
|
4584
4584
|
|
|
4585
|
-
/**
|
|
4586
|
-
* Ist die Quittung bezahlt
|
|
4587
|
-
true wenn die Quittung bezahlt ist
|
|
4588
|
-
|
|
4589
|
-
*/
|
|
4590
|
-
posReceiptPayed: boolean;
|
|
4591
|
-
|
|
4592
4585
|
/**
|
|
4593
4586
|
* Kundennummer beim Lieferanten
|
|
4594
4587
|
*/
|
|
@@ -4599,6 +4592,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4599
4592
|
*/
|
|
4600
4593
|
maxDeliveries: number;
|
|
4601
4594
|
|
|
4595
|
+
/**
|
|
4596
|
+
* Ist die Quittung bezahlt
|
|
4597
|
+
true wenn die Quittung bezahlt ist
|
|
4598
|
+
|
|
4599
|
+
*/
|
|
4600
|
+
posReceiptPayed: boolean;
|
|
4601
|
+
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Quittung: Summe Zahlbetrag
|
|
4604
4604
|
*/
|
|
@@ -4620,14 +4620,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4620
4620
|
contractDetail: DocumentContractDetail;
|
|
4621
4621
|
|
|
4622
4622
|
/**
|
|
4623
|
-
*
|
|
4623
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4624
4624
|
*/
|
|
4625
|
-
|
|
4625
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4626
4626
|
|
|
4627
4627
|
/**
|
|
4628
|
-
*
|
|
4628
|
+
* Zahlungsplan vorhanden?
|
|
4629
4629
|
*/
|
|
4630
|
-
|
|
4630
|
+
paymentPlan: boolean;
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
|
4633
4633
|
* Produktionsdetails
|
|
@@ -4635,14 +4635,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4635
4635
|
fabricationDetail: DocumentFabricationDetail;
|
|
4636
4636
|
|
|
4637
4637
|
/**
|
|
4638
|
-
*
|
|
4638
|
+
* Berechnungsmodus
|
|
4639
4639
|
*/
|
|
4640
|
-
|
|
4640
|
+
calculationMode: CalculationMode;
|
|
4641
4641
|
|
|
4642
4642
|
/**
|
|
4643
|
-
*
|
|
4643
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4644
4644
|
*/
|
|
4645
|
-
|
|
4645
|
+
accountNumber: string;
|
|
4646
4646
|
|
|
4647
4647
|
/**
|
|
4648
4648
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4884,6 +4884,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4884
4884
|
*/
|
|
4885
4885
|
posReceiptChangeAmount: number;
|
|
4886
4886
|
|
|
4887
|
+
/**
|
|
4888
|
+
* Referenz auf Lieferbedingung
|
|
4889
|
+
*/
|
|
4890
|
+
deliveryTermRef: ApiObjectReference;
|
|
4891
|
+
|
|
4887
4892
|
/**
|
|
4888
4893
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4889
4894
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4891,11 +4896,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4891
4896
|
*/
|
|
4892
4897
|
posReceiptBalanced: boolean;
|
|
4893
4898
|
|
|
4894
|
-
/**
|
|
4895
|
-
* Referenz auf Lieferbedingung
|
|
4896
|
-
*/
|
|
4897
|
-
deliveryTermRef: ApiObjectReference;
|
|
4898
|
-
|
|
4899
4899
|
/**
|
|
4900
4900
|
* Gesamtbruttogewicht
|
|
4901
4901
|
*/
|
|
@@ -4917,14 +4917,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4917
4917
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4918
4918
|
|
|
4919
4919
|
/**
|
|
4920
|
-
*
|
|
4920
|
+
* Status der USt-ID-Prüfung
|
|
4921
4921
|
*/
|
|
4922
|
-
|
|
4922
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4923
4923
|
|
|
4924
4924
|
/**
|
|
4925
|
-
*
|
|
4925
|
+
* Rechnungsadresse
|
|
4926
4926
|
*/
|
|
4927
|
-
|
|
4927
|
+
billingAddress: DocumentAddress;
|
|
4928
4928
|
|
|
4929
4929
|
/**
|
|
4930
4930
|
* Bestellt durch Ansprechpartner
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAddress {
|
|
|
5072
5072
|
postOfficeBox: string;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* Street
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
street: string;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* country code IsoAlpha3
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
countryCode: string;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Unique identifier of the Object
|
|
@@ -5097,14 +5097,14 @@ export interface DocumentAddress {
|
|
|
5097
5097
|
info: MetaInfo;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
|
-
*
|
|
5100
|
+
* Lieferart
|
|
5101
5101
|
*/
|
|
5102
|
-
|
|
5102
|
+
deliveryMethodRef: ApiObjectReference;
|
|
5103
5103
|
|
|
5104
5104
|
/**
|
|
5105
|
-
*
|
|
5105
|
+
* GLN
|
|
5106
5106
|
*/
|
|
5107
|
-
|
|
5107
|
+
globalLocationNumber: string;
|
|
5108
5108
|
|
|
5109
5109
|
/**
|
|
5110
5110
|
* Postcode
|
|
@@ -5550,14 +5550,14 @@ export interface DocumentLine {
|
|
|
5550
5550
|
positionOfArticleLine: number;
|
|
5551
5551
|
|
|
5552
5552
|
/**
|
|
5553
|
-
*
|
|
5553
|
+
* Preis pro Einheit in Basiswährung
|
|
5554
5554
|
*/
|
|
5555
|
-
|
|
5555
|
+
basePrice: number;
|
|
5556
5556
|
|
|
5557
5557
|
/**
|
|
5558
|
-
*
|
|
5558
|
+
* Serientyp
|
|
5559
5559
|
*/
|
|
5560
|
-
|
|
5560
|
+
serialType: ArticleSerialType;
|
|
5561
5561
|
|
|
5562
5562
|
/**
|
|
5563
5563
|
* Steuerschema
|
|
@@ -6124,14 +6124,14 @@ export interface DocumentLineComponent {
|
|
|
6124
6124
|
custom: EavDocumentlinecomponent;
|
|
6125
6125
|
|
|
6126
6126
|
/**
|
|
6127
|
-
*
|
|
6127
|
+
* Referenz auf den Artikel der Komponente
|
|
6128
6128
|
*/
|
|
6129
|
-
|
|
6129
|
+
articleId: number;
|
|
6130
6130
|
|
|
6131
6131
|
/**
|
|
6132
|
-
*
|
|
6132
|
+
* Gelieferte Menge
|
|
6133
6133
|
*/
|
|
6134
|
-
|
|
6134
|
+
quantityCommitted: number;
|
|
6135
6135
|
|
|
6136
6136
|
/**
|
|
6137
6137
|
* Beschreibung des Artikels
|
|
@@ -6793,14 +6793,14 @@ export interface DocumentPosPayment {
|
|
|
6793
6793
|
version: number;
|
|
6794
6794
|
|
|
6795
6795
|
/**
|
|
6796
|
-
*
|
|
6796
|
+
* Zahlungsart
|
|
6797
6797
|
*/
|
|
6798
|
-
|
|
6798
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6799
6799
|
|
|
6800
6800
|
/**
|
|
6801
|
-
*
|
|
6801
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6802
6802
|
*/
|
|
6803
|
-
|
|
6803
|
+
withdrawalAmount: number;
|
|
6804
6804
|
|
|
6805
6805
|
/**
|
|
6806
6806
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -7094,14 +7094,14 @@ export interface DocumentText {
|
|
|
7094
7094
|
transferableIntoSubsequentDocuments: boolean;
|
|
7095
7095
|
|
|
7096
7096
|
/**
|
|
7097
|
-
*
|
|
7097
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7098
7098
|
*/
|
|
7099
|
-
|
|
7099
|
+
textPosition: TextPosition;
|
|
7100
7100
|
|
|
7101
7101
|
/**
|
|
7102
|
-
*
|
|
7102
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7103
7103
|
*/
|
|
7104
|
-
|
|
7104
|
+
deleted: boolean;
|
|
7105
7105
|
|
|
7106
7106
|
/**
|
|
7107
7107
|
* textBaustein Vorlage
|
|
@@ -7211,14 +7211,14 @@ export interface DocumentType {
|
|
|
7211
7211
|
labels: Array<DocumentTypeLabel>;
|
|
7212
7212
|
|
|
7213
7213
|
/**
|
|
7214
|
-
*
|
|
7214
|
+
* Zählerkreis
|
|
7215
7215
|
*/
|
|
7216
|
-
|
|
7216
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7217
7217
|
|
|
7218
7218
|
/**
|
|
7219
|
-
*
|
|
7219
|
+
* nächste Belegnummer
|
|
7220
7220
|
*/
|
|
7221
|
-
|
|
7221
|
+
nextNumber: string;
|
|
7222
7222
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Sortierung
|
|
@@ -7419,14 +7419,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7419
7419
|
bookDate: ScriptingDate;
|
|
7420
7420
|
|
|
7421
7421
|
/**
|
|
7422
|
-
*
|
|
7422
|
+
* Die gültige Seriennummer
|
|
7423
7423
|
*/
|
|
7424
|
-
|
|
7424
|
+
targetSerialNumber: string;
|
|
7425
7425
|
|
|
7426
7426
|
/**
|
|
7427
|
-
*
|
|
7427
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7428
7428
|
*/
|
|
7429
|
-
|
|
7429
|
+
targetExpiryDate: ScriptingDate;
|
|
7430
7430
|
|
|
7431
7431
|
/**
|
|
7432
7432
|
* Quell-Lagerplatz
|
|
@@ -8302,14 +8302,14 @@ export interface OpenItem {
|
|
|
8302
8302
|
paymentAmount: number;
|
|
8303
8303
|
|
|
8304
8304
|
/**
|
|
8305
|
-
*
|
|
8305
|
+
* Rechnungskorrektur
|
|
8306
8306
|
*/
|
|
8307
|
-
|
|
8307
|
+
creditNote: ApiObjectReference;
|
|
8308
8308
|
|
|
8309
8309
|
/**
|
|
8310
|
-
*
|
|
8310
|
+
* how should a refund be done?
|
|
8311
8311
|
*/
|
|
8312
|
-
|
|
8312
|
+
refundType: OpenItem$OpenItemRefundType;
|
|
8313
8313
|
|
|
8314
8314
|
/**
|
|
8315
8315
|
* Buchung auf Lieferant oder Kunde bei manuellen OPs
|
|
@@ -8332,14 +8332,14 @@ export interface OpenItem {
|
|
|
8332
8332
|
sumFee: number;
|
|
8333
8333
|
|
|
8334
8334
|
/**
|
|
8335
|
-
*
|
|
8335
|
+
* The full amount of the payment
|
|
8336
8336
|
*/
|
|
8337
|
-
|
|
8337
|
+
fullPaymentAmount: number;
|
|
8338
8338
|
|
|
8339
8339
|
/**
|
|
8340
|
-
*
|
|
8340
|
+
* Zahlungsplan
|
|
8341
8341
|
*/
|
|
8342
|
-
|
|
8342
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8343
8343
|
|
|
8344
8344
|
/**
|
|
8345
8345
|
* Zahlungssperre
|
|
@@ -8352,14 +8352,14 @@ export interface OpenItem {
|
|
|
8352
8352
|
originalPaymentDueDate: ScriptingDate;
|
|
8353
8353
|
|
|
8354
8354
|
/**
|
|
8355
|
-
*
|
|
8355
|
+
* whether this open item is balanced, partially paid or open
|
|
8356
8356
|
*/
|
|
8357
|
-
|
|
8357
|
+
balanceState: OpenItemBalanceState;
|
|
8358
8358
|
|
|
8359
8359
|
/**
|
|
8360
|
-
*
|
|
8360
|
+
* Valutadatum
|
|
8361
8361
|
*/
|
|
8362
|
-
|
|
8362
|
+
valueDate: ScriptingDate;
|
|
8363
8363
|
|
|
8364
8364
|
/**
|
|
8365
8365
|
* Skontobetrag 1
|
|
@@ -8614,6 +8614,11 @@ export interface OpenItemRecord {
|
|
|
8614
8614
|
*/
|
|
8615
8615
|
exchangeRate: number;
|
|
8616
8616
|
|
|
8617
|
+
/**
|
|
8618
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8619
|
+
*/
|
|
8620
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8621
|
+
|
|
8617
8622
|
/**
|
|
8618
8623
|
* record discountable amount
|
|
8619
8624
|
*/
|
|
@@ -8700,14 +8705,14 @@ export interface OpenItemRecord {
|
|
|
8700
8705
|
totalAmount: number;
|
|
8701
8706
|
|
|
8702
8707
|
/**
|
|
8703
|
-
*
|
|
8708
|
+
* id des records, der diesen storniert hat
|
|
8704
8709
|
*/
|
|
8705
|
-
|
|
8710
|
+
revertedByRecordId: number;
|
|
8706
8711
|
|
|
8707
8712
|
/**
|
|
8708
|
-
*
|
|
8713
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8709
8714
|
*/
|
|
8710
|
-
|
|
8715
|
+
baseCurrencyCode: string;
|
|
8711
8716
|
|
|
8712
8717
|
/**
|
|
8713
8718
|
* qualifier of open item
|
|
@@ -8735,6 +8740,19 @@ export interface OpenItemRecord {
|
|
|
8735
8740
|
currencyCode: string;
|
|
8736
8741
|
}
|
|
8737
8742
|
|
|
8743
|
+
export const enum OpenItemRecord$BookingType {
|
|
8744
|
+
PAYABLE = 'PAYABLE',
|
|
8745
|
+
RECEIVABLE = 'RECEIVABLE',
|
|
8746
|
+
PAYMENT_PAYABLE = 'PAYMENT_PAYABLE',
|
|
8747
|
+
PAYMENT_RECEIVABLE = 'PAYMENT_RECEIVABLE',
|
|
8748
|
+
PAYMENT_PAYABLE_DISSOLVED = 'PAYMENT_PAYABLE_DISSOLVED',
|
|
8749
|
+
PAYMENT_RECEIVABLE_DISSOLVED = 'PAYMENT_RECEIVABLE_DISSOLVED',
|
|
8750
|
+
DUNNING_PAYABLE = 'DUNNING_PAYABLE',
|
|
8751
|
+
DUNNING_RECEIVABLE = 'DUNNING_RECEIVABLE',
|
|
8752
|
+
DUNNING_PAYABLE_DISSOLVED = 'DUNNING_PAYABLE_DISSOLVED',
|
|
8753
|
+
DUNNING_RECEIVABLE_DISSOLVED = 'DUNNING_RECEIVABLE_DISSOLVED'
|
|
8754
|
+
}
|
|
8755
|
+
|
|
8738
8756
|
export const enum OpenItemRecord$RecordOrigin {
|
|
8739
8757
|
DOCUMENT = 'DOCUMENT',
|
|
8740
8758
|
PAYMENT = 'PAYMENT',
|
|
@@ -9320,25 +9338,15 @@ export interface PicklistLine {
|
|
|
9320
9338
|
*/
|
|
9321
9339
|
components: Array<PicklistLineComponent>;
|
|
9322
9340
|
|
|
9323
|
-
/**
|
|
9324
|
-
* Artikelbezeichnung
|
|
9325
|
-
*/
|
|
9326
|
-
articleName: string;
|
|
9327
|
-
|
|
9328
9341
|
/**
|
|
9329
9342
|
* Menge der Position
|
|
9330
9343
|
*/
|
|
9331
9344
|
quantity: number;
|
|
9332
9345
|
|
|
9333
9346
|
/**
|
|
9334
|
-
*
|
|
9335
|
-
*/
|
|
9336
|
-
articleDescription: string;
|
|
9337
|
-
|
|
9338
|
-
/**
|
|
9339
|
-
* ID des Artikels
|
|
9347
|
+
* Artikel
|
|
9340
9348
|
*/
|
|
9341
|
-
|
|
9349
|
+
articleRef: ProductArticleRef;
|
|
9342
9350
|
|
|
9343
9351
|
/**
|
|
9344
9352
|
* ID des Ziel-Dokuments
|
|
@@ -9356,19 +9364,9 @@ export interface PicklistLine {
|
|
|
9356
9364
|
sourceDocumentLineId: number;
|
|
9357
9365
|
|
|
9358
9366
|
/**
|
|
9359
|
-
*
|
|
9360
|
-
*/
|
|
9361
|
-
storageDisplayName: string;
|
|
9362
|
-
|
|
9363
|
-
/**
|
|
9364
|
-
* Artikelnummer
|
|
9365
|
-
*/
|
|
9366
|
-
articleNumber: string;
|
|
9367
|
-
|
|
9368
|
-
/**
|
|
9369
|
-
* Lagernummer
|
|
9367
|
+
* Lagers
|
|
9370
9368
|
*/
|
|
9371
|
-
|
|
9369
|
+
storageRef: ApiObjectReference;
|
|
9372
9370
|
|
|
9373
9371
|
/**
|
|
9374
9372
|
* Art der Position
|
|
@@ -9380,11 +9378,6 @@ export interface PicklistLine {
|
|
|
9380
9378
|
*/
|
|
9381
9379
|
targetDocumentLineId: number;
|
|
9382
9380
|
|
|
9383
|
-
/**
|
|
9384
|
-
* abweichende Artikelbezeichnung
|
|
9385
|
-
*/
|
|
9386
|
-
articleAlternativeName: string;
|
|
9387
|
-
|
|
9388
9381
|
/**
|
|
9389
9382
|
* Verpackte Menge der Position
|
|
9390
9383
|
*/
|
|
@@ -9410,11 +9403,6 @@ export interface PicklistLine {
|
|
|
9410
9403
|
*/
|
|
9411
9404
|
sourceDocumentId: number;
|
|
9412
9405
|
|
|
9413
|
-
/**
|
|
9414
|
-
* ID des Lagers, aus dem gepickt werden soll
|
|
9415
|
-
*/
|
|
9416
|
-
storageId: number;
|
|
9417
|
-
|
|
9418
9406
|
/**
|
|
9419
9407
|
* MetaInformations for this Object
|
|
9420
9408
|
*/
|
|
@@ -9687,26 +9675,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9687
9675
|
*/
|
|
9688
9676
|
maxArticleCountPerOrder: number;
|
|
9689
9677
|
|
|
9690
|
-
/**
|
|
9691
|
-
* Maximaler Auftragswert
|
|
9692
|
-
*/
|
|
9693
|
-
maxOrderValue: number;
|
|
9694
|
-
|
|
9695
9678
|
/**
|
|
9696
9679
|
* Alternative Selektion in VQL
|
|
9697
9680
|
*/
|
|
9698
9681
|
alternativeSelectionInVql: string;
|
|
9699
9682
|
|
|
9700
9683
|
/**
|
|
9701
|
-
*
|
|
9684
|
+
* Maximaler Auftragswert
|
|
9702
9685
|
*/
|
|
9703
|
-
|
|
9686
|
+
maxOrderValue: number;
|
|
9704
9687
|
|
|
9705
9688
|
/**
|
|
9706
9689
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9707
9690
|
*/
|
|
9708
9691
|
maxOrderCount: number;
|
|
9709
9692
|
|
|
9693
|
+
/**
|
|
9694
|
+
* Nur vollständig lieferbare Positionen
|
|
9695
|
+
*/
|
|
9696
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9697
|
+
|
|
9710
9698
|
/**
|
|
9711
9699
|
* Selektion über den Bereich vom Lieferdatum
|
|
9712
9700
|
*/
|
|
@@ -9790,6 +9778,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9790
9778
|
*/
|
|
9791
9779
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9792
9780
|
|
|
9781
|
+
/**
|
|
9782
|
+
* Lagerplätze vorgeben
|
|
9783
|
+
*/
|
|
9784
|
+
specifyStorageBins: boolean;
|
|
9785
|
+
|
|
9793
9786
|
/**
|
|
9794
9787
|
* Der zu verwendende Pickwagen
|
|
9795
9788
|
*/
|
|
@@ -9800,11 +9793,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9800
9793
|
*/
|
|
9801
9794
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9802
9795
|
|
|
9803
|
-
/**
|
|
9804
|
-
* Lagerplätze vorgeben
|
|
9805
|
-
*/
|
|
9806
|
-
specifyStorageBins: boolean;
|
|
9807
|
-
|
|
9808
9796
|
/**
|
|
9809
9797
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9810
9798
|
*/
|
|
@@ -9874,24 +9862,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9874
9862
|
showShippingFormOnPickingFinish: boolean;
|
|
9875
9863
|
|
|
9876
9864
|
/**
|
|
9877
|
-
*
|
|
9865
|
+
* Sammelbestätigung erlauben
|
|
9878
9866
|
*/
|
|
9879
|
-
|
|
9867
|
+
allowFullConfirmation: boolean;
|
|
9880
9868
|
|
|
9881
9869
|
/**
|
|
9882
|
-
*
|
|
9870
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9883
9871
|
*/
|
|
9884
|
-
|
|
9872
|
+
printLabelOnScan: boolean;
|
|
9885
9873
|
|
|
9886
9874
|
/**
|
|
9887
|
-
*
|
|
9875
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9888
9876
|
*/
|
|
9889
|
-
|
|
9877
|
+
allowPickingOfServiceArticles: boolean;
|
|
9890
9878
|
|
|
9891
9879
|
/**
|
|
9892
|
-
*
|
|
9880
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9893
9881
|
*/
|
|
9894
|
-
|
|
9882
|
+
useDigitalPicklist: boolean;
|
|
9895
9883
|
|
|
9896
9884
|
/**
|
|
9897
9885
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9919,14 +9907,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9919
9907
|
printLabelAfterPicking: boolean;
|
|
9920
9908
|
|
|
9921
9909
|
/**
|
|
9922
|
-
*
|
|
9910
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9923
9911
|
*/
|
|
9924
|
-
|
|
9912
|
+
autoDeterminationOfLots: boolean;
|
|
9925
9913
|
|
|
9926
9914
|
/**
|
|
9927
|
-
*
|
|
9915
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9928
9916
|
*/
|
|
9929
|
-
|
|
9917
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9930
9918
|
|
|
9931
9919
|
/**
|
|
9932
9920
|
* Zielmengen in Masken verstecken?
|
|
@@ -10173,23 +10161,38 @@ export interface ProductArticleRef {
|
|
|
10173
10161
|
*/
|
|
10174
10162
|
unit: UnitTypeReference;
|
|
10175
10163
|
|
|
10164
|
+
/**
|
|
10165
|
+
* Bezeichnung
|
|
10166
|
+
*/
|
|
10167
|
+
name: string;
|
|
10168
|
+
|
|
10169
|
+
/**
|
|
10170
|
+
* Beschreibung
|
|
10171
|
+
*/
|
|
10172
|
+
description: string;
|
|
10173
|
+
|
|
10176
10174
|
/**
|
|
10177
10175
|
* Article ID
|
|
10178
10176
|
*/
|
|
10179
10177
|
id: number;
|
|
10178
|
+
|
|
10179
|
+
/**
|
|
10180
|
+
* Serientyp
|
|
10181
|
+
*/
|
|
10182
|
+
serialType: ArticleSerialType;
|
|
10180
10183
|
}
|
|
10181
10184
|
|
|
10182
10185
|
export interface ProductDiscount {
|
|
10183
10186
|
|
|
10184
10187
|
/**
|
|
10185
|
-
*
|
|
10188
|
+
* Kundengruppe
|
|
10186
10189
|
*/
|
|
10187
|
-
|
|
10190
|
+
customerGroupRef: ApiObjectReference;
|
|
10188
10191
|
|
|
10189
10192
|
/**
|
|
10190
|
-
*
|
|
10193
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10191
10194
|
*/
|
|
10192
|
-
|
|
10195
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10193
10196
|
|
|
10194
10197
|
/**
|
|
10195
10198
|
* Lieferantengruppe
|
|
@@ -10202,14 +10205,14 @@ export interface ProductDiscount {
|
|
|
10202
10205
|
fromQuantity: number;
|
|
10203
10206
|
|
|
10204
10207
|
/**
|
|
10205
|
-
*
|
|
10208
|
+
* Hersteller
|
|
10206
10209
|
*/
|
|
10207
|
-
|
|
10210
|
+
manufacturerRef: ApiObjectReference;
|
|
10208
10211
|
|
|
10209
10212
|
/**
|
|
10210
|
-
*
|
|
10213
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10211
10214
|
*/
|
|
10212
|
-
|
|
10215
|
+
articleRef: ApiObjectReference;
|
|
10213
10216
|
|
|
10214
10217
|
/**
|
|
10215
10218
|
* Gültig von
|
|
@@ -10396,14 +10399,14 @@ export interface ProductMainGroup {
|
|
|
10396
10399
|
export interface ProductPrice {
|
|
10397
10400
|
|
|
10398
10401
|
/**
|
|
10399
|
-
*
|
|
10402
|
+
* Kundengruppe
|
|
10400
10403
|
*/
|
|
10401
|
-
|
|
10404
|
+
customerGroupRef: ApiObjectReference;
|
|
10402
10405
|
|
|
10403
10406
|
/**
|
|
10404
|
-
*
|
|
10407
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10405
10408
|
*/
|
|
10406
|
-
|
|
10409
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10407
10410
|
|
|
10408
10411
|
/**
|
|
10409
10412
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10466,14 +10469,14 @@ export interface ProductPrice {
|
|
|
10466
10469
|
supplierGroupRef: ApiObjectReference;
|
|
10467
10470
|
|
|
10468
10471
|
/**
|
|
10469
|
-
*
|
|
10472
|
+
* Hersteller
|
|
10470
10473
|
*/
|
|
10471
|
-
|
|
10474
|
+
manufacturerRef: ApiObjectReference;
|
|
10472
10475
|
|
|
10473
10476
|
/**
|
|
10474
|
-
*
|
|
10477
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10475
10478
|
*/
|
|
10476
|
-
|
|
10479
|
+
articleRef: ApiObjectReference;
|
|
10477
10480
|
|
|
10478
10481
|
/**
|
|
10479
10482
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10954,14 +10957,14 @@ export interface RequestDocumentLine {
|
|
|
10954
10957
|
externalArticleNumber: string;
|
|
10955
10958
|
|
|
10956
10959
|
/**
|
|
10957
|
-
*
|
|
10960
|
+
* Buchungen zu dieser Belegposition
|
|
10958
10961
|
*/
|
|
10959
|
-
|
|
10962
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10960
10963
|
|
|
10961
10964
|
/**
|
|
10962
|
-
*
|
|
10965
|
+
* ID der Quell-Belegposition
|
|
10963
10966
|
*/
|
|
10964
|
-
|
|
10967
|
+
sourceLineId: number;
|
|
10965
10968
|
|
|
10966
10969
|
/**
|
|
10967
10970
|
* Zu der Zeile Etikettendruck anstoßen
|
|
@@ -11136,14 +11139,14 @@ export interface SalesAgent {
|
|
|
11136
11139
|
note: string;
|
|
11137
11140
|
|
|
11138
11141
|
/**
|
|
11139
|
-
*
|
|
11142
|
+
* is sales agent taxable
|
|
11140
11143
|
*/
|
|
11141
|
-
|
|
11144
|
+
taxable: boolean;
|
|
11142
11145
|
|
|
11143
11146
|
/**
|
|
11144
|
-
*
|
|
11147
|
+
* reference to the delivery method
|
|
11145
11148
|
*/
|
|
11146
|
-
|
|
11149
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11147
11150
|
|
|
11148
11151
|
/**
|
|
11149
11152
|
* Freifelder
|
|
@@ -12240,6 +12243,11 @@ export interface StorageBinRef {
|
|
|
12240
12243
|
*/
|
|
12241
12244
|
displayName: string;
|
|
12242
12245
|
|
|
12246
|
+
/**
|
|
12247
|
+
* Laufwegposition
|
|
12248
|
+
*/
|
|
12249
|
+
routePosition: number;
|
|
12250
|
+
|
|
12243
12251
|
/**
|
|
12244
12252
|
* ID
|
|
12245
12253
|
*/
|
|
@@ -12343,14 +12351,14 @@ export interface Supplier {
|
|
|
12343
12351
|
info: MetaInfo;
|
|
12344
12352
|
|
|
12345
12353
|
/**
|
|
12346
|
-
*
|
|
12354
|
+
* Lieferantengruppe
|
|
12347
12355
|
*/
|
|
12348
|
-
|
|
12356
|
+
supplierGroupRef: ApiObjectReference;
|
|
12349
12357
|
|
|
12350
12358
|
/**
|
|
12351
|
-
*
|
|
12359
|
+
* reference to the delivery method
|
|
12352
12360
|
*/
|
|
12353
|
-
|
|
12361
|
+
deliveryMethodRef: ApiObjectReference;
|
|
12354
12362
|
|
|
12355
12363
|
/**
|
|
12356
12364
|
* tax able or tax free
|
|
@@ -12689,26 +12697,26 @@ export interface TextTemplate {
|
|
|
12689
12697
|
*/
|
|
12690
12698
|
languageSpecificContents: Array<LocalizedTextTemplateContent>;
|
|
12691
12699
|
|
|
12692
|
-
/**
|
|
12693
|
-
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12694
|
-
*/
|
|
12695
|
-
separateLine: boolean;
|
|
12696
|
-
|
|
12697
12700
|
/**
|
|
12698
12701
|
* article für den diese Templates gelten
|
|
12699
12702
|
*/
|
|
12700
12703
|
articleId: number;
|
|
12701
12704
|
|
|
12702
12705
|
/**
|
|
12703
|
-
*
|
|
12706
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12704
12707
|
*/
|
|
12705
|
-
|
|
12708
|
+
separateLine: boolean;
|
|
12706
12709
|
|
|
12707
12710
|
/**
|
|
12708
12711
|
* ist dieser Baustein aktiv?
|
|
12709
12712
|
*/
|
|
12710
12713
|
active: boolean;
|
|
12711
12714
|
|
|
12715
|
+
/**
|
|
12716
|
+
* Wann wird ein UI-Hint angezeigt
|
|
12717
|
+
*/
|
|
12718
|
+
uiHintTypes: Array<TextTemplate$UiHintType>;
|
|
12719
|
+
|
|
12712
12720
|
/**
|
|
12713
12721
|
* Bezeichnung des Bausteins
|
|
12714
12722
|
*/
|
|
@@ -12884,14 +12892,14 @@ export interface User {
|
|
|
12884
12892
|
version: number;
|
|
12885
12893
|
|
|
12886
12894
|
/**
|
|
12887
|
-
*
|
|
12895
|
+
* first-name
|
|
12888
12896
|
*/
|
|
12889
|
-
|
|
12897
|
+
firstName: string;
|
|
12890
12898
|
|
|
12891
12899
|
/**
|
|
12892
|
-
*
|
|
12900
|
+
* is the email verified
|
|
12893
12901
|
*/
|
|
12894
|
-
|
|
12902
|
+
emailVerified: boolean;
|
|
12895
12903
|
|
|
12896
12904
|
/**
|
|
12897
12905
|
* email-address
|