@vario-software/types 2026.22.1 → 2026.22.3
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 +26 -26
- package/scripting/types.d.ts +268 -268
package/scripting/types.d.ts
CHANGED
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
payablesSum: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Kreditlimit
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
maximalLoan: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* weight and size w.o. packaging
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
netMetric: Article$Metric;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -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,9 +1299,9 @@ 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
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* alternative name of this product
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
alternativeName: string;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* provisionsberechtiger Artikel?
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
commissionable: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* Nur manuelle Produktion
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
onlyManualFabrication: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1509,9 +1509,9 @@ export interface ArticleCustomer {
|
|
|
1509
1509
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1510
1510
|
|
|
1511
1511
|
/**
|
|
1512
|
-
*
|
|
1512
|
+
* Kunden-Preise
|
|
1513
1513
|
*/
|
|
1514
|
-
|
|
1514
|
+
productPrices: Array<ProductPrice>;
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
1517
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
@@ -1519,9 +1519,9 @@ export interface ArticleCustomer {
|
|
|
1519
1519
|
useDeviatingArticleDescription: boolean;
|
|
1520
1520
|
|
|
1521
1521
|
/**
|
|
1522
|
-
*
|
|
1522
|
+
* Referenced Article
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
articleId: number;
|
|
1525
1525
|
|
|
1526
1526
|
/**
|
|
1527
1527
|
* Aktiv?
|
|
@@ -1670,14 +1670,14 @@ export interface ArticleListing {
|
|
|
1670
1670
|
proposedLowestPriceGross: number;
|
|
1671
1671
|
|
|
1672
1672
|
/**
|
|
1673
|
-
* der
|
|
1673
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1674
1674
|
*/
|
|
1675
|
-
|
|
1675
|
+
customLowestPriceGross: number;
|
|
1676
1676
|
|
|
1677
1677
|
/**
|
|
1678
|
-
*
|
|
1678
|
+
* der Sales Channel
|
|
1679
1679
|
*/
|
|
1680
|
-
|
|
1680
|
+
salesChannelRef: ApiObjectReference;
|
|
1681
1681
|
|
|
1682
1682
|
/**
|
|
1683
1683
|
* soll der Artikel gelistet werden
|
|
@@ -1710,14 +1710,14 @@ export interface ArticleListing {
|
|
|
1710
1710
|
alternativeName: WithDefaults<String>;
|
|
1711
1711
|
|
|
1712
1712
|
/**
|
|
1713
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1713
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1714
1714
|
*/
|
|
1715
|
-
|
|
1715
|
+
proposedLowestPriceNet: number;
|
|
1716
1716
|
|
|
1717
1717
|
/**
|
|
1718
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1718
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1719
1719
|
*/
|
|
1720
|
-
|
|
1720
|
+
customLowestPriceNet: number;
|
|
1721
1721
|
|
|
1722
1722
|
/**
|
|
1723
1723
|
* der aktuelle listing stand
|
|
@@ -1878,14 +1878,14 @@ export const enum ArticleSerialType {
|
|
|
1878
1878
|
export interface ArticleStorage {
|
|
1879
1879
|
|
|
1880
1880
|
/**
|
|
1881
|
-
*
|
|
1881
|
+
* Bestand im Lager
|
|
1882
1882
|
*/
|
|
1883
|
-
|
|
1883
|
+
quantityInStock: number;
|
|
1884
1884
|
|
|
1885
1885
|
/**
|
|
1886
|
-
*
|
|
1886
|
+
* Nachschub ab
|
|
1887
1887
|
*/
|
|
1888
|
-
|
|
1888
|
+
replenishmentFrom: number;
|
|
1889
1889
|
|
|
1890
1890
|
/**
|
|
1891
1891
|
* Bestellte Menge
|
|
@@ -1903,14 +1903,14 @@ export interface ArticleStorage {
|
|
|
1903
1903
|
reorderPoint: number;
|
|
1904
1904
|
|
|
1905
1905
|
/**
|
|
1906
|
-
*
|
|
1906
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1907
1907
|
*/
|
|
1908
|
-
|
|
1908
|
+
virtualStockAmount: number;
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
1911
|
-
*
|
|
1911
|
+
* Nachschub auf
|
|
1912
1912
|
*/
|
|
1913
|
-
|
|
1913
|
+
replenishmentOn: number;
|
|
1914
1914
|
|
|
1915
1915
|
/**
|
|
1916
1916
|
* Reservierte Menge
|
|
@@ -1953,14 +1953,14 @@ export interface ArticleStorage {
|
|
|
1953
1953
|
storageRef: ApiObjectReference;
|
|
1954
1954
|
|
|
1955
1955
|
/**
|
|
1956
|
-
*
|
|
1956
|
+
* Vorgabe-Lagerplätze
|
|
1957
1957
|
*/
|
|
1958
|
-
|
|
1958
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
|
-
*
|
|
1961
|
+
* Sollbestand
|
|
1962
1962
|
*/
|
|
1963
|
-
|
|
1963
|
+
targetStock: number;
|
|
1964
1964
|
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Aktuelle Menge in Produktion
|
|
@@ -1980,11 +1980,6 @@ export interface ArticleStorage {
|
|
|
1980
1980
|
|
|
1981
1981
|
export interface ArticleSupplier {
|
|
1982
1982
|
|
|
1983
|
-
/**
|
|
1984
|
-
* Lieferanten-Meldebestand
|
|
1985
|
-
*/
|
|
1986
|
-
supplierReportingStock: number;
|
|
1987
|
-
|
|
1988
1983
|
/**
|
|
1989
1984
|
* Anzeigename des Accounts
|
|
1990
1985
|
*/
|
|
@@ -1996,15 +1991,20 @@ export interface ArticleSupplier {
|
|
|
1996
1991
|
useSupplierArticleDescription: boolean;
|
|
1997
1992
|
|
|
1998
1993
|
/**
|
|
1999
|
-
*
|
|
1994
|
+
* Lieferanten-Meldebestand
|
|
2000
1995
|
*/
|
|
2001
|
-
|
|
1996
|
+
supplierReportingStock: number;
|
|
2002
1997
|
|
|
2003
1998
|
/**
|
|
2004
1999
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2005
2000
|
*/
|
|
2006
2001
|
useSupplierArticleIdentifier: boolean;
|
|
2007
2002
|
|
|
2003
|
+
/**
|
|
2004
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2005
|
+
*/
|
|
2006
|
+
deliveryTime: number;
|
|
2007
|
+
|
|
2008
2008
|
/**
|
|
2009
2009
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2010
2010
|
*/
|
|
@@ -2061,14 +2061,14 @@ export interface ArticleSupplier {
|
|
|
2061
2061
|
packagingUnit: number;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
|
-
*
|
|
2064
|
+
* Lieferanten-Preise
|
|
2065
2065
|
*/
|
|
2066
|
-
|
|
2066
|
+
productPrices: Array<ProductPrice>;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
|
-
*
|
|
2069
|
+
* Referenced Article
|
|
2070
2070
|
*/
|
|
2071
|
-
|
|
2071
|
+
articleId: number;
|
|
2072
2072
|
|
|
2073
2073
|
/**
|
|
2074
2074
|
* Aktiv?
|
|
@@ -2106,14 +2106,14 @@ export interface ArticleSupplier {
|
|
|
2106
2106
|
defaultNetPrice: number;
|
|
2107
2107
|
|
|
2108
2108
|
/**
|
|
2109
|
-
*
|
|
2109
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2110
2110
|
*/
|
|
2111
|
-
|
|
2111
|
+
orderOnComponentBase: boolean;
|
|
2112
2112
|
|
|
2113
2113
|
/**
|
|
2114
|
-
*
|
|
2114
|
+
* Einkaufseinheit
|
|
2115
2115
|
*/
|
|
2116
|
-
|
|
2116
|
+
purchaseUnit: number;
|
|
2117
2117
|
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Referenced Supplier-Account
|
|
@@ -2678,14 +2678,14 @@ export interface CrmDeal {
|
|
|
2678
2678
|
info: MetaInfo;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
|
-
*
|
|
2681
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2682
2682
|
*/
|
|
2683
|
-
|
|
2683
|
+
assignedUserRef: ApiObjectReference;
|
|
2684
2684
|
|
|
2685
2685
|
/**
|
|
2686
|
-
*
|
|
2686
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2687
2687
|
*/
|
|
2688
|
-
|
|
2688
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2689
2689
|
|
|
2690
2690
|
/**
|
|
2691
2691
|
* Chance (in Prozent)
|
|
@@ -2959,14 +2959,14 @@ export interface CrmProject {
|
|
|
2959
2959
|
priorityRef: ApiObjectReference;
|
|
2960
2960
|
|
|
2961
2961
|
/**
|
|
2962
|
-
*
|
|
2962
|
+
* Projektleiter vom Auftragnehmer
|
|
2963
2963
|
*/
|
|
2964
|
-
|
|
2964
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2965
2965
|
|
|
2966
2966
|
/**
|
|
2967
|
-
*
|
|
2967
|
+
* Phase
|
|
2968
2968
|
*/
|
|
2969
|
-
|
|
2969
|
+
phaseRef: ApiObjectReference;
|
|
2970
2970
|
|
|
2971
2971
|
/**
|
|
2972
2972
|
* Aufgaben-Nummer
|
|
@@ -2984,14 +2984,14 @@ export interface CrmProject {
|
|
|
2984
2984
|
billedTimes: number;
|
|
2985
2985
|
|
|
2986
2986
|
/**
|
|
2987
|
-
*
|
|
2987
|
+
* Geplanter Projektzeitraum (von)
|
|
2988
2988
|
*/
|
|
2989
|
-
|
|
2989
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2990
2990
|
|
|
2991
2991
|
/**
|
|
2992
|
-
*
|
|
2992
|
+
* Einkaufsbelege
|
|
2993
2993
|
*/
|
|
2994
|
-
|
|
2994
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2995
2995
|
|
|
2996
2996
|
/**
|
|
2997
2997
|
* Verkaufsbelege
|
|
@@ -3269,11 +3269,6 @@ export interface CrmSubType {
|
|
|
3269
3269
|
|
|
3270
3270
|
export interface CrmTask {
|
|
3271
3271
|
|
|
3272
|
-
/**
|
|
3273
|
-
* Liste von Erinnerungen
|
|
3274
|
-
*/
|
|
3275
|
-
reminders: Array<CrmReminder>;
|
|
3276
|
-
|
|
3277
3272
|
/**
|
|
3278
3273
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3279
3274
|
*/
|
|
@@ -3284,6 +3279,11 @@ export interface CrmTask {
|
|
|
3284
3279
|
*/
|
|
3285
3280
|
customerOfferRef: DocumentRef;
|
|
3286
3281
|
|
|
3282
|
+
/**
|
|
3283
|
+
* Liste von Erinnerungen
|
|
3284
|
+
*/
|
|
3285
|
+
reminders: Array<CrmReminder>;
|
|
3286
|
+
|
|
3287
3287
|
/**
|
|
3288
3288
|
* Notizen
|
|
3289
3289
|
*/
|
|
@@ -3465,14 +3465,14 @@ export interface CrmTask {
|
|
|
3465
3465
|
assignedUserRef: ApiObjectReference;
|
|
3466
3466
|
|
|
3467
3467
|
/**
|
|
3468
|
-
*
|
|
3468
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3469
3469
|
*/
|
|
3470
|
-
|
|
3470
|
+
externalRecordedTimes: number;
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Beauftragte Zeit in Sekunden
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
effortCommissioned: number;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3649,14 +3649,14 @@ export interface CurrencyReference {
|
|
|
3649
3649
|
export interface Customer {
|
|
3650
3650
|
|
|
3651
3651
|
/**
|
|
3652
|
-
*
|
|
3652
|
+
* Option für die Stapelverarbeitung
|
|
3653
3653
|
*/
|
|
3654
|
-
|
|
3654
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3655
3655
|
|
|
3656
3656
|
/**
|
|
3657
|
-
*
|
|
3657
|
+
* reference to customer group
|
|
3658
3658
|
*/
|
|
3659
|
-
|
|
3659
|
+
customerGroupRef: ApiObjectReference;
|
|
3660
3660
|
|
|
3661
3661
|
/**
|
|
3662
3662
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3674,14 +3674,14 @@ export interface Customer {
|
|
|
3674
3674
|
dueDate: ScriptingDate;
|
|
3675
3675
|
|
|
3676
3676
|
/**
|
|
3677
|
-
*
|
|
3677
|
+
* Maximal mögliche Lieferungen
|
|
3678
3678
|
*/
|
|
3679
|
-
|
|
3679
|
+
maxDeliveries: number;
|
|
3680
3680
|
|
|
3681
3681
|
/**
|
|
3682
|
-
*
|
|
3682
|
+
* collective billable
|
|
3683
3683
|
*/
|
|
3684
|
-
|
|
3684
|
+
collectiveBillable: boolean;
|
|
3685
3685
|
|
|
3686
3686
|
/**
|
|
3687
3687
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3709,14 +3709,14 @@ export interface Customer {
|
|
|
3709
3709
|
stackProcessingPriority: number;
|
|
3710
3710
|
|
|
3711
3711
|
/**
|
|
3712
|
-
*
|
|
3712
|
+
* reference to product price group
|
|
3713
3713
|
*/
|
|
3714
|
-
|
|
3714
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3715
3715
|
|
|
3716
3716
|
/**
|
|
3717
|
-
*
|
|
3717
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3718
3718
|
*/
|
|
3719
|
-
|
|
3719
|
+
collectiveInvoiceManually: boolean;
|
|
3720
3720
|
|
|
3721
3721
|
/**
|
|
3722
3722
|
* Unique identifier of the Object
|
|
@@ -3953,14 +3953,14 @@ export interface DeliveryMethod {
|
|
|
3953
3953
|
defaultSizeUnit: UnitTypeReference;
|
|
3954
3954
|
|
|
3955
3955
|
/**
|
|
3956
|
-
*
|
|
3956
|
+
* Quelle für Paketgewicht
|
|
3957
3957
|
*/
|
|
3958
|
-
|
|
3958
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3959
3959
|
|
|
3960
3960
|
/**
|
|
3961
|
-
*
|
|
3961
|
+
* translations
|
|
3962
3962
|
*/
|
|
3963
|
-
|
|
3963
|
+
translations: Array<DocumentTypeTerm>;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
3966
|
* Versand-Anbieter
|
|
@@ -4051,14 +4051,14 @@ export interface DeliveryTerm {
|
|
|
4051
4051
|
version: number;
|
|
4052
4052
|
|
|
4053
4053
|
/**
|
|
4054
|
-
*
|
|
4054
|
+
* information, how the shipping charges should be calculated
|
|
4055
4055
|
*/
|
|
4056
|
-
|
|
4056
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4057
4057
|
|
|
4058
4058
|
/**
|
|
4059
|
-
*
|
|
4059
|
+
* translations
|
|
4060
4060
|
*/
|
|
4061
|
-
|
|
4061
|
+
translations: Array<DocumentTypeTerm>;
|
|
4062
4062
|
|
|
4063
4063
|
/**
|
|
4064
4064
|
* Lieferarten
|
|
@@ -4089,14 +4089,14 @@ export interface DeliveryTerm {
|
|
|
4089
4089
|
export interface Document {
|
|
4090
4090
|
|
|
4091
4091
|
/**
|
|
4092
|
-
*
|
|
4092
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4093
4093
|
*/
|
|
4094
|
-
|
|
4094
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4095
4095
|
|
|
4096
4096
|
/**
|
|
4097
|
-
*
|
|
4097
|
+
* Referenz zum Rechnungskonto
|
|
4098
4098
|
*/
|
|
4099
|
-
|
|
4099
|
+
billingAccountRef: ApiObjectReference;
|
|
4100
4100
|
|
|
4101
4101
|
/**
|
|
4102
4102
|
* Externe Belegnummer
|
|
@@ -4134,14 +4134,14 @@ export interface Document {
|
|
|
4134
4134
|
totalVat: number;
|
|
4135
4135
|
|
|
4136
4136
|
/**
|
|
4137
|
-
*
|
|
4137
|
+
* Name der bestellenden Person
|
|
4138
4138
|
*/
|
|
4139
|
-
|
|
4139
|
+
orderedBy: string;
|
|
4140
4140
|
|
|
4141
4141
|
/**
|
|
4142
|
-
*
|
|
4142
|
+
* Standardlager für neue Positionen
|
|
4143
4143
|
*/
|
|
4144
|
-
|
|
4144
|
+
defaultStorageRef: ApiObjectReference;
|
|
4145
4145
|
|
|
4146
4146
|
/**
|
|
4147
4147
|
* Lieferadresse
|
|
@@ -4339,14 +4339,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4339
4339
|
contractDetail: DocumentContractDetail;
|
|
4340
4340
|
|
|
4341
4341
|
/**
|
|
4342
|
-
*
|
|
4342
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4343
4343
|
*/
|
|
4344
|
-
|
|
4344
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4345
4345
|
|
|
4346
4346
|
/**
|
|
4347
|
-
*
|
|
4347
|
+
* Zahlungsplan vorhanden?
|
|
4348
4348
|
*/
|
|
4349
|
-
|
|
4349
|
+
paymentPlan: boolean;
|
|
4350
4350
|
|
|
4351
4351
|
/**
|
|
4352
4352
|
* Produktionsdetails
|
|
@@ -4354,14 +4354,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4354
4354
|
fabricationDetail: DocumentFabricationDetail;
|
|
4355
4355
|
|
|
4356
4356
|
/**
|
|
4357
|
-
*
|
|
4357
|
+
* Berechnungsmodus
|
|
4358
4358
|
*/
|
|
4359
|
-
|
|
4359
|
+
calculationMode: CalculationMode;
|
|
4360
4360
|
|
|
4361
4361
|
/**
|
|
4362
|
-
*
|
|
4362
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4363
4363
|
*/
|
|
4364
|
-
|
|
4364
|
+
accountNumber: string;
|
|
4365
4365
|
|
|
4366
4366
|
/**
|
|
4367
4367
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4374,14 +4374,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4374
4374
|
processedByWorkflow: boolean;
|
|
4375
4375
|
|
|
4376
4376
|
/**
|
|
4377
|
-
*
|
|
4377
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4378
4378
|
*/
|
|
4379
|
-
|
|
4379
|
+
baseTotalDocumentPriceModifier: number;
|
|
4380
4380
|
|
|
4381
4381
|
/**
|
|
4382
|
-
*
|
|
4382
|
+
* Telefon an Versender übergeben
|
|
4383
4383
|
*/
|
|
4384
|
-
|
|
4384
|
+
forwardPhoneToShipper: boolean;
|
|
4385
4385
|
|
|
4386
4386
|
/**
|
|
4387
4387
|
* Liste der Belegtexte
|
|
@@ -4414,14 +4414,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4414
4414
|
performanceDate: ScriptingDate;
|
|
4415
4415
|
|
|
4416
4416
|
/**
|
|
4417
|
-
*
|
|
4417
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4418
4418
|
*/
|
|
4419
|
-
|
|
4419
|
+
dropShippingInvoiceApproved: boolean;
|
|
4420
4420
|
|
|
4421
4421
|
/**
|
|
4422
|
-
*
|
|
4422
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4423
4423
|
*/
|
|
4424
|
-
|
|
4424
|
+
en16931Profile: EN16931Profile;
|
|
4425
4425
|
|
|
4426
4426
|
/**
|
|
4427
4427
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4584,14 +4584,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4584
4584
|
customerNumber: string;
|
|
4585
4585
|
|
|
4586
4586
|
/**
|
|
4587
|
-
*
|
|
4587
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4588
4588
|
*/
|
|
4589
|
-
|
|
4589
|
+
taxIdentificationNumber: string;
|
|
4590
4590
|
|
|
4591
4591
|
/**
|
|
4592
|
-
*
|
|
4592
|
+
* Statusinstanz des Belegs
|
|
4593
4593
|
*/
|
|
4594
|
-
|
|
4594
|
+
documentState: DocumentTypeState;
|
|
4595
4595
|
|
|
4596
4596
|
/**
|
|
4597
4597
|
* Versandkostenpositionen
|
|
@@ -4603,17 +4603,17 @@ true wenn die Quittung bezahlt ist
|
|
|
4603
4603
|
*/
|
|
4604
4604
|
posReceiptChangeAmount: number;
|
|
4605
4605
|
|
|
4606
|
-
/**
|
|
4607
|
-
* Referenz auf Lieferbedingung
|
|
4608
|
-
*/
|
|
4609
|
-
deliveryTermRef: ApiObjectReference;
|
|
4610
|
-
|
|
4611
4606
|
/**
|
|
4612
4607
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4613
4608
|
true wenn die Quittung ausbalanciert ist
|
|
4614
4609
|
|
|
4615
4610
|
*/
|
|
4616
|
-
posReceiptBalanced: boolean;
|
|
4611
|
+
posReceiptBalanced: boolean;
|
|
4612
|
+
|
|
4613
|
+
/**
|
|
4614
|
+
* Referenz auf Lieferbedingung
|
|
4615
|
+
*/
|
|
4616
|
+
deliveryTermRef: ApiObjectReference;
|
|
4617
4617
|
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Gesamtbruttogewicht
|
|
@@ -4804,14 +4804,14 @@ export interface DocumentAddress {
|
|
|
4804
4804
|
postOfficeBox: string;
|
|
4805
4805
|
|
|
4806
4806
|
/**
|
|
4807
|
-
*
|
|
4807
|
+
* country code IsoAlpha3
|
|
4808
4808
|
*/
|
|
4809
|
-
|
|
4809
|
+
countryCode: string;
|
|
4810
4810
|
|
|
4811
4811
|
/**
|
|
4812
|
-
*
|
|
4812
|
+
* Street
|
|
4813
4813
|
*/
|
|
4814
|
-
|
|
4814
|
+
street: string;
|
|
4815
4815
|
|
|
4816
4816
|
/**
|
|
4817
4817
|
* Unique identifier of the Object
|
|
@@ -5017,14 +5017,14 @@ export interface DocumentContractDetail {
|
|
|
5017
5017
|
runtimeToDate: ScriptingDate;
|
|
5018
5018
|
|
|
5019
5019
|
/**
|
|
5020
|
-
*
|
|
5020
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5021
5021
|
*/
|
|
5022
|
-
|
|
5022
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5023
5023
|
|
|
5024
5024
|
/**
|
|
5025
|
-
*
|
|
5025
|
+
* Nächste Fälligkeit
|
|
5026
5026
|
*/
|
|
5027
|
-
|
|
5027
|
+
nextDueDate: ScriptingDate;
|
|
5028
5028
|
|
|
5029
5029
|
/**
|
|
5030
5030
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5204,14 +5204,14 @@ export interface DocumentLine {
|
|
|
5204
5204
|
country: CountryReference;
|
|
5205
5205
|
|
|
5206
5206
|
/**
|
|
5207
|
-
*
|
|
5207
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5208
5208
|
*/
|
|
5209
|
-
|
|
5209
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5210
5210
|
|
|
5211
5211
|
/**
|
|
5212
|
-
*
|
|
5212
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5213
5213
|
*/
|
|
5214
|
-
|
|
5214
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5215
5215
|
|
|
5216
5216
|
/**
|
|
5217
5217
|
* verarbeitete Menge
|
|
@@ -5354,14 +5354,14 @@ export interface DocumentLine {
|
|
|
5354
5354
|
info: MetaInfo;
|
|
5355
5355
|
|
|
5356
5356
|
/**
|
|
5357
|
-
*
|
|
5357
|
+
* Steuerschema
|
|
5358
5358
|
*/
|
|
5359
|
-
|
|
5359
|
+
taxSchemaRef: ApiObjectReference;
|
|
5360
5360
|
|
|
5361
5361
|
/**
|
|
5362
|
-
*
|
|
5362
|
+
* Preiseinheit
|
|
5363
5363
|
*/
|
|
5364
|
-
|
|
5364
|
+
priceUnit: number;
|
|
5365
5365
|
|
|
5366
5366
|
/**
|
|
5367
5367
|
* Lieferart
|
|
@@ -6033,14 +6033,14 @@ export interface DocumentLinePosDetail {
|
|
|
6033
6033
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6034
6034
|
|
|
6035
6035
|
/**
|
|
6036
|
-
*
|
|
6036
|
+
* Typ der Einlage/Ausgabe
|
|
6037
6037
|
*/
|
|
6038
|
-
|
|
6038
|
+
depositExpenseTypeId: number;
|
|
6039
6039
|
|
|
6040
6040
|
/**
|
|
6041
|
-
*
|
|
6041
|
+
* Status der externen Zahlung
|
|
6042
6042
|
*/
|
|
6043
|
-
|
|
6043
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6044
6044
|
|
|
6045
6045
|
/**
|
|
6046
6046
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6078,14 +6078,14 @@ export interface DocumentLinePosDetail {
|
|
|
6078
6078
|
balanceBeforeWithdrawal: number;
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Typ der Position
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
posLineType: PosLineType;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
|
-
*
|
|
6086
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6087
6087
|
*/
|
|
6088
|
-
|
|
6088
|
+
externalPaymentId: string;
|
|
6089
6089
|
|
|
6090
6090
|
/**
|
|
6091
6091
|
* Unique identifier of the Object
|
|
@@ -6298,14 +6298,14 @@ export interface DocumentPosPayment {
|
|
|
6298
6298
|
version: number;
|
|
6299
6299
|
|
|
6300
6300
|
/**
|
|
6301
|
-
*
|
|
6301
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6302
6302
|
*/
|
|
6303
|
-
|
|
6303
|
+
withdrawalAmount: number;
|
|
6304
6304
|
|
|
6305
6305
|
/**
|
|
6306
|
-
*
|
|
6306
|
+
* Zahlungsart
|
|
6307
6307
|
*/
|
|
6308
|
-
|
|
6308
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6309
6309
|
|
|
6310
6310
|
/**
|
|
6311
6311
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6318,14 +6318,14 @@ export interface DocumentPosPayment {
|
|
|
6318
6318
|
balanceBeforeWithdrawal: number;
|
|
6319
6319
|
|
|
6320
6320
|
/**
|
|
6321
|
-
*
|
|
6321
|
+
* Typ der Position
|
|
6322
6322
|
*/
|
|
6323
|
-
|
|
6323
|
+
posLineType: PosLineType;
|
|
6324
6324
|
|
|
6325
6325
|
/**
|
|
6326
|
-
*
|
|
6326
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6327
6327
|
*/
|
|
6328
|
-
|
|
6328
|
+
externalPaymentId: string;
|
|
6329
6329
|
|
|
6330
6330
|
/**
|
|
6331
6331
|
* Unique identifier of the Object
|
|
@@ -6448,14 +6448,14 @@ export interface DocumentRef {
|
|
|
6448
6448
|
export interface DocumentShippingCost {
|
|
6449
6449
|
|
|
6450
6450
|
/**
|
|
6451
|
-
*
|
|
6451
|
+
* Die Versandkosten
|
|
6452
6452
|
*/
|
|
6453
|
-
|
|
6453
|
+
costs: number;
|
|
6454
6454
|
|
|
6455
6455
|
/**
|
|
6456
|
-
*
|
|
6456
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6457
6457
|
*/
|
|
6458
|
-
|
|
6458
|
+
manualCosts: boolean;
|
|
6459
6459
|
|
|
6460
6460
|
/**
|
|
6461
6461
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6583,14 +6583,14 @@ export interface DocumentText {
|
|
|
6583
6583
|
transferableIntoSubsequentDocuments: boolean;
|
|
6584
6584
|
|
|
6585
6585
|
/**
|
|
6586
|
-
*
|
|
6586
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6587
6587
|
*/
|
|
6588
|
-
|
|
6588
|
+
deleted: boolean;
|
|
6589
6589
|
|
|
6590
6590
|
/**
|
|
6591
|
-
*
|
|
6591
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6592
6592
|
*/
|
|
6593
|
-
|
|
6593
|
+
textPosition: TextPosition;
|
|
6594
6594
|
|
|
6595
6595
|
/**
|
|
6596
6596
|
* textBaustein Vorlage
|
|
@@ -6888,14 +6888,14 @@ export const enum DropShippingPolicy {
|
|
|
6888
6888
|
export interface DummySerialNumberStockTransferApi {
|
|
6889
6889
|
|
|
6890
6890
|
/**
|
|
6891
|
-
*
|
|
6891
|
+
* Ziel-Lager
|
|
6892
6892
|
*/
|
|
6893
|
-
|
|
6893
|
+
targetStorageId: number;
|
|
6894
6894
|
|
|
6895
6895
|
/**
|
|
6896
|
-
*
|
|
6896
|
+
* Seriennummer
|
|
6897
6897
|
*/
|
|
6898
|
-
|
|
6898
|
+
serialNumberId: number;
|
|
6899
6899
|
|
|
6900
6900
|
/**
|
|
6901
6901
|
* Bemerkung
|
|
@@ -7529,26 +7529,26 @@ export interface PaymentTerm {
|
|
|
7529
7529
|
*/
|
|
7530
7530
|
paymentDiscount2: number;
|
|
7531
7531
|
|
|
7532
|
-
/**
|
|
7533
|
-
* printDescription
|
|
7534
|
-
*/
|
|
7535
|
-
printDescription: string;
|
|
7536
|
-
|
|
7537
7532
|
/**
|
|
7538
7533
|
* Percent for Discount 1
|
|
7539
7534
|
*/
|
|
7540
7535
|
paymentDiscount1: number;
|
|
7541
7536
|
|
|
7542
7537
|
/**
|
|
7543
|
-
*
|
|
7538
|
+
* printDescription
|
|
7544
7539
|
*/
|
|
7545
|
-
|
|
7540
|
+
printDescription: string;
|
|
7546
7541
|
|
|
7547
7542
|
/**
|
|
7548
7543
|
* Days for Discount 1
|
|
7549
7544
|
*/
|
|
7550
7545
|
paymentDays1: number;
|
|
7551
7546
|
|
|
7547
|
+
/**
|
|
7548
|
+
* for deposit: remaining term
|
|
7549
|
+
*/
|
|
7550
|
+
remainingTermRef: ApiObjectReference;
|
|
7551
|
+
|
|
7552
7552
|
/**
|
|
7553
7553
|
* Days for Discount 2
|
|
7554
7554
|
*/
|
|
@@ -7668,14 +7668,14 @@ export interface PickTrolley {
|
|
|
7668
7668
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7669
7669
|
|
|
7670
7670
|
/**
|
|
7671
|
-
*
|
|
7671
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7672
7672
|
*/
|
|
7673
|
-
|
|
7673
|
+
storageBinRef: StorageBinRef;
|
|
7674
7674
|
|
|
7675
7675
|
/**
|
|
7676
|
-
*
|
|
7676
|
+
* Bearbeiter der Pickliste
|
|
7677
7677
|
*/
|
|
7678
|
-
|
|
7678
|
+
processedByUserRef: ApiObjectReference;
|
|
7679
7679
|
|
|
7680
7680
|
/**
|
|
7681
7681
|
* Beschreibung des Wagens
|
|
@@ -8266,26 +8266,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8266
8266
|
*/
|
|
8267
8267
|
maxArticleCountPerOrder: number;
|
|
8268
8268
|
|
|
8269
|
-
/**
|
|
8270
|
-
* Maximaler Auftragswert
|
|
8271
|
-
*/
|
|
8272
|
-
maxOrderValue: number;
|
|
8273
|
-
|
|
8274
8269
|
/**
|
|
8275
8270
|
* Alternative Selektion in VQL
|
|
8276
8271
|
*/
|
|
8277
8272
|
alternativeSelectionInVql: string;
|
|
8278
8273
|
|
|
8279
8274
|
/**
|
|
8280
|
-
*
|
|
8275
|
+
* Maximaler Auftragswert
|
|
8281
8276
|
*/
|
|
8282
|
-
|
|
8277
|
+
maxOrderValue: number;
|
|
8283
8278
|
|
|
8284
8279
|
/**
|
|
8285
8280
|
* Selektion über den Bereich vom Lieferdatum
|
|
8286
8281
|
*/
|
|
8287
8282
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8288
8283
|
|
|
8284
|
+
/**
|
|
8285
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8286
|
+
*/
|
|
8287
|
+
maxOrderCount: number;
|
|
8288
|
+
|
|
8289
8289
|
/**
|
|
8290
8290
|
* Nur vollständig lieferbare Positionen
|
|
8291
8291
|
*/
|
|
@@ -8443,14 +8443,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8443
8443
|
showShippingFormOnPickingFinish: boolean;
|
|
8444
8444
|
|
|
8445
8445
|
/**
|
|
8446
|
-
*
|
|
8446
|
+
* Sammelbestätigung erlauben
|
|
8447
8447
|
*/
|
|
8448
|
-
|
|
8448
|
+
allowFullConfirmation: boolean;
|
|
8449
8449
|
|
|
8450
8450
|
/**
|
|
8451
|
-
*
|
|
8451
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8452
8452
|
*/
|
|
8453
|
-
|
|
8453
|
+
allowPickingOfServiceArticles: boolean;
|
|
8454
8454
|
|
|
8455
8455
|
/**
|
|
8456
8456
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -8730,14 +8730,14 @@ export interface ProductArticleRef {
|
|
|
8730
8730
|
export interface ProductDiscount {
|
|
8731
8731
|
|
|
8732
8732
|
/**
|
|
8733
|
-
*
|
|
8733
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8734
8734
|
*/
|
|
8735
|
-
|
|
8735
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8736
8736
|
|
|
8737
8737
|
/**
|
|
8738
|
-
*
|
|
8738
|
+
* Kundengruppe
|
|
8739
8739
|
*/
|
|
8740
|
-
|
|
8740
|
+
customerGroupRef: ApiObjectReference;
|
|
8741
8741
|
|
|
8742
8742
|
/**
|
|
8743
8743
|
* Lieferantengruppe
|
|
@@ -8760,14 +8760,14 @@ export interface ProductDiscount {
|
|
|
8760
8760
|
validFrom: ScriptingDate;
|
|
8761
8761
|
|
|
8762
8762
|
/**
|
|
8763
|
-
*
|
|
8763
|
+
* Bestimmt die Art des Rabatts
|
|
8764
8764
|
*/
|
|
8765
|
-
|
|
8765
|
+
modifierType: PriceModifierType;
|
|
8766
8766
|
|
|
8767
8767
|
/**
|
|
8768
|
-
*
|
|
8768
|
+
* Warengruppe
|
|
8769
8769
|
*/
|
|
8770
|
-
|
|
8770
|
+
productGroupRef: ApiObjectReference;
|
|
8771
8771
|
|
|
8772
8772
|
/**
|
|
8773
8773
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8815,14 +8815,14 @@ export interface ProductDiscount {
|
|
|
8815
8815
|
modifierValueType: ValueType;
|
|
8816
8816
|
|
|
8817
8817
|
/**
|
|
8818
|
-
*
|
|
8818
|
+
* Name des Rabatts
|
|
8819
8819
|
*/
|
|
8820
|
-
|
|
8820
|
+
modifierName: string;
|
|
8821
8821
|
|
|
8822
8822
|
/**
|
|
8823
|
-
*
|
|
8823
|
+
* Account, für den der Rabatt gültig ist
|
|
8824
8824
|
*/
|
|
8825
|
-
|
|
8825
|
+
accountRef: ApiObjectReference;
|
|
8826
8826
|
|
|
8827
8827
|
/**
|
|
8828
8828
|
* Unique identifier of the Object
|
|
@@ -8939,14 +8939,14 @@ export interface ProductMainGroup {
|
|
|
8939
8939
|
export interface ProductPrice {
|
|
8940
8940
|
|
|
8941
8941
|
/**
|
|
8942
|
-
*
|
|
8942
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8943
8943
|
*/
|
|
8944
|
-
|
|
8944
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8945
8945
|
|
|
8946
8946
|
/**
|
|
8947
|
-
*
|
|
8947
|
+
* Kundengruppe
|
|
8948
8948
|
*/
|
|
8949
|
-
|
|
8949
|
+
customerGroupRef: ApiObjectReference;
|
|
8950
8950
|
|
|
8951
8951
|
/**
|
|
8952
8952
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -9213,14 +9213,14 @@ export interface RequestDocument {
|
|
|
9213
9213
|
lines: Array<RequestDocumentLine>;
|
|
9214
9214
|
|
|
9215
9215
|
/**
|
|
9216
|
-
*
|
|
9216
|
+
* Die Vertragsdetails
|
|
9217
9217
|
*/
|
|
9218
|
-
|
|
9218
|
+
contractDetail: DocumentContractDetail;
|
|
9219
9219
|
|
|
9220
9220
|
/**
|
|
9221
|
-
*
|
|
9221
|
+
* ID der Kasse (bei POS)
|
|
9222
9222
|
*/
|
|
9223
|
-
|
|
9223
|
+
posRegisterId: number;
|
|
9224
9224
|
|
|
9225
9225
|
/**
|
|
9226
9226
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9273,14 +9273,14 @@ export interface RequestDocument {
|
|
|
9273
9273
|
accountId: number;
|
|
9274
9274
|
|
|
9275
9275
|
/**
|
|
9276
|
-
*
|
|
9276
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
9277
9277
|
*/
|
|
9278
|
-
|
|
9278
|
+
processedByPicklistProcessing: boolean;
|
|
9279
9279
|
|
|
9280
9280
|
/**
|
|
9281
|
-
*
|
|
9281
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
9282
9282
|
*/
|
|
9283
|
-
|
|
9283
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
9284
9284
|
|
|
9285
9285
|
/**
|
|
9286
9286
|
* Die Rabatte des Beleges
|
|
@@ -9361,14 +9361,14 @@ export interface RequestDocumentLine {
|
|
|
9361
9361
|
dropShippingPolicy: DropShippingPolicy;
|
|
9362
9362
|
|
|
9363
9363
|
/**
|
|
9364
|
-
*
|
|
9364
|
+
* Positionsnummer der Artikel
|
|
9365
9365
|
*/
|
|
9366
|
-
|
|
9366
|
+
positionOfArticleLine: number;
|
|
9367
9367
|
|
|
9368
9368
|
/**
|
|
9369
|
-
*
|
|
9369
|
+
* (optional) Lager-ID
|
|
9370
9370
|
*/
|
|
9371
|
-
|
|
9371
|
+
storageId: number;
|
|
9372
9372
|
|
|
9373
9373
|
/**
|
|
9374
9374
|
* Vertragsdetails zur Belegposition
|
|
@@ -9451,14 +9451,14 @@ export interface RequestDocumentLine {
|
|
|
9451
9451
|
externalArticleNumber: string;
|
|
9452
9452
|
|
|
9453
9453
|
/**
|
|
9454
|
-
*
|
|
9454
|
+
* ID der Quell-Belegposition
|
|
9455
9455
|
*/
|
|
9456
|
-
|
|
9456
|
+
sourceLineId: number;
|
|
9457
9457
|
|
|
9458
9458
|
/**
|
|
9459
|
-
*
|
|
9459
|
+
* Buchungen zu dieser Belegposition
|
|
9460
9460
|
*/
|
|
9461
|
-
|
|
9461
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9462
9462
|
|
|
9463
9463
|
/**
|
|
9464
9464
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9592,14 +9592,14 @@ export interface RequestDocumentText {
|
|
|
9592
9592
|
export interface RevenueCalculation {
|
|
9593
9593
|
|
|
9594
9594
|
/**
|
|
9595
|
-
*
|
|
9595
|
+
* Deckungsbeitrag (absolut)
|
|
9596
9596
|
*/
|
|
9597
|
-
|
|
9597
|
+
revenue: number;
|
|
9598
9598
|
|
|
9599
9599
|
/**
|
|
9600
|
-
*
|
|
9600
|
+
* Netto Umsatz
|
|
9601
9601
|
*/
|
|
9602
|
-
|
|
9602
|
+
salesValue: number;
|
|
9603
9603
|
|
|
9604
9604
|
/**
|
|
9605
9605
|
* Einkaufspreis
|
|
@@ -9620,14 +9620,14 @@ export interface SalesAgent {
|
|
|
9620
9620
|
note: string;
|
|
9621
9621
|
|
|
9622
9622
|
/**
|
|
9623
|
-
*
|
|
9623
|
+
* reference to the delivery method
|
|
9624
9624
|
*/
|
|
9625
|
-
|
|
9625
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9626
9626
|
|
|
9627
9627
|
/**
|
|
9628
|
-
*
|
|
9628
|
+
* is sales agent taxable
|
|
9629
9629
|
*/
|
|
9630
|
-
|
|
9630
|
+
taxable: boolean;
|
|
9631
9631
|
|
|
9632
9632
|
/**
|
|
9633
9633
|
* Freifelder
|
|
@@ -10584,14 +10584,14 @@ export interface StockMovementManualApi {
|
|
|
10584
10584
|
export interface StockTransferApi {
|
|
10585
10585
|
|
|
10586
10586
|
/**
|
|
10587
|
-
*
|
|
10587
|
+
* Ziel-Lager
|
|
10588
10588
|
*/
|
|
10589
|
-
|
|
10589
|
+
targetStorageId: number;
|
|
10590
10590
|
|
|
10591
10591
|
/**
|
|
10592
|
-
*
|
|
10592
|
+
* Seriennummer
|
|
10593
10593
|
*/
|
|
10594
|
-
|
|
10594
|
+
serialNumberId: number;
|
|
10595
10595
|
|
|
10596
10596
|
/**
|
|
10597
10597
|
* Bemerkung
|
|
@@ -10801,14 +10801,14 @@ export interface Supplier {
|
|
|
10801
10801
|
info: MetaInfo;
|
|
10802
10802
|
|
|
10803
10803
|
/**
|
|
10804
|
-
*
|
|
10804
|
+
* reference to the delivery method
|
|
10805
10805
|
*/
|
|
10806
|
-
|
|
10806
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10807
10807
|
|
|
10808
10808
|
/**
|
|
10809
|
-
*
|
|
10809
|
+
* Lieferantengruppe
|
|
10810
10810
|
*/
|
|
10811
|
-
|
|
10811
|
+
supplierGroupRef: ApiObjectReference;
|
|
10812
10812
|
|
|
10813
10813
|
/**
|
|
10814
10814
|
* tax able or tax free
|
|
@@ -10866,14 +10866,14 @@ export interface Supplier {
|
|
|
10866
10866
|
performanceCountryCode: string;
|
|
10867
10867
|
|
|
10868
10868
|
/**
|
|
10869
|
-
*
|
|
10869
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10870
10870
|
*/
|
|
10871
|
-
|
|
10871
|
+
defaultDeliveryTime: number;
|
|
10872
10872
|
|
|
10873
10873
|
/**
|
|
10874
|
-
*
|
|
10874
|
+
* reference to the payment method
|
|
10875
10875
|
*/
|
|
10876
|
-
|
|
10876
|
+
paymentMethodRef: ApiObjectReference;
|
|
10877
10877
|
|
|
10878
10878
|
/**
|
|
10879
10879
|
* currency code IsoAlpha3
|
|
@@ -10894,14 +10894,14 @@ export interface TagDto {
|
|
|
10894
10894
|
editColor: string;
|
|
10895
10895
|
|
|
10896
10896
|
/**
|
|
10897
|
-
* Farbe
|
|
10897
|
+
* Farbe in Such-GUI
|
|
10898
10898
|
*/
|
|
10899
|
-
|
|
10899
|
+
searchColor: string;
|
|
10900
10900
|
|
|
10901
10901
|
/**
|
|
10902
|
-
* Farbe
|
|
10902
|
+
* Farbe für die Anzeige des Tags
|
|
10903
10903
|
*/
|
|
10904
|
-
|
|
10904
|
+
color: string;
|
|
10905
10905
|
|
|
10906
10906
|
/**
|
|
10907
10907
|
* Beschriftung des Tags
|
|
@@ -11443,14 +11443,14 @@ export interface VariantValue {
|
|
|
11443
11443
|
version: number;
|
|
11444
11444
|
|
|
11445
11445
|
/**
|
|
11446
|
-
*
|
|
11446
|
+
* Variantenattribut
|
|
11447
11447
|
*/
|
|
11448
|
-
|
|
11448
|
+
attributeRef: ApiObjectReference;
|
|
11449
11449
|
|
|
11450
11450
|
/**
|
|
11451
|
-
*
|
|
11451
|
+
* Mehrsprachige Bezeichnungen
|
|
11452
11452
|
*/
|
|
11453
|
-
|
|
11453
|
+
labels: Array<VariantDescription>;
|
|
11454
11454
|
|
|
11455
11455
|
/**
|
|
11456
11456
|
* MetaInformations for this Object
|