@vario-software/types 2026.12.3 → 2026.12.5
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 +31 -31
- package/scripting/types.d.ts +301 -301
package/scripting/types.d.ts
CHANGED
|
@@ -138,14 +138,14 @@ export interface Account {
|
|
|
138
138
|
payablesSum: number;
|
|
139
139
|
|
|
140
140
|
/**
|
|
141
|
-
*
|
|
141
|
+
* Kostenstelle
|
|
142
142
|
*/
|
|
143
|
-
|
|
143
|
+
costCenter: string;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
151
|
* companyLegal for this account
|
|
@@ -296,14 +296,14 @@ export interface AccountAddress {
|
|
|
296
296
|
postOfficeBox: string;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Country code
|
|
300
300
|
*/
|
|
301
|
-
|
|
301
|
+
countryCode: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Street
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
street: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
309
|
* Unique identifier of the Object
|
|
@@ -326,14 +326,14 @@ export interface AccountAddress {
|
|
|
326
326
|
types: Array<AccountAddressType>;
|
|
327
327
|
|
|
328
328
|
/**
|
|
329
|
-
*
|
|
329
|
+
* GLN/ILN as location identifier for this address
|
|
330
330
|
*/
|
|
331
|
-
|
|
331
|
+
globalLocationNumber: string;
|
|
332
332
|
|
|
333
333
|
/**
|
|
334
|
-
*
|
|
334
|
+
* Leitweg-ID
|
|
335
335
|
*/
|
|
336
|
-
|
|
336
|
+
buyerReference: string;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
339
|
* abweichende Zahlungsart
|
|
@@ -477,14 +477,14 @@ export interface AccountLoanValue {
|
|
|
477
477
|
nonInvoicedDocumentLoan: number;
|
|
478
478
|
|
|
479
479
|
/**
|
|
480
|
-
*
|
|
480
|
+
* Kreditlimit
|
|
481
481
|
*/
|
|
482
|
-
|
|
482
|
+
maximalLoan: number;
|
|
483
483
|
|
|
484
484
|
/**
|
|
485
|
-
*
|
|
485
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
486
486
|
*/
|
|
487
|
-
|
|
487
|
+
payablesSum: number;
|
|
488
488
|
|
|
489
489
|
/**
|
|
490
490
|
* Überschrittener Kreditbetrag
|
|
@@ -818,11 +818,6 @@ export interface Article {
|
|
|
818
818
|
*/
|
|
819
819
|
baseCapacityUnit: UnitTypeReference;
|
|
820
820
|
|
|
821
|
-
/**
|
|
822
|
-
* is this product sellable without any quantity at the stock
|
|
823
|
-
*/
|
|
824
|
-
sellableWithoutStock: boolean;
|
|
825
|
-
|
|
826
821
|
/**
|
|
827
822
|
* Seriennummern Auszeichnungsart
|
|
828
823
|
*/
|
|
@@ -833,6 +828,11 @@ export interface Article {
|
|
|
833
828
|
*/
|
|
834
829
|
initialAvgPurchasePrice: number;
|
|
835
830
|
|
|
831
|
+
/**
|
|
832
|
+
* is this product sellable without any quantity at the stock
|
|
833
|
+
*/
|
|
834
|
+
sellableWithoutStock: boolean;
|
|
835
|
+
|
|
836
836
|
/**
|
|
837
837
|
* gross Volume in cubic meters
|
|
838
838
|
*/
|
|
@@ -854,14 +854,14 @@ export interface Article {
|
|
|
854
854
|
warrantyInMonths: number;
|
|
855
855
|
|
|
856
856
|
/**
|
|
857
|
-
*
|
|
857
|
+
* weight and size w.o. packaging
|
|
858
858
|
*/
|
|
859
|
-
|
|
859
|
+
netMetric: Article$Metric;
|
|
860
860
|
|
|
861
861
|
/**
|
|
862
|
-
*
|
|
862
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
863
863
|
*/
|
|
864
|
-
|
|
864
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
865
865
|
|
|
866
866
|
/**
|
|
867
867
|
* unique product number
|
|
@@ -929,14 +929,14 @@ export interface Article {
|
|
|
929
929
|
deliveryMethodRef: ApiObjectReference;
|
|
930
930
|
|
|
931
931
|
/**
|
|
932
|
-
*
|
|
932
|
+
* Soll-Handelsspanne
|
|
933
933
|
*/
|
|
934
|
-
|
|
934
|
+
targetTradingMargin: number;
|
|
935
935
|
|
|
936
936
|
/**
|
|
937
|
-
*
|
|
937
|
+
* Produktion
|
|
938
938
|
*/
|
|
939
|
-
|
|
939
|
+
fabrication: boolean;
|
|
940
940
|
|
|
941
941
|
/**
|
|
942
942
|
* active
|
|
@@ -969,14 +969,14 @@ export interface Article {
|
|
|
969
969
|
solvable: boolean;
|
|
970
970
|
|
|
971
971
|
/**
|
|
972
|
-
*
|
|
972
|
+
* Verkaufseinheit
|
|
973
973
|
*/
|
|
974
|
-
|
|
974
|
+
salesUnit: number;
|
|
975
975
|
|
|
976
976
|
/**
|
|
977
|
-
*
|
|
977
|
+
* weight and size inc. packaging
|
|
978
978
|
*/
|
|
979
|
-
|
|
979
|
+
grossMetric: Article$Metric;
|
|
980
980
|
|
|
981
981
|
/**
|
|
982
982
|
* name of this product
|
|
@@ -989,14 +989,14 @@ export interface Article {
|
|
|
989
989
|
listingStateChangeTime: ScriptingDateTime;
|
|
990
990
|
|
|
991
991
|
/**
|
|
992
|
-
*
|
|
992
|
+
* Arbeitseinheit in Minuten
|
|
993
993
|
*/
|
|
994
|
-
|
|
994
|
+
workUnitInMinutes: number;
|
|
995
995
|
|
|
996
996
|
/**
|
|
997
|
-
*
|
|
997
|
+
* Country code
|
|
998
998
|
*/
|
|
999
|
-
|
|
999
|
+
countryOfOriginRef: CountryReference;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
1002
|
* description custom data
|
|
@@ -1069,9 +1069,9 @@ export interface Article {
|
|
|
1069
1069
|
permissibleForOrderProposal: boolean;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Artikel ist Gefahrgut
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
isDangerousGood: boolean;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* Versandlabeldruck
|
|
@@ -1079,14 +1079,14 @@ export interface Article {
|
|
|
1079
1079
|
shippingLabelPrinting: boolean;
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
|
-
*
|
|
1082
|
+
* reference to Product
|
|
1083
1083
|
*/
|
|
1084
|
-
|
|
1084
|
+
productRef: ApiObjectReference;
|
|
1085
1085
|
|
|
1086
1086
|
/**
|
|
1087
|
-
*
|
|
1087
|
+
* rabattierbarer Artikel?
|
|
1088
1088
|
*/
|
|
1089
|
-
|
|
1089
|
+
discountable: boolean;
|
|
1090
1090
|
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Kontingentartikel
|
|
@@ -1094,9 +1094,9 @@ export interface Article {
|
|
|
1094
1094
|
contingentArticleRef: ApiObjectReference;
|
|
1095
1095
|
|
|
1096
1096
|
/**
|
|
1097
|
-
*
|
|
1097
|
+
* alternative name of this product
|
|
1098
1098
|
*/
|
|
1099
|
-
|
|
1099
|
+
alternativeName: string;
|
|
1100
1100
|
|
|
1101
1101
|
/**
|
|
1102
1102
|
* base capacity
|
|
@@ -1124,9 +1124,9 @@ export interface Article {
|
|
|
1124
1124
|
custom: EavArticle;
|
|
1125
1125
|
|
|
1126
1126
|
/**
|
|
1127
|
-
*
|
|
1127
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1128
1128
|
*/
|
|
1129
|
-
|
|
1129
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1130
1130
|
|
|
1131
1131
|
/**
|
|
1132
1132
|
* Art des Haltbarkeitsdatums
|
|
@@ -1134,9 +1134,9 @@ export interface Article {
|
|
|
1134
1134
|
expiryDateType: ArticleSerialExpiryDateType;
|
|
1135
1135
|
|
|
1136
1136
|
/**
|
|
1137
|
-
*
|
|
1137
|
+
* Hersteller des Produkts
|
|
1138
1138
|
*/
|
|
1139
|
-
|
|
1139
|
+
manufacturerId: number;
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
1142
|
* net sales prices
|
|
@@ -1159,14 +1159,14 @@ export interface Article {
|
|
|
1159
1159
|
listed: boolean;
|
|
1160
1160
|
|
|
1161
1161
|
/**
|
|
1162
|
-
*
|
|
1162
|
+
* provisionsberechtiger Artikel?
|
|
1163
1163
|
*/
|
|
1164
|
-
|
|
1164
|
+
commissionable: boolean;
|
|
1165
1165
|
|
|
1166
1166
|
/**
|
|
1167
|
-
*
|
|
1167
|
+
* Nur manuelle Produktion
|
|
1168
1168
|
*/
|
|
1169
|
-
|
|
1169
|
+
onlyManualFabrication: boolean;
|
|
1170
1170
|
|
|
1171
1171
|
/**
|
|
1172
1172
|
* Preisbasis
|
|
@@ -1207,14 +1207,14 @@ export interface Article$Metric {
|
|
|
1207
1207
|
sizeY: number;
|
|
1208
1208
|
|
|
1209
1209
|
/**
|
|
1210
|
-
*
|
|
1210
|
+
* weight unit
|
|
1211
1211
|
*/
|
|
1212
|
-
|
|
1212
|
+
weightUnit: UnitTypeReference;
|
|
1213
1213
|
|
|
1214
1214
|
/**
|
|
1215
|
-
*
|
|
1215
|
+
* size
|
|
1216
1216
|
*/
|
|
1217
|
-
|
|
1217
|
+
sizeZ: number;
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
1220
|
export interface ArticleAvailabilityDetermination {
|
|
@@ -1317,14 +1317,14 @@ export interface ArticleListing {
|
|
|
1317
1317
|
proposedLowestPriceGross: number;
|
|
1318
1318
|
|
|
1319
1319
|
/**
|
|
1320
|
-
*
|
|
1320
|
+
* der Sales Channel
|
|
1321
1321
|
*/
|
|
1322
|
-
|
|
1322
|
+
salesChannelRef: ApiObjectReference;
|
|
1323
1323
|
|
|
1324
1324
|
/**
|
|
1325
|
-
* der
|
|
1325
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1326
1326
|
*/
|
|
1327
|
-
|
|
1327
|
+
customLowestPriceGross: number;
|
|
1328
1328
|
|
|
1329
1329
|
/**
|
|
1330
1330
|
* soll der Artikel gelistet werden
|
|
@@ -1523,6 +1523,11 @@ export const enum ArticleSerialType {
|
|
|
1523
1523
|
|
|
1524
1524
|
export interface ArticleSupplier {
|
|
1525
1525
|
|
|
1526
|
+
/**
|
|
1527
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1528
|
+
*/
|
|
1529
|
+
useSupplierArticleDescription: boolean;
|
|
1530
|
+
|
|
1526
1531
|
/**
|
|
1527
1532
|
* Anzeigename des Accounts
|
|
1528
1533
|
*/
|
|
@@ -1534,20 +1539,15 @@ export interface ArticleSupplier {
|
|
|
1534
1539
|
supplierReportingStock: number;
|
|
1535
1540
|
|
|
1536
1541
|
/**
|
|
1537
|
-
*
|
|
1542
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1538
1543
|
*/
|
|
1539
|
-
|
|
1544
|
+
deliveryTime: number;
|
|
1540
1545
|
|
|
1541
1546
|
/**
|
|
1542
1547
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1543
1548
|
*/
|
|
1544
1549
|
useSupplierArticleIdentifier: boolean;
|
|
1545
1550
|
|
|
1546
|
-
/**
|
|
1547
|
-
* Lieferzeit in (Werk-)Tagen
|
|
1548
|
-
*/
|
|
1549
|
-
deliveryTime: number;
|
|
1550
|
-
|
|
1551
1551
|
/**
|
|
1552
1552
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1553
1553
|
*/
|
|
@@ -1594,14 +1594,14 @@ export interface ArticleSupplier {
|
|
|
1594
1594
|
info: MetaInfo;
|
|
1595
1595
|
|
|
1596
1596
|
/**
|
|
1597
|
-
*
|
|
1597
|
+
* Referenced Article name
|
|
1598
1598
|
*/
|
|
1599
|
-
|
|
1599
|
+
articleName: string;
|
|
1600
1600
|
|
|
1601
1601
|
/**
|
|
1602
|
-
*
|
|
1602
|
+
* Verpackungseinheit
|
|
1603
1603
|
*/
|
|
1604
|
-
|
|
1604
|
+
packagingUnit: number;
|
|
1605
1605
|
|
|
1606
1606
|
/**
|
|
1607
1607
|
* Lieferanten-Preise
|
|
@@ -1648,11 +1648,6 @@ export interface ArticleSupplier {
|
|
|
1648
1648
|
*/
|
|
1649
1649
|
defaultNetPrice: number;
|
|
1650
1650
|
|
|
1651
|
-
/**
|
|
1652
|
-
* Einkaufseinheit
|
|
1653
|
-
*/
|
|
1654
|
-
purchaseUnit: number;
|
|
1655
|
-
|
|
1656
1651
|
/**
|
|
1657
1652
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
1658
1653
|
*/
|
|
@@ -1663,6 +1658,11 @@ export interface ArticleSupplier {
|
|
|
1663
1658
|
*/
|
|
1664
1659
|
accountId: number;
|
|
1665
1660
|
|
|
1661
|
+
/**
|
|
1662
|
+
* Einkaufseinheit
|
|
1663
|
+
*/
|
|
1664
|
+
purchaseUnit: number;
|
|
1665
|
+
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1668
1668
|
*/
|
|
@@ -1904,14 +1904,14 @@ export interface CrmActivity {
|
|
|
1904
1904
|
info: MetaInfo;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Aktivität intern abgerechnet?
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
internalBilled: boolean;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* geplante Dauer
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
plannedDurationInSeconds: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
1917
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2005,14 +2005,14 @@ export interface CrmActivityType {
|
|
|
2005
2005
|
description: string;
|
|
2006
2006
|
|
|
2007
2007
|
/**
|
|
2008
|
-
*
|
|
2008
|
+
* Bezeichnung
|
|
2009
2009
|
*/
|
|
2010
|
-
|
|
2010
|
+
label: string;
|
|
2011
2011
|
|
|
2012
2012
|
/**
|
|
2013
|
-
*
|
|
2013
|
+
* Für "E-Mail-Archivieren"?
|
|
2014
2014
|
*/
|
|
2015
|
-
|
|
2015
|
+
emailArchiving: boolean;
|
|
2016
2016
|
|
|
2017
2017
|
/**
|
|
2018
2018
|
* Abrechenbar?
|
|
@@ -2226,14 +2226,14 @@ export interface CrmDeal {
|
|
|
2226
2226
|
childRefs: Array<CrmObjectRef>;
|
|
2227
2227
|
|
|
2228
2228
|
/**
|
|
2229
|
-
*
|
|
2229
|
+
* Tags
|
|
2230
2230
|
*/
|
|
2231
|
-
|
|
2231
|
+
tags: Array<TagDto>;
|
|
2232
2232
|
|
|
2233
2233
|
/**
|
|
2234
|
-
*
|
|
2234
|
+
* Übergeordnetes CRM-Objekt
|
|
2235
2235
|
*/
|
|
2236
|
-
|
|
2236
|
+
parentRef: CrmObjectRef;
|
|
2237
2237
|
|
|
2238
2238
|
/**
|
|
2239
2239
|
* Zu Erledigen von Benutzergruppe (zugeordnete Benutzergruppe)
|
|
@@ -2462,14 +2462,14 @@ export interface CrmProject {
|
|
|
2462
2462
|
priorityRef: ApiObjectReference;
|
|
2463
2463
|
|
|
2464
2464
|
/**
|
|
2465
|
-
*
|
|
2465
|
+
* Phase
|
|
2466
2466
|
*/
|
|
2467
|
-
|
|
2467
|
+
phaseRef: ApiObjectReference;
|
|
2468
2468
|
|
|
2469
2469
|
/**
|
|
2470
|
-
*
|
|
2470
|
+
* Projektleiter vom Auftragnehmer
|
|
2471
2471
|
*/
|
|
2472
|
-
|
|
2472
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2473
2473
|
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Aufgaben-Nummer
|
|
@@ -2572,14 +2572,14 @@ export interface CrmProject {
|
|
|
2572
2572
|
childRefs: Array<CrmObjectRef>;
|
|
2573
2573
|
|
|
2574
2574
|
/**
|
|
2575
|
-
*
|
|
2575
|
+
* Tags
|
|
2576
2576
|
*/
|
|
2577
|
-
|
|
2577
|
+
tags: Array<TagDto>;
|
|
2578
2578
|
|
|
2579
2579
|
/**
|
|
2580
|
-
*
|
|
2580
|
+
* Übergeordnetes CRM-Objekt
|
|
2581
2581
|
*/
|
|
2582
|
-
|
|
2582
|
+
parentRef: CrmObjectRef;
|
|
2583
2583
|
|
|
2584
2584
|
/**
|
|
2585
2585
|
* Weitere Teilnehmer vom Auftragnehmer
|
|
@@ -2619,14 +2619,14 @@ export const enum CrmReferenceType {
|
|
|
2619
2619
|
export interface CrmReminder {
|
|
2620
2620
|
|
|
2621
2621
|
/**
|
|
2622
|
-
*
|
|
2622
|
+
* Notiz zur Erinnerung
|
|
2623
2623
|
*/
|
|
2624
|
-
|
|
2624
|
+
note: string;
|
|
2625
2625
|
|
|
2626
2626
|
/**
|
|
2627
|
-
*
|
|
2627
|
+
* ID des CRM Objekts
|
|
2628
2628
|
*/
|
|
2629
|
-
|
|
2629
|
+
crmId: number;
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
2632
|
* Wer soll erinnert werden
|
|
@@ -2712,14 +2712,14 @@ export interface CrmState {
|
|
|
2712
2712
|
readyToBill: boolean;
|
|
2713
2713
|
|
|
2714
2714
|
/**
|
|
2715
|
-
*
|
|
2715
|
+
* Handelt es sich um einen Anfang-Status
|
|
2716
2716
|
*/
|
|
2717
|
-
|
|
2717
|
+
startState: boolean;
|
|
2718
2718
|
|
|
2719
2719
|
/**
|
|
2720
|
-
*
|
|
2720
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
2721
2721
|
*/
|
|
2722
|
-
|
|
2722
|
+
needsCommentOnNegativeFinish: boolean;
|
|
2723
2723
|
|
|
2724
2724
|
/**
|
|
2725
2725
|
* MetaInformations for this Object
|
|
@@ -2768,14 +2768,14 @@ export interface CrmSubType {
|
|
|
2768
2768
|
export interface CrmTask {
|
|
2769
2769
|
|
|
2770
2770
|
/**
|
|
2771
|
-
*
|
|
2771
|
+
* Liste von Erinnerungen
|
|
2772
2772
|
*/
|
|
2773
|
-
|
|
2773
|
+
reminders: Array<CrmReminder>;
|
|
2774
2774
|
|
|
2775
2775
|
/**
|
|
2776
|
-
*
|
|
2776
|
+
* Angebot
|
|
2777
2777
|
*/
|
|
2778
|
-
|
|
2778
|
+
customerOfferRef: DocumentRef;
|
|
2779
2779
|
|
|
2780
2780
|
/**
|
|
2781
2781
|
* Notizen
|
|
@@ -2943,14 +2943,14 @@ export interface CrmTask {
|
|
|
2943
2943
|
assignedUserRef: ApiObjectReference;
|
|
2944
2944
|
|
|
2945
2945
|
/**
|
|
2946
|
-
*
|
|
2946
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
2947
2947
|
*/
|
|
2948
|
-
|
|
2948
|
+
externalRecordedTimes: number;
|
|
2949
2949
|
|
|
2950
2950
|
/**
|
|
2951
|
-
*
|
|
2951
|
+
* Beauftragte Zeit in Sekunden
|
|
2952
2952
|
*/
|
|
2953
|
-
|
|
2953
|
+
effortCommissioned: number;
|
|
2954
2954
|
|
|
2955
2955
|
/**
|
|
2956
2956
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3084,14 +3084,14 @@ export interface CurrencyReference {
|
|
|
3084
3084
|
export interface Customer {
|
|
3085
3085
|
|
|
3086
3086
|
/**
|
|
3087
|
-
*
|
|
3087
|
+
* Option für die Stapelverarbeitung
|
|
3088
3088
|
*/
|
|
3089
|
-
|
|
3089
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3090
3090
|
|
|
3091
3091
|
/**
|
|
3092
|
-
*
|
|
3092
|
+
* reference to customer group
|
|
3093
3093
|
*/
|
|
3094
|
-
|
|
3094
|
+
customerGroupRef: ApiObjectReference;
|
|
3095
3095
|
|
|
3096
3096
|
/**
|
|
3097
3097
|
* Kreditlimit
|
|
@@ -3099,14 +3099,14 @@ export interface Customer {
|
|
|
3099
3099
|
maximalLoan: number;
|
|
3100
3100
|
|
|
3101
3101
|
/**
|
|
3102
|
-
*
|
|
3102
|
+
* collective billable
|
|
3103
3103
|
*/
|
|
3104
|
-
|
|
3104
|
+
collectiveBillable: boolean;
|
|
3105
3105
|
|
|
3106
3106
|
/**
|
|
3107
|
-
*
|
|
3107
|
+
* Maximal mögliche Lieferungen
|
|
3108
3108
|
*/
|
|
3109
|
-
|
|
3109
|
+
maxDeliveries: number;
|
|
3110
3110
|
|
|
3111
3111
|
/**
|
|
3112
3112
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3219,14 +3219,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3219
3219
|
export interface DeliveryMethod {
|
|
3220
3220
|
|
|
3221
3221
|
/**
|
|
3222
|
-
*
|
|
3222
|
+
* E-Mail an Versender übergeben
|
|
3223
3223
|
*/
|
|
3224
|
-
|
|
3224
|
+
forwardEmailToShipper: boolean;
|
|
3225
3225
|
|
|
3226
3226
|
/**
|
|
3227
|
-
*
|
|
3227
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3228
3228
|
*/
|
|
3229
|
-
|
|
3229
|
+
splitIntoNewDocument: boolean;
|
|
3230
3230
|
|
|
3231
3231
|
/**
|
|
3232
3232
|
* Min. Gewicht pro Paket
|
|
@@ -3415,14 +3415,14 @@ export interface DeliveryTerm {
|
|
|
3415
3415
|
export interface Document {
|
|
3416
3416
|
|
|
3417
3417
|
/**
|
|
3418
|
-
*
|
|
3418
|
+
* Referenz zum Rechnungskonto
|
|
3419
3419
|
*/
|
|
3420
|
-
|
|
3420
|
+
billingAccountRef: ApiObjectReference;
|
|
3421
3421
|
|
|
3422
3422
|
/**
|
|
3423
|
-
*
|
|
3423
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3424
3424
|
*/
|
|
3425
|
-
|
|
3425
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3426
3426
|
|
|
3427
3427
|
/**
|
|
3428
3428
|
* Externe Belegnummer
|
|
@@ -3503,9 +3503,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3503
3503
|
deliveryQuantityPackages: number;
|
|
3504
3504
|
|
|
3505
3505
|
/**
|
|
3506
|
-
*
|
|
3506
|
+
* Steuerpflichtig oder steuerfrei
|
|
3507
3507
|
*/
|
|
3508
|
-
|
|
3508
|
+
taxable: boolean;
|
|
3509
3509
|
|
|
3510
3510
|
/**
|
|
3511
3511
|
* Leitweg-ID
|
|
@@ -3513,9 +3513,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3513
3513
|
buyerReference: string;
|
|
3514
3514
|
|
|
3515
3515
|
/**
|
|
3516
|
-
*
|
|
3516
|
+
* Bestellnummer aus Vorbeleg
|
|
3517
3517
|
*/
|
|
3518
|
-
|
|
3518
|
+
referencedOrderNumber: string;
|
|
3519
3519
|
|
|
3520
3520
|
/**
|
|
3521
3521
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -3563,14 +3563,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3563
3563
|
accountId: number;
|
|
3564
3564
|
|
|
3565
3565
|
/**
|
|
3566
|
-
* Länderkennzeichen
|
|
3566
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
3567
3567
|
*/
|
|
3568
|
-
|
|
3568
|
+
performanceCountryCode: string;
|
|
3569
3569
|
|
|
3570
3570
|
/**
|
|
3571
|
-
* Länderkennzeichen
|
|
3571
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
3572
3572
|
*/
|
|
3573
|
-
|
|
3573
|
+
sourceCountryCode: string;
|
|
3574
3574
|
|
|
3575
3575
|
/**
|
|
3576
3576
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -3613,14 +3613,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3613
3613
|
supplierNumber: string;
|
|
3614
3614
|
|
|
3615
3615
|
/**
|
|
3616
|
-
*
|
|
3616
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
3617
3617
|
*/
|
|
3618
|
-
|
|
3618
|
+
deliveryApproved: boolean;
|
|
3619
3619
|
|
|
3620
3620
|
/**
|
|
3621
|
-
*
|
|
3621
|
+
* Gesamtpreis brutto
|
|
3622
3622
|
*/
|
|
3623
|
-
|
|
3623
|
+
totalGrossPrice: number;
|
|
3624
3624
|
|
|
3625
3625
|
/**
|
|
3626
3626
|
* Kassen-Zahlungspositionen
|
|
@@ -3690,14 +3690,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3690
3690
|
accountNumber: string;
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
3693
|
-
*
|
|
3693
|
+
* Referenz auf Zahlungsbedingung
|
|
3694
3694
|
*/
|
|
3695
|
-
|
|
3695
|
+
paymentTermRef: PaymentTermRef;
|
|
3696
3696
|
|
|
3697
3697
|
/**
|
|
3698
|
-
*
|
|
3698
|
+
* Wird vom Workflow verarbeitet?
|
|
3699
3699
|
*/
|
|
3700
|
-
|
|
3700
|
+
processedByWorkflow: boolean;
|
|
3701
3701
|
|
|
3702
3702
|
/**
|
|
3703
3703
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -3730,14 +3730,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3730
3730
|
defaultAddress: DocumentAddress;
|
|
3731
3731
|
|
|
3732
3732
|
/**
|
|
3733
|
-
*
|
|
3733
|
+
* Leistungsdatum
|
|
3734
3734
|
*/
|
|
3735
|
-
|
|
3735
|
+
performanceDate: ScriptingDate;
|
|
3736
3736
|
|
|
3737
3737
|
/**
|
|
3738
|
-
*
|
|
3738
|
+
* Verarbeitungsoption für Stapel
|
|
3739
3739
|
*/
|
|
3740
|
-
|
|
3740
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
3743
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -3765,14 +3765,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3765
3765
|
additionalInfo: DocumentAdditionalInfo;
|
|
3766
3766
|
|
|
3767
3767
|
/**
|
|
3768
|
-
*
|
|
3768
|
+
* Bestelldatum
|
|
3769
3769
|
*/
|
|
3770
|
-
|
|
3770
|
+
orderedOn: ScriptingDate;
|
|
3771
3771
|
|
|
3772
3772
|
/**
|
|
3773
|
-
*
|
|
3773
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
3774
3774
|
*/
|
|
3775
|
-
|
|
3775
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
3776
3776
|
|
|
3777
3777
|
/**
|
|
3778
3778
|
* MetaInformations for this Object
|
|
@@ -3795,14 +3795,14 @@ true wenn die Quittung bezahlt ist
|
|
|
3795
3795
|
dropShipping: boolean;
|
|
3796
3796
|
|
|
3797
3797
|
/**
|
|
3798
|
-
*
|
|
3798
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
3799
3799
|
*/
|
|
3800
|
-
|
|
3800
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
3801
3801
|
|
|
3802
3802
|
/**
|
|
3803
|
-
*
|
|
3803
|
+
* Gesamtpreis netto
|
|
3804
3804
|
*/
|
|
3805
|
-
|
|
3805
|
+
totalNetPrice: number;
|
|
3806
3806
|
|
|
3807
3807
|
/**
|
|
3808
3808
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -3910,9 +3910,9 @@ true wenn die Quittung bezahlt ist
|
|
|
3910
3910
|
customerNumber: string;
|
|
3911
3911
|
|
|
3912
3912
|
/**
|
|
3913
|
-
*
|
|
3913
|
+
* Versandkostenpositionen
|
|
3914
3914
|
*/
|
|
3915
|
-
|
|
3915
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
3916
3916
|
|
|
3917
3917
|
/**
|
|
3918
3918
|
* Statusinstanz des Belegs
|
|
@@ -3920,15 +3920,20 @@ true wenn die Quittung bezahlt ist
|
|
|
3920
3920
|
documentState: DocumentTypeState;
|
|
3921
3921
|
|
|
3922
3922
|
/**
|
|
3923
|
-
*
|
|
3923
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
3924
3924
|
*/
|
|
3925
|
-
|
|
3925
|
+
taxIdentificationNumber: string;
|
|
3926
3926
|
|
|
3927
3927
|
/**
|
|
3928
3928
|
* Rückgeld
|
|
3929
3929
|
*/
|
|
3930
3930
|
posReceiptChangeAmount: number;
|
|
3931
3931
|
|
|
3932
|
+
/**
|
|
3933
|
+
* Referenz auf Lieferbedingung
|
|
3934
|
+
*/
|
|
3935
|
+
deliveryTermRef: ApiObjectReference;
|
|
3936
|
+
|
|
3932
3937
|
/**
|
|
3933
3938
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
3934
3939
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -3936,11 +3941,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
3936
3941
|
*/
|
|
3937
3942
|
posReceiptBalanced: boolean;
|
|
3938
3943
|
|
|
3939
|
-
/**
|
|
3940
|
-
* Referenz auf Lieferbedingung
|
|
3941
|
-
*/
|
|
3942
|
-
deliveryTermRef: ApiObjectReference;
|
|
3943
|
-
|
|
3944
3944
|
/**
|
|
3945
3945
|
* Gesamtbruttogewicht
|
|
3946
3946
|
*/
|
|
@@ -3962,14 +3962,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
3962
3962
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
3963
3963
|
|
|
3964
3964
|
/**
|
|
3965
|
-
*
|
|
3965
|
+
* Rechnungsadresse
|
|
3966
3966
|
*/
|
|
3967
|
-
|
|
3967
|
+
billingAddress: DocumentAddress;
|
|
3968
3968
|
|
|
3969
3969
|
/**
|
|
3970
|
-
*
|
|
3970
|
+
* Status der USt-ID-Prüfung
|
|
3971
3971
|
*/
|
|
3972
|
-
|
|
3972
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
3973
3973
|
|
|
3974
3974
|
/**
|
|
3975
3975
|
* Bestellt durch Ansprechpartner
|
|
@@ -3987,18 +3987,18 @@ export interface DocumentAdditionalInfo {
|
|
|
3987
3987
|
/**
|
|
3988
3988
|
* Steuersachverhalt Herkunft
|
|
3989
3989
|
*/
|
|
3990
|
-
taxSituationOrigin: TaxSituationOrigin;
|
|
3991
|
-
|
|
3992
|
-
/**
|
|
3993
|
-
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
3994
|
-
*/
|
|
3995
|
-
contextParameters: Array<AdditionalParameter>;
|
|
3990
|
+
taxSituationOrigin: TaxSituationOrigin;
|
|
3996
3991
|
|
|
3997
3992
|
/**
|
|
3998
3993
|
* Herkunft der Sprache
|
|
3999
3994
|
*/
|
|
4000
3995
|
languageCodeOrigin: LanguageCodeOrigin;
|
|
4001
3996
|
|
|
3997
|
+
/**
|
|
3998
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
3999
|
+
*/
|
|
4000
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4001
|
+
|
|
4002
4002
|
/**
|
|
4003
4003
|
* Herkunft der Käufer-Referenz
|
|
4004
4004
|
*/
|
|
@@ -4130,14 +4130,14 @@ export interface DocumentAddress {
|
|
|
4130
4130
|
postOfficeBox: string;
|
|
4131
4131
|
|
|
4132
4132
|
/**
|
|
4133
|
-
*
|
|
4133
|
+
* country code IsoAlpha3
|
|
4134
4134
|
*/
|
|
4135
|
-
|
|
4135
|
+
countryCode: string;
|
|
4136
4136
|
|
|
4137
4137
|
/**
|
|
4138
|
-
*
|
|
4138
|
+
* Street
|
|
4139
4139
|
*/
|
|
4140
|
-
|
|
4140
|
+
street: string;
|
|
4141
4141
|
|
|
4142
4142
|
/**
|
|
4143
4143
|
* Unique identifier of the Object
|
|
@@ -4155,14 +4155,14 @@ export interface DocumentAddress {
|
|
|
4155
4155
|
info: MetaInfo;
|
|
4156
4156
|
|
|
4157
4157
|
/**
|
|
4158
|
-
*
|
|
4158
|
+
* GLN
|
|
4159
4159
|
*/
|
|
4160
|
-
|
|
4160
|
+
globalLocationNumber: string;
|
|
4161
4161
|
|
|
4162
4162
|
/**
|
|
4163
|
-
*
|
|
4163
|
+
* Lieferart
|
|
4164
4164
|
*/
|
|
4165
|
-
|
|
4165
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4166
4166
|
|
|
4167
4167
|
/**
|
|
4168
4168
|
* Postcode
|
|
@@ -4336,14 +4336,14 @@ export interface DocumentContractDetail {
|
|
|
4336
4336
|
runtimeToDate: ScriptingDate;
|
|
4337
4337
|
|
|
4338
4338
|
/**
|
|
4339
|
-
*
|
|
4339
|
+
* Nächste Fälligkeit
|
|
4340
4340
|
*/
|
|
4341
|
-
|
|
4341
|
+
nextDueDate: ScriptingDate;
|
|
4342
4342
|
|
|
4343
4343
|
/**
|
|
4344
|
-
*
|
|
4344
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
4345
4345
|
*/
|
|
4346
|
-
|
|
4346
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
4347
4347
|
|
|
4348
4348
|
/**
|
|
4349
4349
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -4488,14 +4488,14 @@ export const enum DocumentImportType {
|
|
|
4488
4488
|
export interface DocumentLine {
|
|
4489
4489
|
|
|
4490
4490
|
/**
|
|
4491
|
-
*
|
|
4491
|
+
* Zolltarifnummer
|
|
4492
4492
|
*/
|
|
4493
|
-
|
|
4493
|
+
customsTariffNumber: string;
|
|
4494
4494
|
|
|
4495
4495
|
/**
|
|
4496
|
-
*
|
|
4496
|
+
* Leistungsdatum
|
|
4497
4497
|
*/
|
|
4498
|
-
|
|
4498
|
+
performanceDate: ScriptingDate;
|
|
4499
4499
|
|
|
4500
4500
|
/**
|
|
4501
4501
|
* Land der Herkunft
|
|
@@ -4503,14 +4503,14 @@ export interface DocumentLine {
|
|
|
4503
4503
|
country: CountryReference;
|
|
4504
4504
|
|
|
4505
4505
|
/**
|
|
4506
|
-
*
|
|
4506
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4507
4507
|
*/
|
|
4508
|
-
|
|
4508
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4509
4509
|
|
|
4510
4510
|
/**
|
|
4511
|
-
*
|
|
4511
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4512
4512
|
*/
|
|
4513
|
-
|
|
4513
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4514
4514
|
|
|
4515
4515
|
/**
|
|
4516
4516
|
* verarbeitete Menge
|
|
@@ -4577,11 +4577,6 @@ export interface DocumentLine {
|
|
|
4577
4577
|
*/
|
|
4578
4578
|
price: number;
|
|
4579
4579
|
|
|
4580
|
-
/**
|
|
4581
|
-
* Positionstyp
|
|
4582
|
-
*/
|
|
4583
|
-
lineType: DocumentLineType;
|
|
4584
|
-
|
|
4585
4580
|
/**
|
|
4586
4581
|
* Gesamtpreis Position in Basiswährung
|
|
4587
4582
|
*/
|
|
@@ -4592,6 +4587,11 @@ export interface DocumentLine {
|
|
|
4592
4587
|
*/
|
|
4593
4588
|
financeBooking: DocumentFinanceBooking;
|
|
4594
4589
|
|
|
4590
|
+
/**
|
|
4591
|
+
* Positionstyp
|
|
4592
|
+
*/
|
|
4593
|
+
lineType: DocumentLineType;
|
|
4594
|
+
|
|
4595
4595
|
/**
|
|
4596
4596
|
* vorgeorderte Menge in Pickvorgang
|
|
4597
4597
|
*/
|
|
@@ -4623,9 +4623,9 @@ export interface DocumentLine {
|
|
|
4623
4623
|
id: number;
|
|
4624
4624
|
|
|
4625
4625
|
/**
|
|
4626
|
-
*
|
|
4626
|
+
* Serientyp
|
|
4627
4627
|
*/
|
|
4628
|
-
|
|
4628
|
+
serialType: ArticleSerialType;
|
|
4629
4629
|
|
|
4630
4630
|
/**
|
|
4631
4631
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -4638,9 +4638,9 @@ export interface DocumentLine {
|
|
|
4638
4638
|
externalReferenceVds: string;
|
|
4639
4639
|
|
|
4640
4640
|
/**
|
|
4641
|
-
*
|
|
4641
|
+
* Preis pro Einheit in Basiswährung
|
|
4642
4642
|
*/
|
|
4643
|
-
|
|
4643
|
+
basePrice: number;
|
|
4644
4644
|
|
|
4645
4645
|
/**
|
|
4646
4646
|
* MetaInformations for this Object
|
|
@@ -4648,14 +4648,14 @@ export interface DocumentLine {
|
|
|
4648
4648
|
info: MetaInfo;
|
|
4649
4649
|
|
|
4650
4650
|
/**
|
|
4651
|
-
*
|
|
4651
|
+
* Steuerschema
|
|
4652
4652
|
*/
|
|
4653
|
-
|
|
4653
|
+
taxSchemaRef: ApiObjectReference;
|
|
4654
4654
|
|
|
4655
4655
|
/**
|
|
4656
|
-
*
|
|
4656
|
+
* Preiseinheit
|
|
4657
4657
|
*/
|
|
4658
|
-
|
|
4658
|
+
priceUnit: number;
|
|
4659
4659
|
|
|
4660
4660
|
/**
|
|
4661
4661
|
* Lieferart
|
|
@@ -4833,14 +4833,14 @@ export interface DocumentLine {
|
|
|
4833
4833
|
productType: ProductType;
|
|
4834
4834
|
|
|
4835
4835
|
/**
|
|
4836
|
-
*
|
|
4836
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
4837
4837
|
*/
|
|
4838
|
-
|
|
4838
|
+
baseSalesValueNet: number;
|
|
4839
4839
|
|
|
4840
4840
|
/**
|
|
4841
|
-
*
|
|
4841
|
+
* Vertragsinformationen
|
|
4842
4842
|
*/
|
|
4843
|
-
|
|
4843
|
+
contractDetail: DocumentContractDetail;
|
|
4844
4844
|
|
|
4845
4845
|
/**
|
|
4846
4846
|
* Einheit Nettogewicht
|
|
@@ -5077,14 +5077,14 @@ export interface DocumentLineComponent {
|
|
|
5077
5077
|
custom: EavDocumentlinecomponent;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* Gelieferte Menge
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
quantityCommitted: number;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
|
-
*
|
|
5085
|
+
* Referenz auf den Artikel der Komponente
|
|
5086
5086
|
*/
|
|
5087
|
-
|
|
5087
|
+
articleId: number;
|
|
5088
5088
|
|
|
5089
5089
|
/**
|
|
5090
5090
|
* Beschreibung des Artikels
|
|
@@ -5239,14 +5239,14 @@ export interface DocumentLineRef {
|
|
|
5239
5239
|
quantity: number;
|
|
5240
5240
|
|
|
5241
5241
|
/**
|
|
5242
|
-
*
|
|
5242
|
+
* Belegart
|
|
5243
5243
|
*/
|
|
5244
|
-
|
|
5244
|
+
documentType: string;
|
|
5245
5245
|
|
|
5246
5246
|
/**
|
|
5247
|
-
*
|
|
5247
|
+
* Artikelnummer
|
|
5248
5248
|
*/
|
|
5249
|
-
|
|
5249
|
+
articleNumber: string;
|
|
5250
5250
|
|
|
5251
5251
|
/**
|
|
5252
5252
|
* price per quantity [GROSS, NET]
|
|
@@ -5486,14 +5486,14 @@ export interface DocumentRef {
|
|
|
5486
5486
|
export interface DocumentShippingCost {
|
|
5487
5487
|
|
|
5488
5488
|
/**
|
|
5489
|
-
*
|
|
5489
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
5490
5490
|
*/
|
|
5491
|
-
|
|
5491
|
+
manualCosts: boolean;
|
|
5492
5492
|
|
|
5493
5493
|
/**
|
|
5494
|
-
*
|
|
5494
|
+
* Die Versandkosten
|
|
5495
5495
|
*/
|
|
5496
|
-
|
|
5496
|
+
costs: number;
|
|
5497
5497
|
|
|
5498
5498
|
/**
|
|
5499
5499
|
* Keine Versandkosten (freier Versand)
|
|
@@ -5623,14 +5623,14 @@ export interface DocumentText {
|
|
|
5623
5623
|
textTemplateId: number;
|
|
5624
5624
|
|
|
5625
5625
|
/**
|
|
5626
|
-
*
|
|
5626
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
5627
5627
|
*/
|
|
5628
|
-
|
|
5628
|
+
textPosition: TextPosition;
|
|
5629
5629
|
|
|
5630
5630
|
/**
|
|
5631
|
-
*
|
|
5631
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
5632
5632
|
*/
|
|
5633
|
-
|
|
5633
|
+
deleted: boolean;
|
|
5634
5634
|
|
|
5635
5635
|
/**
|
|
5636
5636
|
* Unique identifier of the Object
|
|
@@ -6291,26 +6291,26 @@ export interface PaymentTerm {
|
|
|
6291
6291
|
*/
|
|
6292
6292
|
paymentDiscount2: number;
|
|
6293
6293
|
|
|
6294
|
-
/**
|
|
6295
|
-
* Percent for Discount 1
|
|
6296
|
-
*/
|
|
6297
|
-
paymentDiscount1: number;
|
|
6298
|
-
|
|
6299
6294
|
/**
|
|
6300
6295
|
* printDescription
|
|
6301
6296
|
*/
|
|
6302
6297
|
printDescription: string;
|
|
6303
6298
|
|
|
6304
6299
|
/**
|
|
6305
|
-
*
|
|
6300
|
+
* Percent for Discount 1
|
|
6306
6301
|
*/
|
|
6307
|
-
|
|
6302
|
+
paymentDiscount1: number;
|
|
6308
6303
|
|
|
6309
6304
|
/**
|
|
6310
6305
|
* for deposit: remaining term
|
|
6311
6306
|
*/
|
|
6312
6307
|
remainingTermRef: ApiObjectReference;
|
|
6313
6308
|
|
|
6309
|
+
/**
|
|
6310
|
+
* Days for Discount 1
|
|
6311
|
+
*/
|
|
6312
|
+
paymentDays1: number;
|
|
6313
|
+
|
|
6314
6314
|
/**
|
|
6315
6315
|
* Days for Discount 2
|
|
6316
6316
|
*/
|
|
@@ -6590,14 +6590,14 @@ export const enum PickingType {
|
|
|
6590
6590
|
export interface Picklist {
|
|
6591
6591
|
|
|
6592
6592
|
/**
|
|
6593
|
-
*
|
|
6593
|
+
* Ziellager für Nachschub
|
|
6594
6594
|
*/
|
|
6595
|
-
|
|
6595
|
+
targetStorageRef: ApiObjectReference;
|
|
6596
6596
|
|
|
6597
6597
|
/**
|
|
6598
|
-
*
|
|
6598
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
6599
6599
|
*/
|
|
6600
|
-
|
|
6600
|
+
usedTemplate: PicklistTemplate;
|
|
6601
6601
|
|
|
6602
6602
|
/**
|
|
6603
6603
|
* Nummer der Pickliste
|
|
@@ -6693,14 +6693,14 @@ export interface PicklistLine {
|
|
|
6693
6693
|
articleNumber: string;
|
|
6694
6694
|
|
|
6695
6695
|
/**
|
|
6696
|
-
*
|
|
6696
|
+
* Art der Position
|
|
6697
6697
|
*/
|
|
6698
|
-
|
|
6698
|
+
lineType: PicklistLineType;
|
|
6699
6699
|
|
|
6700
6700
|
/**
|
|
6701
|
-
*
|
|
6701
|
+
* Lagernummer
|
|
6702
6702
|
*/
|
|
6703
|
-
|
|
6703
|
+
storageNumber: string;
|
|
6704
6704
|
|
|
6705
6705
|
/**
|
|
6706
6706
|
* ID der Ziel-Dokumentposition
|
|
@@ -6839,14 +6839,14 @@ export interface PicklistLineComponent {
|
|
|
6839
6839
|
targetDocumentLineComponentId: number;
|
|
6840
6840
|
|
|
6841
6841
|
/**
|
|
6842
|
-
*
|
|
6842
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
6843
6843
|
*/
|
|
6844
|
-
|
|
6844
|
+
quantityPerAssemblyGroup: number;
|
|
6845
6845
|
|
|
6846
6846
|
/**
|
|
6847
|
-
*
|
|
6847
|
+
* abweichende Artikelbezeichnung
|
|
6848
6848
|
*/
|
|
6849
|
-
|
|
6849
|
+
articleAlternativeName: string;
|
|
6850
6850
|
|
|
6851
6851
|
/**
|
|
6852
6852
|
* Verpackte Menge der Position
|
|
@@ -7194,14 +7194,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7194
7194
|
allowPickingOfServiceArticles: boolean;
|
|
7195
7195
|
|
|
7196
7196
|
/**
|
|
7197
|
-
*
|
|
7197
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
7198
7198
|
*/
|
|
7199
|
-
|
|
7199
|
+
useDigitalPicklist: boolean;
|
|
7200
7200
|
|
|
7201
7201
|
/**
|
|
7202
|
-
*
|
|
7202
|
+
* Sammelbestätigung erlauben
|
|
7203
7203
|
*/
|
|
7204
|
-
|
|
7204
|
+
allowFullConfirmation: boolean;
|
|
7205
7205
|
|
|
7206
7206
|
/**
|
|
7207
7207
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -7345,14 +7345,14 @@ export interface ProductDiscount {
|
|
|
7345
7345
|
validFrom: ScriptingDate;
|
|
7346
7346
|
|
|
7347
7347
|
/**
|
|
7348
|
-
*
|
|
7348
|
+
* Bestimmt die Art des Rabatts
|
|
7349
7349
|
*/
|
|
7350
|
-
|
|
7350
|
+
modifierType: PriceModifierType;
|
|
7351
7351
|
|
|
7352
7352
|
/**
|
|
7353
|
-
*
|
|
7353
|
+
* Warengruppe
|
|
7354
7354
|
*/
|
|
7355
|
-
|
|
7355
|
+
productGroupRef: ApiObjectReference;
|
|
7356
7356
|
|
|
7357
7357
|
/**
|
|
7358
7358
|
* Version Identifier for this Object (for PUT)
|
|
@@ -7370,14 +7370,14 @@ export interface ProductDiscount {
|
|
|
7370
7370
|
currencyRef: CurrencyReference;
|
|
7371
7371
|
|
|
7372
7372
|
/**
|
|
7373
|
-
*
|
|
7373
|
+
* Wert des Rabatts
|
|
7374
7374
|
*/
|
|
7375
|
-
|
|
7375
|
+
modifierValue: number;
|
|
7376
7376
|
|
|
7377
7377
|
/**
|
|
7378
|
-
*
|
|
7378
|
+
* Preisgruppe
|
|
7379
7379
|
*/
|
|
7380
|
-
|
|
7380
|
+
priceGroupRef: ApiObjectReference;
|
|
7381
7381
|
|
|
7382
7382
|
/**
|
|
7383
7383
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -7549,14 +7549,14 @@ export interface ProductPrice {
|
|
|
7549
7549
|
manufacturerRef: ApiObjectReference;
|
|
7550
7550
|
|
|
7551
7551
|
/**
|
|
7552
|
-
*
|
|
7552
|
+
* Netto-Preis
|
|
7553
7553
|
*/
|
|
7554
|
-
|
|
7554
|
+
netPrice: number;
|
|
7555
7555
|
|
|
7556
7556
|
/**
|
|
7557
|
-
*
|
|
7557
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
7558
7558
|
*/
|
|
7559
|
-
|
|
7559
|
+
articleRef: ApiObjectReference;
|
|
7560
7560
|
|
|
7561
7561
|
/**
|
|
7562
7562
|
* Brutto-Preis
|
|
@@ -7604,14 +7604,14 @@ export interface ProductPrice {
|
|
|
7604
7604
|
specialOfferPrice: boolean;
|
|
7605
7605
|
|
|
7606
7606
|
/**
|
|
7607
|
-
*
|
|
7607
|
+
* Gültig bis
|
|
7608
7608
|
*/
|
|
7609
|
-
|
|
7609
|
+
validUntil: ScriptingDate;
|
|
7610
7610
|
|
|
7611
7611
|
/**
|
|
7612
|
-
*
|
|
7612
|
+
* Preisbasis
|
|
7613
7613
|
*/
|
|
7614
|
-
|
|
7614
|
+
priceBase: ArticlePriceBase;
|
|
7615
7615
|
|
|
7616
7616
|
/**
|
|
7617
7617
|
* Account, für den der Preis gültig ist
|
|
@@ -7678,14 +7678,14 @@ export interface RequestDocument {
|
|
|
7678
7678
|
cashDrawerId: number;
|
|
7679
7679
|
|
|
7680
7680
|
/**
|
|
7681
|
-
*
|
|
7681
|
+
* Leistungsdatum
|
|
7682
7682
|
*/
|
|
7683
|
-
|
|
7683
|
+
performanceDate: ScriptingDate;
|
|
7684
7684
|
|
|
7685
7685
|
/**
|
|
7686
|
-
*
|
|
7686
|
+
* Der Anzahlungsbetrag
|
|
7687
7687
|
*/
|
|
7688
|
-
|
|
7688
|
+
depositPaymentAmount: number;
|
|
7689
7689
|
|
|
7690
7690
|
/**
|
|
7691
7691
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -7866,14 +7866,14 @@ export interface RequestDocumentLine {
|
|
|
7866
7866
|
commissions: Array<RequestDocumentLineCommission>;
|
|
7867
7867
|
|
|
7868
7868
|
/**
|
|
7869
|
-
*
|
|
7869
|
+
* FiBu-Angaben
|
|
7870
7870
|
*/
|
|
7871
|
-
|
|
7871
|
+
financeBooking: DocumentFinanceBooking;
|
|
7872
7872
|
|
|
7873
7873
|
/**
|
|
7874
|
-
*
|
|
7874
|
+
* Typ dieser Position
|
|
7875
7875
|
*/
|
|
7876
|
-
|
|
7876
|
+
lineType: DocumentLineType;
|
|
7877
7877
|
|
|
7878
7878
|
/**
|
|
7879
7879
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -7956,14 +7956,14 @@ export interface RequestDocumentLine {
|
|
|
7956
7956
|
externalArticleNumber: string;
|
|
7957
7957
|
|
|
7958
7958
|
/**
|
|
7959
|
-
*
|
|
7959
|
+
* ID der Quell-Belegposition
|
|
7960
7960
|
*/
|
|
7961
|
-
|
|
7961
|
+
sourceLineId: number;
|
|
7962
7962
|
|
|
7963
7963
|
/**
|
|
7964
|
-
*
|
|
7964
|
+
* Buchungen zu dieser Belegposition
|
|
7965
7965
|
*/
|
|
7966
|
-
|
|
7966
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
7967
7967
|
|
|
7968
7968
|
/**
|
|
7969
7969
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -8071,14 +8071,14 @@ export interface RequestDocumentText {
|
|
|
8071
8071
|
export interface RevenueCalculation {
|
|
8072
8072
|
|
|
8073
8073
|
/**
|
|
8074
|
-
*
|
|
8074
|
+
* Netto Umsatz
|
|
8075
8075
|
*/
|
|
8076
|
-
|
|
8076
|
+
salesValue: number;
|
|
8077
8077
|
|
|
8078
8078
|
/**
|
|
8079
|
-
*
|
|
8079
|
+
* Deckungsbeitrag (absolut)
|
|
8080
8080
|
*/
|
|
8081
|
-
|
|
8081
|
+
revenue: number;
|
|
8082
8082
|
|
|
8083
8083
|
/**
|
|
8084
8084
|
* Einkaufspreis
|
|
@@ -8692,14 +8692,14 @@ export interface ShelfDocumentType {
|
|
|
8692
8692
|
active: boolean;
|
|
8693
8693
|
|
|
8694
8694
|
/**
|
|
8695
|
-
*
|
|
8695
|
+
* label of type
|
|
8696
8696
|
*/
|
|
8697
|
-
|
|
8697
|
+
label: string;
|
|
8698
8698
|
|
|
8699
8699
|
/**
|
|
8700
|
-
*
|
|
8700
|
+
* access level or reading
|
|
8701
8701
|
*/
|
|
8702
|
-
|
|
8702
|
+
accessLevelRead: number;
|
|
8703
8703
|
|
|
8704
8704
|
/**
|
|
8705
8705
|
* storage rule for revisions
|
|
@@ -8745,14 +8745,14 @@ export interface ShelfFile {
|
|
|
8745
8745
|
subFiles: Array<SubFileInfo>;
|
|
8746
8746
|
|
|
8747
8747
|
/**
|
|
8748
|
-
*
|
|
8748
|
+
* fileSize
|
|
8749
8749
|
*/
|
|
8750
|
-
|
|
8750
|
+
fileSize: number;
|
|
8751
8751
|
|
|
8752
8752
|
/**
|
|
8753
|
-
*
|
|
8753
|
+
* revision number of this file
|
|
8754
8754
|
*/
|
|
8755
|
-
|
|
8755
|
+
revisionNumber: number;
|
|
8756
8756
|
|
|
8757
8757
|
/**
|
|
8758
8758
|
* file-extension of this entry
|
|
@@ -8831,14 +8831,14 @@ export interface ShelfShare {
|
|
|
8831
8831
|
publishState: ShelfSharePublishState;
|
|
8832
8832
|
|
|
8833
8833
|
/**
|
|
8834
|
-
*
|
|
8834
|
+
* Freifelder
|
|
8835
8835
|
*/
|
|
8836
|
-
|
|
8836
|
+
custom: EavShelfshare;
|
|
8837
8837
|
|
|
8838
8838
|
/**
|
|
8839
|
-
*
|
|
8839
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
8840
8840
|
*/
|
|
8841
|
-
|
|
8841
|
+
publicUrlDurationInMinutes: number;
|
|
8842
8842
|
|
|
8843
8843
|
/**
|
|
8844
8844
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -9058,11 +9058,6 @@ export interface Supplier {
|
|
|
9058
9058
|
*/
|
|
9059
9059
|
info: MetaInfo;
|
|
9060
9060
|
|
|
9061
|
-
/**
|
|
9062
|
-
* Lieferantengruppe
|
|
9063
|
-
*/
|
|
9064
|
-
supplierGroupRef: ApiObjectReference;
|
|
9065
|
-
|
|
9066
9061
|
/**
|
|
9067
9062
|
* reference to the delivery method
|
|
9068
9063
|
*/
|
|
@@ -9073,6 +9068,11 @@ export interface Supplier {
|
|
|
9073
9068
|
*/
|
|
9074
9069
|
taxable: boolean;
|
|
9075
9070
|
|
|
9071
|
+
/**
|
|
9072
|
+
* Lieferantengruppe
|
|
9073
|
+
*/
|
|
9074
|
+
supplierGroupRef: ApiObjectReference;
|
|
9075
|
+
|
|
9076
9076
|
/**
|
|
9077
9077
|
* Mahnen?
|
|
9078
9078
|
*/
|