@vario-software/types 2026.33.0 → 2026.33.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/scripting/services.d.ts +43 -43
- package/scripting/types.d.ts +370 -370
package/scripting/types.d.ts
CHANGED
|
@@ -154,14 +154,14 @@ export interface Account {
|
|
|
154
154
|
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* Custom account data
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
custom: EavAccount;
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* companyLegal for this account
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
companyLegalRef: ApiCreatableReference;
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
167
|
* tax number/ Steuernummer
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Street
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
street: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Country code
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
countryCode: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -347,14 +347,14 @@ export interface AccountAddress {
|
|
|
347
347
|
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* Custom data
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
custom: EavAccountaddress;
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
*
|
|
355
|
+
* abweichende Zahlungsart
|
|
356
356
|
*/
|
|
357
|
-
|
|
357
|
+
deviatingPaymentMethodRef: ApiObjectReference;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* Postcode
|
|
@@ -397,14 +397,14 @@ export interface AccountAddress {
|
|
|
397
397
|
taxIdentificationNumber: string;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
|
-
*
|
|
400
|
+
* Additional address line2
|
|
401
401
|
*/
|
|
402
|
-
|
|
402
|
+
additionalAddressLine2: string;
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
|
-
*
|
|
405
|
+
* Parcel station
|
|
406
406
|
*/
|
|
407
|
-
|
|
407
|
+
parcelStation: string;
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
@@ -828,14 +828,14 @@ export interface AccountPerson {
|
|
|
828
828
|
tags: Array<TagDto>;
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
*
|
|
831
|
+
* First name
|
|
832
832
|
*/
|
|
833
|
-
|
|
833
|
+
firstName: string;
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
|
-
*
|
|
836
|
+
* Default contacts
|
|
837
837
|
*/
|
|
838
|
-
|
|
838
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* zugeordneter Benutzer (für eigenen Account)
|
|
@@ -1004,26 +1004,26 @@ export interface Article {
|
|
|
1004
1004
|
*/
|
|
1005
1005
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1006
1006
|
|
|
1007
|
-
/**
|
|
1008
|
-
* Zolltarifnummer
|
|
1009
|
-
*/
|
|
1010
|
-
customsTariffNumber: string;
|
|
1011
|
-
|
|
1012
1007
|
/**
|
|
1013
1008
|
* Gefahrgut Informationen
|
|
1014
1009
|
*/
|
|
1015
1010
|
dangerousGoodInformation: DangerousGoodInformation;
|
|
1016
1011
|
|
|
1017
1012
|
/**
|
|
1018
|
-
*
|
|
1013
|
+
* Zolltarifnummer
|
|
1019
1014
|
*/
|
|
1020
|
-
|
|
1015
|
+
customsTariffNumber: string;
|
|
1021
1016
|
|
|
1022
1017
|
/**
|
|
1023
1018
|
* is this product purchasable
|
|
1024
1019
|
*/
|
|
1025
1020
|
purchasable: boolean;
|
|
1026
1021
|
|
|
1022
|
+
/**
|
|
1023
|
+
* Product custom data
|
|
1024
|
+
*/
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1026
|
+
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* gross sales prices
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
grossSalesPrice: number;
|
|
1296
1296
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Vorgabe Herstellungskosten
|
|
@@ -1310,14 +1310,14 @@ export interface Article {
|
|
|
1310
1310
|
permissibleForOrderProposal: boolean;
|
|
1311
1311
|
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* Versandlabeldruck
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
shippingLabelPrinting: boolean;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* reference to Product
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
productRef: ApiObjectReference;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* alternative name of this product
|
|
@@ -1649,14 +1649,14 @@ export interface ArticleCustomer {
|
|
|
1649
1649
|
defaultGrossPrice: number;
|
|
1650
1650
|
|
|
1651
1651
|
/**
|
|
1652
|
-
*
|
|
1652
|
+
* Art der Preisermittlung
|
|
1653
1653
|
*/
|
|
1654
|
-
|
|
1654
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1655
1655
|
|
|
1656
1656
|
/**
|
|
1657
|
-
*
|
|
1657
|
+
* Abweichende Produktnummer
|
|
1658
1658
|
*/
|
|
1659
|
-
|
|
1659
|
+
deviatingArticleNumber: string;
|
|
1660
1660
|
|
|
1661
1661
|
/**
|
|
1662
1662
|
* Artikelnummer
|
|
@@ -1741,14 +1741,14 @@ export interface ArticleListing {
|
|
|
1741
1741
|
identifiers: WithDefaults<List<ArticleIdentifier>>;
|
|
1742
1742
|
|
|
1743
1743
|
/**
|
|
1744
|
-
*
|
|
1744
|
+
* custom data
|
|
1745
1745
|
*/
|
|
1746
|
-
|
|
1746
|
+
custom: EavArticleListing;
|
|
1747
1747
|
|
|
1748
1748
|
/**
|
|
1749
|
-
*
|
|
1749
|
+
* is this product sellable without any quantity at the stock
|
|
1750
1750
|
*/
|
|
1751
|
-
|
|
1751
|
+
sellableWithoutStock: boolean;
|
|
1752
1752
|
|
|
1753
1753
|
/**
|
|
1754
1754
|
* description custom data
|
|
@@ -1771,14 +1771,14 @@ export interface ArticleListing {
|
|
|
1771
1771
|
proposedLowestPriceGross: number;
|
|
1772
1772
|
|
|
1773
1773
|
/**
|
|
1774
|
-
* der
|
|
1774
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1775
1775
|
*/
|
|
1776
|
-
|
|
1776
|
+
customLowestPriceGross: number;
|
|
1777
1777
|
|
|
1778
1778
|
/**
|
|
1779
|
-
*
|
|
1779
|
+
* der Sales Channel
|
|
1780
1780
|
*/
|
|
1781
|
-
|
|
1781
|
+
salesChannelRef: ApiObjectReference;
|
|
1782
1782
|
|
|
1783
1783
|
/**
|
|
1784
1784
|
* soll der Artikel gelistet werden
|
|
@@ -1993,6 +1993,11 @@ export interface ArticleStorage {
|
|
|
1993
1993
|
*/
|
|
1994
1994
|
replenishmentFrom: number;
|
|
1995
1995
|
|
|
1996
|
+
/**
|
|
1997
|
+
* Meldebestand
|
|
1998
|
+
*/
|
|
1999
|
+
reorderPoint: number;
|
|
2000
|
+
|
|
1996
2001
|
/**
|
|
1997
2002
|
* Aktuelle Menge in Kommissionierung
|
|
1998
2003
|
*/
|
|
@@ -2004,20 +2009,15 @@ export interface ArticleStorage {
|
|
|
2004
2009
|
orderedQuantity: number;
|
|
2005
2010
|
|
|
2006
2011
|
/**
|
|
2007
|
-
*
|
|
2012
|
+
* Nachschub auf
|
|
2008
2013
|
*/
|
|
2009
|
-
|
|
2014
|
+
replenishmentOn: number;
|
|
2010
2015
|
|
|
2011
2016
|
/**
|
|
2012
2017
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
2013
2018
|
*/
|
|
2014
2019
|
virtualStockAmount: number;
|
|
2015
2020
|
|
|
2016
|
-
/**
|
|
2017
|
-
* Nachschub auf
|
|
2018
|
-
*/
|
|
2019
|
-
replenishmentOn: number;
|
|
2020
|
-
|
|
2021
2021
|
/**
|
|
2022
2022
|
* Reservierte Menge
|
|
2023
2023
|
*/
|
|
@@ -2092,14 +2092,14 @@ export interface ArticleSupplier {
|
|
|
2092
2092
|
accountDisplayName: string;
|
|
2093
2093
|
|
|
2094
2094
|
/**
|
|
2095
|
-
*
|
|
2095
|
+
* Lieferanten-Meldebestand
|
|
2096
2096
|
*/
|
|
2097
|
-
|
|
2097
|
+
supplierReportingStock: number;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
*
|
|
2100
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
useSupplierArticleDescription: boolean;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
2105
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2496,14 +2496,14 @@ export interface BundleSchema {
|
|
|
2496
2496
|
export interface BundleUnitTypeRatio {
|
|
2497
2497
|
|
|
2498
2498
|
/**
|
|
2499
|
-
* Mengeneinheit
|
|
2499
|
+
* Verhältnis-Mengeneinheit
|
|
2500
2500
|
*/
|
|
2501
|
-
|
|
2501
|
+
relationUnitTypeRef: UnitTypeReference;
|
|
2502
2502
|
|
|
2503
2503
|
/**
|
|
2504
|
-
*
|
|
2504
|
+
* Mengeneinheit
|
|
2505
2505
|
*/
|
|
2506
|
-
|
|
2506
|
+
baseUnitTypeRef: UnitTypeReference;
|
|
2507
2507
|
|
|
2508
2508
|
/**
|
|
2509
2509
|
* Unique identifier of the Object
|
|
@@ -2791,14 +2791,14 @@ export interface CrmActivity {
|
|
|
2791
2791
|
userRef: ApiObjectReference;
|
|
2792
2792
|
|
|
2793
2793
|
/**
|
|
2794
|
-
*
|
|
2794
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2795
2795
|
*/
|
|
2796
|
-
|
|
2796
|
+
system: boolean;
|
|
2797
2797
|
|
|
2798
2798
|
/**
|
|
2799
|
-
*
|
|
2799
|
+
* tatsächliche Startzeit
|
|
2800
2800
|
*/
|
|
2801
|
-
|
|
2801
|
+
startDateTime: ScriptingDateTime;
|
|
2802
2802
|
|
|
2803
2803
|
/**
|
|
2804
2804
|
* Inhalt dieser Aktivität
|
|
@@ -2905,14 +2905,14 @@ export interface CrmActivityType {
|
|
|
2905
2905
|
export interface CrmChecklistItem {
|
|
2906
2906
|
|
|
2907
2907
|
/**
|
|
2908
|
-
*
|
|
2908
|
+
* Ist das Element "angehakt"?
|
|
2909
2909
|
*/
|
|
2910
|
-
|
|
2910
|
+
checked: boolean;
|
|
2911
2911
|
|
|
2912
2912
|
/**
|
|
2913
|
-
*
|
|
2913
|
+
* Text des Checklisten-Elements
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2915
|
+
memo: string;
|
|
2916
2916
|
|
|
2917
2917
|
/**
|
|
2918
2918
|
* Unique identifier of the Object
|
|
@@ -3314,14 +3314,14 @@ export interface CrmProject {
|
|
|
3314
3314
|
priorityRef: ApiObjectReference;
|
|
3315
3315
|
|
|
3316
3316
|
/**
|
|
3317
|
-
*
|
|
3317
|
+
* Projektleiter vom Auftragnehmer
|
|
3318
3318
|
*/
|
|
3319
|
-
|
|
3319
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3320
3320
|
|
|
3321
3321
|
/**
|
|
3322
|
-
*
|
|
3322
|
+
* Phase
|
|
3323
3323
|
*/
|
|
3324
|
-
|
|
3324
|
+
phaseRef: ApiObjectReference;
|
|
3325
3325
|
|
|
3326
3326
|
/**
|
|
3327
3327
|
* Aufgaben-Nummer
|
|
@@ -3339,14 +3339,14 @@ export interface CrmProject {
|
|
|
3339
3339
|
billedTimes: number;
|
|
3340
3340
|
|
|
3341
3341
|
/**
|
|
3342
|
-
*
|
|
3342
|
+
* Einkaufsbelege
|
|
3343
3343
|
*/
|
|
3344
|
-
|
|
3344
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3345
3345
|
|
|
3346
3346
|
/**
|
|
3347
|
-
*
|
|
3347
|
+
* Geplanter Projektzeitraum (von)
|
|
3348
3348
|
*/
|
|
3349
|
-
|
|
3349
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3350
3350
|
|
|
3351
3351
|
/**
|
|
3352
3352
|
* Verkaufsbelege
|
|
@@ -3477,14 +3477,14 @@ export const enum CrmReferenceType {
|
|
|
3477
3477
|
export interface CrmReminder {
|
|
3478
3478
|
|
|
3479
3479
|
/**
|
|
3480
|
-
*
|
|
3480
|
+
* Notiz zur Erinnerung
|
|
3481
3481
|
*/
|
|
3482
|
-
|
|
3482
|
+
note: string;
|
|
3483
3483
|
|
|
3484
3484
|
/**
|
|
3485
|
-
*
|
|
3485
|
+
* ID des CRM Objekts
|
|
3486
3486
|
*/
|
|
3487
|
-
|
|
3487
|
+
crmId: number;
|
|
3488
3488
|
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Wer soll erinnert werden
|
|
@@ -3881,14 +3881,14 @@ export interface CrmTask {
|
|
|
3881
3881
|
blocksTaskRefs: Array<ApiObjectReference>;
|
|
3882
3882
|
|
|
3883
3883
|
/**
|
|
3884
|
-
*
|
|
3884
|
+
* Soll die Aufgabe veröffentlicht werden?
|
|
3885
3885
|
*/
|
|
3886
|
-
|
|
3886
|
+
publish: boolean;
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
|
-
*
|
|
3889
|
+
* Weitere Teilnehmer vom Auftragnehmer
|
|
3890
3890
|
*/
|
|
3891
|
-
|
|
3891
|
+
additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
|
|
3892
3892
|
|
|
3893
3893
|
/**
|
|
3894
3894
|
* Fortschritt in Prozent
|
|
@@ -4100,14 +4100,14 @@ export interface Customer {
|
|
|
4100
4100
|
info: MetaInfo;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* tax able or tax free
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
taxable: boolean;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* reference to the delivery method
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* active true/false
|
|
@@ -4397,14 +4397,14 @@ export interface DeliveryTerm {
|
|
|
4397
4397
|
label: string;
|
|
4398
4398
|
|
|
4399
4399
|
/**
|
|
4400
|
-
*
|
|
4400
|
+
* Sprache des Accounts
|
|
4401
4401
|
*/
|
|
4402
|
-
|
|
4402
|
+
languageCode: string;
|
|
4403
4403
|
|
|
4404
4404
|
/**
|
|
4405
|
-
*
|
|
4405
|
+
* information, when the shipping charges should be calculated
|
|
4406
4406
|
*/
|
|
4407
|
-
|
|
4407
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4408
4408
|
|
|
4409
4409
|
/**
|
|
4410
4410
|
* calculate shipping charges per parcel
|
|
@@ -4585,14 +4585,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4585
4585
|
baseDepositPaymentAmount: number;
|
|
4586
4586
|
|
|
4587
4587
|
/**
|
|
4588
|
-
*
|
|
4588
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4589
4589
|
*/
|
|
4590
|
-
|
|
4590
|
+
totalBeforeModifier: number;
|
|
4591
4591
|
|
|
4592
4592
|
/**
|
|
4593
|
-
*
|
|
4593
|
+
* Ist der Beleg festgeschrieben?
|
|
4594
4594
|
*/
|
|
4595
|
-
|
|
4595
|
+
frozen: boolean;
|
|
4596
4596
|
|
|
4597
4597
|
/**
|
|
4598
4598
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4660,14 +4660,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4660
4660
|
documentDate: ScriptingDate;
|
|
4661
4661
|
|
|
4662
4662
|
/**
|
|
4663
|
-
*
|
|
4663
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4664
4664
|
*/
|
|
4665
|
-
|
|
4665
|
+
taxLiabilityReversed: boolean;
|
|
4666
4666
|
|
|
4667
4667
|
/**
|
|
4668
|
-
*
|
|
4668
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4669
4669
|
*/
|
|
4670
|
-
|
|
4670
|
+
roundingAmount: number;
|
|
4671
4671
|
|
|
4672
4672
|
/**
|
|
4673
4673
|
* Versanddatum
|
|
@@ -4702,14 +4702,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4702
4702
|
posReceiptPayed: boolean;
|
|
4703
4703
|
|
|
4704
4704
|
/**
|
|
4705
|
-
*
|
|
4705
|
+
* Kundennummer beim Lieferanten
|
|
4706
4706
|
*/
|
|
4707
|
-
|
|
4707
|
+
ourCustomerNumber: string;
|
|
4708
4708
|
|
|
4709
4709
|
/**
|
|
4710
|
-
*
|
|
4710
|
+
* Maximal mögliche Lieferungen
|
|
4711
4711
|
*/
|
|
4712
|
-
|
|
4712
|
+
maxDeliveries: number;
|
|
4713
4713
|
|
|
4714
4714
|
/**
|
|
4715
4715
|
* Quittung: Summe Zahlbetrag
|
|
@@ -4732,14 +4732,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4732
4732
|
contractDetail: DocumentContractDetail;
|
|
4733
4733
|
|
|
4734
4734
|
/**
|
|
4735
|
-
*
|
|
4735
|
+
* Zahlungsplan vorhanden?
|
|
4736
4736
|
*/
|
|
4737
|
-
|
|
4737
|
+
paymentPlan: boolean;
|
|
4738
4738
|
|
|
4739
4739
|
/**
|
|
4740
|
-
*
|
|
4740
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4741
4741
|
*/
|
|
4742
|
-
|
|
4742
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4743
4743
|
|
|
4744
4744
|
/**
|
|
4745
4745
|
* Produktionsdetails
|
|
@@ -4747,14 +4747,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4747
4747
|
fabricationDetail: DocumentFabricationDetail;
|
|
4748
4748
|
|
|
4749
4749
|
/**
|
|
4750
|
-
*
|
|
4750
|
+
* Berechnungsmodus
|
|
4751
4751
|
*/
|
|
4752
|
-
|
|
4752
|
+
calculationMode: CalculationMode;
|
|
4753
4753
|
|
|
4754
4754
|
/**
|
|
4755
|
-
*
|
|
4755
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4756
4756
|
*/
|
|
4757
|
-
|
|
4757
|
+
accountNumber: string;
|
|
4758
4758
|
|
|
4759
4759
|
/**
|
|
4760
4760
|
* Referenz auf Zahlungsbedingung
|
|
@@ -4767,14 +4767,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4767
4767
|
processedByWorkflow: boolean;
|
|
4768
4768
|
|
|
4769
4769
|
/**
|
|
4770
|
-
*
|
|
4770
|
+
* Telefon an Versender übergeben
|
|
4771
4771
|
*/
|
|
4772
|
-
|
|
4772
|
+
forwardPhoneToShipper: boolean;
|
|
4773
4773
|
|
|
4774
4774
|
/**
|
|
4775
|
-
*
|
|
4775
|
+
* Preisanpassungen - Beleg Basiswährung
|
|
4776
4776
|
*/
|
|
4777
|
-
|
|
4777
|
+
baseTotalDocumentPriceModifier: number;
|
|
4778
4778
|
|
|
4779
4779
|
/**
|
|
4780
4780
|
* Liste der Belegtexte
|
|
@@ -4802,14 +4802,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4802
4802
|
defaultAddress: DocumentAddress;
|
|
4803
4803
|
|
|
4804
4804
|
/**
|
|
4805
|
-
*
|
|
4805
|
+
* Leistungsdatum
|
|
4806
4806
|
*/
|
|
4807
|
-
|
|
4807
|
+
performanceDate: ScriptingDate;
|
|
4808
4808
|
|
|
4809
4809
|
/**
|
|
4810
|
-
*
|
|
4810
|
+
* Verarbeitungsoption für Stapel
|
|
4811
4811
|
*/
|
|
4812
|
-
|
|
4812
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4813
4813
|
|
|
4814
4814
|
/**
|
|
4815
4815
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4837,14 +4837,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4837
4837
|
additionalInfo: DocumentAdditionalInfo;
|
|
4838
4838
|
|
|
4839
4839
|
/**
|
|
4840
|
-
*
|
|
4840
|
+
* Bestelldatum
|
|
4841
4841
|
*/
|
|
4842
|
-
|
|
4842
|
+
orderedOn: ScriptingDate;
|
|
4843
4843
|
|
|
4844
4844
|
/**
|
|
4845
|
-
*
|
|
4845
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4846
4846
|
*/
|
|
4847
|
-
|
|
4847
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4848
4848
|
|
|
4849
4849
|
/**
|
|
4850
4850
|
* MetaInformations for this Object
|
|
@@ -4982,19 +4982,24 @@ true wenn die Quittung bezahlt ist
|
|
|
4982
4982
|
customerNumber: string;
|
|
4983
4983
|
|
|
4984
4984
|
/**
|
|
4985
|
-
*
|
|
4985
|
+
* Statusinstanz des Belegs
|
|
4986
4986
|
*/
|
|
4987
|
-
|
|
4987
|
+
documentState: DocumentTypeState;
|
|
4988
4988
|
|
|
4989
4989
|
/**
|
|
4990
|
-
*
|
|
4990
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4991
4991
|
*/
|
|
4992
|
-
|
|
4992
|
+
taxIdentificationNumber: string;
|
|
4993
4993
|
|
|
4994
4994
|
/**
|
|
4995
|
-
*
|
|
4995
|
+
* Versandkostenpositionen
|
|
4996
4996
|
*/
|
|
4997
|
-
|
|
4997
|
+
shippingCosts: Array<DocumentShippingCost>;
|
|
4998
|
+
|
|
4999
|
+
/**
|
|
5000
|
+
* Rückgeld
|
|
5001
|
+
*/
|
|
5002
|
+
posReceiptChangeAmount: number;
|
|
4998
5003
|
|
|
4999
5004
|
/**
|
|
5000
5005
|
* Referenz auf Lieferbedingung
|
|
@@ -5008,11 +5013,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5008
5013
|
*/
|
|
5009
5014
|
posReceiptBalanced: boolean;
|
|
5010
5015
|
|
|
5011
|
-
/**
|
|
5012
|
-
* Rückgeld
|
|
5013
|
-
*/
|
|
5014
|
-
posReceiptChangeAmount: number;
|
|
5015
|
-
|
|
5016
5016
|
/**
|
|
5017
5017
|
* Gesamtbruttogewicht
|
|
5018
5018
|
*/
|
|
@@ -5189,14 +5189,14 @@ export interface DocumentAddress {
|
|
|
5189
5189
|
postOfficeBox: string;
|
|
5190
5190
|
|
|
5191
5191
|
/**
|
|
5192
|
-
*
|
|
5192
|
+
* Street
|
|
5193
5193
|
*/
|
|
5194
|
-
|
|
5194
|
+
street: string;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* country code IsoAlpha3
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
countryCode: string;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
5202
|
* Unique identifier of the Object
|
|
@@ -5279,14 +5279,14 @@ export interface DocumentAddress {
|
|
|
5279
5279
|
paymentMethodRef: ApiObjectReference;
|
|
5280
5280
|
|
|
5281
5281
|
/**
|
|
5282
|
-
*
|
|
5282
|
+
* salutation for this address
|
|
5283
5283
|
*/
|
|
5284
|
-
|
|
5284
|
+
salutation: string;
|
|
5285
5285
|
|
|
5286
5286
|
/**
|
|
5287
|
-
*
|
|
5287
|
+
* Referenz zum Account
|
|
5288
5288
|
*/
|
|
5289
|
-
|
|
5289
|
+
accountRef: ApiObjectReference;
|
|
5290
5290
|
|
|
5291
5291
|
/**
|
|
5292
5292
|
* address line 2
|
|
@@ -5662,9 +5662,9 @@ export interface DocumentLine {
|
|
|
5662
5662
|
id: number;
|
|
5663
5663
|
|
|
5664
5664
|
/**
|
|
5665
|
-
*
|
|
5665
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5666
5666
|
*/
|
|
5667
|
-
|
|
5667
|
+
positionOfArticleLine: number;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
5670
|
* Preis pro Einheit in Basiswährung
|
|
@@ -5672,19 +5672,19 @@ export interface DocumentLine {
|
|
|
5672
5672
|
basePrice: number;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
|
-
*
|
|
5675
|
+
* Serientyp
|
|
5676
5676
|
*/
|
|
5677
|
-
|
|
5677
|
+
serialType: ArticleSerialType;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
|
-
*
|
|
5680
|
+
* Steuerschema
|
|
5681
5681
|
*/
|
|
5682
|
-
|
|
5682
|
+
taxSchemaRef: ApiObjectReference;
|
|
5683
5683
|
|
|
5684
5684
|
/**
|
|
5685
|
-
*
|
|
5685
|
+
* Preiseinheit
|
|
5686
5686
|
*/
|
|
5687
|
-
|
|
5687
|
+
priceUnit: number;
|
|
5688
5688
|
|
|
5689
5689
|
/**
|
|
5690
5690
|
* Preisanpassungen - Position Basiswährung
|
|
@@ -5781,11 +5781,6 @@ export interface DocumentLine {
|
|
|
5781
5781
|
*/
|
|
5782
5782
|
settledOpenItemDiscountAmount: number;
|
|
5783
5783
|
|
|
5784
|
-
/**
|
|
5785
|
-
* Einheit Nettogewicht
|
|
5786
|
-
*/
|
|
5787
|
-
netWeightUnit: UnitTypeReference;
|
|
5788
|
-
|
|
5789
5784
|
/**
|
|
5790
5785
|
* Nettoverkaufswert der Position in Basiswährung
|
|
5791
5786
|
*/
|
|
@@ -5796,6 +5791,11 @@ export interface DocumentLine {
|
|
|
5796
5791
|
*/
|
|
5797
5792
|
contractDetail: DocumentContractDetail;
|
|
5798
5793
|
|
|
5794
|
+
/**
|
|
5795
|
+
* Einheit Nettogewicht
|
|
5796
|
+
*/
|
|
5797
|
+
netWeightUnit: UnitTypeReference;
|
|
5798
|
+
|
|
5799
5799
|
/**
|
|
5800
5800
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
5801
5801
|
*/
|
|
@@ -5842,14 +5842,14 @@ export interface DocumentLine {
|
|
|
5842
5842
|
country: CountryReference;
|
|
5843
5843
|
|
|
5844
5844
|
/**
|
|
5845
|
-
*
|
|
5845
|
+
* Leistungsdatum
|
|
5846
5846
|
*/
|
|
5847
|
-
|
|
5847
|
+
performanceDate: ScriptingDate;
|
|
5848
5848
|
|
|
5849
5849
|
/**
|
|
5850
|
-
*
|
|
5850
|
+
* Zolltarifnummer
|
|
5851
5851
|
*/
|
|
5852
|
-
|
|
5852
|
+
customsTariffNumber: string;
|
|
5853
5853
|
|
|
5854
5854
|
/**
|
|
5855
5855
|
* wurde aufgelöst in Gebindeartikel
|
|
@@ -5927,14 +5927,14 @@ export interface DocumentLine {
|
|
|
5927
5927
|
countryRegion: ApiObjectReference;
|
|
5928
5928
|
|
|
5929
5929
|
/**
|
|
5930
|
-
*
|
|
5930
|
+
* Provisionsursprung
|
|
5931
5931
|
*/
|
|
5932
|
-
|
|
5932
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5933
5933
|
|
|
5934
5934
|
/**
|
|
5935
|
-
*
|
|
5935
|
+
* Nettogewicht
|
|
5936
5936
|
*/
|
|
5937
|
-
|
|
5937
|
+
netWeight: number;
|
|
5938
5938
|
|
|
5939
5939
|
/**
|
|
5940
5940
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -6390,14 +6390,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6390
6390
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6391
6391
|
|
|
6392
6392
|
/**
|
|
6393
|
-
*
|
|
6393
|
+
* Abweichende Herstellungskosten
|
|
6394
6394
|
*/
|
|
6395
|
-
|
|
6395
|
+
deviatingUnitPrice: number;
|
|
6396
6396
|
|
|
6397
6397
|
/**
|
|
6398
|
-
*
|
|
6398
|
+
* Menge
|
|
6399
6399
|
*/
|
|
6400
|
-
|
|
6400
|
+
quantity: number;
|
|
6401
6401
|
|
|
6402
6402
|
/**
|
|
6403
6403
|
* Beschreibung
|
|
@@ -6453,14 +6453,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6453
6453
|
quantityFinished: number;
|
|
6454
6454
|
|
|
6455
6455
|
/**
|
|
6456
|
-
*
|
|
6456
|
+
* Freifeld
|
|
6457
6457
|
*/
|
|
6458
|
-
|
|
6458
|
+
custom: EavFabricationline;
|
|
6459
6459
|
|
|
6460
6460
|
/**
|
|
6461
|
-
*
|
|
6461
|
+
* Menge defekt
|
|
6462
6462
|
*/
|
|
6463
|
-
|
|
6463
|
+
quantityDefective: number;
|
|
6464
6464
|
|
|
6465
6465
|
/**
|
|
6466
6466
|
* Produzierte Seriennummern
|
|
@@ -6501,14 +6501,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
6501
6501
|
quantityFinished: number;
|
|
6502
6502
|
|
|
6503
6503
|
/**
|
|
6504
|
-
* Produzierte
|
|
6504
|
+
* Produzierte Seriennummer
|
|
6505
6505
|
*/
|
|
6506
|
-
|
|
6506
|
+
serialNumber: ArticleSerialNumber;
|
|
6507
6507
|
|
|
6508
6508
|
/**
|
|
6509
|
-
* Produzierte
|
|
6509
|
+
* Produzierte/geplante Menge
|
|
6510
6510
|
*/
|
|
6511
|
-
|
|
6511
|
+
quantity: number;
|
|
6512
6512
|
|
|
6513
6513
|
/**
|
|
6514
6514
|
* Gebuchte Komponenten
|
|
@@ -6604,14 +6604,14 @@ export interface DocumentLinePosDetail {
|
|
|
6604
6604
|
balanceBeforeWithdrawal: number;
|
|
6605
6605
|
|
|
6606
6606
|
/**
|
|
6607
|
-
*
|
|
6607
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6608
6608
|
*/
|
|
6609
|
-
|
|
6609
|
+
externalPaymentId: string;
|
|
6610
6610
|
|
|
6611
6611
|
/**
|
|
6612
|
-
*
|
|
6612
|
+
* Typ der Position
|
|
6613
6613
|
*/
|
|
6614
|
-
|
|
6614
|
+
posLineType: PosLineType;
|
|
6615
6615
|
|
|
6616
6616
|
/**
|
|
6617
6617
|
* Unique identifier of the Object
|
|
@@ -6637,14 +6637,14 @@ export interface DocumentLineRef {
|
|
|
6637
6637
|
quantity: number;
|
|
6638
6638
|
|
|
6639
6639
|
/**
|
|
6640
|
-
*
|
|
6640
|
+
* Belegart
|
|
6641
6641
|
*/
|
|
6642
|
-
|
|
6642
|
+
documentType: string;
|
|
6643
6643
|
|
|
6644
6644
|
/**
|
|
6645
|
-
*
|
|
6645
|
+
* Artikelnummer
|
|
6646
6646
|
*/
|
|
6647
|
-
|
|
6647
|
+
articleNumber: string;
|
|
6648
6648
|
|
|
6649
6649
|
/**
|
|
6650
6650
|
* Kurzbezeichnung des Kunden
|
|
@@ -6930,14 +6930,14 @@ export interface DocumentPosPayment {
|
|
|
6930
6930
|
balanceBeforeWithdrawal: number;
|
|
6931
6931
|
|
|
6932
6932
|
/**
|
|
6933
|
-
*
|
|
6933
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6934
6934
|
*/
|
|
6935
|
-
|
|
6935
|
+
externalPaymentId: string;
|
|
6936
6936
|
|
|
6937
6937
|
/**
|
|
6938
|
-
*
|
|
6938
|
+
* Typ der Position
|
|
6939
6939
|
*/
|
|
6940
|
-
|
|
6940
|
+
posLineType: PosLineType;
|
|
6941
6941
|
|
|
6942
6942
|
/**
|
|
6943
6943
|
* Unique identifier of the Object
|
|
@@ -7516,14 +7516,14 @@ export const enum DropShippingPolicy {
|
|
|
7516
7516
|
export interface DummySerialNumberStockTransferApi {
|
|
7517
7517
|
|
|
7518
7518
|
/**
|
|
7519
|
-
*
|
|
7519
|
+
* Ziel-Lager
|
|
7520
7520
|
*/
|
|
7521
|
-
|
|
7521
|
+
targetStorageId: number;
|
|
7522
7522
|
|
|
7523
7523
|
/**
|
|
7524
|
-
*
|
|
7524
|
+
* Seriennummer
|
|
7525
7525
|
*/
|
|
7526
|
-
|
|
7526
|
+
serialNumberId: number;
|
|
7527
7527
|
|
|
7528
7528
|
/**
|
|
7529
7529
|
* Bemerkung
|
|
@@ -7546,14 +7546,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7546
7546
|
targetExpiryDate: ScriptingDate;
|
|
7547
7547
|
|
|
7548
7548
|
/**
|
|
7549
|
-
*
|
|
7549
|
+
* Quell-Lagerplatz
|
|
7550
7550
|
*/
|
|
7551
|
-
|
|
7551
|
+
sourceStorageBinId: number;
|
|
7552
7552
|
|
|
7553
7553
|
/**
|
|
7554
|
-
*
|
|
7554
|
+
* Menge
|
|
7555
7555
|
*/
|
|
7556
|
-
|
|
7556
|
+
quantity: number;
|
|
7557
7557
|
|
|
7558
7558
|
/**
|
|
7559
7559
|
* Quell-Lager
|
|
@@ -7921,14 +7921,14 @@ export const enum FabricationOfComponents {
|
|
|
7921
7921
|
export interface FabricationProduceRequest {
|
|
7922
7922
|
|
|
7923
7923
|
/**
|
|
7924
|
-
*
|
|
7924
|
+
* Material automatisch bestätigen
|
|
7925
7925
|
*/
|
|
7926
|
-
|
|
7926
|
+
autoCommitComponents: boolean;
|
|
7927
7927
|
|
|
7928
7928
|
/**
|
|
7929
|
-
*
|
|
7929
|
+
* Zu produzierende Menge
|
|
7930
7930
|
*/
|
|
7931
|
-
|
|
7931
|
+
quantity: number;
|
|
7932
7932
|
|
|
7933
7933
|
/**
|
|
7934
7934
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8279,14 +8279,14 @@ export interface OpenItem {
|
|
|
8279
8279
|
dunningBlock: boolean;
|
|
8280
8280
|
|
|
8281
8281
|
/**
|
|
8282
|
-
*
|
|
8282
|
+
* order
|
|
8283
8283
|
*/
|
|
8284
|
-
|
|
8284
|
+
order: ApiObjectReference;
|
|
8285
8285
|
|
|
8286
8286
|
/**
|
|
8287
|
-
*
|
|
8287
|
+
* Summe der Zahlungen in Basiswährung
|
|
8288
8288
|
*/
|
|
8289
|
-
|
|
8289
|
+
baseSumPayments: number;
|
|
8290
8290
|
|
|
8291
8291
|
/**
|
|
8292
8292
|
* MetaInformations for this Object
|
|
@@ -8319,14 +8319,14 @@ export interface OpenItem {
|
|
|
8319
8319
|
version: number;
|
|
8320
8320
|
|
|
8321
8321
|
/**
|
|
8322
|
-
*
|
|
8322
|
+
* List of tags
|
|
8323
8323
|
*/
|
|
8324
|
-
|
|
8324
|
+
tags: Array<TagDto>;
|
|
8325
8325
|
|
|
8326
8326
|
/**
|
|
8327
|
-
*
|
|
8327
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8328
8328
|
*/
|
|
8329
|
-
|
|
8329
|
+
baseSumDiscountableAmount: number;
|
|
8330
8330
|
|
|
8331
8331
|
/**
|
|
8332
8332
|
* Fälligkeitsdatum
|
|
@@ -8344,14 +8344,14 @@ export interface OpenItem {
|
|
|
8344
8344
|
sourceCountryCode: string;
|
|
8345
8345
|
|
|
8346
8346
|
/**
|
|
8347
|
-
*
|
|
8347
|
+
* agreed Deposit payment date
|
|
8348
8348
|
*/
|
|
8349
|
-
|
|
8349
|
+
depositPaymentDate: ScriptingDate;
|
|
8350
8350
|
|
|
8351
8351
|
/**
|
|
8352
|
-
*
|
|
8352
|
+
* Valutadatum schreibgeschützt
|
|
8353
8353
|
*/
|
|
8354
|
-
|
|
8354
|
+
valueDateReadOnly: boolean;
|
|
8355
8355
|
|
|
8356
8356
|
/**
|
|
8357
8357
|
* Does this open item belong to accounts payable or accounts receivable
|
|
@@ -8389,14 +8389,14 @@ export interface OpenItem {
|
|
|
8389
8389
|
depositPaymentAmount: number;
|
|
8390
8390
|
|
|
8391
8391
|
/**
|
|
8392
|
-
*
|
|
8392
|
+
* free payments
|
|
8393
8393
|
*/
|
|
8394
|
-
|
|
8394
|
+
records: Array<OpenItemRecord>;
|
|
8395
8395
|
|
|
8396
8396
|
/**
|
|
8397
|
-
*
|
|
8397
|
+
* Verwendungszweck
|
|
8398
8398
|
*/
|
|
8399
|
-
|
|
8399
|
+
purpose: string;
|
|
8400
8400
|
|
|
8401
8401
|
/**
|
|
8402
8402
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8449,14 +8449,14 @@ export interface OpenItem {
|
|
|
8449
8449
|
sumFee: number;
|
|
8450
8450
|
|
|
8451
8451
|
/**
|
|
8452
|
-
*
|
|
8452
|
+
* The full amount of the payment
|
|
8453
8453
|
*/
|
|
8454
|
-
|
|
8454
|
+
fullPaymentAmount: number;
|
|
8455
8455
|
|
|
8456
8456
|
/**
|
|
8457
|
-
*
|
|
8457
|
+
* Zahlungsplan
|
|
8458
8458
|
*/
|
|
8459
|
-
|
|
8459
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8460
8460
|
|
|
8461
8461
|
/**
|
|
8462
8462
|
* Zahlungssperre
|
|
@@ -8469,14 +8469,14 @@ export interface OpenItem {
|
|
|
8469
8469
|
originalPaymentDueDate: ScriptingDate;
|
|
8470
8470
|
|
|
8471
8471
|
/**
|
|
8472
|
-
*
|
|
8472
|
+
* Valutadatum
|
|
8473
8473
|
*/
|
|
8474
|
-
|
|
8474
|
+
valueDate: ScriptingDate;
|
|
8475
8475
|
|
|
8476
8476
|
/**
|
|
8477
|
-
*
|
|
8477
|
+
* whether this open item is balanced, partially paid or open
|
|
8478
8478
|
*/
|
|
8479
|
-
|
|
8479
|
+
balanceState: OpenItemBalanceState;
|
|
8480
8480
|
|
|
8481
8481
|
/**
|
|
8482
8482
|
* Skontobetrag 1
|
|
@@ -8489,14 +8489,14 @@ export interface OpenItem {
|
|
|
8489
8489
|
baseSumDiscount: number;
|
|
8490
8490
|
|
|
8491
8491
|
/**
|
|
8492
|
-
*
|
|
8492
|
+
* Zahlungsvorlage
|
|
8493
8493
|
*/
|
|
8494
|
-
|
|
8494
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8495
8495
|
|
|
8496
8496
|
/**
|
|
8497
|
-
*
|
|
8497
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8498
8498
|
*/
|
|
8499
|
-
|
|
8499
|
+
baseSumDunnings: number;
|
|
8500
8500
|
|
|
8501
8501
|
/**
|
|
8502
8502
|
* Rechnungsbetrag
|
|
@@ -8606,6 +8606,11 @@ export interface OpenItemPaymentPlan {
|
|
|
8606
8606
|
*/
|
|
8607
8607
|
dueDate: ScriptingDate;
|
|
8608
8608
|
|
|
8609
|
+
/**
|
|
8610
|
+
* Zahlungsplantyp
|
|
8611
|
+
*/
|
|
8612
|
+
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
8613
|
+
|
|
8609
8614
|
/**
|
|
8610
8615
|
* Aktiv
|
|
8611
8616
|
*/
|
|
@@ -8616,11 +8621,6 @@ export interface OpenItemPaymentPlan {
|
|
|
8616
8621
|
*/
|
|
8617
8622
|
description: string;
|
|
8618
8623
|
|
|
8619
|
-
/**
|
|
8620
|
-
* Zahlungsplantyp
|
|
8621
|
-
*/
|
|
8622
|
-
paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
|
|
8623
|
-
|
|
8624
8624
|
/**
|
|
8625
8625
|
* Version Identifier for this Object (for PUT)
|
|
8626
8626
|
*/
|
|
@@ -8732,14 +8732,14 @@ export interface OpenItemRecord {
|
|
|
8732
8732
|
exchangeRate: number;
|
|
8733
8733
|
|
|
8734
8734
|
/**
|
|
8735
|
-
*
|
|
8735
|
+
* Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
|
|
8736
8736
|
*/
|
|
8737
|
-
|
|
8737
|
+
bookingType: OpenItemRecord$BookingType;
|
|
8738
8738
|
|
|
8739
8739
|
/**
|
|
8740
|
-
*
|
|
8740
|
+
* record discountable amount
|
|
8741
8741
|
*/
|
|
8742
|
-
|
|
8742
|
+
discountableAmount: number;
|
|
8743
8743
|
|
|
8744
8744
|
/**
|
|
8745
8745
|
* record date
|
|
@@ -8822,14 +8822,14 @@ export interface OpenItemRecord {
|
|
|
8822
8822
|
totalAmount: number;
|
|
8823
8823
|
|
|
8824
8824
|
/**
|
|
8825
|
-
*
|
|
8825
|
+
* id des records, der diesen storniert hat
|
|
8826
8826
|
*/
|
|
8827
|
-
|
|
8827
|
+
revertedByRecordId: number;
|
|
8828
8828
|
|
|
8829
8829
|
/**
|
|
8830
|
-
*
|
|
8830
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8831
8831
|
*/
|
|
8832
|
-
|
|
8832
|
+
baseCurrencyCode: string;
|
|
8833
8833
|
|
|
8834
8834
|
/**
|
|
8835
8835
|
* qualifier of open item
|
|
@@ -8977,14 +8977,14 @@ export interface PaymentMethod {
|
|
|
8977
8977
|
dunnable: boolean;
|
|
8978
8978
|
|
|
8979
8979
|
/**
|
|
8980
|
-
*
|
|
8980
|
+
* Debitoren-OP abschließen?
|
|
8981
8981
|
*/
|
|
8982
|
-
|
|
8982
|
+
closeCustomerAccountType: boolean;
|
|
8983
8983
|
|
|
8984
8984
|
/**
|
|
8985
|
-
*
|
|
8985
|
+
* translations
|
|
8986
8986
|
*/
|
|
8987
|
-
|
|
8987
|
+
translations: Array<DocumentTypeTerm>;
|
|
8988
8988
|
|
|
8989
8989
|
/**
|
|
8990
8990
|
* +Tage für Folgelastschrift
|
|
@@ -9092,20 +9092,15 @@ export interface PaymentTerm {
|
|
|
9092
9092
|
*/
|
|
9093
9093
|
paymentDiscount1: number;
|
|
9094
9094
|
|
|
9095
|
-
/**
|
|
9096
|
-
* Days for Discount 1
|
|
9097
|
-
*/
|
|
9098
|
-
paymentDays1: number;
|
|
9099
|
-
|
|
9100
9095
|
/**
|
|
9101
9096
|
* for deposit: remaining term
|
|
9102
9097
|
*/
|
|
9103
9098
|
remainingTermRef: ApiObjectReference;
|
|
9104
9099
|
|
|
9105
9100
|
/**
|
|
9106
|
-
* Days for Discount
|
|
9101
|
+
* Days for Discount 1
|
|
9107
9102
|
*/
|
|
9108
|
-
|
|
9103
|
+
paymentDays1: number;
|
|
9109
9104
|
|
|
9110
9105
|
/**
|
|
9111
9106
|
* Aktiv?
|
|
@@ -9117,6 +9112,11 @@ export interface PaymentTerm {
|
|
|
9117
9112
|
*/
|
|
9118
9113
|
description: string;
|
|
9119
9114
|
|
|
9115
|
+
/**
|
|
9116
|
+
* Days for Discount 2
|
|
9117
|
+
*/
|
|
9118
|
+
paymentDays2: number;
|
|
9119
|
+
|
|
9120
9120
|
/**
|
|
9121
9121
|
* label for this payment term
|
|
9122
9122
|
*/
|
|
@@ -9441,14 +9441,14 @@ export interface Picklist {
|
|
|
9441
9441
|
export interface PicklistLine {
|
|
9442
9442
|
|
|
9443
9443
|
/**
|
|
9444
|
-
*
|
|
9444
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9445
9445
|
*/
|
|
9446
|
-
|
|
9446
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9447
9447
|
|
|
9448
9448
|
/**
|
|
9449
|
-
*
|
|
9449
|
+
* Gesammelte Menge der Position
|
|
9450
9450
|
*/
|
|
9451
|
-
|
|
9451
|
+
quantityCollected: number;
|
|
9452
9452
|
|
|
9453
9453
|
/**
|
|
9454
9454
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9529,14 +9529,14 @@ export interface PicklistLine {
|
|
|
9529
9529
|
export interface PicklistLineBooking {
|
|
9530
9530
|
|
|
9531
9531
|
/**
|
|
9532
|
-
*
|
|
9532
|
+
* Seriennummer
|
|
9533
9533
|
*/
|
|
9534
|
-
|
|
9534
|
+
serialNumber: ArticleSerialNumber;
|
|
9535
9535
|
|
|
9536
9536
|
/**
|
|
9537
|
-
*
|
|
9537
|
+
* Zu buchende Menge (gesammelt)
|
|
9538
9538
|
*/
|
|
9539
|
-
|
|
9539
|
+
quantity: number;
|
|
9540
9540
|
|
|
9541
9541
|
/**
|
|
9542
9542
|
* Anzeigename vom Lagerplatz
|
|
@@ -9803,14 +9803,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9803
9803
|
maxOrderValue: number;
|
|
9804
9804
|
|
|
9805
9805
|
/**
|
|
9806
|
-
* Nur
|
|
9806
|
+
* Nur vollständig lieferbare Positionen
|
|
9807
9807
|
*/
|
|
9808
|
-
|
|
9808
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9809
9809
|
|
|
9810
9810
|
/**
|
|
9811
|
-
* Nur
|
|
9811
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9812
9812
|
*/
|
|
9813
|
-
|
|
9813
|
+
maxOrderCount: number;
|
|
9814
9814
|
|
|
9815
9815
|
/**
|
|
9816
9816
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -9895,6 +9895,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9895
9895
|
*/
|
|
9896
9896
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9897
9897
|
|
|
9898
|
+
/**
|
|
9899
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9900
|
+
*/
|
|
9901
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9902
|
+
|
|
9898
9903
|
/**
|
|
9899
9904
|
* Lagerplätze vorgeben
|
|
9900
9905
|
*/
|
|
@@ -9906,20 +9911,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9906
9911
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9907
9912
|
|
|
9908
9913
|
/**
|
|
9909
|
-
*
|
|
9914
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9910
9915
|
*/
|
|
9911
|
-
|
|
9916
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9912
9917
|
|
|
9913
9918
|
/**
|
|
9914
9919
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9915
9920
|
*/
|
|
9916
9921
|
sortByRoutePosition: boolean;
|
|
9917
9922
|
|
|
9918
|
-
/**
|
|
9919
|
-
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9920
|
-
*/
|
|
9921
|
-
useAllAvailOrderPickingTrolleys: boolean;
|
|
9922
|
-
|
|
9923
9923
|
/**
|
|
9924
9924
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9925
9925
|
*/
|
|
@@ -9988,6 +9988,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9988
9988
|
*/
|
|
9989
9989
|
printLabelOnScan: boolean;
|
|
9990
9990
|
|
|
9991
|
+
/**
|
|
9992
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9993
|
+
*/
|
|
9994
|
+
allowPickingOfServiceArticles: boolean;
|
|
9995
|
+
|
|
9991
9996
|
/**
|
|
9992
9997
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9993
9998
|
*/
|
|
@@ -9998,11 +10003,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9998
10003
|
*/
|
|
9999
10004
|
allowFullConfirmation: boolean;
|
|
10000
10005
|
|
|
10001
|
-
/**
|
|
10002
|
-
* Sollen Dienstleistungen kommissioniert werden?
|
|
10003
|
-
*/
|
|
10004
|
-
allowPickingOfServiceArticles: boolean;
|
|
10005
|
-
|
|
10006
10006
|
/**
|
|
10007
10007
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
10008
10008
|
*/
|
|
@@ -10019,14 +10019,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10019
10019
|
printLabelOnCompleteOrder: boolean;
|
|
10020
10020
|
|
|
10021
10021
|
/**
|
|
10022
|
-
*
|
|
10022
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10023
10023
|
*/
|
|
10024
|
-
|
|
10024
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10025
10025
|
|
|
10026
10026
|
/**
|
|
10027
|
-
*
|
|
10027
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10028
10028
|
*/
|
|
10029
|
-
|
|
10029
|
+
printLabelAfterPicking: boolean;
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
10032
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10107,26 +10107,26 @@ export interface PriceSelectionCriteria {
|
|
|
10107
10107
|
*/
|
|
10108
10108
|
date: ScriptingDate;
|
|
10109
10109
|
|
|
10110
|
-
/**
|
|
10111
|
-
* Eine Menge
|
|
10112
|
-
*/
|
|
10113
|
-
quantity: number;
|
|
10114
|
-
|
|
10115
10110
|
/**
|
|
10116
10111
|
* Die Preisgruppe
|
|
10117
10112
|
*/
|
|
10118
10113
|
priceGroupId: number;
|
|
10119
10114
|
|
|
10120
10115
|
/**
|
|
10121
|
-
*
|
|
10116
|
+
* Eine Menge
|
|
10122
10117
|
*/
|
|
10123
|
-
|
|
10118
|
+
quantity: number;
|
|
10124
10119
|
|
|
10125
10120
|
/**
|
|
10126
10121
|
* Liste von Artikel-IDs
|
|
10127
10122
|
*/
|
|
10128
10123
|
articleIds: Array<number>;
|
|
10129
10124
|
|
|
10125
|
+
/**
|
|
10126
|
+
* Liste von Account-IDs
|
|
10127
|
+
*/
|
|
10128
|
+
accountIds: Array<number>;
|
|
10129
|
+
|
|
10130
10130
|
/**
|
|
10131
10131
|
* ein qualifier
|
|
10132
10132
|
*/
|
|
@@ -10307,14 +10307,14 @@ export interface ProductArticleRef {
|
|
|
10307
10307
|
export interface ProductDiscount {
|
|
10308
10308
|
|
|
10309
10309
|
/**
|
|
10310
|
-
*
|
|
10310
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
10311
10311
|
*/
|
|
10312
|
-
|
|
10312
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10313
10313
|
|
|
10314
10314
|
/**
|
|
10315
|
-
*
|
|
10315
|
+
* Kundengruppe
|
|
10316
10316
|
*/
|
|
10317
|
-
|
|
10317
|
+
customerGroupRef: ApiObjectReference;
|
|
10318
10318
|
|
|
10319
10319
|
/**
|
|
10320
10320
|
* Lieferantengruppe
|
|
@@ -10327,14 +10327,14 @@ export interface ProductDiscount {
|
|
|
10327
10327
|
fromQuantity: number;
|
|
10328
10328
|
|
|
10329
10329
|
/**
|
|
10330
|
-
*
|
|
10330
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10331
10331
|
*/
|
|
10332
|
-
|
|
10332
|
+
articleRef: ApiObjectReference;
|
|
10333
10333
|
|
|
10334
10334
|
/**
|
|
10335
|
-
*
|
|
10335
|
+
* Hersteller
|
|
10336
10336
|
*/
|
|
10337
|
-
|
|
10337
|
+
manufacturerRef: ApiObjectReference;
|
|
10338
10338
|
|
|
10339
10339
|
/**
|
|
10340
10340
|
* Gültig von
|
|
@@ -10435,14 +10435,14 @@ export interface ProductGroup {
|
|
|
10435
10435
|
targetTradingMargin: number;
|
|
10436
10436
|
|
|
10437
10437
|
/**
|
|
10438
|
-
*
|
|
10438
|
+
* Freifeld
|
|
10439
10439
|
*/
|
|
10440
|
-
|
|
10440
|
+
custom: EavProductgroup;
|
|
10441
10441
|
|
|
10442
10442
|
/**
|
|
10443
|
-
*
|
|
10443
|
+
* main product group
|
|
10444
10444
|
*/
|
|
10445
|
-
|
|
10445
|
+
mainGroupRef: ApiObjectReference;
|
|
10446
10446
|
|
|
10447
10447
|
/**
|
|
10448
10448
|
* warengruppe aktiv ja/nein
|
|
@@ -10521,14 +10521,14 @@ export interface ProductMainGroup {
|
|
|
10521
10521
|
export interface ProductPrice {
|
|
10522
10522
|
|
|
10523
10523
|
/**
|
|
10524
|
-
*
|
|
10524
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10525
10525
|
*/
|
|
10526
|
-
|
|
10526
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10527
10527
|
|
|
10528
10528
|
/**
|
|
10529
|
-
*
|
|
10529
|
+
* Kundengruppe
|
|
10530
10530
|
*/
|
|
10531
|
-
|
|
10531
|
+
customerGroupRef: ApiObjectReference;
|
|
10532
10532
|
|
|
10533
10533
|
/**
|
|
10534
10534
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10591,14 +10591,14 @@ export interface ProductPrice {
|
|
|
10591
10591
|
supplierGroupRef: ApiObjectReference;
|
|
10592
10592
|
|
|
10593
10593
|
/**
|
|
10594
|
-
*
|
|
10594
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10595
10595
|
*/
|
|
10596
|
-
|
|
10596
|
+
articleRef: ApiObjectReference;
|
|
10597
10597
|
|
|
10598
10598
|
/**
|
|
10599
|
-
*
|
|
10599
|
+
* Hersteller
|
|
10600
10600
|
*/
|
|
10601
|
-
|
|
10601
|
+
manufacturerRef: ApiObjectReference;
|
|
10602
10602
|
|
|
10603
10603
|
/**
|
|
10604
10604
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10751,14 +10751,14 @@ export interface RequestDocument {
|
|
|
10751
10751
|
cashDrawerId: number;
|
|
10752
10752
|
|
|
10753
10753
|
/**
|
|
10754
|
-
*
|
|
10754
|
+
* Leistungsdatum
|
|
10755
10755
|
*/
|
|
10756
|
-
|
|
10756
|
+
performanceDate: ScriptingDate;
|
|
10757
10757
|
|
|
10758
10758
|
/**
|
|
10759
|
-
*
|
|
10759
|
+
* Der Anzahlungsbetrag
|
|
10760
10760
|
*/
|
|
10761
|
-
|
|
10761
|
+
depositPaymentAmount: number;
|
|
10762
10762
|
|
|
10763
10763
|
/**
|
|
10764
10764
|
* Für interne Zwecke: Liefermethode für das Document
|
|
@@ -10826,14 +10826,14 @@ export interface RequestDocument {
|
|
|
10826
10826
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10827
10827
|
|
|
10828
10828
|
/**
|
|
10829
|
-
*
|
|
10829
|
+
* ID der Kasse (bei POS)
|
|
10830
10830
|
*/
|
|
10831
|
-
|
|
10831
|
+
posRegisterId: number;
|
|
10832
10832
|
|
|
10833
10833
|
/**
|
|
10834
|
-
*
|
|
10834
|
+
* Die Vertragsdetails
|
|
10835
10835
|
*/
|
|
10836
|
-
|
|
10836
|
+
contractDetail: DocumentContractDetail;
|
|
10837
10837
|
|
|
10838
10838
|
/**
|
|
10839
10839
|
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
@@ -10856,14 +10856,14 @@ export interface RequestDocument {
|
|
|
10856
10856
|
dropShipping: boolean;
|
|
10857
10857
|
|
|
10858
10858
|
/**
|
|
10859
|
-
*
|
|
10859
|
+
* reference to the corresponding document in an external system
|
|
10860
10860
|
*/
|
|
10861
|
-
|
|
10861
|
+
externalId: string;
|
|
10862
10862
|
|
|
10863
10863
|
/**
|
|
10864
|
-
*
|
|
10864
|
+
* target document type for document copy
|
|
10865
10865
|
*/
|
|
10866
|
-
|
|
10866
|
+
targetDocumentType: DocumentType;
|
|
10867
10867
|
|
|
10868
10868
|
/**
|
|
10869
10869
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -11034,14 +11034,14 @@ export interface RequestDocumentLine {
|
|
|
11034
11034
|
settledOpenItemComment: string;
|
|
11035
11035
|
|
|
11036
11036
|
/**
|
|
11037
|
-
*
|
|
11037
|
+
* Referenz auf die zugehörige Position in einem externen System
|
|
11038
11038
|
*/
|
|
11039
|
-
|
|
11039
|
+
externalId: string;
|
|
11040
11040
|
|
|
11041
11041
|
/**
|
|
11042
|
-
*
|
|
11042
|
+
* ID der Belegposition im aktuellen Beleg
|
|
11043
11043
|
*/
|
|
11044
|
-
|
|
11044
|
+
lineId: number;
|
|
11045
11045
|
|
|
11046
11046
|
/**
|
|
11047
11047
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
@@ -11684,14 +11684,14 @@ export interface SequencerConfigurationDetail {
|
|
|
11684
11684
|
export interface SerialNumberWithQuantityApi {
|
|
11685
11685
|
|
|
11686
11686
|
/**
|
|
11687
|
-
*
|
|
11687
|
+
* Seriennummer
|
|
11688
11688
|
*/
|
|
11689
|
-
|
|
11689
|
+
serialNumber: ArticleSerialNumber;
|
|
11690
11690
|
|
|
11691
11691
|
/**
|
|
11692
|
-
*
|
|
11692
|
+
* Menge
|
|
11693
11693
|
*/
|
|
11694
|
-
|
|
11694
|
+
quantity: number;
|
|
11695
11695
|
}
|
|
11696
11696
|
|
|
11697
11697
|
export interface ShelfCommonMapper {
|
|
@@ -11937,14 +11937,14 @@ export interface ShelfFile {
|
|
|
11937
11937
|
subFiles: Array<SubFileInfo>;
|
|
11938
11938
|
|
|
11939
11939
|
/**
|
|
11940
|
-
*
|
|
11940
|
+
* revision number of this file
|
|
11941
11941
|
*/
|
|
11942
|
-
|
|
11942
|
+
revisionNumber: number;
|
|
11943
11943
|
|
|
11944
11944
|
/**
|
|
11945
|
-
*
|
|
11945
|
+
* fileSize
|
|
11946
11946
|
*/
|
|
11947
|
-
|
|
11947
|
+
fileSize: number;
|
|
11948
11948
|
|
|
11949
11949
|
/**
|
|
11950
11950
|
* file-extension of this entry
|
|
@@ -11972,14 +11972,14 @@ export interface ShelfFile {
|
|
|
11972
11972
|
version: number;
|
|
11973
11973
|
|
|
11974
11974
|
/**
|
|
11975
|
-
*
|
|
11975
|
+
* meta data
|
|
11976
11976
|
*/
|
|
11977
|
-
|
|
11977
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11978
11978
|
|
|
11979
11979
|
/**
|
|
11980
|
-
*
|
|
11980
|
+
* current reference of this file in our storage
|
|
11981
11981
|
*/
|
|
11982
|
-
|
|
11982
|
+
storageHandle: string;
|
|
11983
11983
|
|
|
11984
11984
|
/**
|
|
11985
11985
|
* MetaInformations for this Object
|
|
@@ -12227,14 +12227,14 @@ export interface StockMovementManualApi {
|
|
|
12227
12227
|
expiryDate: ScriptingDate;
|
|
12228
12228
|
|
|
12229
12229
|
/**
|
|
12230
|
-
*
|
|
12230
|
+
* Notiz zur Seriennummer
|
|
12231
12231
|
*/
|
|
12232
|
-
|
|
12232
|
+
serialNumberNote: string;
|
|
12233
12233
|
|
|
12234
12234
|
/**
|
|
12235
|
-
*
|
|
12235
|
+
* Zugang oder Abgang
|
|
12236
12236
|
*/
|
|
12237
|
-
|
|
12237
|
+
factor: StockJournalFactor;
|
|
12238
12238
|
|
|
12239
12239
|
/**
|
|
12240
12240
|
* Lager
|
|
@@ -12245,14 +12245,14 @@ export interface StockMovementManualApi {
|
|
|
12245
12245
|
export interface StockTransferApi {
|
|
12246
12246
|
|
|
12247
12247
|
/**
|
|
12248
|
-
*
|
|
12248
|
+
* Ziel-Lager
|
|
12249
12249
|
*/
|
|
12250
|
-
|
|
12250
|
+
targetStorageId: number;
|
|
12251
12251
|
|
|
12252
12252
|
/**
|
|
12253
|
-
*
|
|
12253
|
+
* Seriennummer
|
|
12254
12254
|
*/
|
|
12255
|
-
|
|
12255
|
+
serialNumberId: number;
|
|
12256
12256
|
|
|
12257
12257
|
/**
|
|
12258
12258
|
* Bemerkung
|
|
@@ -12265,14 +12265,14 @@ export interface StockTransferApi {
|
|
|
12265
12265
|
bookDate: ScriptingDate;
|
|
12266
12266
|
|
|
12267
12267
|
/**
|
|
12268
|
-
*
|
|
12268
|
+
* Quell-Lagerplatz
|
|
12269
12269
|
*/
|
|
12270
|
-
|
|
12270
|
+
sourceStorageBinId: number;
|
|
12271
12271
|
|
|
12272
12272
|
/**
|
|
12273
|
-
*
|
|
12273
|
+
* Menge
|
|
12274
12274
|
*/
|
|
12275
|
-
|
|
12275
|
+
quantity: number;
|
|
12276
12276
|
|
|
12277
12277
|
/**
|
|
12278
12278
|
* Quell-Lager
|
|
@@ -12303,14 +12303,14 @@ export interface StockTransferResult {
|
|
|
12303
12303
|
sourceOldStock: number;
|
|
12304
12304
|
|
|
12305
12305
|
/**
|
|
12306
|
-
*
|
|
12306
|
+
* Quellager
|
|
12307
12307
|
*/
|
|
12308
|
-
|
|
12308
|
+
sourceStorage: ApiObjectReference;
|
|
12309
12309
|
|
|
12310
12310
|
/**
|
|
12311
|
-
*
|
|
12311
|
+
* Umgebuchte Seriennummer
|
|
12312
12312
|
*/
|
|
12313
|
-
|
|
12313
|
+
serialNumber: ApiObjectReference;
|
|
12314
12314
|
|
|
12315
12315
|
/**
|
|
12316
12316
|
* Ziellagerplatz
|
|
@@ -12472,6 +12472,11 @@ export interface Supplier {
|
|
|
12472
12472
|
*/
|
|
12473
12473
|
info: MetaInfo;
|
|
12474
12474
|
|
|
12475
|
+
/**
|
|
12476
|
+
* tax able or tax free
|
|
12477
|
+
*/
|
|
12478
|
+
taxable: boolean;
|
|
12479
|
+
|
|
12475
12480
|
/**
|
|
12476
12481
|
* reference to the delivery method
|
|
12477
12482
|
*/
|
|
@@ -12482,11 +12487,6 @@ export interface Supplier {
|
|
|
12482
12487
|
*/
|
|
12483
12488
|
supplierGroupRef: ApiObjectReference;
|
|
12484
12489
|
|
|
12485
|
-
/**
|
|
12486
|
-
* tax able or tax free
|
|
12487
|
-
*/
|
|
12488
|
-
taxable: boolean;
|
|
12489
|
-
|
|
12490
12490
|
/**
|
|
12491
12491
|
* Mahnen?
|
|
12492
12492
|
*/
|
|
@@ -12820,14 +12820,14 @@ export interface TextTemplate {
|
|
|
12820
12820
|
sourceDocumentTypes: Array<ApiObjectReference>;
|
|
12821
12821
|
|
|
12822
12822
|
/**
|
|
12823
|
-
*
|
|
12823
|
+
* Wird eine eigene DocumentLine für den Baustein angelegt?
|
|
12824
12824
|
*/
|
|
12825
|
-
|
|
12825
|
+
separateLine: boolean;
|
|
12826
12826
|
|
|
12827
12827
|
/**
|
|
12828
|
-
*
|
|
12828
|
+
* article für den diese Templates gelten
|
|
12829
12829
|
*/
|
|
12830
|
-
|
|
12830
|
+
articleId: number;
|
|
12831
12831
|
|
|
12832
12832
|
/**
|
|
12833
12833
|
* Wann wird ein UI-Hint angezeigt
|
|
@@ -12984,14 +12984,14 @@ export interface User {
|
|
|
12984
12984
|
roles: Array<ApiObjectReference>;
|
|
12985
12985
|
|
|
12986
12986
|
/**
|
|
12987
|
-
*
|
|
12987
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12988
12988
|
*/
|
|
12989
|
-
|
|
12989
|
+
referencedCustomerUserId: number;
|
|
12990
12990
|
|
|
12991
12991
|
/**
|
|
12992
|
-
*
|
|
12992
|
+
* Gruppen
|
|
12993
12993
|
*/
|
|
12994
|
-
|
|
12994
|
+
groups: Array<ApiObjectReference>;
|
|
12995
12995
|
|
|
12996
12996
|
/**
|
|
12997
12997
|
* Is the user active?
|
|
@@ -13229,14 +13229,14 @@ export interface VariantValue {
|
|
|
13229
13229
|
version: number;
|
|
13230
13230
|
|
|
13231
13231
|
/**
|
|
13232
|
-
*
|
|
13232
|
+
* Mehrsprachige Bezeichnungen
|
|
13233
13233
|
*/
|
|
13234
|
-
|
|
13234
|
+
labels: Array<VariantDescription>;
|
|
13235
13235
|
|
|
13236
13236
|
/**
|
|
13237
|
-
*
|
|
13237
|
+
* Variantenattribut
|
|
13238
13238
|
*/
|
|
13239
|
-
|
|
13239
|
+
attributeRef: ApiObjectReference;
|
|
13240
13240
|
|
|
13241
13241
|
/**
|
|
13242
13242
|
* MetaInformations for this Object
|