@vario-software/types 2026.23.4 → 2026.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +2050 -1896
- package/scripting/services.d.ts +54 -46
- package/scripting/types.d.ts +446 -340
package/scripting/types.d.ts
CHANGED
|
@@ -163,14 +163,14 @@ export interface Account {
|
|
|
163
163
|
custom: EavAccount;
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* Is account active?
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
active: boolean;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* tax number/ Steuernummer
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
taxNumber: string;
|
|
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
|
+
* 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
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Standard-Ansprechpartner
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
defaultPerson: AccountPerson;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
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
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: 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
|
+
* 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
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* city of the bank
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
bankCity: string;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -1064,14 +1064,14 @@ export interface Article {
|
|
|
1064
1064
|
warrantyInMonths: number;
|
|
1065
1065
|
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1068
1068
|
*/
|
|
1069
|
-
|
|
1069
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* weight and size w.o. packaging
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
netMetric: Article$Metric;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
1077
|
* unique product number
|
|
@@ -1208,26 +1208,26 @@ export interface Article {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
|
-
/**
|
|
1212
|
-
* description custom data
|
|
1213
|
-
*/
|
|
1214
|
-
listingDescriptionCustom: EavArticleListingDescription;
|
|
1215
|
-
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Frei kommissionierbar
|
|
1218
1213
|
*/
|
|
1219
1214
|
freelyPickable: boolean;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* description custom data
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1223
|
*/
|
|
1229
1224
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1228
|
+
*/
|
|
1229
|
+
taxLiabilityReversed: boolean;
|
|
1230
|
+
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
1233
1233
|
*/
|
|
@@ -1288,15 +1288,20 @@ export interface Article {
|
|
|
1288
1288
|
*/
|
|
1289
1289
|
permissibleForOrderProposal: boolean;
|
|
1290
1290
|
|
|
1291
|
+
/**
|
|
1292
|
+
* reference to Product
|
|
1293
|
+
*/
|
|
1294
|
+
productRef: ApiObjectReference;
|
|
1295
|
+
|
|
1291
1296
|
/**
|
|
1292
1297
|
* Versandlabeldruck
|
|
1293
1298
|
*/
|
|
1294
1299
|
shippingLabelPrinting: boolean;
|
|
1295
1300
|
|
|
1296
1301
|
/**
|
|
1297
|
-
*
|
|
1302
|
+
* alternative name of this product
|
|
1298
1303
|
*/
|
|
1299
|
-
|
|
1304
|
+
alternativeName: string;
|
|
1300
1305
|
|
|
1301
1306
|
/**
|
|
1302
1307
|
* Kontingentartikel
|
|
@@ -1308,11 +1313,6 @@ export interface Article {
|
|
|
1308
1313
|
*/
|
|
1309
1314
|
discountable: boolean;
|
|
1310
1315
|
|
|
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
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Art des Haltbarkeitsdatums
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1676,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1676
1676
|
proposedLowestPriceGross: number;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
* der
|
|
1679
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
customLowestPriceGross: number;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
*
|
|
1684
|
+
* der Sales Channel
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
salesChannelRef: ApiObjectReference;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1894,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* Meldebestand
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
reorderPoint: number;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Aktuelle Menge in Kommissionierung
|
|
@@ -1904,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1904
1904
|
quantityInPicking: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Bestellte Menge
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
orderedQuantity: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1959,14 +1959,14 @@ export interface ArticleStorage {
|
|
|
1959
1959
|
storageRef: ApiObjectReference;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
|
-
*
|
|
1962
|
+
* Sollbestand
|
|
1963
1963
|
*/
|
|
1964
|
-
|
|
1964
|
+
targetStock: number;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
|
-
*
|
|
1967
|
+
* Vorgabe-Lagerplätze
|
|
1968
1968
|
*/
|
|
1969
|
-
|
|
1969
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1970
1970
|
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Aktuelle Menge in Produktion
|
|
@@ -1986,6 +1986,11 @@ export interface ArticleStorage {
|
|
|
1986
1986
|
|
|
1987
1987
|
export interface ArticleSupplier {
|
|
1988
1988
|
|
|
1989
|
+
/**
|
|
1990
|
+
* Lieferanten-Meldebestand
|
|
1991
|
+
*/
|
|
1992
|
+
supplierReportingStock: number;
|
|
1993
|
+
|
|
1989
1994
|
/**
|
|
1990
1995
|
* Anzeigename des Accounts
|
|
1991
1996
|
*/
|
|
@@ -1996,11 +2001,6 @@ export interface ArticleSupplier {
|
|
|
1996
2001
|
*/
|
|
1997
2002
|
useSupplierArticleDescription: boolean;
|
|
1998
2003
|
|
|
1999
|
-
/**
|
|
2000
|
-
* Lieferanten-Meldebestand
|
|
2001
|
-
*/
|
|
2002
|
-
supplierReportingStock: number;
|
|
2003
|
-
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2006
2006
|
*/
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Referenced Article name
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
articleName: string;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Verpackungseinheit
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
packagingUnit: number;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2111,11 +2111,6 @@ export interface ArticleSupplier {
|
|
|
2111
2111
|
*/
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
|
-
/**
|
|
2115
|
-
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2116
|
-
*/
|
|
2117
|
-
orderOnComponentBase: boolean;
|
|
2118
|
-
|
|
2119
2114
|
/**
|
|
2120
2115
|
* Einkaufseinheit
|
|
2121
2116
|
*/
|
|
@@ -2126,6 +2121,11 @@ export interface ArticleSupplier {
|
|
|
2126
2121
|
*/
|
|
2127
2122
|
accountId: number;
|
|
2128
2123
|
|
|
2124
|
+
/**
|
|
2125
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2126
|
+
*/
|
|
2127
|
+
orderOnComponentBase: boolean;
|
|
2128
|
+
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2131
2131
|
*/
|
|
@@ -2334,14 +2334,14 @@ export interface CountryReference {
|
|
|
2334
2334
|
export interface CreateNewDocumentRequest {
|
|
2335
2335
|
|
|
2336
2336
|
/**
|
|
2337
|
-
* Belegart
|
|
2337
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2338
2338
|
*/
|
|
2339
|
-
|
|
2339
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2340
2340
|
|
|
2341
2341
|
/**
|
|
2342
|
-
*
|
|
2342
|
+
* Belegart
|
|
2343
2343
|
*/
|
|
2344
|
-
|
|
2344
|
+
documentTypeLabel: string;
|
|
2345
2345
|
|
|
2346
2346
|
/**
|
|
2347
2347
|
* Details zum Beleg
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Phase
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
phaseRef: ApiObjectReference;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Projektleiter vom Auftragnehmer
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
projectManagerOfContractor: CrmParticipant;
|
|
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
|
+
* Einkaufsbelege
|
|
2994
2994
|
*/
|
|
2995
|
-
|
|
2995
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
2996
2996
|
|
|
2997
2997
|
/**
|
|
2998
|
-
*
|
|
2998
|
+
* Geplanter Projektzeitraum (von)
|
|
2999
2999
|
*/
|
|
3000
|
-
|
|
3000
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Verkaufsbelege
|
|
@@ -3025,14 +3025,14 @@ export interface CrmProject {
|
|
|
3025
3025
|
info: MetaInfo;
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
|
-
*
|
|
3028
|
+
* Projektleiter vom Auftraggeber
|
|
3029
3029
|
*/
|
|
3030
|
-
|
|
3030
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3031
3031
|
|
|
3032
3032
|
/**
|
|
3033
|
-
*
|
|
3033
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3034
3034
|
*/
|
|
3035
|
-
|
|
3035
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3036
3036
|
|
|
3037
3037
|
/**
|
|
3038
3038
|
* Übergeordnete CRM-Objekte
|
|
@@ -3220,14 +3220,14 @@ export interface CrmState {
|
|
|
3220
3220
|
readyToBill: boolean;
|
|
3221
3221
|
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
3223
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3224
3224
|
*/
|
|
3225
|
-
|
|
3225
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3226
3226
|
|
|
3227
3227
|
/**
|
|
3228
|
-
*
|
|
3228
|
+
* Handelt es sich um einen Anfang-Status
|
|
3229
3229
|
*/
|
|
3230
|
-
|
|
3230
|
+
startState: boolean;
|
|
3231
3231
|
|
|
3232
3232
|
/**
|
|
3233
3233
|
* MetaInformations for this Object
|
|
@@ -3275,11 +3275,6 @@ export interface CrmSubType {
|
|
|
3275
3275
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
|
-
/**
|
|
3279
|
-
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3280
|
-
*/
|
|
3281
|
-
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3282
|
-
|
|
3283
3278
|
/**
|
|
3284
3279
|
* Angebot
|
|
3285
3280
|
*/
|
|
@@ -3290,6 +3285,11 @@ export interface CrmTask {
|
|
|
3290
3285
|
*/
|
|
3291
3286
|
reminders: Array<CrmReminder>;
|
|
3292
3287
|
|
|
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
|
+
* Quelle für Paketgewicht
|
|
3963
3963
|
*/
|
|
3964
|
-
|
|
3964
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
|
-
*
|
|
3967
|
+
* translations
|
|
3968
3968
|
*/
|
|
3969
|
-
|
|
3969
|
+
translations: Array<DocumentTypeTerm>;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Versand-Anbieter
|
|
@@ -4077,14 +4077,14 @@ export interface DeliveryTerm {
|
|
|
4077
4077
|
id: number;
|
|
4078
4078
|
|
|
4079
4079
|
/**
|
|
4080
|
-
*
|
|
4080
|
+
* Versandkostenartikel
|
|
4081
4081
|
*/
|
|
4082
|
-
|
|
4082
|
+
shippingCostArticleRef: ApiObjectReference;
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
|
-
*
|
|
4085
|
+
* free shipping net value
|
|
4086
4086
|
*/
|
|
4087
|
-
|
|
4087
|
+
freeShippingNetValue: number;
|
|
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
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4099
4099
|
*/
|
|
4100
|
-
|
|
4100
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* Referenz zum Rechnungskonto
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
billingAccountRef: ApiObjectReference;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
4108
|
* Externe Belegnummer
|
|
@@ -4183,9 +4183,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4183
4183
|
deliveryQuantityPackages: number;
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
4186
|
-
*
|
|
4186
|
+
* Leitweg-ID
|
|
4187
4187
|
*/
|
|
4188
|
-
|
|
4188
|
+
buyerReference: string;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
4191
|
* Bestellnummer aus Vorbeleg
|
|
@@ -4193,9 +4193,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4193
4193
|
referencedOrderNumber: string;
|
|
4194
4194
|
|
|
4195
4195
|
/**
|
|
4196
|
-
*
|
|
4196
|
+
* Steuerpflichtig oder steuerfrei
|
|
4197
4197
|
*/
|
|
4198
|
-
|
|
4198
|
+
taxable: boolean;
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
4201
4201
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4282,6 +4282,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4282
4282
|
*/
|
|
4283
4283
|
taxLiabilityReversed: boolean;
|
|
4284
4284
|
|
|
4285
|
+
/**
|
|
4286
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4287
|
+
*/
|
|
4288
|
+
roundingAmount: number;
|
|
4289
|
+
|
|
4285
4290
|
/**
|
|
4286
4291
|
* Versanddatum
|
|
4287
4292
|
*/
|
|
@@ -4292,27 +4297,20 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4292
4297
|
*/
|
|
4293
4298
|
supplierNumber: string;
|
|
4294
4299
|
|
|
4295
|
-
/**
|
|
4296
|
-
* Gesamtpreis brutto
|
|
4297
|
-
*/
|
|
4298
|
-
totalGrossPrice: number;
|
|
4299
|
-
|
|
4300
4300
|
/**
|
|
4301
4301
|
* Ist der Beleg zur Lieferung freigegeben?
|
|
4302
4302
|
*/
|
|
4303
4303
|
deliveryApproved: boolean;
|
|
4304
4304
|
|
|
4305
4305
|
/**
|
|
4306
|
-
*
|
|
4306
|
+
* Gesamtpreis brutto
|
|
4307
4307
|
*/
|
|
4308
|
-
|
|
4308
|
+
totalGrossPrice: number;
|
|
4309
4309
|
|
|
4310
4310
|
/**
|
|
4311
|
-
*
|
|
4312
|
-
true wenn die Quittung bezahlt ist
|
|
4313
|
-
|
|
4311
|
+
* Kassen-Zahlungspositionen
|
|
4314
4312
|
*/
|
|
4315
|
-
|
|
4313
|
+
posPayments: Array<DocumentPosPayment>;
|
|
4316
4314
|
|
|
4317
4315
|
/**
|
|
4318
4316
|
* Kundennummer beim Lieferanten
|
|
@@ -4324,6 +4322,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4324
4322
|
*/
|
|
4325
4323
|
maxDeliveries: number;
|
|
4326
4324
|
|
|
4325
|
+
/**
|
|
4326
|
+
* Ist die Quittung bezahlt
|
|
4327
|
+
true wenn die Quittung bezahlt ist
|
|
4328
|
+
|
|
4329
|
+
*/
|
|
4330
|
+
posReceiptPayed: boolean;
|
|
4331
|
+
|
|
4327
4332
|
/**
|
|
4328
4333
|
* Quittung: Summe Zahlbetrag
|
|
4329
4334
|
*/
|
|
@@ -4345,14 +4350,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4345
4350
|
contractDetail: DocumentContractDetail;
|
|
4346
4351
|
|
|
4347
4352
|
/**
|
|
4348
|
-
*
|
|
4353
|
+
* Zahlungsplan vorhanden?
|
|
4349
4354
|
*/
|
|
4350
|
-
|
|
4355
|
+
paymentPlan: boolean;
|
|
4351
4356
|
|
|
4352
4357
|
/**
|
|
4353
|
-
*
|
|
4358
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4354
4359
|
*/
|
|
4355
|
-
|
|
4360
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4356
4361
|
|
|
4357
4362
|
/**
|
|
4358
4363
|
* Produktionsdetails
|
|
@@ -4370,14 +4375,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4370
4375
|
accountNumber: string;
|
|
4371
4376
|
|
|
4372
4377
|
/**
|
|
4373
|
-
*
|
|
4378
|
+
* Wird vom Workflow verarbeitet?
|
|
4374
4379
|
*/
|
|
4375
|
-
|
|
4380
|
+
processedByWorkflow: boolean;
|
|
4376
4381
|
|
|
4377
4382
|
/**
|
|
4378
|
-
*
|
|
4383
|
+
* Referenz auf Zahlungsbedingung
|
|
4379
4384
|
*/
|
|
4380
|
-
|
|
4385
|
+
paymentTermRef: PaymentTermRef;
|
|
4381
4386
|
|
|
4382
4387
|
/**
|
|
4383
4388
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4420,14 +4425,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4420
4425
|
stackProcessingType: OrderStackProcessingType;
|
|
4421
4426
|
|
|
4422
4427
|
/**
|
|
4423
|
-
*
|
|
4428
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4424
4429
|
*/
|
|
4425
|
-
|
|
4430
|
+
en16931Profile: EN16931Profile;
|
|
4426
4431
|
|
|
4427
4432
|
/**
|
|
4428
|
-
*
|
|
4433
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4429
4434
|
*/
|
|
4430
|
-
|
|
4435
|
+
dropShippingInvoiceApproved: boolean;
|
|
4431
4436
|
|
|
4432
4437
|
/**
|
|
4433
4438
|
* Ort der steuerlichen Leistungserbringung
|
|
@@ -4445,14 +4450,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4445
4450
|
additionalInfo: DocumentAdditionalInfo;
|
|
4446
4451
|
|
|
4447
4452
|
/**
|
|
4448
|
-
*
|
|
4453
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4449
4454
|
*/
|
|
4450
|
-
|
|
4455
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4451
4456
|
|
|
4452
4457
|
/**
|
|
4453
|
-
*
|
|
4458
|
+
* Bestelldatum
|
|
4454
4459
|
*/
|
|
4455
|
-
|
|
4460
|
+
orderedOn: ScriptingDate;
|
|
4456
4461
|
|
|
4457
4462
|
/**
|
|
4458
4463
|
* MetaInformations for this Object
|
|
@@ -4475,14 +4480,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4475
4480
|
dropShipping: boolean;
|
|
4476
4481
|
|
|
4477
4482
|
/**
|
|
4478
|
-
*
|
|
4483
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4479
4484
|
*/
|
|
4480
|
-
|
|
4485
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4481
4486
|
|
|
4482
4487
|
/**
|
|
4483
|
-
*
|
|
4488
|
+
* Gesamtpreis netto
|
|
4484
4489
|
*/
|
|
4485
|
-
|
|
4490
|
+
totalNetPrice: number;
|
|
4486
4491
|
|
|
4487
4492
|
/**
|
|
4488
4493
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4590,14 +4595,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4590
4595
|
customerNumber: string;
|
|
4591
4596
|
|
|
4592
4597
|
/**
|
|
4593
|
-
*
|
|
4598
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4594
4599
|
*/
|
|
4595
|
-
|
|
4600
|
+
taxIdentificationNumber: string;
|
|
4596
4601
|
|
|
4597
4602
|
/**
|
|
4598
|
-
*
|
|
4603
|
+
* Statusinstanz des Belegs
|
|
4599
4604
|
*/
|
|
4600
|
-
|
|
4605
|
+
documentState: DocumentTypeState;
|
|
4601
4606
|
|
|
4602
4607
|
/**
|
|
4603
4608
|
* Versandkostenpositionen
|
|
@@ -4609,6 +4614,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4609
4614
|
*/
|
|
4610
4615
|
posReceiptChangeAmount: number;
|
|
4611
4616
|
|
|
4617
|
+
/**
|
|
4618
|
+
* Referenz auf Lieferbedingung
|
|
4619
|
+
*/
|
|
4620
|
+
deliveryTermRef: ApiObjectReference;
|
|
4621
|
+
|
|
4612
4622
|
/**
|
|
4613
4623
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4614
4624
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4616,11 +4626,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4616
4626
|
*/
|
|
4617
4627
|
posReceiptBalanced: boolean;
|
|
4618
4628
|
|
|
4619
|
-
/**
|
|
4620
|
-
* Referenz auf Lieferbedingung
|
|
4621
|
-
*/
|
|
4622
|
-
deliveryTermRef: ApiObjectReference;
|
|
4623
|
-
|
|
4624
4629
|
/**
|
|
4625
4630
|
* Gesamtbruttogewicht
|
|
4626
4631
|
*/
|
|
@@ -4652,14 +4657,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4652
4657
|
billingAddress: DocumentAddress;
|
|
4653
4658
|
|
|
4654
4659
|
/**
|
|
4655
|
-
*
|
|
4660
|
+
* Bestellt durch Ansprechpartner
|
|
4656
4661
|
*/
|
|
4657
|
-
|
|
4662
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4658
4663
|
|
|
4659
4664
|
/**
|
|
4660
|
-
*
|
|
4665
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4661
4666
|
*/
|
|
4662
|
-
|
|
4667
|
+
reportGroupRef: ApiObjectReference;
|
|
4663
4668
|
}
|
|
4664
4669
|
|
|
4665
4670
|
export interface DocumentAdditionalInfo {
|
|
@@ -4669,15 +4674,20 @@ export interface DocumentAdditionalInfo {
|
|
|
4669
4674
|
*/
|
|
4670
4675
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4671
4676
|
|
|
4677
|
+
/**
|
|
4678
|
+
* Herkunft der Sprache
|
|
4679
|
+
*/
|
|
4680
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4681
|
+
|
|
4672
4682
|
/**
|
|
4673
4683
|
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4674
4684
|
*/
|
|
4675
4685
|
contextParameters: Array<AdditionalParameter>;
|
|
4676
4686
|
|
|
4677
4687
|
/**
|
|
4678
|
-
*
|
|
4688
|
+
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
4679
4689
|
*/
|
|
4680
|
-
|
|
4690
|
+
roundingMode: DocumentRounding;
|
|
4681
4691
|
|
|
4682
4692
|
/**
|
|
4683
4693
|
* Herkunft der Käufer-Referenz
|
|
@@ -4810,14 +4820,14 @@ export interface DocumentAddress {
|
|
|
4810
4820
|
postOfficeBox: string;
|
|
4811
4821
|
|
|
4812
4822
|
/**
|
|
4813
|
-
*
|
|
4823
|
+
* country code IsoAlpha3
|
|
4814
4824
|
*/
|
|
4815
|
-
|
|
4825
|
+
countryCode: string;
|
|
4816
4826
|
|
|
4817
4827
|
/**
|
|
4818
|
-
*
|
|
4828
|
+
* Street
|
|
4819
4829
|
*/
|
|
4820
|
-
|
|
4830
|
+
street: string;
|
|
4821
4831
|
|
|
4822
4832
|
/**
|
|
4823
4833
|
* Unique identifier of the Object
|
|
@@ -5023,14 +5033,14 @@ export interface DocumentContractDetail {
|
|
|
5023
5033
|
runtimeToDate: ScriptingDate;
|
|
5024
5034
|
|
|
5025
5035
|
/**
|
|
5026
|
-
*
|
|
5036
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5027
5037
|
*/
|
|
5028
|
-
|
|
5038
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5029
5039
|
|
|
5030
5040
|
/**
|
|
5031
|
-
*
|
|
5041
|
+
* Nächste Fälligkeit
|
|
5032
5042
|
*/
|
|
5033
|
-
|
|
5043
|
+
nextDueDate: ScriptingDate;
|
|
5034
5044
|
|
|
5035
5045
|
/**
|
|
5036
5046
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5210,14 +5220,14 @@ export interface DocumentLine {
|
|
|
5210
5220
|
country: CountryReference;
|
|
5211
5221
|
|
|
5212
5222
|
/**
|
|
5213
|
-
*
|
|
5223
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5214
5224
|
*/
|
|
5215
|
-
|
|
5225
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5216
5226
|
|
|
5217
5227
|
/**
|
|
5218
|
-
*
|
|
5228
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5219
5229
|
*/
|
|
5220
|
-
|
|
5230
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5221
5231
|
|
|
5222
5232
|
/**
|
|
5223
5233
|
* verarbeitete Menge
|
|
@@ -5265,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5265
5275
|
number: string;
|
|
5266
5276
|
|
|
5267
5277
|
/**
|
|
5268
|
-
*
|
|
5278
|
+
* Gesamtbruttogewicht
|
|
5269
5279
|
*/
|
|
5270
|
-
|
|
5280
|
+
totalGrossWeight: number;
|
|
5271
5281
|
|
|
5272
5282
|
/**
|
|
5273
|
-
*
|
|
5283
|
+
* Referenz zur Kundenauftragszeile
|
|
5274
5284
|
*/
|
|
5275
|
-
|
|
5285
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5276
5286
|
|
|
5277
5287
|
/**
|
|
5278
5288
|
* skontierbare Position?
|
|
@@ -5290,9 +5300,9 @@ export interface DocumentLine {
|
|
|
5290
5300
|
price: number;
|
|
5291
5301
|
|
|
5292
5302
|
/**
|
|
5293
|
-
*
|
|
5303
|
+
* FiBu-Buchung
|
|
5294
5304
|
*/
|
|
5295
|
-
|
|
5305
|
+
financeBooking: DocumentFinanceBooking;
|
|
5296
5306
|
|
|
5297
5307
|
/**
|
|
5298
5308
|
* Gesamtpreis Position in Basiswährung
|
|
@@ -5300,9 +5310,9 @@ export interface DocumentLine {
|
|
|
5300
5310
|
baseTotalLinePrice: number;
|
|
5301
5311
|
|
|
5302
5312
|
/**
|
|
5303
|
-
*
|
|
5313
|
+
* Positionstyp
|
|
5304
5314
|
*/
|
|
5305
|
-
|
|
5315
|
+
lineType: DocumentLineType;
|
|
5306
5316
|
|
|
5307
5317
|
/**
|
|
5308
5318
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5334,6 +5344,11 @@ export interface DocumentLine {
|
|
|
5334
5344
|
*/
|
|
5335
5345
|
id: number;
|
|
5336
5346
|
|
|
5347
|
+
/**
|
|
5348
|
+
* Serientyp
|
|
5349
|
+
*/
|
|
5350
|
+
serialType: ArticleSerialType;
|
|
5351
|
+
|
|
5337
5352
|
/**
|
|
5338
5353
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5339
5354
|
*/
|
|
@@ -5344,11 +5359,6 @@ export interface DocumentLine {
|
|
|
5344
5359
|
*/
|
|
5345
5360
|
externalReferenceVds: string;
|
|
5346
5361
|
|
|
5347
|
-
/**
|
|
5348
|
-
* Serientyp
|
|
5349
|
-
*/
|
|
5350
|
-
serialType: ArticleSerialType;
|
|
5351
|
-
|
|
5352
5362
|
/**
|
|
5353
5363
|
* Preis pro Einheit in Basiswährung
|
|
5354
5364
|
*/
|
|
@@ -5429,6 +5439,11 @@ export interface DocumentLine {
|
|
|
5429
5439
|
*/
|
|
5430
5440
|
position: number;
|
|
5431
5441
|
|
|
5442
|
+
/**
|
|
5443
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5444
|
+
*/
|
|
5445
|
+
recalcLinePriceViaComponents: boolean;
|
|
5446
|
+
|
|
5432
5447
|
/**
|
|
5433
5448
|
* Buchungen
|
|
5434
5449
|
*/
|
|
@@ -5515,14 +5530,14 @@ export interface DocumentLine {
|
|
|
5515
5530
|
unitType: UnitTypeReference;
|
|
5516
5531
|
|
|
5517
5532
|
/**
|
|
5518
|
-
*
|
|
5533
|
+
* Zubehör Einfügeart
|
|
5519
5534
|
*/
|
|
5520
|
-
|
|
5535
|
+
insertTerm: AccessoryInsertTerm;
|
|
5521
5536
|
|
|
5522
5537
|
/**
|
|
5523
|
-
*
|
|
5538
|
+
* Referenz zur Basiszeile
|
|
5524
5539
|
*/
|
|
5525
|
-
|
|
5540
|
+
baseLineId: number;
|
|
5526
5541
|
|
|
5527
5542
|
/**
|
|
5528
5543
|
* Einheit Bruttogewicht
|
|
@@ -5550,14 +5565,14 @@ export interface DocumentLine {
|
|
|
5550
5565
|
productType: ProductType;
|
|
5551
5566
|
|
|
5552
5567
|
/**
|
|
5553
|
-
*
|
|
5568
|
+
* Vertragsinformationen
|
|
5554
5569
|
*/
|
|
5555
|
-
|
|
5570
|
+
contractDetail: DocumentContractDetail;
|
|
5556
5571
|
|
|
5557
5572
|
/**
|
|
5558
|
-
*
|
|
5573
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5559
5574
|
*/
|
|
5560
|
-
|
|
5575
|
+
baseSalesValueNet: number;
|
|
5561
5576
|
|
|
5562
5577
|
/**
|
|
5563
5578
|
* Einheit Nettogewicht
|
|
@@ -5644,6 +5659,11 @@ export interface DocumentLine {
|
|
|
5644
5659
|
*/
|
|
5645
5660
|
complete: boolean;
|
|
5646
5661
|
|
|
5662
|
+
/**
|
|
5663
|
+
* Komponenten
|
|
5664
|
+
*/
|
|
5665
|
+
fabricationComponents: Array<DocumentLineFabricationComponent>;
|
|
5666
|
+
|
|
5647
5667
|
/**
|
|
5648
5668
|
* Produktvariantenwerte
|
|
5649
5669
|
*/
|
|
@@ -5789,14 +5809,14 @@ export interface DocumentLineComponent {
|
|
|
5789
5809
|
custom: EavDocumentlinecomponent;
|
|
5790
5810
|
|
|
5791
5811
|
/**
|
|
5792
|
-
*
|
|
5812
|
+
* Gelieferte Menge
|
|
5793
5813
|
*/
|
|
5794
|
-
|
|
5814
|
+
quantityCommitted: number;
|
|
5795
5815
|
|
|
5796
5816
|
/**
|
|
5797
|
-
*
|
|
5817
|
+
* Referenz auf den Artikel der Komponente
|
|
5798
5818
|
*/
|
|
5799
|
-
|
|
5819
|
+
articleId: number;
|
|
5800
5820
|
|
|
5801
5821
|
/**
|
|
5802
5822
|
* Beschreibung des Artikels
|
|
@@ -5849,12 +5869,83 @@ export interface DocumentLineComponent {
|
|
|
5849
5869
|
serialType: ArticleSerialType;
|
|
5850
5870
|
|
|
5851
5871
|
/**
|
|
5852
|
-
* MetaInformations for this Object
|
|
5872
|
+
* MetaInformations for this Object
|
|
5873
|
+
*/
|
|
5874
|
+
info: MetaInfo;
|
|
5875
|
+
}
|
|
5876
|
+
|
|
5877
|
+
export interface DocumentLineComponentFabricationDetail {
|
|
5878
|
+
|
|
5879
|
+
/**
|
|
5880
|
+
* Quell-Gebindeartikel für die Umlagerung von Material
|
|
5881
|
+
*/
|
|
5882
|
+
sourceBundleArticleRef: ProductArticleRef;
|
|
5883
|
+
|
|
5884
|
+
/**
|
|
5885
|
+
* Abweichende Herstellungskosten
|
|
5886
|
+
*/
|
|
5887
|
+
deviatingUnitPrice: number;
|
|
5888
|
+
|
|
5889
|
+
/**
|
|
5890
|
+
* Freifeld
|
|
5891
|
+
*/
|
|
5892
|
+
custom: EavFabricationlinecomponent;
|
|
5893
|
+
|
|
5894
|
+
/**
|
|
5895
|
+
* Unique identifier of the Object
|
|
5896
|
+
*/
|
|
5897
|
+
id: number;
|
|
5898
|
+
|
|
5899
|
+
/**
|
|
5900
|
+
* Version Identifier for this Object (for PUT)
|
|
5901
|
+
*/
|
|
5902
|
+
version: number;
|
|
5903
|
+
|
|
5904
|
+
/**
|
|
5905
|
+
* Für S/N-Vererbung verwenden
|
|
5906
|
+
*/
|
|
5907
|
+
serialInheritanceComponent: boolean;
|
|
5908
|
+
|
|
5909
|
+
/**
|
|
5910
|
+
* MetaInformations for this Object
|
|
5911
|
+
*/
|
|
5912
|
+
info: MetaInfo;
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5915
|
+
export interface DocumentLineFabricationBookedComponent {
|
|
5916
|
+
|
|
5917
|
+
/**
|
|
5918
|
+
* Nummer des Artikels
|
|
5919
|
+
*/
|
|
5920
|
+
number: string;
|
|
5921
|
+
|
|
5922
|
+
/**
|
|
5923
|
+
* Seriennummer
|
|
5924
|
+
*/
|
|
5925
|
+
serialNumberRef: ApiObjectReference;
|
|
5926
|
+
|
|
5927
|
+
/**
|
|
5928
|
+
* Verwendete Menge
|
|
5929
|
+
*/
|
|
5930
|
+
quantity: number;
|
|
5931
|
+
|
|
5932
|
+
/**
|
|
5933
|
+
* ID des Artikels
|
|
5934
|
+
*/
|
|
5935
|
+
articleId: number;
|
|
5936
|
+
|
|
5937
|
+
/**
|
|
5938
|
+
* Name des Artikels
|
|
5939
|
+
*/
|
|
5940
|
+
name: string;
|
|
5941
|
+
|
|
5942
|
+
/**
|
|
5943
|
+
* Beschreibung des Artikels
|
|
5853
5944
|
*/
|
|
5854
|
-
|
|
5945
|
+
description: string;
|
|
5855
5946
|
}
|
|
5856
5947
|
|
|
5857
|
-
export interface
|
|
5948
|
+
export interface DocumentLineFabricationComponent {
|
|
5858
5949
|
|
|
5859
5950
|
/**
|
|
5860
5951
|
* Quell-Gebindeartikel für die Umlagerung von Material
|
|
@@ -5867,62 +5958,54 @@ export interface DocumentLineComponentFabricationDetail {
|
|
|
5867
5958
|
deviatingUnitPrice: number;
|
|
5868
5959
|
|
|
5869
5960
|
/**
|
|
5870
|
-
*
|
|
5871
|
-
*/
|
|
5872
|
-
custom: EavFabricationlinecomponent;
|
|
5873
|
-
|
|
5874
|
-
/**
|
|
5875
|
-
* Unique identifier of the Object
|
|
5961
|
+
* Menge
|
|
5876
5962
|
*/
|
|
5877
|
-
|
|
5963
|
+
quantity: number;
|
|
5878
5964
|
|
|
5879
5965
|
/**
|
|
5880
|
-
*
|
|
5966
|
+
* Beschreibung
|
|
5881
5967
|
*/
|
|
5882
|
-
|
|
5968
|
+
description: string;
|
|
5883
5969
|
|
|
5884
5970
|
/**
|
|
5885
|
-
*
|
|
5971
|
+
* Abweichende Produkteinheit
|
|
5886
5972
|
*/
|
|
5887
|
-
|
|
5973
|
+
deviatingUnitRef: UnitTypeReference;
|
|
5888
5974
|
|
|
5889
5975
|
/**
|
|
5890
|
-
*
|
|
5976
|
+
* Version Identifier for this Object (for PUT)
|
|
5891
5977
|
*/
|
|
5892
|
-
|
|
5893
|
-
}
|
|
5894
|
-
|
|
5895
|
-
export interface DocumentLineFabricationBookedComponent {
|
|
5978
|
+
version: number;
|
|
5896
5979
|
|
|
5897
5980
|
/**
|
|
5898
|
-
*
|
|
5981
|
+
* Basis für die Vererbung der Seriennummer
|
|
5899
5982
|
*/
|
|
5900
|
-
|
|
5983
|
+
forSerialInheritance: boolean;
|
|
5901
5984
|
|
|
5902
5985
|
/**
|
|
5903
|
-
*
|
|
5986
|
+
* Bezeichnung
|
|
5904
5987
|
*/
|
|
5905
|
-
|
|
5988
|
+
name: string;
|
|
5906
5989
|
|
|
5907
5990
|
/**
|
|
5908
|
-
*
|
|
5991
|
+
* Position
|
|
5909
5992
|
*/
|
|
5910
|
-
|
|
5993
|
+
position: number;
|
|
5911
5994
|
|
|
5912
5995
|
/**
|
|
5913
|
-
*
|
|
5996
|
+
* Unique identifier of the Object
|
|
5914
5997
|
*/
|
|
5915
|
-
|
|
5998
|
+
id: number;
|
|
5916
5999
|
|
|
5917
6000
|
/**
|
|
5918
|
-
*
|
|
6001
|
+
* Komponentenartikel
|
|
5919
6002
|
*/
|
|
5920
|
-
|
|
6003
|
+
componentArticleRef: ProductArticleRef;
|
|
5921
6004
|
|
|
5922
6005
|
/**
|
|
5923
|
-
*
|
|
6006
|
+
* MetaInformations for this Object
|
|
5924
6007
|
*/
|
|
5925
|
-
|
|
6008
|
+
info: MetaInfo;
|
|
5926
6009
|
}
|
|
5927
6010
|
|
|
5928
6011
|
export interface DocumentLineFabricationDetail {
|
|
@@ -6039,14 +6122,14 @@ export interface DocumentLinePosDetail {
|
|
|
6039
6122
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6040
6123
|
|
|
6041
6124
|
/**
|
|
6042
|
-
*
|
|
6125
|
+
* Status der externen Zahlung
|
|
6043
6126
|
*/
|
|
6044
|
-
|
|
6127
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6045
6128
|
|
|
6046
6129
|
/**
|
|
6047
|
-
*
|
|
6130
|
+
* Typ der Einlage/Ausgabe
|
|
6048
6131
|
*/
|
|
6049
|
-
|
|
6132
|
+
depositExpenseTypeId: number;
|
|
6050
6133
|
|
|
6051
6134
|
/**
|
|
6052
6135
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6084,14 +6167,14 @@ export interface DocumentLinePosDetail {
|
|
|
6084
6167
|
balanceBeforeWithdrawal: number;
|
|
6085
6168
|
|
|
6086
6169
|
/**
|
|
6087
|
-
*
|
|
6170
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6088
6171
|
*/
|
|
6089
|
-
|
|
6172
|
+
externalPaymentId: string;
|
|
6090
6173
|
|
|
6091
6174
|
/**
|
|
6092
|
-
*
|
|
6175
|
+
* Typ der Position
|
|
6093
6176
|
*/
|
|
6094
|
-
|
|
6177
|
+
posLineType: PosLineType;
|
|
6095
6178
|
|
|
6096
6179
|
/**
|
|
6097
6180
|
* Unique identifier of the Object
|
|
@@ -6175,7 +6258,8 @@ export const enum DocumentLineType {
|
|
|
6175
6258
|
TEXT_LINE = 'TEXT_LINE',
|
|
6176
6259
|
SHIPPING_COST_LINE = 'SHIPPING_COST_LINE',
|
|
6177
6260
|
SUBTOTAL = 'SUBTOTAL',
|
|
6178
|
-
POS = 'POS'
|
|
6261
|
+
POS = 'POS',
|
|
6262
|
+
ROUNDING_LINE = 'ROUNDING_LINE'
|
|
6179
6263
|
}
|
|
6180
6264
|
|
|
6181
6265
|
export interface DocumentPosDetail {
|
|
@@ -6304,14 +6388,14 @@ export interface DocumentPosPayment {
|
|
|
6304
6388
|
version: number;
|
|
6305
6389
|
|
|
6306
6390
|
/**
|
|
6307
|
-
*
|
|
6391
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6308
6392
|
*/
|
|
6309
|
-
|
|
6393
|
+
withdrawalAmount: number;
|
|
6310
6394
|
|
|
6311
6395
|
/**
|
|
6312
|
-
*
|
|
6396
|
+
* Zahlungsart
|
|
6313
6397
|
*/
|
|
6314
|
-
|
|
6398
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6315
6399
|
|
|
6316
6400
|
/**
|
|
6317
6401
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6324,14 +6408,14 @@ export interface DocumentPosPayment {
|
|
|
6324
6408
|
balanceBeforeWithdrawal: number;
|
|
6325
6409
|
|
|
6326
6410
|
/**
|
|
6327
|
-
*
|
|
6411
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6328
6412
|
*/
|
|
6329
|
-
|
|
6413
|
+
externalPaymentId: string;
|
|
6330
6414
|
|
|
6331
6415
|
/**
|
|
6332
|
-
*
|
|
6416
|
+
* Typ der Position
|
|
6333
6417
|
*/
|
|
6334
|
-
|
|
6418
|
+
posLineType: PosLineType;
|
|
6335
6419
|
|
|
6336
6420
|
/**
|
|
6337
6421
|
* Unique identifier of the Object
|
|
@@ -6451,17 +6535,22 @@ export interface DocumentRef {
|
|
|
6451
6535
|
documentState: string;
|
|
6452
6536
|
}
|
|
6453
6537
|
|
|
6538
|
+
export const enum DocumentRounding {
|
|
6539
|
+
NONE = 'NONE',
|
|
6540
|
+
SWITZERLAND = 'SWITZERLAND'
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6454
6543
|
export interface DocumentShippingCost {
|
|
6455
6544
|
|
|
6456
6545
|
/**
|
|
6457
|
-
*
|
|
6546
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6458
6547
|
*/
|
|
6459
|
-
|
|
6548
|
+
manualCosts: boolean;
|
|
6460
6549
|
|
|
6461
6550
|
/**
|
|
6462
|
-
*
|
|
6551
|
+
* Die Versandkosten
|
|
6463
6552
|
*/
|
|
6464
|
-
|
|
6553
|
+
costs: number;
|
|
6465
6554
|
|
|
6466
6555
|
/**
|
|
6467
6556
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6894,14 +6983,14 @@ export const enum DropShippingPolicy {
|
|
|
6894
6983
|
export interface DummySerialNumberStockTransferApi {
|
|
6895
6984
|
|
|
6896
6985
|
/**
|
|
6897
|
-
*
|
|
6986
|
+
* Ziel-Lager
|
|
6898
6987
|
*/
|
|
6899
|
-
|
|
6988
|
+
targetStorageId: number;
|
|
6900
6989
|
|
|
6901
6990
|
/**
|
|
6902
|
-
*
|
|
6991
|
+
* Seriennummer
|
|
6903
6992
|
*/
|
|
6904
|
-
|
|
6993
|
+
serialNumberId: number;
|
|
6905
6994
|
|
|
6906
6995
|
/**
|
|
6907
6996
|
* Bemerkung
|
|
@@ -6914,14 +7003,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6914
7003
|
bookDate: ScriptingDate;
|
|
6915
7004
|
|
|
6916
7005
|
/**
|
|
6917
|
-
*
|
|
7006
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6918
7007
|
*/
|
|
6919
|
-
|
|
7008
|
+
targetExpiryDate: ScriptingDate;
|
|
6920
7009
|
|
|
6921
7010
|
/**
|
|
6922
|
-
*
|
|
7011
|
+
* Die gültige Seriennummer
|
|
6923
7012
|
*/
|
|
6924
|
-
|
|
7013
|
+
targetSerialNumber: string;
|
|
6925
7014
|
|
|
6926
7015
|
/**
|
|
6927
7016
|
* Quell-Lagerplatz
|
|
@@ -7081,7 +7170,9 @@ export const enum EDocumentTransition {
|
|
|
7081
7170
|
/**QS-Prüfung abschließen **/
|
|
7082
7171
|
FINISH_FABRICATION_QA = 'FINISH_FABRICATION_QA',
|
|
7083
7172
|
/**Produktion abschließen **/
|
|
7084
|
-
FINISH_FABRICATION = 'FINISH_FABRICATION'
|
|
7173
|
+
FINISH_FABRICATION = 'FINISH_FABRICATION',
|
|
7174
|
+
/**Kundenauftrag in Produktionsauftrag übernehmen **/
|
|
7175
|
+
CUSTOMER_ORDER_TO_FABRICATION_ORDER = 'CUSTOMER_ORDER_TO_FABRICATION_ORDER'
|
|
7085
7176
|
}
|
|
7086
7177
|
|
|
7087
7178
|
export const enum EInvoiceValidationState {
|
|
@@ -7483,14 +7574,14 @@ export interface PaymentMethod {
|
|
|
7483
7574
|
dunnable: boolean;
|
|
7484
7575
|
|
|
7485
7576
|
/**
|
|
7486
|
-
*
|
|
7577
|
+
* Debitoren-OP abschließen?
|
|
7487
7578
|
*/
|
|
7488
|
-
|
|
7579
|
+
closeCustomerAccountType: boolean;
|
|
7489
7580
|
|
|
7490
7581
|
/**
|
|
7491
|
-
*
|
|
7582
|
+
* translations
|
|
7492
7583
|
*/
|
|
7493
|
-
|
|
7584
|
+
translations: Array<DocumentTypeTerm>;
|
|
7494
7585
|
|
|
7495
7586
|
/**
|
|
7496
7587
|
* +Tage für Folgelastschrift
|
|
@@ -7536,14 +7627,14 @@ export interface PaymentTerm {
|
|
|
7536
7627
|
paymentDiscount2: number;
|
|
7537
7628
|
|
|
7538
7629
|
/**
|
|
7539
|
-
*
|
|
7630
|
+
* Percent for Discount 1
|
|
7540
7631
|
*/
|
|
7541
|
-
|
|
7632
|
+
paymentDiscount1: number;
|
|
7542
7633
|
|
|
7543
7634
|
/**
|
|
7544
|
-
*
|
|
7635
|
+
* printDescription
|
|
7545
7636
|
*/
|
|
7546
|
-
|
|
7637
|
+
printDescription: string;
|
|
7547
7638
|
|
|
7548
7639
|
/**
|
|
7549
7640
|
* for deposit: remaining term
|
|
@@ -8100,14 +8191,14 @@ export interface PicklistLineComponent {
|
|
|
8100
8191
|
targetDocumentLineComponentId: number;
|
|
8101
8192
|
|
|
8102
8193
|
/**
|
|
8103
|
-
*
|
|
8194
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8104
8195
|
*/
|
|
8105
|
-
|
|
8196
|
+
quantityPerAssemblyGroup: number;
|
|
8106
8197
|
|
|
8107
8198
|
/**
|
|
8108
|
-
*
|
|
8199
|
+
* abweichende Artikelbezeichnung
|
|
8109
8200
|
*/
|
|
8110
|
-
|
|
8201
|
+
articleAlternativeName: string;
|
|
8111
8202
|
|
|
8112
8203
|
/**
|
|
8113
8204
|
* Verpackte Menge der Position
|
|
@@ -8291,14 +8382,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8291
8382
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8292
8383
|
|
|
8293
8384
|
/**
|
|
8294
|
-
* Nur
|
|
8385
|
+
* Nur vollständig lieferbare Positionen
|
|
8295
8386
|
*/
|
|
8296
|
-
|
|
8387
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
8297
8388
|
|
|
8298
8389
|
/**
|
|
8299
|
-
* Nur
|
|
8390
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8300
8391
|
*/
|
|
8301
|
-
|
|
8392
|
+
maxOrderCount: number;
|
|
8302
8393
|
|
|
8303
8394
|
/**
|
|
8304
8395
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -8348,6 +8439,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8348
8439
|
*/
|
|
8349
8440
|
fastOrderPickingTemplateToUseRef: ApiObjectReference;
|
|
8350
8441
|
|
|
8442
|
+
/**
|
|
8443
|
+
* Soll nach der Erstellung automatisch die Etiketten gedruckt werden?
|
|
8444
|
+
*/
|
|
8445
|
+
printLabelsOnCreation: boolean;
|
|
8446
|
+
|
|
8351
8447
|
/**
|
|
8352
8448
|
* Maximale Menge einer Auftragsposition für Schnellkommissionierungs-Picklisten
|
|
8353
8449
|
*/
|
|
@@ -8359,19 +8455,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8359
8455
|
printPicklist: boolean;
|
|
8360
8456
|
|
|
8361
8457
|
/**
|
|
8362
|
-
*
|
|
8458
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8363
8459
|
*/
|
|
8364
|
-
|
|
8460
|
+
maxPicklistLineCount: number;
|
|
8365
8461
|
|
|
8366
8462
|
/**
|
|
8367
|
-
*
|
|
8463
|
+
* Die zu verwendende Pickwagengruppe
|
|
8368
8464
|
*/
|
|
8369
|
-
|
|
8465
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8370
8466
|
|
|
8371
8467
|
/**
|
|
8372
|
-
*
|
|
8468
|
+
* Lagerplätze vorgeben
|
|
8373
8469
|
*/
|
|
8374
|
-
|
|
8470
|
+
specifyStorageBins: boolean;
|
|
8375
8471
|
|
|
8376
8472
|
/**
|
|
8377
8473
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -8379,9 +8475,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8379
8475
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8380
8476
|
|
|
8381
8477
|
/**
|
|
8382
|
-
*
|
|
8478
|
+
* Der zu verwendende Pickwagen
|
|
8383
8479
|
*/
|
|
8384
|
-
|
|
8480
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8385
8481
|
|
|
8386
8482
|
/**
|
|
8387
8483
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
@@ -8437,14 +8533,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8437
8533
|
alwaysShowDeliveryMethod: boolean;
|
|
8438
8534
|
|
|
8439
8535
|
/**
|
|
8440
|
-
*
|
|
8536
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8441
8537
|
*/
|
|
8442
|
-
|
|
8538
|
+
autoPrintDeliveryDocument: boolean;
|
|
8443
8539
|
|
|
8444
8540
|
/**
|
|
8445
|
-
*
|
|
8541
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8446
8542
|
*/
|
|
8447
|
-
|
|
8543
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8448
8544
|
|
|
8449
8545
|
/**
|
|
8450
8546
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8466,6 +8562,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8466
8562
|
*/
|
|
8467
8563
|
allowPickingOfServiceArticles: boolean;
|
|
8468
8564
|
|
|
8565
|
+
/**
|
|
8566
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8567
|
+
*/
|
|
8568
|
+
printLabelOnScan: boolean;
|
|
8569
|
+
|
|
8469
8570
|
/**
|
|
8470
8571
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
8471
8572
|
*/
|
|
@@ -8476,11 +8577,21 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8476
8577
|
*/
|
|
8477
8578
|
scanDeliveryDocumentAndShippingLabelOnFinish: boolean;
|
|
8478
8579
|
|
|
8580
|
+
/**
|
|
8581
|
+
* Sollen bei Abschluss des Auftrages automatisch die Etiketten gedruckt werden?
|
|
8582
|
+
*/
|
|
8583
|
+
printLabelOnCompleteOrder: boolean;
|
|
8584
|
+
|
|
8479
8585
|
/**
|
|
8480
8586
|
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8481
8587
|
*/
|
|
8482
8588
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8483
8589
|
|
|
8590
|
+
/**
|
|
8591
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8592
|
+
*/
|
|
8593
|
+
printLabelAfterPicking: boolean;
|
|
8594
|
+
|
|
8484
8595
|
/**
|
|
8485
8596
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8486
8597
|
*/
|
|
@@ -9137,19 +9248,19 @@ export const enum RegulationSet {
|
|
|
9137
9248
|
export interface RequestDocument {
|
|
9138
9249
|
|
|
9139
9250
|
/**
|
|
9140
|
-
*
|
|
9251
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9141
9252
|
*/
|
|
9142
|
-
|
|
9253
|
+
incomingGoodsStorageBinId: number;
|
|
9143
9254
|
|
|
9144
9255
|
/**
|
|
9145
|
-
*
|
|
9256
|
+
* Belegdatum
|
|
9146
9257
|
*/
|
|
9147
|
-
|
|
9258
|
+
documentDate: ScriptingDate;
|
|
9148
9259
|
|
|
9149
9260
|
/**
|
|
9150
|
-
*
|
|
9261
|
+
* Leistungsdatum
|
|
9151
9262
|
*/
|
|
9152
|
-
|
|
9263
|
+
performanceDate: ScriptingDate;
|
|
9153
9264
|
|
|
9154
9265
|
/**
|
|
9155
9266
|
* Der Anzahlungsbetrag
|
|
@@ -9157,9 +9268,9 @@ export interface RequestDocument {
|
|
|
9157
9268
|
depositPaymentAmount: number;
|
|
9158
9269
|
|
|
9159
9270
|
/**
|
|
9160
|
-
*
|
|
9271
|
+
* ID der Kassenschublade (bei POS)
|
|
9161
9272
|
*/
|
|
9162
|
-
|
|
9273
|
+
cashDrawerId: number;
|
|
9163
9274
|
|
|
9164
9275
|
/**
|
|
9165
9276
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -9206,11 +9317,6 @@ export interface RequestDocument {
|
|
|
9206
9317
|
*/
|
|
9207
9318
|
deliveryTermId: number;
|
|
9208
9319
|
|
|
9209
|
-
/**
|
|
9210
|
-
* IDs der zu übernehmenden Abschlagsrechnungen (für Teilrechnungen)
|
|
9211
|
-
*/
|
|
9212
|
-
progressInvoiceIds: Array<number>;
|
|
9213
|
-
|
|
9214
9320
|
/**
|
|
9215
9321
|
* Für interne Zwecke: Währung für das Document
|
|
9216
9322
|
*/
|
|
@@ -9295,11 +9401,6 @@ export interface RequestDocument {
|
|
|
9295
9401
|
* Die Rabatte des Beleges
|
|
9296
9402
|
*/
|
|
9297
9403
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
9298
|
-
|
|
9299
|
-
/**
|
|
9300
|
-
* IDs der zu übernehmenden Anzahlungsrechnungen (für Teilrechnungen)
|
|
9301
|
-
*/
|
|
9302
|
-
depositInvoiceIds: Array<number>;
|
|
9303
9404
|
}
|
|
9304
9405
|
|
|
9305
9406
|
export interface RequestDocumentLine {
|
|
@@ -9350,14 +9451,14 @@ export interface RequestDocumentLine {
|
|
|
9350
9451
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9351
9452
|
|
|
9352
9453
|
/**
|
|
9353
|
-
*
|
|
9454
|
+
* FiBu-Angaben
|
|
9354
9455
|
*/
|
|
9355
|
-
|
|
9456
|
+
financeBooking: DocumentFinanceBooking;
|
|
9356
9457
|
|
|
9357
9458
|
/**
|
|
9358
|
-
*
|
|
9459
|
+
* Typ dieser Position
|
|
9359
9460
|
*/
|
|
9360
|
-
|
|
9461
|
+
lineType: DocumentLineType;
|
|
9361
9462
|
|
|
9362
9463
|
/**
|
|
9363
9464
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9370,14 +9471,14 @@ export interface RequestDocumentLine {
|
|
|
9370
9471
|
dropShippingPolicy: DropShippingPolicy;
|
|
9371
9472
|
|
|
9372
9473
|
/**
|
|
9373
|
-
*
|
|
9474
|
+
* (optional) Lager-ID
|
|
9374
9475
|
*/
|
|
9375
|
-
|
|
9476
|
+
storageId: number;
|
|
9376
9477
|
|
|
9377
9478
|
/**
|
|
9378
|
-
*
|
|
9479
|
+
* Positionsnummer der Artikel
|
|
9379
9480
|
*/
|
|
9380
|
-
|
|
9481
|
+
positionOfArticleLine: number;
|
|
9381
9482
|
|
|
9382
9483
|
/**
|
|
9383
9484
|
* Vertragsdetails zur Belegposition
|
|
@@ -9455,9 +9556,9 @@ export interface RequestDocumentLine {
|
|
|
9455
9556
|
name: string;
|
|
9456
9557
|
|
|
9457
9558
|
/**
|
|
9458
|
-
*
|
|
9559
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9459
9560
|
*/
|
|
9460
|
-
|
|
9561
|
+
externalArticleNumber: string;
|
|
9461
9562
|
|
|
9462
9563
|
/**
|
|
9463
9564
|
* ID der Quell-Belegposition
|
|
@@ -9465,9 +9566,14 @@ export interface RequestDocumentLine {
|
|
|
9465
9566
|
sourceLineId: number;
|
|
9466
9567
|
|
|
9467
9568
|
/**
|
|
9468
|
-
*
|
|
9569
|
+
* Buchungen zu dieser Belegposition
|
|
9469
9570
|
*/
|
|
9470
|
-
|
|
9571
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9572
|
+
|
|
9573
|
+
/**
|
|
9574
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
9575
|
+
*/
|
|
9576
|
+
doLabelPrint: boolean;
|
|
9471
9577
|
|
|
9472
9578
|
/**
|
|
9473
9579
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -10511,14 +10617,14 @@ export interface Stock {
|
|
|
10511
10617
|
storageBinId: number;
|
|
10512
10618
|
|
|
10513
10619
|
/**
|
|
10514
|
-
*
|
|
10620
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
10515
10621
|
*/
|
|
10516
|
-
|
|
10622
|
+
reservedSerialQuantity: number;
|
|
10517
10623
|
|
|
10518
10624
|
/**
|
|
10519
|
-
*
|
|
10625
|
+
* Artikel
|
|
10520
10626
|
*/
|
|
10521
|
-
|
|
10627
|
+
articleId: number;
|
|
10522
10628
|
}
|
|
10523
10629
|
|
|
10524
10630
|
export const enum StockJournalFactor {
|
|
@@ -10593,14 +10699,14 @@ export interface StockMovementManualApi {
|
|
|
10593
10699
|
export interface StockTransferApi {
|
|
10594
10700
|
|
|
10595
10701
|
/**
|
|
10596
|
-
*
|
|
10702
|
+
* Ziel-Lager
|
|
10597
10703
|
*/
|
|
10598
|
-
|
|
10704
|
+
targetStorageId: number;
|
|
10599
10705
|
|
|
10600
10706
|
/**
|
|
10601
|
-
*
|
|
10707
|
+
* Seriennummer
|
|
10602
10708
|
*/
|
|
10603
|
-
|
|
10709
|
+
serialNumberId: number;
|
|
10604
10710
|
|
|
10605
10711
|
/**
|
|
10606
10712
|
* Bemerkung
|
|
@@ -11211,11 +11317,6 @@ export interface User {
|
|
|
11211
11317
|
*/
|
|
11212
11318
|
roles: Array<ApiObjectReference>;
|
|
11213
11319
|
|
|
11214
|
-
/**
|
|
11215
|
-
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11216
|
-
*/
|
|
11217
|
-
referencedCustomerUserId: number;
|
|
11218
|
-
|
|
11219
11320
|
/**
|
|
11220
11321
|
* Gruppen
|
|
11221
11322
|
*/
|
|
@@ -11226,6 +11327,11 @@ export interface User {
|
|
|
11226
11327
|
*/
|
|
11227
11328
|
active: boolean;
|
|
11228
11329
|
|
|
11330
|
+
/**
|
|
11331
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
11332
|
+
*/
|
|
11333
|
+
referencedCustomerUserId: number;
|
|
11334
|
+
|
|
11229
11335
|
/**
|
|
11230
11336
|
* App-Identifier
|
|
11231
11337
|
*/
|
|
@@ -11262,14 +11368,14 @@ export interface User {
|
|
|
11262
11368
|
id: number;
|
|
11263
11369
|
|
|
11264
11370
|
/**
|
|
11265
|
-
*
|
|
11371
|
+
* username
|
|
11266
11372
|
*/
|
|
11267
|
-
|
|
11373
|
+
username: string;
|
|
11268
11374
|
|
|
11269
11375
|
/**
|
|
11270
|
-
*
|
|
11376
|
+
* Valid to
|
|
11271
11377
|
*/
|
|
11272
|
-
|
|
11378
|
+
validTo: ScriptingDateTime;
|
|
11273
11379
|
|
|
11274
11380
|
/**
|
|
11275
11381
|
* MetaInformations for this Object
|