@vario-software/types 2026.16.1 → 2026.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +1500 -1207
- package/scripting/services.d.ts +219 -39
- package/scripting/types.d.ts +645 -233
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* calculation mode of this document
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
calculationMode: CalculationMode;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Erstkontakt am
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
initialContactAt: ScriptingDate;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Parcel station customer number
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
parcelStationCustomerNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -1006,14 +1006,14 @@ export interface Article {
|
|
|
1006
1006
|
warrantyInMonths: number;
|
|
1007
1007
|
|
|
1008
1008
|
/**
|
|
1009
|
-
*
|
|
1009
|
+
* weight and size w.o. packaging
|
|
1010
1010
|
*/
|
|
1011
|
-
|
|
1011
|
+
netMetric: Article$Metric;
|
|
1012
1012
|
|
|
1013
1013
|
/**
|
|
1014
|
-
*
|
|
1014
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1015
1015
|
*/
|
|
1016
|
-
|
|
1016
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* unique product number
|
|
@@ -1151,14 +1151,14 @@ export interface Article {
|
|
|
1151
1151
|
workUnitInMinutes: number;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
*
|
|
1154
|
+
* description custom data
|
|
1155
1155
|
*/
|
|
1156
|
-
|
|
1156
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1157
1157
|
|
|
1158
1158
|
/**
|
|
1159
|
-
*
|
|
1159
|
+
* Frei kommissionierbar
|
|
1160
1160
|
*/
|
|
1161
|
-
|
|
1161
|
+
freelyPickable: boolean;
|
|
1162
1162
|
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -1221,20 +1221,25 @@ export interface Article {
|
|
|
1221
1221
|
permissibleForOrderProposal: boolean;
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
|
-
*
|
|
1224
|
+
* Versandlabeldruck
|
|
1225
1225
|
*/
|
|
1226
|
-
|
|
1226
|
+
shippingLabelPrinting: boolean;
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
|
-
*
|
|
1229
|
+
* reference to Product
|
|
1230
1230
|
*/
|
|
1231
|
-
|
|
1231
|
+
productRef: ApiObjectReference;
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Artikel ist Gefahrgut
|
|
1235
1235
|
*/
|
|
1236
1236
|
isDangerousGood: boolean;
|
|
1237
1237
|
|
|
1238
|
+
/**
|
|
1239
|
+
* Kontingentartikel
|
|
1240
|
+
*/
|
|
1241
|
+
contingentArticleRef: ApiObjectReference;
|
|
1242
|
+
|
|
1238
1243
|
/**
|
|
1239
1244
|
* alternative name of this product
|
|
1240
1245
|
*/
|
|
@@ -1245,11 +1250,6 @@ export interface Article {
|
|
|
1245
1250
|
*/
|
|
1246
1251
|
discountable: boolean;
|
|
1247
1252
|
|
|
1248
|
-
/**
|
|
1249
|
-
* Kontingentartikel
|
|
1250
|
-
*/
|
|
1251
|
-
contingentArticleRef: ApiObjectReference;
|
|
1252
|
-
|
|
1253
1253
|
/**
|
|
1254
1254
|
* base capacity
|
|
1255
1255
|
*/
|
|
@@ -1316,14 +1316,14 @@ export interface Article {
|
|
|
1316
1316
|
listed: boolean;
|
|
1317
1317
|
|
|
1318
1318
|
/**
|
|
1319
|
-
*
|
|
1319
|
+
* Nur manuelle Produktion
|
|
1320
1320
|
*/
|
|
1321
|
-
|
|
1321
|
+
onlyManualFabrication: boolean;
|
|
1322
1322
|
|
|
1323
1323
|
/**
|
|
1324
|
-
*
|
|
1324
|
+
* provisionsberechtiger Artikel?
|
|
1325
1325
|
*/
|
|
1326
|
-
|
|
1326
|
+
commissionable: boolean;
|
|
1327
1327
|
|
|
1328
1328
|
/**
|
|
1329
1329
|
* Preisbasis
|
|
@@ -1678,17 +1678,110 @@ export const enum ArticleSerialType {
|
|
|
1678
1678
|
DOUBLE_SERIAL_NUMBER = 'DOUBLE_SERIAL_NUMBER'
|
|
1679
1679
|
}
|
|
1680
1680
|
|
|
1681
|
-
export interface
|
|
1681
|
+
export interface ArticleStorage {
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* Bestand im Lager
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
quantityInStock: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
|
-
*
|
|
1689
|
+
* Nachschub ab
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
replenishmentFrom: number;
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* Aktuelle Menge in Kommissionierung
|
|
1695
|
+
*/
|
|
1696
|
+
quantityInPicking: number;
|
|
1697
|
+
|
|
1698
|
+
/**
|
|
1699
|
+
* Bestellte Menge
|
|
1700
|
+
*/
|
|
1701
|
+
orderedQuantity: number;
|
|
1702
|
+
|
|
1703
|
+
/**
|
|
1704
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1705
|
+
*/
|
|
1706
|
+
virtualStockAmount: number;
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* Nachschub auf
|
|
1710
|
+
*/
|
|
1711
|
+
replenishmentOn: number;
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* Reservierte Menge
|
|
1715
|
+
*/
|
|
1716
|
+
reservedQuantity: number;
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* Aktuelle "virtuelle" verfügbare Menge (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1720
|
+
*/
|
|
1721
|
+
virtualStockAvailable: number;
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* Das Produkt, dessen Lagerinfos hier ausgegeben werden
|
|
1725
|
+
*/
|
|
1726
|
+
articleId: number;
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* Lagerort
|
|
1730
|
+
*/
|
|
1731
|
+
storageLocation: string;
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
* Verfügbare Menge im Lager gemäß konfigurierter Verfügbarkeitsermittlung
|
|
1735
|
+
*/
|
|
1736
|
+
stockAvailable: number;
|
|
1737
|
+
|
|
1738
|
+
/**
|
|
1739
|
+
* Version Identifier for this Object (for PUT)
|
|
1740
|
+
*/
|
|
1741
|
+
version: number;
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* Hat dieses Lager Lagerplätze?
|
|
1745
|
+
*/
|
|
1746
|
+
withStorageBins: boolean;
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* Das Lager, dessen Infos hier ausgegeben werden
|
|
1750
|
+
*/
|
|
1751
|
+
storageRef: ApiObjectReference;
|
|
1752
|
+
|
|
1753
|
+
/**
|
|
1754
|
+
* Sollbestand
|
|
1755
|
+
*/
|
|
1756
|
+
targetStock: number;
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* Vorgabe-Lagerplätze
|
|
1760
|
+
*/
|
|
1761
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* Aktuelle Menge in Produktion
|
|
1765
|
+
*/
|
|
1766
|
+
quantityInFabrication: number;
|
|
1767
|
+
|
|
1768
|
+
/**
|
|
1769
|
+
* Mindestbestand
|
|
1770
|
+
*/
|
|
1771
|
+
minimumStock: number;
|
|
1772
|
+
|
|
1773
|
+
/**
|
|
1774
|
+
* MetaInformations for this Object
|
|
1775
|
+
*/
|
|
1776
|
+
info: MetaInfo;
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
export interface ArticleSupplier {
|
|
1780
|
+
|
|
1781
|
+
/**
|
|
1782
|
+
* Anzeigename des Accounts
|
|
1783
|
+
*/
|
|
1784
|
+
accountDisplayName: string;
|
|
1692
1785
|
|
|
1693
1786
|
/**
|
|
1694
1787
|
* Lieferanten-Meldebestand
|
|
@@ -1696,15 +1789,20 @@ export interface ArticleSupplier {
|
|
|
1696
1789
|
supplierReportingStock: number;
|
|
1697
1790
|
|
|
1698
1791
|
/**
|
|
1699
|
-
*
|
|
1792
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1700
1793
|
*/
|
|
1701
|
-
|
|
1794
|
+
useSupplierArticleDescription: boolean;
|
|
1702
1795
|
|
|
1703
1796
|
/**
|
|
1704
1797
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1705
1798
|
*/
|
|
1706
1799
|
useSupplierArticleIdentifier: boolean;
|
|
1707
1800
|
|
|
1801
|
+
/**
|
|
1802
|
+
* Lieferzeit in (Werk-)Tagen
|
|
1803
|
+
*/
|
|
1804
|
+
deliveryTime: number;
|
|
1805
|
+
|
|
1708
1806
|
/**
|
|
1709
1807
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
1710
1808
|
*/
|
|
@@ -1751,14 +1849,14 @@ export interface ArticleSupplier {
|
|
|
1751
1849
|
info: MetaInfo;
|
|
1752
1850
|
|
|
1753
1851
|
/**
|
|
1754
|
-
*
|
|
1852
|
+
* Verpackungseinheit
|
|
1755
1853
|
*/
|
|
1756
|
-
|
|
1854
|
+
packagingUnit: number;
|
|
1757
1855
|
|
|
1758
1856
|
/**
|
|
1759
|
-
*
|
|
1857
|
+
* Referenced Article name
|
|
1760
1858
|
*/
|
|
1761
|
-
|
|
1859
|
+
articleName: string;
|
|
1762
1860
|
|
|
1763
1861
|
/**
|
|
1764
1862
|
* Lieferanten-Preise
|
|
@@ -1854,6 +1952,37 @@ export const enum BillingType {
|
|
|
1854
1952
|
NET = 'NET'
|
|
1855
1953
|
}
|
|
1856
1954
|
|
|
1955
|
+
export interface BulkTransferRequestApi {
|
|
1956
|
+
|
|
1957
|
+
/**
|
|
1958
|
+
* Soll nach der Umbuchung ein Report dazu erstellt werden?
|
|
1959
|
+
*/
|
|
1960
|
+
createReportAfterTransfer: boolean;
|
|
1961
|
+
|
|
1962
|
+
/**
|
|
1963
|
+
* Enthält die Anweisungen für die Umbuchungen
|
|
1964
|
+
*/
|
|
1965
|
+
stockTransfers: Array<StockTransferApi>;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
export interface BulkTransferResult {
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* Das Buchungsdatum
|
|
1972
|
+
*/
|
|
1973
|
+
date: ScriptingDate;
|
|
1974
|
+
|
|
1975
|
+
/**
|
|
1976
|
+
* Falls der Report im Request angefordert wurde, wird hier die ID aus dem DMS geliefert
|
|
1977
|
+
*/
|
|
1978
|
+
reportId: number;
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* Die durch die Lagerbuchung geänderten Lagerplatz-Bestände
|
|
1982
|
+
*/
|
|
1983
|
+
stocks: Array<StockTransferResult>;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1857
1986
|
export const enum BusinessRelationType {
|
|
1858
1987
|
B2B = 'B2B',
|
|
1859
1988
|
B2C = 'B2C',
|
|
@@ -2061,14 +2190,14 @@ export interface CrmActivity {
|
|
|
2061
2190
|
info: MetaInfo;
|
|
2062
2191
|
|
|
2063
2192
|
/**
|
|
2064
|
-
*
|
|
2193
|
+
* geplante Dauer
|
|
2065
2194
|
*/
|
|
2066
|
-
|
|
2195
|
+
plannedDurationInSeconds: number;
|
|
2067
2196
|
|
|
2068
2197
|
/**
|
|
2069
|
-
*
|
|
2198
|
+
* Aktivität intern abgerechnet?
|
|
2070
2199
|
*/
|
|
2071
|
-
|
|
2200
|
+
internalBilled: boolean;
|
|
2072
2201
|
|
|
2073
2202
|
/**
|
|
2074
2203
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2220,14 +2349,14 @@ export interface CrmActivityType {
|
|
|
2220
2349
|
export interface CrmChecklistItem {
|
|
2221
2350
|
|
|
2222
2351
|
/**
|
|
2223
|
-
*
|
|
2352
|
+
* Text des Checklisten-Elements
|
|
2224
2353
|
*/
|
|
2225
|
-
|
|
2354
|
+
memo: string;
|
|
2226
2355
|
|
|
2227
2356
|
/**
|
|
2228
|
-
*
|
|
2357
|
+
* Ist das Element "angehakt"?
|
|
2229
2358
|
*/
|
|
2230
|
-
|
|
2359
|
+
checked: boolean;
|
|
2231
2360
|
|
|
2232
2361
|
/**
|
|
2233
2362
|
* Unique identifier of the Object
|
|
@@ -2338,14 +2467,14 @@ export interface CrmDeal {
|
|
|
2338
2467
|
info: MetaInfo;
|
|
2339
2468
|
|
|
2340
2469
|
/**
|
|
2341
|
-
*
|
|
2470
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2342
2471
|
*/
|
|
2343
|
-
|
|
2472
|
+
assignedUserRef: ApiObjectReference;
|
|
2344
2473
|
|
|
2345
2474
|
/**
|
|
2346
|
-
*
|
|
2475
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2347
2476
|
*/
|
|
2348
|
-
|
|
2477
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2349
2478
|
|
|
2350
2479
|
/**
|
|
2351
2480
|
* Chance (in Prozent)
|
|
@@ -2821,7 +2950,7 @@ export interface CrmState {
|
|
|
2821
2950
|
/**
|
|
2822
2951
|
* Typ zu dem dieser Status gehört
|
|
2823
2952
|
*/
|
|
2824
|
-
|
|
2953
|
+
crmSubTypes: Array<CrmSubType>;
|
|
2825
2954
|
|
|
2826
2955
|
/**
|
|
2827
2956
|
* active
|
|
@@ -2929,6 +3058,11 @@ export interface CrmSubType {
|
|
|
2929
3058
|
|
|
2930
3059
|
export interface CrmTask {
|
|
2931
3060
|
|
|
3061
|
+
/**
|
|
3062
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3063
|
+
*/
|
|
3064
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3065
|
+
|
|
2932
3066
|
/**
|
|
2933
3067
|
* Angebot
|
|
2934
3068
|
*/
|
|
@@ -2949,11 +3083,6 @@ export interface CrmTask {
|
|
|
2949
3083
|
*/
|
|
2950
3084
|
references: Array<CrmReference>;
|
|
2951
3085
|
|
|
2952
|
-
/**
|
|
2953
|
-
* Zu Erledigen von Teilnehmer
|
|
2954
|
-
*/
|
|
2955
|
-
assignedParticipant: ApiObjectReference;
|
|
2956
|
-
|
|
2957
3086
|
/**
|
|
2958
3087
|
* Beobachter
|
|
2959
3088
|
*/
|
|
@@ -2979,11 +3108,6 @@ export interface CrmTask {
|
|
|
2979
3108
|
*/
|
|
2980
3109
|
mainResponsibleUserRef: ApiObjectReference;
|
|
2981
3110
|
|
|
2982
|
-
/**
|
|
2983
|
-
* Verantwortlicher Teilnehmer
|
|
2984
|
-
*/
|
|
2985
|
-
mainResponsibleParticipant: ApiObjectReference;
|
|
2986
|
-
|
|
2987
3111
|
/**
|
|
2988
3112
|
* Auftrag
|
|
2989
3113
|
*/
|
|
@@ -3069,6 +3193,11 @@ export interface CrmTask {
|
|
|
3069
3193
|
*/
|
|
3070
3194
|
blockedByTaskRefs: Array<ApiObjectReference>;
|
|
3071
3195
|
|
|
3196
|
+
/**
|
|
3197
|
+
* Zu Erledigen von Teilnehmer (Ansprechpartner)
|
|
3198
|
+
*/
|
|
3199
|
+
assignedParticipantRef: ApiObjectReference;
|
|
3200
|
+
|
|
3072
3201
|
/**
|
|
3073
3202
|
* Abgerechnete Zeiten in Sekunden (extern)
|
|
3074
3203
|
*/
|
|
@@ -3309,14 +3438,14 @@ export interface CurrencyReference {
|
|
|
3309
3438
|
export interface Customer {
|
|
3310
3439
|
|
|
3311
3440
|
/**
|
|
3312
|
-
*
|
|
3441
|
+
* Option für die Stapelverarbeitung
|
|
3313
3442
|
*/
|
|
3314
|
-
|
|
3443
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3315
3444
|
|
|
3316
3445
|
/**
|
|
3317
|
-
*
|
|
3446
|
+
* reference to customer group
|
|
3318
3447
|
*/
|
|
3319
|
-
|
|
3448
|
+
customerGroupRef: ApiObjectReference;
|
|
3320
3449
|
|
|
3321
3450
|
/**
|
|
3322
3451
|
* Kreditlimit
|
|
@@ -3505,14 +3634,14 @@ export interface DeliveryMethod {
|
|
|
3505
3634
|
defaultSizeUnit: UnitTypeReference;
|
|
3506
3635
|
|
|
3507
3636
|
/**
|
|
3508
|
-
*
|
|
3637
|
+
* Quelle für Paketgewicht
|
|
3509
3638
|
*/
|
|
3510
|
-
|
|
3639
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3511
3640
|
|
|
3512
3641
|
/**
|
|
3513
|
-
*
|
|
3642
|
+
* translations
|
|
3514
3643
|
*/
|
|
3515
|
-
|
|
3644
|
+
translations: Array<DocumentTypeTerm>;
|
|
3516
3645
|
|
|
3517
3646
|
/**
|
|
3518
3647
|
* Versand-Anbieter
|
|
@@ -3603,14 +3732,14 @@ export interface DeliveryTerm {
|
|
|
3603
3732
|
version: number;
|
|
3604
3733
|
|
|
3605
3734
|
/**
|
|
3606
|
-
*
|
|
3735
|
+
* information, how the shipping charges should be calculated
|
|
3607
3736
|
*/
|
|
3608
|
-
|
|
3737
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
3609
3738
|
|
|
3610
3739
|
/**
|
|
3611
|
-
*
|
|
3740
|
+
* translations
|
|
3612
3741
|
*/
|
|
3613
|
-
|
|
3742
|
+
translations: Array<DocumentTypeTerm>;
|
|
3614
3743
|
|
|
3615
3744
|
/**
|
|
3616
3745
|
* Lieferarten
|
|
@@ -3641,14 +3770,14 @@ export interface DeliveryTerm {
|
|
|
3641
3770
|
export interface Document {
|
|
3642
3771
|
|
|
3643
3772
|
/**
|
|
3644
|
-
*
|
|
3773
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
3645
3774
|
*/
|
|
3646
|
-
|
|
3775
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
3647
3776
|
|
|
3648
3777
|
/**
|
|
3649
|
-
*
|
|
3778
|
+
* Referenz zum Rechnungskonto
|
|
3650
3779
|
*/
|
|
3651
|
-
|
|
3780
|
+
billingAccountRef: ApiObjectReference;
|
|
3652
3781
|
|
|
3653
3782
|
/**
|
|
3654
3783
|
* Externe Belegnummer
|
|
@@ -3728,11 +3857,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3728
3857
|
*/
|
|
3729
3858
|
deliveryQuantityPackages: number;
|
|
3730
3859
|
|
|
3731
|
-
/**
|
|
3732
|
-
* Leitweg-ID
|
|
3733
|
-
*/
|
|
3734
|
-
buyerReference: string;
|
|
3735
|
-
|
|
3736
3860
|
/**
|
|
3737
3861
|
* Bestellnummer aus Vorbeleg
|
|
3738
3862
|
*/
|
|
@@ -3743,6 +3867,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
3743
3867
|
*/
|
|
3744
3868
|
taxable: boolean;
|
|
3745
3869
|
|
|
3870
|
+
/**
|
|
3871
|
+
* Leitweg-ID
|
|
3872
|
+
*/
|
|
3873
|
+
buyerReference: string;
|
|
3874
|
+
|
|
3746
3875
|
/**
|
|
3747
3876
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
3748
3877
|
*/
|
|
@@ -3905,20 +4034,15 @@ true wenn die Quittung bezahlt ist
|
|
|
3905
4034
|
*/
|
|
3906
4035
|
fabricationDetail: DocumentFabricationDetail;
|
|
3907
4036
|
|
|
3908
|
-
/**
|
|
3909
|
-
* Berechnungsmodus
|
|
3910
|
-
*/
|
|
3911
|
-
calculationMode: CalculationMode;
|
|
3912
|
-
|
|
3913
4037
|
/**
|
|
3914
4038
|
* Kontonummer der zugehörigen Organisationseinheit
|
|
3915
4039
|
*/
|
|
3916
4040
|
accountNumber: string;
|
|
3917
4041
|
|
|
3918
4042
|
/**
|
|
3919
|
-
*
|
|
4043
|
+
* Berechnungsmodus
|
|
3920
4044
|
*/
|
|
3921
|
-
|
|
4045
|
+
calculationMode: CalculationMode;
|
|
3922
4046
|
|
|
3923
4047
|
/**
|
|
3924
4048
|
* Wird vom Workflow verarbeitet?
|
|
@@ -3926,15 +4050,20 @@ true wenn die Quittung bezahlt ist
|
|
|
3926
4050
|
processedByWorkflow: boolean;
|
|
3927
4051
|
|
|
3928
4052
|
/**
|
|
3929
|
-
*
|
|
4053
|
+
* Referenz auf Zahlungsbedingung
|
|
3930
4054
|
*/
|
|
3931
|
-
|
|
4055
|
+
paymentTermRef: PaymentTermRef;
|
|
3932
4056
|
|
|
3933
4057
|
/**
|
|
3934
4058
|
* Preisanpassungen - Beleg Basiswährung
|
|
3935
4059
|
*/
|
|
3936
4060
|
baseTotalDocumentPriceModifier: number;
|
|
3937
4061
|
|
|
4062
|
+
/**
|
|
4063
|
+
* Telefon an Versender übergeben
|
|
4064
|
+
*/
|
|
4065
|
+
forwardPhoneToShipper: boolean;
|
|
4066
|
+
|
|
3938
4067
|
/**
|
|
3939
4068
|
* Liste der Belegtexte
|
|
3940
4069
|
*/
|
|
@@ -3955,26 +4084,26 @@ true wenn die Quittung bezahlt ist
|
|
|
3955
4084
|
*/
|
|
3956
4085
|
defaultAddress: DocumentAddress;
|
|
3957
4086
|
|
|
3958
|
-
/**
|
|
3959
|
-
* Verarbeitungsoption für Stapel
|
|
3960
|
-
*/
|
|
3961
|
-
stackProcessingType: OrderStackProcessingType;
|
|
3962
|
-
|
|
3963
4087
|
/**
|
|
3964
4088
|
* Leistungsdatum
|
|
3965
4089
|
*/
|
|
3966
4090
|
performanceDate: ScriptingDate;
|
|
3967
4091
|
|
|
3968
4092
|
/**
|
|
3969
|
-
*
|
|
4093
|
+
* Verarbeitungsoption für Stapel
|
|
3970
4094
|
*/
|
|
3971
|
-
|
|
4095
|
+
stackProcessingType: OrderStackProcessingType;
|
|
3972
4096
|
|
|
3973
4097
|
/**
|
|
3974
4098
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
3975
4099
|
*/
|
|
3976
4100
|
dropShippingInvoiceApproved: boolean;
|
|
3977
4101
|
|
|
4102
|
+
/**
|
|
4103
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4104
|
+
*/
|
|
4105
|
+
en16931Profile: EN16931Profile;
|
|
4106
|
+
|
|
3978
4107
|
/**
|
|
3979
4108
|
* Ort der steuerlichen Leistungserbringung
|
|
3980
4109
|
*/
|
|
@@ -4135,11 +4264,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4135
4264
|
*/
|
|
4136
4265
|
customerNumber: string;
|
|
4137
4266
|
|
|
4138
|
-
/**
|
|
4139
|
-
* Versandkostenpositionen
|
|
4140
|
-
*/
|
|
4141
|
-
shippingCosts: Array<DocumentShippingCost>;
|
|
4142
|
-
|
|
4143
4267
|
/**
|
|
4144
4268
|
* Umsatzsteuer-Identifikationsnummer
|
|
4145
4269
|
*/
|
|
@@ -4151,14 +4275,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4151
4275
|
documentState: DocumentTypeState;
|
|
4152
4276
|
|
|
4153
4277
|
/**
|
|
4154
|
-
*
|
|
4278
|
+
* Versandkostenpositionen
|
|
4155
4279
|
*/
|
|
4156
|
-
|
|
4280
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4157
4281
|
|
|
4158
4282
|
/**
|
|
4159
|
-
*
|
|
4283
|
+
* Rückgeld
|
|
4160
4284
|
*/
|
|
4161
|
-
|
|
4285
|
+
posReceiptChangeAmount: number;
|
|
4162
4286
|
|
|
4163
4287
|
/**
|
|
4164
4288
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4167,6 +4291,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4167
4291
|
*/
|
|
4168
4292
|
posReceiptBalanced: boolean;
|
|
4169
4293
|
|
|
4294
|
+
/**
|
|
4295
|
+
* Referenz auf Lieferbedingung
|
|
4296
|
+
*/
|
|
4297
|
+
deliveryTermRef: ApiObjectReference;
|
|
4298
|
+
|
|
4170
4299
|
/**
|
|
4171
4300
|
* Gesamtbruttogewicht
|
|
4172
4301
|
*/
|
|
@@ -4188,14 +4317,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4188
4317
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4189
4318
|
|
|
4190
4319
|
/**
|
|
4191
|
-
*
|
|
4320
|
+
* Status der USt-ID-Prüfung
|
|
4192
4321
|
*/
|
|
4193
|
-
|
|
4322
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4194
4323
|
|
|
4195
4324
|
/**
|
|
4196
|
-
*
|
|
4325
|
+
* Rechnungsadresse
|
|
4197
4326
|
*/
|
|
4198
|
-
|
|
4327
|
+
billingAddress: DocumentAddress;
|
|
4199
4328
|
|
|
4200
4329
|
/**
|
|
4201
4330
|
* Bestellt durch Ansprechpartner
|
|
@@ -4740,14 +4869,14 @@ export const enum DocumentImportType {
|
|
|
4740
4869
|
export interface DocumentLine {
|
|
4741
4870
|
|
|
4742
4871
|
/**
|
|
4743
|
-
*
|
|
4872
|
+
* Leistungsdatum
|
|
4744
4873
|
*/
|
|
4745
|
-
|
|
4874
|
+
performanceDate: ScriptingDate;
|
|
4746
4875
|
|
|
4747
4876
|
/**
|
|
4748
|
-
*
|
|
4877
|
+
* Zolltarifnummer
|
|
4749
4878
|
*/
|
|
4750
|
-
|
|
4879
|
+
customsTariffNumber: string;
|
|
4751
4880
|
|
|
4752
4881
|
/**
|
|
4753
4882
|
* Land der Herkunft
|
|
@@ -4755,14 +4884,14 @@ export interface DocumentLine {
|
|
|
4755
4884
|
country: CountryReference;
|
|
4756
4885
|
|
|
4757
4886
|
/**
|
|
4758
|
-
*
|
|
4887
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
4759
4888
|
*/
|
|
4760
|
-
|
|
4889
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4761
4890
|
|
|
4762
4891
|
/**
|
|
4763
|
-
*
|
|
4892
|
+
* wurde aufgelöst in Gebindeartikel
|
|
4764
4893
|
*/
|
|
4765
|
-
|
|
4894
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
4766
4895
|
|
|
4767
4896
|
/**
|
|
4768
4897
|
* verarbeitete Menge
|
|
@@ -5060,14 +5189,14 @@ export interface DocumentLine {
|
|
|
5060
5189
|
unitType: UnitTypeReference;
|
|
5061
5190
|
|
|
5062
5191
|
/**
|
|
5063
|
-
*
|
|
5192
|
+
* Zubehör Einfügeart
|
|
5064
5193
|
*/
|
|
5065
|
-
|
|
5194
|
+
insertTerm: AccessoryInsertTerm;
|
|
5066
5195
|
|
|
5067
5196
|
/**
|
|
5068
|
-
*
|
|
5197
|
+
* Referenz zur Basiszeile
|
|
5069
5198
|
*/
|
|
5070
|
-
|
|
5199
|
+
baseLineId: number;
|
|
5071
5200
|
|
|
5072
5201
|
/**
|
|
5073
5202
|
* Einheit Bruttogewicht
|
|
@@ -5589,14 +5718,14 @@ export interface DocumentLinePosDetail {
|
|
|
5589
5718
|
externalPaymentStatus: PosPaymentStatus;
|
|
5590
5719
|
|
|
5591
5720
|
/**
|
|
5592
|
-
*
|
|
5721
|
+
* Typ der Position
|
|
5593
5722
|
*/
|
|
5594
|
-
|
|
5723
|
+
posLineType: PosLineType;
|
|
5595
5724
|
|
|
5596
5725
|
/**
|
|
5597
|
-
*
|
|
5726
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5598
5727
|
*/
|
|
5599
|
-
|
|
5728
|
+
externalPaymentId: string;
|
|
5600
5729
|
|
|
5601
5730
|
/**
|
|
5602
5731
|
* Unique identifier of the Object
|
|
@@ -5632,14 +5761,14 @@ export interface DocumentLineRef {
|
|
|
5632
5761
|
quantity: number;
|
|
5633
5762
|
|
|
5634
5763
|
/**
|
|
5635
|
-
*
|
|
5764
|
+
* Artikelnummer
|
|
5636
5765
|
*/
|
|
5637
|
-
|
|
5766
|
+
articleNumber: string;
|
|
5638
5767
|
|
|
5639
5768
|
/**
|
|
5640
|
-
*
|
|
5769
|
+
* Belegart
|
|
5641
5770
|
*/
|
|
5642
|
-
|
|
5771
|
+
documentType: string;
|
|
5643
5772
|
|
|
5644
5773
|
/**
|
|
5645
5774
|
* price per quantity [GROSS, NET]
|
|
@@ -5696,35 +5825,75 @@ export const enum DocumentLineType {
|
|
|
5696
5825
|
export interface DocumentPosDetail {
|
|
5697
5826
|
|
|
5698
5827
|
/**
|
|
5699
|
-
*
|
|
5828
|
+
* Transaktion Endzeit
|
|
5700
5829
|
*/
|
|
5701
|
-
|
|
5830
|
+
timeEnd: number;
|
|
5702
5831
|
|
|
5703
5832
|
/**
|
|
5704
|
-
*
|
|
5833
|
+
* TSS Seriennummer
|
|
5705
5834
|
*/
|
|
5706
|
-
|
|
5835
|
+
tssSerialNumber: string;
|
|
5707
5836
|
|
|
5708
5837
|
/**
|
|
5709
|
-
*
|
|
5838
|
+
* Signatur
|
|
5710
5839
|
*/
|
|
5711
|
-
|
|
5840
|
+
signature: string;
|
|
5712
5841
|
|
|
5713
5842
|
/**
|
|
5714
|
-
*
|
|
5843
|
+
* Client Seriennummer
|
|
5715
5844
|
*/
|
|
5716
|
-
|
|
5845
|
+
clientSerialNumber: string;
|
|
5717
5846
|
|
|
5718
5847
|
/**
|
|
5719
|
-
*
|
|
5848
|
+
* Transaktionsnummer
|
|
5720
5849
|
*/
|
|
5721
|
-
|
|
5850
|
+
transactionNumber: number;
|
|
5851
|
+
|
|
5852
|
+
/**
|
|
5853
|
+
* Signaturzähler
|
|
5854
|
+
*/
|
|
5855
|
+
signatureCounter: number;
|
|
5856
|
+
|
|
5857
|
+
/**
|
|
5858
|
+
* TSS Signatur
|
|
5859
|
+
*/
|
|
5860
|
+
tssSignature: TssSignature;
|
|
5722
5861
|
|
|
5723
5862
|
/**
|
|
5724
5863
|
* Version Identifier for this Object (for PUT)
|
|
5725
5864
|
*/
|
|
5726
5865
|
version: number;
|
|
5727
5866
|
|
|
5867
|
+
/**
|
|
5868
|
+
* Revision
|
|
5869
|
+
*/
|
|
5870
|
+
revision: number;
|
|
5871
|
+
|
|
5872
|
+
/**
|
|
5873
|
+
* Transaktion Startzeit
|
|
5874
|
+
*/
|
|
5875
|
+
timeStart: number;
|
|
5876
|
+
|
|
5877
|
+
/**
|
|
5878
|
+
* Kassenbuch
|
|
5879
|
+
*/
|
|
5880
|
+
cashJournalRef: ApiObjectReference;
|
|
5881
|
+
|
|
5882
|
+
/**
|
|
5883
|
+
* Kasse
|
|
5884
|
+
*/
|
|
5885
|
+
posRegisterRef: ApiObjectReference;
|
|
5886
|
+
|
|
5887
|
+
/**
|
|
5888
|
+
* Unique identifier of the Object
|
|
5889
|
+
*/
|
|
5890
|
+
id: number;
|
|
5891
|
+
|
|
5892
|
+
/**
|
|
5893
|
+
* Kassenschublade
|
|
5894
|
+
*/
|
|
5895
|
+
cashDrawerRef: ApiObjectReference;
|
|
5896
|
+
|
|
5728
5897
|
/**
|
|
5729
5898
|
* MetaInformations for this Object
|
|
5730
5899
|
*/
|
|
@@ -5733,6 +5902,11 @@ export interface DocumentPosDetail {
|
|
|
5733
5902
|
|
|
5734
5903
|
export interface DocumentPosPayment {
|
|
5735
5904
|
|
|
5905
|
+
/**
|
|
5906
|
+
* Art der Zahlungsoperation (PAYMENT, CANCEL, REFUND)
|
|
5907
|
+
*/
|
|
5908
|
+
paymentOperation: PosPaymentOperation;
|
|
5909
|
+
|
|
5736
5910
|
/**
|
|
5737
5911
|
* Betrag
|
|
5738
5912
|
*/
|
|
@@ -5743,25 +5917,45 @@ export interface DocumentPosPayment {
|
|
|
5743
5917
|
*/
|
|
5744
5918
|
depositExpenseTypeRef: ApiObjectReference;
|
|
5745
5919
|
|
|
5920
|
+
/**
|
|
5921
|
+
* Status der externen Zahlung
|
|
5922
|
+
*/
|
|
5923
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
5924
|
+
|
|
5925
|
+
/**
|
|
5926
|
+
* Externe Payment-ID der zu stornierenden Zahlung (nur bei CANCEL)
|
|
5927
|
+
*/
|
|
5928
|
+
cancelledExternalPaymentId: string;
|
|
5929
|
+
|
|
5930
|
+
/**
|
|
5931
|
+
* Version Identifier for this Object (for PUT)
|
|
5932
|
+
*/
|
|
5933
|
+
version: number;
|
|
5934
|
+
|
|
5746
5935
|
/**
|
|
5747
5936
|
* Zahlungsart
|
|
5748
5937
|
*/
|
|
5749
5938
|
posPaymentMethodRef: ApiObjectReference;
|
|
5750
5939
|
|
|
5940
|
+
/**
|
|
5941
|
+
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
5942
|
+
*/
|
|
5943
|
+
externalPaymentErrorMessage: string;
|
|
5944
|
+
|
|
5751
5945
|
/**
|
|
5752
5946
|
* Typ der Position
|
|
5753
5947
|
*/
|
|
5754
5948
|
posLineType: PosLineType;
|
|
5755
5949
|
|
|
5756
5950
|
/**
|
|
5757
|
-
*
|
|
5951
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
5758
5952
|
*/
|
|
5759
|
-
|
|
5953
|
+
externalPaymentId: string;
|
|
5760
5954
|
|
|
5761
5955
|
/**
|
|
5762
|
-
*
|
|
5956
|
+
* Unique identifier of the Object
|
|
5763
5957
|
*/
|
|
5764
|
-
|
|
5958
|
+
id: number;
|
|
5765
5959
|
|
|
5766
5960
|
/**
|
|
5767
5961
|
* MetaInformations for this Object
|
|
@@ -5904,14 +6098,14 @@ export interface DocumentShippingCost {
|
|
|
5904
6098
|
name: string;
|
|
5905
6099
|
|
|
5906
6100
|
/**
|
|
5907
|
-
*
|
|
6101
|
+
* Steuern
|
|
5908
6102
|
*/
|
|
5909
|
-
|
|
6103
|
+
taxes: Array<DocumentTax>;
|
|
5910
6104
|
|
|
5911
6105
|
/**
|
|
5912
|
-
*
|
|
6106
|
+
* Artikelbeschreibung
|
|
5913
6107
|
*/
|
|
5914
|
-
|
|
6108
|
+
description: string;
|
|
5915
6109
|
|
|
5916
6110
|
/**
|
|
5917
6111
|
* Einkaufspreis
|
|
@@ -6014,14 +6208,14 @@ export interface DocumentText {
|
|
|
6014
6208
|
transferableIntoSubsequentDocuments: boolean;
|
|
6015
6209
|
|
|
6016
6210
|
/**
|
|
6017
|
-
*
|
|
6211
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6018
6212
|
*/
|
|
6019
|
-
|
|
6213
|
+
deleted: boolean;
|
|
6020
6214
|
|
|
6021
6215
|
/**
|
|
6022
|
-
*
|
|
6216
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6023
6217
|
*/
|
|
6024
|
-
|
|
6218
|
+
textPosition: TextPosition;
|
|
6025
6219
|
|
|
6026
6220
|
/**
|
|
6027
6221
|
* textBaustein Vorlage
|
|
@@ -6131,14 +6325,14 @@ export interface DocumentType {
|
|
|
6131
6325
|
labels: Array<DocumentTypeLabel>;
|
|
6132
6326
|
|
|
6133
6327
|
/**
|
|
6134
|
-
*
|
|
6328
|
+
* Zählerkreis
|
|
6135
6329
|
*/
|
|
6136
|
-
|
|
6330
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
6137
6331
|
|
|
6138
6332
|
/**
|
|
6139
|
-
*
|
|
6333
|
+
* nächste Belegnummer
|
|
6140
6334
|
*/
|
|
6141
|
-
|
|
6335
|
+
nextNumber: string;
|
|
6142
6336
|
|
|
6143
6337
|
/**
|
|
6144
6338
|
* Sortierung
|
|
@@ -6617,14 +6811,14 @@ export interface FabricationRevertRequest {
|
|
|
6617
6811
|
quantity: number;
|
|
6618
6812
|
|
|
6619
6813
|
/**
|
|
6620
|
-
*
|
|
6814
|
+
* ID der zu stornierenden Position
|
|
6621
6815
|
*/
|
|
6622
|
-
|
|
6816
|
+
documentLineId: number;
|
|
6623
6817
|
|
|
6624
6818
|
/**
|
|
6625
|
-
*
|
|
6819
|
+
* Material automatisch stornieren
|
|
6626
6820
|
*/
|
|
6627
|
-
|
|
6821
|
+
autoRevertComponents: boolean;
|
|
6628
6822
|
|
|
6629
6823
|
/**
|
|
6630
6824
|
* Zu stornierende Seriennummern
|
|
@@ -7025,14 +7219,14 @@ export interface PickTrolley {
|
|
|
7025
7219
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7026
7220
|
|
|
7027
7221
|
/**
|
|
7028
|
-
*
|
|
7222
|
+
* Bearbeiter der Pickliste
|
|
7029
7223
|
*/
|
|
7030
|
-
|
|
7224
|
+
processedByUserRef: ApiObjectReference;
|
|
7031
7225
|
|
|
7032
7226
|
/**
|
|
7033
|
-
*
|
|
7227
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7034
7228
|
*/
|
|
7035
|
-
|
|
7229
|
+
storageBinRef: StorageBinRef;
|
|
7036
7230
|
|
|
7037
7231
|
/**
|
|
7038
7232
|
* Beschreibung des Wagens
|
|
@@ -7288,14 +7482,14 @@ export interface PicklistLine {
|
|
|
7288
7482
|
articleNumber: string;
|
|
7289
7483
|
|
|
7290
7484
|
/**
|
|
7291
|
-
*
|
|
7485
|
+
* Lagernummer
|
|
7292
7486
|
*/
|
|
7293
|
-
|
|
7487
|
+
storageNumber: string;
|
|
7294
7488
|
|
|
7295
7489
|
/**
|
|
7296
|
-
*
|
|
7490
|
+
* Art der Position
|
|
7297
7491
|
*/
|
|
7298
|
-
|
|
7492
|
+
lineType: PicklistLineType;
|
|
7299
7493
|
|
|
7300
7494
|
/**
|
|
7301
7495
|
* ID der Ziel-Dokumentposition
|
|
@@ -7434,14 +7628,14 @@ export interface PicklistLineComponent {
|
|
|
7434
7628
|
targetDocumentLineComponentId: number;
|
|
7435
7629
|
|
|
7436
7630
|
/**
|
|
7437
|
-
*
|
|
7631
|
+
* abweichende Artikelbezeichnung
|
|
7438
7632
|
*/
|
|
7439
|
-
|
|
7633
|
+
articleAlternativeName: string;
|
|
7440
7634
|
|
|
7441
7635
|
/**
|
|
7442
|
-
*
|
|
7636
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
7443
7637
|
*/
|
|
7444
|
-
|
|
7638
|
+
quantityPerAssemblyGroup: number;
|
|
7445
7639
|
|
|
7446
7640
|
/**
|
|
7447
7641
|
* Verpackte Menge der Position
|
|
@@ -7617,11 +7811,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7617
7811
|
*/
|
|
7618
7812
|
alternativeSelectionInVql: string;
|
|
7619
7813
|
|
|
7620
|
-
/**
|
|
7621
|
-
* Nur vollständig lieferbare Positionen
|
|
7622
|
-
*/
|
|
7623
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
7624
|
-
|
|
7625
7814
|
/**
|
|
7626
7815
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
7627
7816
|
*/
|
|
@@ -7632,6 +7821,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
7632
7821
|
*/
|
|
7633
7822
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
7634
7823
|
|
|
7824
|
+
/**
|
|
7825
|
+
* Nur vollständig lieferbare Positionen
|
|
7826
|
+
*/
|
|
7827
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
7828
|
+
|
|
7635
7829
|
/**
|
|
7636
7830
|
* Selektion über den Bereich vom Belegdatum
|
|
7637
7831
|
*/
|
|
@@ -7700,6 +7894,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7700
7894
|
*/
|
|
7701
7895
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
7702
7896
|
|
|
7897
|
+
/**
|
|
7898
|
+
* Lagerplätze vorgeben
|
|
7899
|
+
*/
|
|
7900
|
+
specifyStorageBins: boolean;
|
|
7901
|
+
|
|
7703
7902
|
/**
|
|
7704
7903
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
7705
7904
|
*/
|
|
@@ -7710,11 +7909,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
7710
7909
|
*/
|
|
7711
7910
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
7712
7911
|
|
|
7713
|
-
/**
|
|
7714
|
-
* Lagerplätze vorgeben
|
|
7715
|
-
*/
|
|
7716
|
-
specifyStorageBins: boolean;
|
|
7717
|
-
|
|
7718
7912
|
/**
|
|
7719
7913
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
7720
7914
|
*/
|
|
@@ -7789,14 +7983,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7789
7983
|
useDigitalPicklist: boolean;
|
|
7790
7984
|
|
|
7791
7985
|
/**
|
|
7792
|
-
*
|
|
7986
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
7793
7987
|
*/
|
|
7794
|
-
|
|
7988
|
+
allowPickingOfServiceArticles: boolean;
|
|
7795
7989
|
|
|
7796
7990
|
/**
|
|
7797
|
-
*
|
|
7991
|
+
* Sammelbestätigung erlauben
|
|
7798
7992
|
*/
|
|
7799
|
-
|
|
7993
|
+
allowFullConfirmation: boolean;
|
|
7800
7994
|
|
|
7801
7995
|
/**
|
|
7802
7996
|
* Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
|
|
@@ -7808,6 +8002,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
7808
8002
|
*/
|
|
7809
8003
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
7810
8004
|
|
|
8005
|
+
/**
|
|
8006
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8007
|
+
*/
|
|
8008
|
+
autoDeterminationOfLots: boolean;
|
|
8009
|
+
|
|
7811
8010
|
/**
|
|
7812
8011
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
7813
8012
|
*/
|
|
@@ -8100,14 +8299,14 @@ export interface ProductDiscount {
|
|
|
8100
8299
|
currencyRef: CurrencyReference;
|
|
8101
8300
|
|
|
8102
8301
|
/**
|
|
8103
|
-
*
|
|
8302
|
+
* Preisgruppe
|
|
8104
8303
|
*/
|
|
8105
|
-
|
|
8304
|
+
priceGroupRef: ApiObjectReference;
|
|
8106
8305
|
|
|
8107
8306
|
/**
|
|
8108
|
-
*
|
|
8307
|
+
* Wert des Rabatts
|
|
8109
8308
|
*/
|
|
8110
|
-
|
|
8309
|
+
modifierValue: number;
|
|
8111
8310
|
|
|
8112
8311
|
/**
|
|
8113
8312
|
* Bestimmt die Art des Rabattwerts (fest oder prozentual)
|
|
@@ -8393,19 +8592,19 @@ export interface Referenceable {
|
|
|
8393
8592
|
export interface RequestDocument {
|
|
8394
8593
|
|
|
8395
8594
|
/**
|
|
8396
|
-
*
|
|
8595
|
+
* Belegdatum
|
|
8397
8596
|
*/
|
|
8398
|
-
|
|
8597
|
+
documentDate: ScriptingDate;
|
|
8399
8598
|
|
|
8400
8599
|
/**
|
|
8401
|
-
*
|
|
8600
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
8402
8601
|
*/
|
|
8403
|
-
|
|
8602
|
+
incomingGoodsStorageBinId: number;
|
|
8404
8603
|
|
|
8405
8604
|
/**
|
|
8406
|
-
*
|
|
8605
|
+
* Leistungsdatum
|
|
8407
8606
|
*/
|
|
8408
|
-
|
|
8607
|
+
performanceDate: ScriptingDate;
|
|
8409
8608
|
|
|
8410
8609
|
/**
|
|
8411
8610
|
* Der Anzahlungsbetrag
|
|
@@ -8413,9 +8612,9 @@ export interface RequestDocument {
|
|
|
8413
8612
|
depositPaymentAmount: number;
|
|
8414
8613
|
|
|
8415
8614
|
/**
|
|
8416
|
-
*
|
|
8615
|
+
* ID der Kassenschublade (bei POS)
|
|
8417
8616
|
*/
|
|
8418
|
-
|
|
8617
|
+
cashDrawerId: number;
|
|
8419
8618
|
|
|
8420
8619
|
/**
|
|
8421
8620
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -8706,14 +8905,14 @@ export interface RequestDocumentLine {
|
|
|
8706
8905
|
name: string;
|
|
8707
8906
|
|
|
8708
8907
|
/**
|
|
8709
|
-
*
|
|
8908
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
8710
8909
|
*/
|
|
8711
|
-
|
|
8910
|
+
externalArticleNumber: string;
|
|
8712
8911
|
|
|
8713
8912
|
/**
|
|
8714
|
-
*
|
|
8913
|
+
* ID der Quell-Belegposition
|
|
8715
8914
|
*/
|
|
8716
|
-
|
|
8915
|
+
sourceLineId: number;
|
|
8717
8916
|
|
|
8718
8917
|
/**
|
|
8719
8918
|
* Buchungen zu dieser Belegposition
|
|
@@ -8862,14 +9061,14 @@ export interface SalesAgent {
|
|
|
8862
9061
|
note: string;
|
|
8863
9062
|
|
|
8864
9063
|
/**
|
|
8865
|
-
*
|
|
9064
|
+
* reference to the delivery method
|
|
8866
9065
|
*/
|
|
8867
|
-
|
|
9066
|
+
deliveryMethodRef: ApiObjectReference;
|
|
8868
9067
|
|
|
8869
9068
|
/**
|
|
8870
|
-
*
|
|
9069
|
+
* is sales agent taxable
|
|
8871
9070
|
*/
|
|
8872
|
-
|
|
9071
|
+
taxable: boolean;
|
|
8873
9072
|
|
|
8874
9073
|
/**
|
|
8875
9074
|
* Freifelder
|
|
@@ -9210,14 +9409,14 @@ export interface SequencerConfiguration {
|
|
|
9210
9409
|
key: string;
|
|
9211
9410
|
|
|
9212
9411
|
/**
|
|
9213
|
-
*
|
|
9412
|
+
* Contains details about the sequencer configuration
|
|
9214
9413
|
*/
|
|
9215
|
-
|
|
9414
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9216
9415
|
|
|
9217
9416
|
/**
|
|
9218
|
-
*
|
|
9417
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9219
9418
|
*/
|
|
9220
|
-
|
|
9419
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9221
9420
|
|
|
9222
9421
|
/**
|
|
9223
9422
|
* MetaInformations for this Object
|
|
@@ -9329,14 +9528,14 @@ export interface ShelfDocument {
|
|
|
9329
9528
|
tags: Array<TagDto>;
|
|
9330
9529
|
|
|
9331
9530
|
/**
|
|
9332
|
-
*
|
|
9531
|
+
* share informations
|
|
9333
9532
|
*/
|
|
9334
|
-
|
|
9533
|
+
shares: Array<ShelfShare>;
|
|
9335
9534
|
|
|
9336
9535
|
/**
|
|
9337
|
-
*
|
|
9536
|
+
* Mehrsprachige Bezeichnungen
|
|
9338
9537
|
*/
|
|
9339
|
-
|
|
9538
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
9340
9539
|
|
|
9341
9540
|
/**
|
|
9342
9541
|
* Automatische Löschung ab
|
|
@@ -9521,14 +9720,14 @@ export interface ShelfFile {
|
|
|
9521
9720
|
subFiles: Array<SubFileInfo>;
|
|
9522
9721
|
|
|
9523
9722
|
/**
|
|
9524
|
-
*
|
|
9723
|
+
* revision number of this file
|
|
9525
9724
|
*/
|
|
9526
|
-
|
|
9725
|
+
revisionNumber: number;
|
|
9527
9726
|
|
|
9528
9727
|
/**
|
|
9529
|
-
*
|
|
9728
|
+
* fileSize
|
|
9530
9729
|
*/
|
|
9531
|
-
|
|
9730
|
+
fileSize: number;
|
|
9532
9731
|
|
|
9533
9732
|
/**
|
|
9534
9733
|
* file-extension of this entry
|
|
@@ -9721,6 +9920,214 @@ export interface ShelfTranslatableText {
|
|
|
9721
9920
|
info: MetaInfo;
|
|
9722
9921
|
}
|
|
9723
9922
|
|
|
9923
|
+
export interface Stock {
|
|
9924
|
+
|
|
9925
|
+
/**
|
|
9926
|
+
* Bestand
|
|
9927
|
+
*/
|
|
9928
|
+
amount: number;
|
|
9929
|
+
|
|
9930
|
+
/**
|
|
9931
|
+
* Seriennummer
|
|
9932
|
+
*/
|
|
9933
|
+
serialNumber: ArticleSerialNumber;
|
|
9934
|
+
|
|
9935
|
+
/**
|
|
9936
|
+
* Anzeigename vom Lagerplatz
|
|
9937
|
+
*/
|
|
9938
|
+
storageBinDisplayName: string;
|
|
9939
|
+
|
|
9940
|
+
/**
|
|
9941
|
+
* Lagerplatz
|
|
9942
|
+
*/
|
|
9943
|
+
storageBinId: number;
|
|
9944
|
+
|
|
9945
|
+
/**
|
|
9946
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
9947
|
+
*/
|
|
9948
|
+
reservedSerialQuantity: number;
|
|
9949
|
+
|
|
9950
|
+
/**
|
|
9951
|
+
* Artikel
|
|
9952
|
+
*/
|
|
9953
|
+
articleId: number;
|
|
9954
|
+
}
|
|
9955
|
+
|
|
9956
|
+
export const enum StockJournalFactor {
|
|
9957
|
+
NONE = 'NONE',
|
|
9958
|
+
INCREMENT = 'INCREMENT',
|
|
9959
|
+
DECREMENT = 'DECREMENT'
|
|
9960
|
+
}
|
|
9961
|
+
|
|
9962
|
+
export interface StockMovementManualApi {
|
|
9963
|
+
|
|
9964
|
+
/**
|
|
9965
|
+
* Haltbarkeitsdatum
|
|
9966
|
+
*/
|
|
9967
|
+
expiryDate: ScriptingDate;
|
|
9968
|
+
|
|
9969
|
+
/**
|
|
9970
|
+
* Bemerkung
|
|
9971
|
+
*/
|
|
9972
|
+
note: string;
|
|
9973
|
+
|
|
9974
|
+
/**
|
|
9975
|
+
* Menge
|
|
9976
|
+
*/
|
|
9977
|
+
quantity: number;
|
|
9978
|
+
|
|
9979
|
+
/**
|
|
9980
|
+
* Seriennummer 2, welche gebucht werden soll
|
|
9981
|
+
*/
|
|
9982
|
+
serialNumber2: string;
|
|
9983
|
+
|
|
9984
|
+
/**
|
|
9985
|
+
* Seriennummer 1, welche gebucht werden soll
|
|
9986
|
+
*/
|
|
9987
|
+
serialNumber1: string;
|
|
9988
|
+
|
|
9989
|
+
/**
|
|
9990
|
+
* Lagerplatz
|
|
9991
|
+
*/
|
|
9992
|
+
storageBinId: number;
|
|
9993
|
+
|
|
9994
|
+
/**
|
|
9995
|
+
* Artikel
|
|
9996
|
+
*/
|
|
9997
|
+
articleId: number;
|
|
9998
|
+
|
|
9999
|
+
/**
|
|
10000
|
+
* Lagerort (spielt nur bei Zugängen eine Rolle)
|
|
10001
|
+
*/
|
|
10002
|
+
storageLocation: string;
|
|
10003
|
+
|
|
10004
|
+
/**
|
|
10005
|
+
* EK (spielt nur bei Zugängen eine Rolle)
|
|
10006
|
+
*/
|
|
10007
|
+
purchasePrice: number;
|
|
10008
|
+
|
|
10009
|
+
/**
|
|
10010
|
+
* Notiz zur Seriennummer
|
|
10011
|
+
*/
|
|
10012
|
+
serialNumberNote: string;
|
|
10013
|
+
|
|
10014
|
+
/**
|
|
10015
|
+
* Zugang oder Abgang
|
|
10016
|
+
*/
|
|
10017
|
+
factor: StockJournalFactor;
|
|
10018
|
+
|
|
10019
|
+
/**
|
|
10020
|
+
* Lager
|
|
10021
|
+
*/
|
|
10022
|
+
storageId: number;
|
|
10023
|
+
}
|
|
10024
|
+
|
|
10025
|
+
export interface StockTransferApi {
|
|
10026
|
+
|
|
10027
|
+
/**
|
|
10028
|
+
* Ziel-Lager
|
|
10029
|
+
*/
|
|
10030
|
+
targetStorageId: number;
|
|
10031
|
+
|
|
10032
|
+
/**
|
|
10033
|
+
* Seriennummer
|
|
10034
|
+
*/
|
|
10035
|
+
serialNumberId: number;
|
|
10036
|
+
|
|
10037
|
+
/**
|
|
10038
|
+
* Bemerkung
|
|
10039
|
+
*/
|
|
10040
|
+
note: string;
|
|
10041
|
+
|
|
10042
|
+
/**
|
|
10043
|
+
* Buchungsdatum
|
|
10044
|
+
*/
|
|
10045
|
+
bookDate: ScriptingDate;
|
|
10046
|
+
|
|
10047
|
+
/**
|
|
10048
|
+
* Quell-Lagerplatz
|
|
10049
|
+
*/
|
|
10050
|
+
sourceStorageBinId: number;
|
|
10051
|
+
|
|
10052
|
+
/**
|
|
10053
|
+
* Menge
|
|
10054
|
+
*/
|
|
10055
|
+
quantity: number;
|
|
10056
|
+
|
|
10057
|
+
/**
|
|
10058
|
+
* Quell-Lager
|
|
10059
|
+
*/
|
|
10060
|
+
sourceStorageId: number;
|
|
10061
|
+
|
|
10062
|
+
/**
|
|
10063
|
+
* Ziel-Lagerplatz
|
|
10064
|
+
*/
|
|
10065
|
+
targetStorageBinId: number;
|
|
10066
|
+
|
|
10067
|
+
/**
|
|
10068
|
+
* Artikel
|
|
10069
|
+
*/
|
|
10070
|
+
articleId: number;
|
|
10071
|
+
|
|
10072
|
+
/**
|
|
10073
|
+
* Komponente einer Picklistenposition, falls dafür die Buchung stattfindet
|
|
10074
|
+
*/
|
|
10075
|
+
picklistLineComponentId: number;
|
|
10076
|
+
}
|
|
10077
|
+
|
|
10078
|
+
export interface StockTransferResult {
|
|
10079
|
+
|
|
10080
|
+
/**
|
|
10081
|
+
* Alter Bestand Quellagerplatz
|
|
10082
|
+
*/
|
|
10083
|
+
sourceOldStock: number;
|
|
10084
|
+
|
|
10085
|
+
/**
|
|
10086
|
+
* Quellager
|
|
10087
|
+
*/
|
|
10088
|
+
sourceStorage: ApiObjectReference;
|
|
10089
|
+
|
|
10090
|
+
/**
|
|
10091
|
+
* Umgebuchte Seriennummer
|
|
10092
|
+
*/
|
|
10093
|
+
serialNumber: ApiObjectReference;
|
|
10094
|
+
|
|
10095
|
+
/**
|
|
10096
|
+
* Ziellagerplatz
|
|
10097
|
+
*/
|
|
10098
|
+
targetStorageBin: ApiObjectReference;
|
|
10099
|
+
|
|
10100
|
+
/**
|
|
10101
|
+
* Neuer Bestand Quellagerplatz
|
|
10102
|
+
*/
|
|
10103
|
+
sourceNewStock: number;
|
|
10104
|
+
|
|
10105
|
+
/**
|
|
10106
|
+
* Ziellager
|
|
10107
|
+
*/
|
|
10108
|
+
targetStorage: ApiObjectReference;
|
|
10109
|
+
|
|
10110
|
+
/**
|
|
10111
|
+
* Alter Bestand Ziellagerplatz
|
|
10112
|
+
*/
|
|
10113
|
+
targetOldStock: number;
|
|
10114
|
+
|
|
10115
|
+
/**
|
|
10116
|
+
* Neuer Bestand Ziellagerplatz
|
|
10117
|
+
*/
|
|
10118
|
+
targetNewStock: number;
|
|
10119
|
+
|
|
10120
|
+
/**
|
|
10121
|
+
* Umgebuchter Artikel
|
|
10122
|
+
*/
|
|
10123
|
+
article: ApiObjectReference;
|
|
10124
|
+
|
|
10125
|
+
/**
|
|
10126
|
+
* Quellagerplatz
|
|
10127
|
+
*/
|
|
10128
|
+
sourceStorageBin: ApiObjectReference;
|
|
10129
|
+
}
|
|
10130
|
+
|
|
9724
10131
|
export interface StorageBinRef {
|
|
9725
10132
|
|
|
9726
10133
|
/**
|
|
@@ -9928,14 +10335,14 @@ export interface TagDto {
|
|
|
9928
10335
|
editColor: string;
|
|
9929
10336
|
|
|
9930
10337
|
/**
|
|
9931
|
-
* Farbe
|
|
10338
|
+
* Farbe in Such-GUI
|
|
9932
10339
|
*/
|
|
9933
|
-
|
|
10340
|
+
searchColor: string;
|
|
9934
10341
|
|
|
9935
10342
|
/**
|
|
9936
|
-
* Farbe
|
|
10343
|
+
* Farbe für die Anzeige des Tags
|
|
9937
10344
|
*/
|
|
9938
|
-
|
|
10345
|
+
color: string;
|
|
9939
10346
|
|
|
9940
10347
|
/**
|
|
9941
10348
|
* Beschriftung des Tags
|
|
@@ -10229,14 +10636,14 @@ export interface User {
|
|
|
10229
10636
|
roles: Array<ApiObjectReference>;
|
|
10230
10637
|
|
|
10231
10638
|
/**
|
|
10232
|
-
*
|
|
10639
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
10233
10640
|
*/
|
|
10234
|
-
|
|
10641
|
+
referencedCustomerUserId: number;
|
|
10235
10642
|
|
|
10236
10643
|
/**
|
|
10237
|
-
*
|
|
10644
|
+
* Gruppen
|
|
10238
10645
|
*/
|
|
10239
|
-
|
|
10646
|
+
groups: Array<ApiObjectReference>;
|
|
10240
10647
|
|
|
10241
10648
|
/**
|
|
10242
10649
|
* Is the user active?
|
|
@@ -10259,14 +10666,14 @@ export interface User {
|
|
|
10259
10666
|
version: number;
|
|
10260
10667
|
|
|
10261
10668
|
/**
|
|
10262
|
-
*
|
|
10669
|
+
* first-name
|
|
10263
10670
|
*/
|
|
10264
|
-
|
|
10671
|
+
firstName: string;
|
|
10265
10672
|
|
|
10266
10673
|
/**
|
|
10267
|
-
*
|
|
10674
|
+
* is the email verified
|
|
10268
10675
|
*/
|
|
10269
|
-
|
|
10676
|
+
emailVerified: boolean;
|
|
10270
10677
|
|
|
10271
10678
|
/**
|
|
10272
10679
|
* email-address
|
|
@@ -10443,6 +10850,11 @@ export interface VariantValue {
|
|
|
10443
10850
|
*/
|
|
10444
10851
|
sortOrder: number;
|
|
10445
10852
|
|
|
10853
|
+
/**
|
|
10854
|
+
* Referenz auf eine Mengeneinheit
|
|
10855
|
+
*/
|
|
10856
|
+
unitTypeRef: UnitTypeReference;
|
|
10857
|
+
|
|
10446
10858
|
/**
|
|
10447
10859
|
* Aktiv?
|
|
10448
10860
|
*/
|