@vario-software/types 2026.24.1 → 2026.24.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 +30 -30
- package/scripting/types.d.ts +333 -333
package/scripting/types.d.ts
CHANGED
|
@@ -163,14 +163,14 @@ export interface Account {
|
|
|
163
163
|
custom: EavAccount;
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* tax number/ Steuernummer
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
taxNumber: string;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* Is account active?
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
active: boolean;
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
176
|
* verantwortlicher Benutzer
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -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
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -998,26 +998,26 @@ export interface Article {
|
|
|
998
998
|
*/
|
|
999
999
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1000
1000
|
|
|
1001
|
-
/**
|
|
1002
|
-
* Gefahrgut Informationen
|
|
1003
|
-
*/
|
|
1004
|
-
dangerousGoodInformation: DangerousGoodInformation;
|
|
1005
|
-
|
|
1006
1001
|
/**
|
|
1007
1002
|
* Zolltarifnummer
|
|
1008
1003
|
*/
|
|
1009
1004
|
customsTariffNumber: string;
|
|
1010
1005
|
|
|
1011
1006
|
/**
|
|
1012
|
-
*
|
|
1007
|
+
* Gefahrgut Informationen
|
|
1013
1008
|
*/
|
|
1014
|
-
|
|
1009
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1015
1010
|
|
|
1016
1011
|
/**
|
|
1017
1012
|
* is this product purchasable
|
|
1018
1013
|
*/
|
|
1019
1014
|
purchasable: boolean;
|
|
1020
1015
|
|
|
1016
|
+
/**
|
|
1017
|
+
* Product custom data
|
|
1018
|
+
*/
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
|
+
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
1023
1023
|
*/
|
|
@@ -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
|
|
@@ -1219,14 +1219,14 @@ export interface Article {
|
|
|
1219
1219
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
*
|
|
1222
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1223
1223
|
*/
|
|
1224
|
-
|
|
1224
|
+
taxLiabilityReversed: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
@@ -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)
|
|
@@ -1288,20 +1288,15 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
-
/**
|
|
1292
|
-
* reference to Product
|
|
1293
|
-
*/
|
|
1294
|
-
productRef: ApiObjectReference;
|
|
1295
|
-
|
|
1296
1291
|
/**
|
|
1297
1292
|
* Versandlabeldruck
|
|
1298
1293
|
*/
|
|
1299
1294
|
shippingLabelPrinting: boolean;
|
|
1300
1295
|
|
|
1301
1296
|
/**
|
|
1302
|
-
*
|
|
1297
|
+
* reference to Product
|
|
1303
1298
|
*/
|
|
1304
|
-
|
|
1299
|
+
productRef: ApiObjectReference;
|
|
1305
1300
|
|
|
1306
1301
|
/**
|
|
1307
1302
|
* Kontingentartikel
|
|
@@ -1313,6 +1308,11 @@ export interface Article {
|
|
|
1313
1308
|
*/
|
|
1314
1309
|
discountable: boolean;
|
|
1315
1310
|
|
|
1311
|
+
/**
|
|
1312
|
+
* alternative name of this product
|
|
1313
|
+
*/
|
|
1314
|
+
alternativeName: string;
|
|
1315
|
+
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
1318
1318
|
*/
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1676,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1676
1676
|
proposedLowestPriceGross: number;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
*
|
|
1679
|
+
* der Sales Channel
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
salesChannelRef: ApiObjectReference;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
* der
|
|
1684
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
customLowestPriceGross: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1716,14 +1716,14 @@ export interface ArticleListing {
|
|
|
1716
1716
|
alternativeName: WithDefaults<String>;
|
|
1717
1717
|
|
|
1718
1718
|
/**
|
|
1719
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1719
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1720
1720
|
*/
|
|
1721
|
-
|
|
1721
|
+
customLowestPriceNet: number;
|
|
1722
1722
|
|
|
1723
1723
|
/**
|
|
1724
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1724
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1725
1725
|
*/
|
|
1726
|
-
|
|
1726
|
+
proposedLowestPriceNet: number;
|
|
1727
1727
|
|
|
1728
1728
|
/**
|
|
1729
1729
|
* der aktuelle listing stand
|
|
@@ -1899,14 +1899,14 @@ export interface ArticleStorage {
|
|
|
1899
1899
|
reorderPoint: number;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
|
-
*
|
|
1902
|
+
* Bestellte Menge
|
|
1903
1903
|
*/
|
|
1904
|
-
|
|
1904
|
+
orderedQuantity: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Aktuelle Menge in Kommissionierung
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
quantityInPicking: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
1912
|
* Nachschub auf
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Vorgabe-Lagerplätze
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Sollbestand
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
targetStock: number;
|
|
1970
1970
|
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1991,26 +1991,26 @@ export interface ArticleSupplier {
|
|
|
1991
1991
|
*/
|
|
1992
1992
|
supplierReportingStock: number;
|
|
1993
1993
|
|
|
1994
|
-
/**
|
|
1995
|
-
* Anzeigename des Accounts
|
|
1996
|
-
*/
|
|
1997
|
-
accountDisplayName: string;
|
|
1998
|
-
|
|
1999
1994
|
/**
|
|
2000
1995
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2001
1996
|
*/
|
|
2002
1997
|
useSupplierArticleDescription: boolean;
|
|
2003
1998
|
|
|
2004
1999
|
/**
|
|
2005
|
-
*
|
|
2000
|
+
* Anzeigename des Accounts
|
|
2006
2001
|
*/
|
|
2007
|
-
|
|
2002
|
+
accountDisplayName: string;
|
|
2008
2003
|
|
|
2009
2004
|
/**
|
|
2010
2005
|
* Lieferzeit in (Werk-)Tagen
|
|
2011
2006
|
*/
|
|
2012
2007
|
deliveryTime: number;
|
|
2013
2008
|
|
|
2009
|
+
/**
|
|
2010
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2011
|
+
*/
|
|
2012
|
+
useSupplierArticleIdentifier: boolean;
|
|
2013
|
+
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
2016
2016
|
*/
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Verpackungseinheit
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
packagingUnit: number;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Referenced Article name
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
articleName: string;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2117,14 +2117,14 @@ export interface ArticleSupplier {
|
|
|
2117
2117
|
purchaseUnit: number;
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
*
|
|
2120
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
orderOnComponentBase: boolean;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
|
-
*
|
|
2125
|
+
* Referenced Supplier-Account
|
|
2126
2126
|
*/
|
|
2127
|
-
|
|
2127
|
+
accountId: number;
|
|
2128
2128
|
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2334,14 +2334,14 @@ export interface CountryReference {
|
|
|
2334
2334
|
export interface CreateNewDocumentRequest {
|
|
2335
2335
|
|
|
2336
2336
|
/**
|
|
2337
|
-
*
|
|
2337
|
+
* Belegart
|
|
2338
2338
|
*/
|
|
2339
|
-
|
|
2339
|
+
documentTypeLabel: string;
|
|
2340
2340
|
|
|
2341
2341
|
/**
|
|
2342
|
-
* Belegart
|
|
2342
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2343
2343
|
*/
|
|
2344
|
-
|
|
2344
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2345
2345
|
|
|
2346
2346
|
/**
|
|
2347
2347
|
* Details zum Beleg
|
|
@@ -2407,14 +2407,14 @@ export interface CrmActivity {
|
|
|
2407
2407
|
info: MetaInfo;
|
|
2408
2408
|
|
|
2409
2409
|
/**
|
|
2410
|
-
*
|
|
2410
|
+
* geplante Dauer
|
|
2411
2411
|
*/
|
|
2412
|
-
|
|
2412
|
+
plannedDurationInSeconds: number;
|
|
2413
2413
|
|
|
2414
2414
|
/**
|
|
2415
|
-
*
|
|
2415
|
+
* Aktivität intern abgerechnet?
|
|
2416
2416
|
*/
|
|
2417
|
-
|
|
2417
|
+
internalBilled: boolean;
|
|
2418
2418
|
|
|
2419
2419
|
/**
|
|
2420
2420
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2452,14 +2452,14 @@ export interface CrmActivity {
|
|
|
2452
2452
|
userRef: ApiObjectReference;
|
|
2453
2453
|
|
|
2454
2454
|
/**
|
|
2455
|
-
*
|
|
2455
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2456
2456
|
*/
|
|
2457
|
-
|
|
2457
|
+
system: boolean;
|
|
2458
2458
|
|
|
2459
2459
|
/**
|
|
2460
|
-
*
|
|
2460
|
+
* tatsächliche Startzeit
|
|
2461
2461
|
*/
|
|
2462
|
-
|
|
2462
|
+
startDateTime: ScriptingDateTime;
|
|
2463
2463
|
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Inhalt dieser Aktivität
|
|
@@ -2684,14 +2684,14 @@ export interface CrmDeal {
|
|
|
2684
2684
|
info: MetaInfo;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2693
2693
|
*/
|
|
2694
|
-
|
|
2694
|
+
assignedUserRef: ApiObjectReference;
|
|
2695
2695
|
|
|
2696
2696
|
/**
|
|
2697
2697
|
* Chance (in Prozent)
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Projektleiter vom Auftragnehmer
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Phase
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
phaseRef: ApiObjectReference;
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Aufgaben-Nummer
|
|
@@ -2990,14 +2990,14 @@ export interface CrmProject {
|
|
|
2990
2990
|
billedTimes: number;
|
|
2991
2991
|
|
|
2992
2992
|
/**
|
|
2993
|
-
*
|
|
2993
|
+
* Geplanter Projektzeitraum (von)
|
|
2994
2994
|
*/
|
|
2995
|
-
|
|
2995
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2996
2996
|
|
|
2997
2997
|
/**
|
|
2998
|
-
*
|
|
2998
|
+
* Einkaufsbelege
|
|
2999
2999
|
*/
|
|
3000
|
-
|
|
3000
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Verkaufsbelege
|
|
@@ -3025,14 +3025,14 @@ export interface CrmProject {
|
|
|
3025
3025
|
info: MetaInfo;
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
|
-
*
|
|
3028
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3029
3029
|
*/
|
|
3030
|
-
|
|
3030
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3031
3031
|
|
|
3032
3032
|
/**
|
|
3033
|
-
*
|
|
3033
|
+
* Projektleiter vom Auftraggeber
|
|
3034
3034
|
*/
|
|
3035
|
-
|
|
3035
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Übergeordnete CRM-Objekte
|
|
@@ -3275,6 +3275,11 @@ export interface CrmSubType {
|
|
|
3275
3275
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
|
+
/**
|
|
3279
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3280
|
+
*/
|
|
3281
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3282
|
+
|
|
3278
3283
|
/**
|
|
3279
3284
|
* Angebot
|
|
3280
3285
|
*/
|
|
@@ -3285,11 +3290,6 @@ export interface CrmTask {
|
|
|
3285
3290
|
*/
|
|
3286
3291
|
reminders: Array<CrmReminder>;
|
|
3287
3292
|
|
|
3288
|
-
/**
|
|
3289
|
-
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3290
|
-
*/
|
|
3291
|
-
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3292
|
-
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Notizen
|
|
3295
3295
|
*/
|
|
@@ -3959,14 +3959,14 @@ export interface DeliveryMethod {
|
|
|
3959
3959
|
defaultSizeUnit: UnitTypeReference;
|
|
3960
3960
|
|
|
3961
3961
|
/**
|
|
3962
|
-
*
|
|
3962
|
+
* translations
|
|
3963
3963
|
*/
|
|
3964
|
-
|
|
3964
|
+
translations: Array<DocumentTypeTerm>;
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
|
-
*
|
|
3967
|
+
* Quelle für Paketgewicht
|
|
3968
3968
|
*/
|
|
3969
|
-
|
|
3969
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Versand-Anbieter
|
|
@@ -4057,14 +4057,14 @@ export interface DeliveryTerm {
|
|
|
4057
4057
|
version: number;
|
|
4058
4058
|
|
|
4059
4059
|
/**
|
|
4060
|
-
*
|
|
4060
|
+
* translations
|
|
4061
4061
|
*/
|
|
4062
|
-
|
|
4062
|
+
translations: Array<DocumentTypeTerm>;
|
|
4063
4063
|
|
|
4064
4064
|
/**
|
|
4065
|
-
*
|
|
4065
|
+
* information, how the shipping charges should be calculated
|
|
4066
4066
|
*/
|
|
4067
|
-
|
|
4067
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4068
4068
|
|
|
4069
4069
|
/**
|
|
4070
4070
|
* Lieferarten
|
|
@@ -4077,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4077
4077
|
id: number;
|
|
4078
4078
|
|
|
4079
4079
|
/**
|
|
4080
|
-
*
|
|
4080
|
+
* free shipping net value
|
|
4081
4081
|
*/
|
|
4082
|
-
|
|
4082
|
+
freeShippingNetValue: number;
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
|
-
*
|
|
4085
|
+
* Versandkostenartikel
|
|
4086
4086
|
*/
|
|
4087
|
-
|
|
4087
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4088
4088
|
|
|
4089
4089
|
/**
|
|
4090
4090
|
* MetaInformations for this Object
|
|
@@ -4095,14 +4095,14 @@ export interface DeliveryTerm {
|
|
|
4095
4095
|
export interface Document {
|
|
4096
4096
|
|
|
4097
4097
|
/**
|
|
4098
|
-
*
|
|
4098
|
+
* Referenz zum Rechnungskonto
|
|
4099
4099
|
*/
|
|
4100
|
-
|
|
4100
|
+
billingAccountRef: ApiObjectReference;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
4108
|
* Externe Belegnummer
|
|
@@ -4183,14 +4183,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4183
4183
|
deliveryQuantityPackages: number;
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
4186
|
-
*
|
|
4186
|
+
* Bestellnummer aus Vorbeleg
|
|
4187
4187
|
*/
|
|
4188
|
-
|
|
4188
|
+
referencedOrderNumber: string;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
|
-
*
|
|
4191
|
+
* Leitweg-ID
|
|
4192
4192
|
*/
|
|
4193
|
-
|
|
4193
|
+
buyerReference: string;
|
|
4194
4194
|
|
|
4195
4195
|
/**
|
|
4196
4196
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4243,14 +4243,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4243
4243
|
accountId: number;
|
|
4244
4244
|
|
|
4245
4245
|
/**
|
|
4246
|
-
* Länderkennzeichen
|
|
4246
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4247
4247
|
*/
|
|
4248
|
-
|
|
4248
|
+
sourceCountryCode: string;
|
|
4249
4249
|
|
|
4250
4250
|
/**
|
|
4251
|
-
* Länderkennzeichen
|
|
4251
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4252
4252
|
*/
|
|
4253
|
-
|
|
4253
|
+
performanceCountryCode: string;
|
|
4254
4254
|
|
|
4255
4255
|
/**
|
|
4256
4256
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4278,14 +4278,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4278
4278
|
documentDate: ScriptingDate;
|
|
4279
4279
|
|
|
4280
4280
|
/**
|
|
4281
|
-
*
|
|
4281
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4282
4282
|
*/
|
|
4283
|
-
|
|
4283
|
+
roundingAmount: number;
|
|
4284
4284
|
|
|
4285
4285
|
/**
|
|
4286
|
-
*
|
|
4286
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4287
4287
|
*/
|
|
4288
|
-
|
|
4288
|
+
taxLiabilityReversed: boolean;
|
|
4289
4289
|
|
|
4290
4290
|
/**
|
|
4291
4291
|
* Versanddatum
|
|
@@ -4298,20 +4298,27 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4298
4298
|
supplierNumber: string;
|
|
4299
4299
|
|
|
4300
4300
|
/**
|
|
4301
|
-
*
|
|
4301
|
+
* Gesamtpreis brutto
|
|
4302
4302
|
*/
|
|
4303
|
-
|
|
4303
|
+
totalGrossPrice: number;
|
|
4304
4304
|
|
|
4305
4305
|
/**
|
|
4306
|
-
*
|
|
4306
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4307
4307
|
*/
|
|
4308
|
-
|
|
4308
|
+
deliveryApproved: boolean;
|
|
4309
4309
|
|
|
4310
4310
|
/**
|
|
4311
4311
|
* Kassen-Zahlungspositionen
|
|
4312
4312
|
*/
|
|
4313
4313
|
posPayments: Array<DocumentPosPayment>;
|
|
4314
4314
|
|
|
4315
|
+
/**
|
|
4316
|
+
* Ist die Quittung bezahlt
|
|
4317
|
+
true wenn die Quittung bezahlt ist
|
|
4318
|
+
|
|
4319
|
+
*/
|
|
4320
|
+
posReceiptPayed: boolean;
|
|
4321
|
+
|
|
4315
4322
|
/**
|
|
4316
4323
|
* Kundennummer beim Lieferanten
|
|
4317
4324
|
*/
|
|
@@ -4322,13 +4329,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4322
4329
|
*/
|
|
4323
4330
|
maxDeliveries: number;
|
|
4324
4331
|
|
|
4325
|
-
/**
|
|
4326
|
-
* Ist die Quittung bezahlt
|
|
4327
|
-
true wenn die Quittung bezahlt ist
|
|
4328
|
-
|
|
4329
|
-
*/
|
|
4330
|
-
posReceiptPayed: boolean;
|
|
4331
|
-
|
|
4332
4332
|
/**
|
|
4333
4333
|
* Quittung: Summe Zahlbetrag
|
|
4334
4334
|
*/
|
|
@@ -4350,14 +4350,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4350
4350
|
contractDetail: DocumentContractDetail;
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
*
|
|
4353
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4354
4354
|
*/
|
|
4355
|
-
|
|
4355
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Zahlungsplan vorhanden?
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
paymentPlan: boolean;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
4363
|
* Produktionsdetails
|
|
@@ -4375,14 +4375,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4375
4375
|
accountNumber: string;
|
|
4376
4376
|
|
|
4377
4377
|
/**
|
|
4378
|
-
*
|
|
4378
|
+
* Referenz auf Zahlungsbedingung
|
|
4379
4379
|
*/
|
|
4380
|
-
|
|
4380
|
+
paymentTermRef: PaymentTermRef;
|
|
4381
4381
|
|
|
4382
4382
|
/**
|
|
4383
|
-
*
|
|
4383
|
+
* Wird vom Workflow verarbeitet?
|
|
4384
4384
|
*/
|
|
4385
|
-
|
|
4385
|
+
processedByWorkflow: boolean;
|
|
4386
4386
|
|
|
4387
4387
|
/**
|
|
4388
4388
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4414,26 +4414,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4414
4414
|
*/
|
|
4415
4415
|
defaultAddress: DocumentAddress;
|
|
4416
4416
|
|
|
4417
|
-
/**
|
|
4418
|
-
* Leistungsdatum
|
|
4419
|
-
*/
|
|
4420
|
-
performanceDate: ScriptingDate;
|
|
4421
|
-
|
|
4422
4417
|
/**
|
|
4423
4418
|
* Verarbeitungsoption für Stapel
|
|
4424
4419
|
*/
|
|
4425
4420
|
stackProcessingType: OrderStackProcessingType;
|
|
4426
4421
|
|
|
4427
4422
|
/**
|
|
4428
|
-
*
|
|
4423
|
+
* Leistungsdatum
|
|
4429
4424
|
*/
|
|
4430
|
-
|
|
4425
|
+
performanceDate: ScriptingDate;
|
|
4431
4426
|
|
|
4432
4427
|
/**
|
|
4433
4428
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4434
4429
|
*/
|
|
4435
4430
|
dropShippingInvoiceApproved: boolean;
|
|
4436
4431
|
|
|
4432
|
+
/**
|
|
4433
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4434
|
+
*/
|
|
4435
|
+
en16931Profile: EN16931Profile;
|
|
4436
|
+
|
|
4437
4437
|
/**
|
|
4438
4438
|
* Ort der steuerlichen Leistungserbringung
|
|
4439
4439
|
*/
|
|
@@ -4450,14 +4450,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4450
4450
|
additionalInfo: DocumentAdditionalInfo;
|
|
4451
4451
|
|
|
4452
4452
|
/**
|
|
4453
|
-
*
|
|
4453
|
+
* Bestelldatum
|
|
4454
4454
|
*/
|
|
4455
|
-
|
|
4455
|
+
orderedOn: ScriptingDate;
|
|
4456
4456
|
|
|
4457
4457
|
/**
|
|
4458
|
-
*
|
|
4458
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4459
4459
|
*/
|
|
4460
|
-
|
|
4460
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4461
4461
|
|
|
4462
4462
|
/**
|
|
4463
4463
|
* MetaInformations for this Object
|
|
@@ -4480,14 +4480,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4480
4480
|
dropShipping: boolean;
|
|
4481
4481
|
|
|
4482
4482
|
/**
|
|
4483
|
-
*
|
|
4483
|
+
* Gesamtpreis netto
|
|
4484
4484
|
*/
|
|
4485
|
-
|
|
4485
|
+
totalNetPrice: number;
|
|
4486
4486
|
|
|
4487
4487
|
/**
|
|
4488
|
-
*
|
|
4488
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4489
4489
|
*/
|
|
4490
|
-
|
|
4490
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
4493
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4646,25 +4646,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4646
4646
|
*/
|
|
4647
4647
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4648
4648
|
|
|
4649
|
-
/**
|
|
4650
|
-
* Status der USt-ID-Prüfung
|
|
4651
|
-
*/
|
|
4652
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
4653
|
-
|
|
4654
4649
|
/**
|
|
4655
4650
|
* Rechnungsadresse
|
|
4656
4651
|
*/
|
|
4657
4652
|
billingAddress: DocumentAddress;
|
|
4658
4653
|
|
|
4659
4654
|
/**
|
|
4660
|
-
*
|
|
4655
|
+
* Status der USt-ID-Prüfung
|
|
4661
4656
|
*/
|
|
4662
|
-
|
|
4657
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4663
4658
|
|
|
4664
4659
|
/**
|
|
4665
4660
|
* Report-Gruppe, falls vom Standard abweichend
|
|
4666
4661
|
*/
|
|
4667
4662
|
reportGroupRef: ApiObjectReference;
|
|
4663
|
+
|
|
4664
|
+
/**
|
|
4665
|
+
* Bestellt durch Ansprechpartner
|
|
4666
|
+
*/
|
|
4667
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4668
4668
|
}
|
|
4669
4669
|
|
|
4670
4670
|
export interface DocumentAdditionalInfo {
|
|
@@ -4845,14 +4845,14 @@ export interface DocumentAddress {
|
|
|
4845
4845
|
info: MetaInfo;
|
|
4846
4846
|
|
|
4847
4847
|
/**
|
|
4848
|
-
*
|
|
4848
|
+
* Lieferart
|
|
4849
4849
|
*/
|
|
4850
|
-
|
|
4850
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4851
4851
|
|
|
4852
4852
|
/**
|
|
4853
|
-
*
|
|
4853
|
+
* GLN
|
|
4854
4854
|
*/
|
|
4855
|
-
|
|
4855
|
+
globalLocationNumber: string;
|
|
4856
4856
|
|
|
4857
4857
|
/**
|
|
4858
4858
|
* Postcode
|
|
@@ -5205,14 +5205,14 @@ export const enum DocumentImportType {
|
|
|
5205
5205
|
export interface DocumentLine {
|
|
5206
5206
|
|
|
5207
5207
|
/**
|
|
5208
|
-
*
|
|
5208
|
+
* Zolltarifnummer
|
|
5209
5209
|
*/
|
|
5210
|
-
|
|
5210
|
+
customsTariffNumber: string;
|
|
5211
5211
|
|
|
5212
5212
|
/**
|
|
5213
|
-
*
|
|
5213
|
+
* Leistungsdatum
|
|
5214
5214
|
*/
|
|
5215
|
-
|
|
5215
|
+
performanceDate: ScriptingDate;
|
|
5216
5216
|
|
|
5217
5217
|
/**
|
|
5218
5218
|
* Land der Herkunft
|
|
@@ -5220,14 +5220,14 @@ export interface DocumentLine {
|
|
|
5220
5220
|
country: CountryReference;
|
|
5221
5221
|
|
|
5222
5222
|
/**
|
|
5223
|
-
*
|
|
5223
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5224
5224
|
*/
|
|
5225
|
-
|
|
5225
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5226
5226
|
|
|
5227
5227
|
/**
|
|
5228
|
-
*
|
|
5228
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5229
5229
|
*/
|
|
5230
|
-
|
|
5230
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5231
5231
|
|
|
5232
5232
|
/**
|
|
5233
5233
|
* verarbeitete Menge
|
|
@@ -5275,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5275
5275
|
number: string;
|
|
5276
5276
|
|
|
5277
5277
|
/**
|
|
5278
|
-
*
|
|
5278
|
+
* Referenz zur Kundenauftragszeile
|
|
5279
5279
|
*/
|
|
5280
|
-
|
|
5280
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5281
5281
|
|
|
5282
5282
|
/**
|
|
5283
|
-
*
|
|
5283
|
+
* Gesamtbruttogewicht
|
|
5284
5284
|
*/
|
|
5285
|
-
|
|
5285
|
+
totalGrossWeight: number;
|
|
5286
5286
|
|
|
5287
5287
|
/**
|
|
5288
5288
|
* skontierbare Position?
|
|
@@ -5305,14 +5305,14 @@ export interface DocumentLine {
|
|
|
5305
5305
|
financeBooking: DocumentFinanceBooking;
|
|
5306
5306
|
|
|
5307
5307
|
/**
|
|
5308
|
-
*
|
|
5308
|
+
* Positionstyp
|
|
5309
5309
|
*/
|
|
5310
|
-
|
|
5310
|
+
lineType: DocumentLineType;
|
|
5311
5311
|
|
|
5312
5312
|
/**
|
|
5313
|
-
*
|
|
5313
|
+
* Gesamtpreis Position in Basiswährung
|
|
5314
5314
|
*/
|
|
5315
|
-
|
|
5315
|
+
baseTotalLinePrice: number;
|
|
5316
5316
|
|
|
5317
5317
|
/**
|
|
5318
5318
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5345,9 +5345,9 @@ export interface DocumentLine {
|
|
|
5345
5345
|
id: number;
|
|
5346
5346
|
|
|
5347
5347
|
/**
|
|
5348
|
-
*
|
|
5348
|
+
* Externe Referenz zum VDS-Paket
|
|
5349
5349
|
*/
|
|
5350
|
-
|
|
5350
|
+
externalReferenceVds: string;
|
|
5351
5351
|
|
|
5352
5352
|
/**
|
|
5353
5353
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -5355,14 +5355,14 @@ export interface DocumentLine {
|
|
|
5355
5355
|
positionOfArticleLine: number;
|
|
5356
5356
|
|
|
5357
5357
|
/**
|
|
5358
|
-
*
|
|
5358
|
+
* Preis pro Einheit in Basiswährung
|
|
5359
5359
|
*/
|
|
5360
|
-
|
|
5360
|
+
basePrice: number;
|
|
5361
5361
|
|
|
5362
5362
|
/**
|
|
5363
|
-
*
|
|
5363
|
+
* Serientyp
|
|
5364
5364
|
*/
|
|
5365
|
-
|
|
5365
|
+
serialType: ArticleSerialType;
|
|
5366
5366
|
|
|
5367
5367
|
/**
|
|
5368
5368
|
* MetaInformations for this Object
|
|
@@ -5530,14 +5530,14 @@ export interface DocumentLine {
|
|
|
5530
5530
|
unitType: UnitTypeReference;
|
|
5531
5531
|
|
|
5532
5532
|
/**
|
|
5533
|
-
*
|
|
5533
|
+
* Referenz zur Basiszeile
|
|
5534
5534
|
*/
|
|
5535
|
-
|
|
5535
|
+
baseLineId: number;
|
|
5536
5536
|
|
|
5537
5537
|
/**
|
|
5538
|
-
*
|
|
5538
|
+
* Zubehör Einfügeart
|
|
5539
5539
|
*/
|
|
5540
|
-
|
|
5540
|
+
insertTerm: AccessoryInsertTerm;
|
|
5541
5541
|
|
|
5542
5542
|
/**
|
|
5543
5543
|
* Einheit Bruttogewicht
|
|
@@ -5565,14 +5565,14 @@ export interface DocumentLine {
|
|
|
5565
5565
|
productType: ProductType;
|
|
5566
5566
|
|
|
5567
5567
|
/**
|
|
5568
|
-
*
|
|
5568
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5569
5569
|
*/
|
|
5570
|
-
|
|
5570
|
+
baseSalesValueNet: number;
|
|
5571
5571
|
|
|
5572
5572
|
/**
|
|
5573
|
-
*
|
|
5573
|
+
* Vertragsinformationen
|
|
5574
5574
|
*/
|
|
5575
|
-
|
|
5575
|
+
contractDetail: DocumentContractDetail;
|
|
5576
5576
|
|
|
5577
5577
|
/**
|
|
5578
5578
|
* Einheit Nettogewicht
|
|
@@ -6122,14 +6122,14 @@ export interface DocumentLinePosDetail {
|
|
|
6122
6122
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6123
6123
|
|
|
6124
6124
|
/**
|
|
6125
|
-
*
|
|
6125
|
+
* Typ der Einlage/Ausgabe
|
|
6126
6126
|
*/
|
|
6127
|
-
|
|
6127
|
+
depositExpenseTypeId: number;
|
|
6128
6128
|
|
|
6129
6129
|
/**
|
|
6130
|
-
*
|
|
6130
|
+
* Status der externen Zahlung
|
|
6131
6131
|
*/
|
|
6132
|
-
|
|
6132
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6133
6133
|
|
|
6134
6134
|
/**
|
|
6135
6135
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6167,14 +6167,14 @@ export interface DocumentLinePosDetail {
|
|
|
6167
6167
|
balanceBeforeWithdrawal: number;
|
|
6168
6168
|
|
|
6169
6169
|
/**
|
|
6170
|
-
*
|
|
6170
|
+
* Typ der Position
|
|
6171
6171
|
*/
|
|
6172
|
-
|
|
6172
|
+
posLineType: PosLineType;
|
|
6173
6173
|
|
|
6174
6174
|
/**
|
|
6175
|
-
*
|
|
6175
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6176
6176
|
*/
|
|
6177
|
-
|
|
6177
|
+
externalPaymentId: string;
|
|
6178
6178
|
|
|
6179
6179
|
/**
|
|
6180
6180
|
* Unique identifier of the Object
|
|
@@ -6408,14 +6408,14 @@ export interface DocumentPosPayment {
|
|
|
6408
6408
|
balanceBeforeWithdrawal: number;
|
|
6409
6409
|
|
|
6410
6410
|
/**
|
|
6411
|
-
*
|
|
6411
|
+
* Typ der Position
|
|
6412
6412
|
*/
|
|
6413
|
-
|
|
6413
|
+
posLineType: PosLineType;
|
|
6414
6414
|
|
|
6415
6415
|
/**
|
|
6416
|
-
*
|
|
6416
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6417
6417
|
*/
|
|
6418
|
-
|
|
6418
|
+
externalPaymentId: string;
|
|
6419
6419
|
|
|
6420
6420
|
/**
|
|
6421
6421
|
* Unique identifier of the Object
|
|
@@ -6543,14 +6543,14 @@ export const enum DocumentRounding {
|
|
|
6543
6543
|
export interface DocumentShippingCost {
|
|
6544
6544
|
|
|
6545
6545
|
/**
|
|
6546
|
-
*
|
|
6546
|
+
* Die Versandkosten
|
|
6547
6547
|
*/
|
|
6548
|
-
|
|
6548
|
+
costs: number;
|
|
6549
6549
|
|
|
6550
6550
|
/**
|
|
6551
|
-
*
|
|
6551
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6552
6552
|
*/
|
|
6553
|
-
|
|
6553
|
+
manualCosts: boolean;
|
|
6554
6554
|
|
|
6555
6555
|
/**
|
|
6556
6556
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6983,14 +6983,14 @@ export const enum DropShippingPolicy {
|
|
|
6983
6983
|
export interface DummySerialNumberStockTransferApi {
|
|
6984
6984
|
|
|
6985
6985
|
/**
|
|
6986
|
-
*
|
|
6986
|
+
* Seriennummer
|
|
6987
6987
|
*/
|
|
6988
|
-
|
|
6988
|
+
serialNumberId: number;
|
|
6989
6989
|
|
|
6990
6990
|
/**
|
|
6991
|
-
*
|
|
6991
|
+
* Ziel-Lager
|
|
6992
6992
|
*/
|
|
6993
|
-
|
|
6993
|
+
targetStorageId: number;
|
|
6994
6994
|
|
|
6995
6995
|
/**
|
|
6996
6996
|
* Bemerkung
|
|
@@ -7003,14 +7003,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7003
7003
|
bookDate: ScriptingDate;
|
|
7004
7004
|
|
|
7005
7005
|
/**
|
|
7006
|
-
*
|
|
7006
|
+
* Die gültige Seriennummer
|
|
7007
7007
|
*/
|
|
7008
|
-
|
|
7008
|
+
targetSerialNumber: string;
|
|
7009
7009
|
|
|
7010
7010
|
/**
|
|
7011
|
-
*
|
|
7011
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7012
7012
|
*/
|
|
7013
|
-
|
|
7013
|
+
targetExpiryDate: ScriptingDate;
|
|
7014
7014
|
|
|
7015
7015
|
/**
|
|
7016
7016
|
* Quell-Lagerplatz
|
|
@@ -7574,14 +7574,14 @@ export interface PaymentMethod {
|
|
|
7574
7574
|
dunnable: boolean;
|
|
7575
7575
|
|
|
7576
7576
|
/**
|
|
7577
|
-
*
|
|
7577
|
+
* translations
|
|
7578
7578
|
*/
|
|
7579
|
-
|
|
7579
|
+
translations: Array<DocumentTypeTerm>;
|
|
7580
7580
|
|
|
7581
7581
|
/**
|
|
7582
|
-
*
|
|
7582
|
+
* Debitoren-OP abschließen?
|
|
7583
7583
|
*/
|
|
7584
|
-
|
|
7584
|
+
closeCustomerAccountType: boolean;
|
|
7585
7585
|
|
|
7586
7586
|
/**
|
|
7587
7587
|
* +Tage für Folgelastschrift
|
|
@@ -7589,14 +7589,14 @@ export interface PaymentMethod {
|
|
|
7589
7589
|
daysToAddForFollowup: number;
|
|
7590
7590
|
|
|
7591
7591
|
/**
|
|
7592
|
-
*
|
|
7592
|
+
* Die Business Transaction
|
|
7593
7593
|
*/
|
|
7594
|
-
|
|
7594
|
+
businessTransaction: ApiObjectReference;
|
|
7595
7595
|
|
|
7596
7596
|
/**
|
|
7597
|
-
*
|
|
7597
|
+
* external Payment Id
|
|
7598
7598
|
*/
|
|
7599
|
-
|
|
7599
|
+
externalPaymentId: string;
|
|
7600
7600
|
|
|
7601
7601
|
/**
|
|
7602
7602
|
* Unique identifier of the Object
|
|
@@ -7627,14 +7627,14 @@ export interface PaymentTerm {
|
|
|
7627
7627
|
paymentDiscount2: number;
|
|
7628
7628
|
|
|
7629
7629
|
/**
|
|
7630
|
-
*
|
|
7630
|
+
* printDescription
|
|
7631
7631
|
*/
|
|
7632
|
-
|
|
7632
|
+
printDescription: string;
|
|
7633
7633
|
|
|
7634
7634
|
/**
|
|
7635
|
-
*
|
|
7635
|
+
* Percent for Discount 1
|
|
7636
7636
|
*/
|
|
7637
|
-
|
|
7637
|
+
paymentDiscount1: number;
|
|
7638
7638
|
|
|
7639
7639
|
/**
|
|
7640
7640
|
* for deposit: remaining term
|
|
@@ -7765,14 +7765,14 @@ export interface PickTrolley {
|
|
|
7765
7765
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7766
7766
|
|
|
7767
7767
|
/**
|
|
7768
|
-
*
|
|
7768
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7769
7769
|
*/
|
|
7770
|
-
|
|
7770
|
+
storageBinRef: StorageBinRef;
|
|
7771
7771
|
|
|
7772
7772
|
/**
|
|
7773
|
-
*
|
|
7773
|
+
* Bearbeiter der Pickliste
|
|
7774
7774
|
*/
|
|
7775
|
-
|
|
7775
|
+
processedByUserRef: ApiObjectReference;
|
|
7776
7776
|
|
|
7777
7777
|
/**
|
|
7778
7778
|
* Beschreibung des Wagens
|
|
@@ -8191,14 +8191,14 @@ export interface PicklistLineComponent {
|
|
|
8191
8191
|
targetDocumentLineComponentId: number;
|
|
8192
8192
|
|
|
8193
8193
|
/**
|
|
8194
|
-
*
|
|
8194
|
+
* abweichende Artikelbezeichnung
|
|
8195
8195
|
*/
|
|
8196
|
-
|
|
8196
|
+
articleAlternativeName: string;
|
|
8197
8197
|
|
|
8198
8198
|
/**
|
|
8199
|
-
*
|
|
8199
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8200
8200
|
*/
|
|
8201
|
-
|
|
8201
|
+
quantityPerAssemblyGroup: number;
|
|
8202
8202
|
|
|
8203
8203
|
/**
|
|
8204
8204
|
* Verpackte Menge der Position
|
|
@@ -8377,14 +8377,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8377
8377
|
maxOrderValue: number;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
*
|
|
8380
|
+
* Nur vollständig lieferbare Positionen
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
|
-
*
|
|
8385
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
8386
8386
|
*/
|
|
8387
|
-
|
|
8387
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8388
8388
|
|
|
8389
8389
|
/**
|
|
8390
8390
|
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
@@ -8470,14 +8470,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8470
8470
|
specifyStorageBins: boolean;
|
|
8471
8471
|
|
|
8472
8472
|
/**
|
|
8473
|
-
*
|
|
8473
|
+
* Der zu verwendende Pickwagen
|
|
8474
8474
|
*/
|
|
8475
|
-
|
|
8475
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8476
8476
|
|
|
8477
8477
|
/**
|
|
8478
|
-
*
|
|
8478
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8479
8479
|
*/
|
|
8480
|
-
|
|
8480
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8481
8481
|
|
|
8482
8482
|
/**
|
|
8483
8483
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8533,14 +8533,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8533
8533
|
alwaysShowDeliveryMethod: boolean;
|
|
8534
8534
|
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8537
8537
|
*/
|
|
8538
|
-
|
|
8538
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8539
8539
|
|
|
8540
8540
|
/**
|
|
8541
|
-
*
|
|
8541
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8542
8542
|
*/
|
|
8543
|
-
|
|
8543
|
+
autoPrintDeliveryDocument: boolean;
|
|
8544
8544
|
|
|
8545
8545
|
/**
|
|
8546
8546
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8548,24 +8548,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8548
8548
|
showShippingFormOnPickingFinish: boolean;
|
|
8549
8549
|
|
|
8550
8550
|
/**
|
|
8551
|
-
*
|
|
8551
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8552
8552
|
*/
|
|
8553
|
-
|
|
8553
|
+
printLabelOnScan: boolean;
|
|
8554
8554
|
|
|
8555
8555
|
/**
|
|
8556
|
-
*
|
|
8556
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
8557
8557
|
*/
|
|
8558
|
-
|
|
8558
|
+
allowPickingOfServiceArticles: boolean;
|
|
8559
8559
|
|
|
8560
8560
|
/**
|
|
8561
|
-
*
|
|
8561
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8562
8562
|
*/
|
|
8563
|
-
|
|
8563
|
+
useDigitalPicklist: boolean;
|
|
8564
8564
|
|
|
8565
8565
|
/**
|
|
8566
|
-
*
|
|
8566
|
+
* Sammelbestätigung erlauben
|
|
8567
8567
|
*/
|
|
8568
|
-
|
|
8568
|
+
allowFullConfirmation: boolean;
|
|
8569
8569
|
|
|
8570
8570
|
/**
|
|
8571
8571
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -8935,14 +8935,14 @@ export interface ProductDiscount {
|
|
|
8935
8935
|
modifierValueType: ValueType;
|
|
8936
8936
|
|
|
8937
8937
|
/**
|
|
8938
|
-
*
|
|
8938
|
+
* Account, für den der Rabatt gültig ist
|
|
8939
8939
|
*/
|
|
8940
|
-
|
|
8940
|
+
accountRef: ApiObjectReference;
|
|
8941
8941
|
|
|
8942
8942
|
/**
|
|
8943
|
-
*
|
|
8943
|
+
* Name des Rabatts
|
|
8944
8944
|
*/
|
|
8945
|
-
|
|
8945
|
+
modifierName: string;
|
|
8946
8946
|
|
|
8947
8947
|
/**
|
|
8948
8948
|
* Unique identifier of the Object
|
|
@@ -9258,9 +9258,9 @@ export interface RequestDocument {
|
|
|
9258
9258
|
documentDate: ScriptingDate;
|
|
9259
9259
|
|
|
9260
9260
|
/**
|
|
9261
|
-
*
|
|
9261
|
+
* ID der Kassenschublade (bei POS)
|
|
9262
9262
|
*/
|
|
9263
|
-
|
|
9263
|
+
cashDrawerId: number;
|
|
9264
9264
|
|
|
9265
9265
|
/**
|
|
9266
9266
|
* Der Anzahlungsbetrag
|
|
@@ -9268,9 +9268,9 @@ export interface RequestDocument {
|
|
|
9268
9268
|
depositPaymentAmount: number;
|
|
9269
9269
|
|
|
9270
9270
|
/**
|
|
9271
|
-
*
|
|
9271
|
+
* Leistungsdatum
|
|
9272
9272
|
*/
|
|
9273
|
-
|
|
9273
|
+
performanceDate: ScriptingDate;
|
|
9274
9274
|
|
|
9275
9275
|
/**
|
|
9276
9276
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9328,14 +9328,14 @@ export interface RequestDocument {
|
|
|
9328
9328
|
lines: Array<RequestDocumentLine>;
|
|
9329
9329
|
|
|
9330
9330
|
/**
|
|
9331
|
-
*
|
|
9331
|
+
* Die Vertragsdetails
|
|
9332
9332
|
*/
|
|
9333
|
-
|
|
9333
|
+
contractDetail: DocumentContractDetail;
|
|
9334
9334
|
|
|
9335
9335
|
/**
|
|
9336
|
-
*
|
|
9336
|
+
* ID der Kasse (bei POS)
|
|
9337
9337
|
*/
|
|
9338
|
-
|
|
9338
|
+
posRegisterId: number;
|
|
9339
9339
|
|
|
9340
9340
|
/**
|
|
9341
9341
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -9560,25 +9560,25 @@ export interface RequestDocumentLine {
|
|
|
9560
9560
|
*/
|
|
9561
9561
|
externalArticleNumber: string;
|
|
9562
9562
|
|
|
9563
|
-
/**
|
|
9564
|
-
* ID der Quell-Belegposition
|
|
9565
|
-
*/
|
|
9566
|
-
sourceLineId: number;
|
|
9567
|
-
|
|
9568
9563
|
/**
|
|
9569
9564
|
* Buchungen zu dieser Belegposition
|
|
9570
9565
|
*/
|
|
9571
9566
|
bookings: Array<RequestDocumentLineBooking>;
|
|
9572
9567
|
|
|
9573
9568
|
/**
|
|
9574
|
-
*
|
|
9569
|
+
* ID der Quell-Belegposition
|
|
9575
9570
|
*/
|
|
9576
|
-
|
|
9571
|
+
sourceLineId: number;
|
|
9577
9572
|
|
|
9578
9573
|
/**
|
|
9579
9574
|
* (optional) Preis des Artikels dieser Position
|
|
9580
9575
|
*/
|
|
9581
9576
|
productPrice: number;
|
|
9577
|
+
|
|
9578
|
+
/**
|
|
9579
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
9580
|
+
*/
|
|
9581
|
+
doLabelPrint: boolean;
|
|
9582
9582
|
}
|
|
9583
9583
|
|
|
9584
9584
|
export interface RequestDocumentLineBooking {
|
|
@@ -9735,14 +9735,14 @@ export interface SalesAgent {
|
|
|
9735
9735
|
note: string;
|
|
9736
9736
|
|
|
9737
9737
|
/**
|
|
9738
|
-
*
|
|
9738
|
+
* reference to the delivery method
|
|
9739
9739
|
*/
|
|
9740
|
-
|
|
9740
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9741
9741
|
|
|
9742
9742
|
/**
|
|
9743
|
-
*
|
|
9743
|
+
* is sales agent taxable
|
|
9744
9744
|
*/
|
|
9745
|
-
|
|
9745
|
+
taxable: boolean;
|
|
9746
9746
|
|
|
9747
9747
|
/**
|
|
9748
9748
|
* Freifelder
|
|
@@ -10202,14 +10202,14 @@ export interface ShelfDocument {
|
|
|
10202
10202
|
tags: Array<TagDto>;
|
|
10203
10203
|
|
|
10204
10204
|
/**
|
|
10205
|
-
*
|
|
10205
|
+
* share informations
|
|
10206
10206
|
*/
|
|
10207
|
-
|
|
10207
|
+
shares: Array<ShelfShare>;
|
|
10208
10208
|
|
|
10209
10209
|
/**
|
|
10210
|
-
*
|
|
10210
|
+
* Mehrsprachige Bezeichnungen
|
|
10211
10211
|
*/
|
|
10212
|
-
|
|
10212
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10213
10213
|
|
|
10214
10214
|
/**
|
|
10215
10215
|
* Automatische Löschung ab
|
|
@@ -10429,14 +10429,14 @@ export interface ShelfFile {
|
|
|
10429
10429
|
version: number;
|
|
10430
10430
|
|
|
10431
10431
|
/**
|
|
10432
|
-
*
|
|
10432
|
+
* current reference of this file in our storage
|
|
10433
10433
|
*/
|
|
10434
|
-
|
|
10434
|
+
storageHandle: string;
|
|
10435
10435
|
|
|
10436
10436
|
/**
|
|
10437
|
-
*
|
|
10437
|
+
* meta data
|
|
10438
10438
|
*/
|
|
10439
|
-
|
|
10439
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10440
10440
|
|
|
10441
10441
|
/**
|
|
10442
10442
|
* MetaInformations for this Object
|
|
@@ -10699,14 +10699,14 @@ export interface StockMovementManualApi {
|
|
|
10699
10699
|
export interface StockTransferApi {
|
|
10700
10700
|
|
|
10701
10701
|
/**
|
|
10702
|
-
*
|
|
10702
|
+
* Seriennummer
|
|
10703
10703
|
*/
|
|
10704
|
-
|
|
10704
|
+
serialNumberId: number;
|
|
10705
10705
|
|
|
10706
10706
|
/**
|
|
10707
|
-
*
|
|
10707
|
+
* Ziel-Lager
|
|
10708
10708
|
*/
|
|
10709
|
-
|
|
10709
|
+
targetStorageId: number;
|
|
10710
10710
|
|
|
10711
10711
|
/**
|
|
10712
10712
|
* Bemerkung
|
|
@@ -10916,14 +10916,14 @@ export interface Supplier {
|
|
|
10916
10916
|
info: MetaInfo;
|
|
10917
10917
|
|
|
10918
10918
|
/**
|
|
10919
|
-
*
|
|
10919
|
+
* reference to the delivery method
|
|
10920
10920
|
*/
|
|
10921
|
-
|
|
10921
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10922
10922
|
|
|
10923
10923
|
/**
|
|
10924
|
-
*
|
|
10924
|
+
* Lieferantengruppe
|
|
10925
10925
|
*/
|
|
10926
|
-
|
|
10926
|
+
supplierGroupRef: ApiObjectReference;
|
|
10927
10927
|
|
|
10928
10928
|
/**
|
|
10929
10929
|
* tax able or tax free
|
|
@@ -11317,6 +11317,11 @@ export interface User {
|
|
|
11317
11317
|
*/
|
|
11318
11318
|
roles: Array<ApiObjectReference>;
|
|
11319
11319
|
|
|
11320
|
+
/**
|
|
11321
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11322
|
+
*/
|
|
11323
|
+
referencedCustomerUserId: number;
|
|
11324
|
+
|
|
11320
11325
|
/**
|
|
11321
11326
|
* Gruppen
|
|
11322
11327
|
*/
|
|
@@ -11327,11 +11332,6 @@ export interface User {
|
|
|
11327
11332
|
*/
|
|
11328
11333
|
active: boolean;
|
|
11329
11334
|
|
|
11330
|
-
/**
|
|
11331
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11332
|
-
*/
|
|
11333
|
-
referencedCustomerUserId: number;
|
|
11334
|
-
|
|
11335
11335
|
/**
|
|
11336
11336
|
* App-Identifier
|
|
11337
11337
|
*/
|
|
@@ -11368,14 +11368,14 @@ export interface User {
|
|
|
11368
11368
|
id: number;
|
|
11369
11369
|
|
|
11370
11370
|
/**
|
|
11371
|
-
*
|
|
11371
|
+
* Valid to
|
|
11372
11372
|
*/
|
|
11373
|
-
|
|
11373
|
+
validTo: ScriptingDateTime;
|
|
11374
11374
|
|
|
11375
11375
|
/**
|
|
11376
|
-
*
|
|
11376
|
+
* username
|
|
11377
11377
|
*/
|
|
11378
|
-
|
|
11378
|
+
username: string;
|
|
11379
11379
|
|
|
11380
11380
|
/**
|
|
11381
11381
|
* MetaInformations for this Object
|