@vario-software/types 2026.22.2 → 2026.22.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripting/services.d.ts +26 -26
- package/scripting/types.d.ts +296 -296
package/scripting/types.d.ts
CHANGED
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
titleRef: ApiCreatableReference;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -489,14 +489,14 @@ export interface AccountBankdetail {
|
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
*
|
|
492
|
+
* Hauptbankverbindung für
|
|
493
493
|
*/
|
|
494
|
-
|
|
494
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* city of the bank
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* origin type
|
|
@@ -605,14 +605,14 @@ export interface AccountLoanValue {
|
|
|
605
605
|
nonInvoicedDocumentLoan: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
|
-
*
|
|
608
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
609
609
|
*/
|
|
610
|
-
|
|
610
|
+
payablesSum: number;
|
|
611
611
|
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Kreditlimit
|
|
614
614
|
*/
|
|
615
|
-
|
|
615
|
+
maximalLoan: number;
|
|
616
616
|
|
|
617
617
|
/**
|
|
618
618
|
* Überschrittener Kreditbetrag
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* is this product purchasable
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
purchasable: boolean;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1269,14 +1269,14 @@ export interface Article {
|
|
|
1269
1269
|
capacity: number;
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
1272
|
-
*
|
|
1272
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1273
1273
|
*/
|
|
1274
|
-
|
|
1274
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1275
1275
|
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* gross sales prices
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
grossSalesPrice: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Letzter EKP (Startwert)
|
|
@@ -1299,9 +1299,9 @@ export interface Article {
|
|
|
1299
1299
|
productRef: ApiObjectReference;
|
|
1300
1300
|
|
|
1301
1301
|
/**
|
|
1302
|
-
*
|
|
1302
|
+
* alternative name of this product
|
|
1303
1303
|
*/
|
|
1304
|
-
|
|
1304
|
+
alternativeName: string;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
1307
|
* Kontingentartikel
|
|
@@ -1309,9 +1309,9 @@ export interface Article {
|
|
|
1309
1309
|
contingentArticleRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* rabattierbarer Artikel?
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
discountable: boolean;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1384,14 +1384,14 @@ export interface Article {
|
|
|
1384
1384
|
listed: boolean;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
|
-
*
|
|
1387
|
+
* Nur manuelle Produktion
|
|
1388
1388
|
*/
|
|
1389
|
-
|
|
1389
|
+
onlyManualFabrication: boolean;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
|
-
*
|
|
1392
|
+
* provisionsberechtiger Artikel?
|
|
1393
1393
|
*/
|
|
1394
|
-
|
|
1394
|
+
commissionable: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1498,26 +1498,26 @@ export interface ArticleCustomer {
|
|
|
1498
1498
|
*/
|
|
1499
1499
|
articleName: string;
|
|
1500
1500
|
|
|
1501
|
-
/**
|
|
1502
|
-
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1503
|
-
*/
|
|
1504
|
-
useDeviatingArticleIdentifier: boolean;
|
|
1505
|
-
|
|
1506
1501
|
/**
|
|
1507
1502
|
* Etikettdruck-Einstellungen
|
|
1508
1503
|
*/
|
|
1509
1504
|
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1510
1505
|
|
|
1511
1506
|
/**
|
|
1512
|
-
* Soll
|
|
1507
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1513
1508
|
*/
|
|
1514
|
-
|
|
1509
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1515
1510
|
|
|
1516
1511
|
/**
|
|
1517
1512
|
* Kunden-Preise
|
|
1518
1513
|
*/
|
|
1519
1514
|
productPrices: Array<ProductPrice>;
|
|
1520
1515
|
|
|
1516
|
+
/**
|
|
1517
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1518
|
+
*/
|
|
1519
|
+
useDeviatingArticleDescription: boolean;
|
|
1520
|
+
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Referenced Article
|
|
1523
1523
|
*/
|
|
@@ -1670,14 +1670,14 @@ export interface ArticleListing {
|
|
|
1670
1670
|
proposedLowestPriceGross: number;
|
|
1671
1671
|
|
|
1672
1672
|
/**
|
|
1673
|
-
*
|
|
1673
|
+
* der Sales Channel
|
|
1674
1674
|
*/
|
|
1675
|
-
|
|
1675
|
+
salesChannelRef: ApiObjectReference;
|
|
1676
1676
|
|
|
1677
1677
|
/**
|
|
1678
|
-
* der
|
|
1678
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1679
1679
|
*/
|
|
1680
|
-
|
|
1680
|
+
customLowestPriceGross: number;
|
|
1681
1681
|
|
|
1682
1682
|
/**
|
|
1683
1683
|
* soll der Artikel gelistet werden
|
|
@@ -1710,14 +1710,14 @@ export interface ArticleListing {
|
|
|
1710
1710
|
alternativeName: WithDefaults<String>;
|
|
1711
1711
|
|
|
1712
1712
|
/**
|
|
1713
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1713
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1714
1714
|
*/
|
|
1715
|
-
|
|
1715
|
+
proposedLowestPriceNet: number;
|
|
1716
1716
|
|
|
1717
1717
|
/**
|
|
1718
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1718
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1719
1719
|
*/
|
|
1720
|
-
|
|
1720
|
+
customLowestPriceNet: number;
|
|
1721
1721
|
|
|
1722
1722
|
/**
|
|
1723
1723
|
* der aktuelle listing stand
|
|
@@ -1877,20 +1877,15 @@ export const enum ArticleSerialType {
|
|
|
1877
1877
|
|
|
1878
1878
|
export interface ArticleStorage {
|
|
1879
1879
|
|
|
1880
|
-
/**
|
|
1881
|
-
* Nachschub ab
|
|
1882
|
-
*/
|
|
1883
|
-
replenishmentFrom: number;
|
|
1884
|
-
|
|
1885
1880
|
/**
|
|
1886
1881
|
* Bestand im Lager
|
|
1887
1882
|
*/
|
|
1888
1883
|
quantityInStock: number;
|
|
1889
1884
|
|
|
1890
1885
|
/**
|
|
1891
|
-
*
|
|
1886
|
+
* Nachschub ab
|
|
1892
1887
|
*/
|
|
1893
|
-
|
|
1888
|
+
replenishmentFrom: number;
|
|
1894
1889
|
|
|
1895
1890
|
/**
|
|
1896
1891
|
* Bestellte Menge
|
|
@@ -1903,15 +1898,20 @@ export interface ArticleStorage {
|
|
|
1903
1898
|
quantityInPicking: number;
|
|
1904
1899
|
|
|
1905
1900
|
/**
|
|
1906
|
-
*
|
|
1901
|
+
* Meldebestand
|
|
1907
1902
|
*/
|
|
1908
|
-
|
|
1903
|
+
reorderPoint: number;
|
|
1909
1904
|
|
|
1910
1905
|
/**
|
|
1911
1906
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1912
1907
|
*/
|
|
1913
1908
|
virtualStockAmount: number;
|
|
1914
1909
|
|
|
1910
|
+
/**
|
|
1911
|
+
* Nachschub auf
|
|
1912
|
+
*/
|
|
1913
|
+
replenishmentOn: number;
|
|
1914
|
+
|
|
1915
1915
|
/**
|
|
1916
1916
|
* Reservierte Menge
|
|
1917
1917
|
*/
|
|
@@ -1953,14 +1953,14 @@ export interface ArticleStorage {
|
|
|
1953
1953
|
storageRef: ApiObjectReference;
|
|
1954
1954
|
|
|
1955
1955
|
/**
|
|
1956
|
-
*
|
|
1956
|
+
* Sollbestand
|
|
1957
1957
|
*/
|
|
1958
|
-
|
|
1958
|
+
targetStock: number;
|
|
1959
1959
|
|
|
1960
1960
|
/**
|
|
1961
|
-
*
|
|
1961
|
+
* Vorgabe-Lagerplätze
|
|
1962
1962
|
*/
|
|
1963
|
-
|
|
1963
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
1964
1964
|
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Aktuelle Menge in Produktion
|
|
@@ -2051,14 +2051,14 @@ export interface ArticleSupplier {
|
|
|
2051
2051
|
info: MetaInfo;
|
|
2052
2052
|
|
|
2053
2053
|
/**
|
|
2054
|
-
*
|
|
2054
|
+
* Referenced Article name
|
|
2055
2055
|
*/
|
|
2056
|
-
|
|
2056
|
+
articleName: string;
|
|
2057
2057
|
|
|
2058
2058
|
/**
|
|
2059
|
-
*
|
|
2059
|
+
* Verpackungseinheit
|
|
2060
2060
|
*/
|
|
2061
|
-
|
|
2061
|
+
packagingUnit: number;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
2064
|
* Lieferanten-Preise
|
|
@@ -2106,9 +2106,9 @@ export interface ArticleSupplier {
|
|
|
2106
2106
|
defaultNetPrice: number;
|
|
2107
2107
|
|
|
2108
2108
|
/**
|
|
2109
|
-
*
|
|
2109
|
+
* Referenced Supplier-Account
|
|
2110
2110
|
*/
|
|
2111
|
-
|
|
2111
|
+
accountId: number;
|
|
2112
2112
|
|
|
2113
2113
|
/**
|
|
2114
2114
|
* Einkaufseinheit
|
|
@@ -2116,9 +2116,9 @@ export interface ArticleSupplier {
|
|
|
2116
2116
|
purchaseUnit: number;
|
|
2117
2117
|
|
|
2118
2118
|
/**
|
|
2119
|
-
*
|
|
2119
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2120
2120
|
*/
|
|
2121
|
-
|
|
2121
|
+
orderOnComponentBase: boolean;
|
|
2122
2122
|
|
|
2123
2123
|
/**
|
|
2124
2124
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2446,14 +2446,14 @@ export interface CrmActivity {
|
|
|
2446
2446
|
userRef: ApiObjectReference;
|
|
2447
2447
|
|
|
2448
2448
|
/**
|
|
2449
|
-
*
|
|
2449
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2450
2450
|
*/
|
|
2451
|
-
|
|
2451
|
+
system: boolean;
|
|
2452
2452
|
|
|
2453
2453
|
/**
|
|
2454
|
-
*
|
|
2454
|
+
* tatsächliche Startzeit
|
|
2455
2455
|
*/
|
|
2456
|
-
|
|
2456
|
+
startDateTime: ScriptingDateTime;
|
|
2457
2457
|
|
|
2458
2458
|
/**
|
|
2459
2459
|
* Inhalt dieser Aktivität
|
|
@@ -2560,14 +2560,14 @@ export interface CrmActivityType {
|
|
|
2560
2560
|
export interface CrmChecklistItem {
|
|
2561
2561
|
|
|
2562
2562
|
/**
|
|
2563
|
-
*
|
|
2563
|
+
* Text des Checklisten-Elements
|
|
2564
2564
|
*/
|
|
2565
|
-
|
|
2565
|
+
memo: string;
|
|
2566
2566
|
|
|
2567
2567
|
/**
|
|
2568
|
-
*
|
|
2568
|
+
* Ist das Element "angehakt"?
|
|
2569
2569
|
*/
|
|
2570
|
-
|
|
2570
|
+
checked: boolean;
|
|
2571
2571
|
|
|
2572
2572
|
/**
|
|
2573
2573
|
* Unique identifier of the Object
|
|
@@ -2678,14 +2678,14 @@ export interface CrmDeal {
|
|
|
2678
2678
|
info: MetaInfo;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
|
-
*
|
|
2681
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2682
2682
|
*/
|
|
2683
|
-
|
|
2683
|
+
assignedUserRef: ApiObjectReference;
|
|
2684
2684
|
|
|
2685
2685
|
/**
|
|
2686
|
-
*
|
|
2686
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2687
2687
|
*/
|
|
2688
|
-
|
|
2688
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2689
2689
|
|
|
2690
2690
|
/**
|
|
2691
2691
|
* Chance (in Prozent)
|
|
@@ -3214,14 +3214,14 @@ export interface CrmState {
|
|
|
3214
3214
|
readyToBill: boolean;
|
|
3215
3215
|
|
|
3216
3216
|
/**
|
|
3217
|
-
*
|
|
3217
|
+
* Handelt es sich um einen Anfang-Status
|
|
3218
3218
|
*/
|
|
3219
|
-
|
|
3219
|
+
startState: boolean;
|
|
3220
3220
|
|
|
3221
3221
|
/**
|
|
3222
|
-
*
|
|
3222
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3223
3223
|
*/
|
|
3224
|
-
|
|
3224
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3225
3225
|
|
|
3226
3226
|
/**
|
|
3227
3227
|
* MetaInformations for this Object
|
|
@@ -3465,14 +3465,14 @@ export interface CrmTask {
|
|
|
3465
3465
|
assignedUserRef: ApiObjectReference;
|
|
3466
3466
|
|
|
3467
3467
|
/**
|
|
3468
|
-
*
|
|
3468
|
+
* Beauftragte Zeit in Sekunden
|
|
3469
3469
|
*/
|
|
3470
|
-
|
|
3470
|
+
effortCommissioned: number;
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
externalRecordedTimes: number;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3709,14 +3709,14 @@ export interface Customer {
|
|
|
3709
3709
|
stackProcessingPriority: number;
|
|
3710
3710
|
|
|
3711
3711
|
/**
|
|
3712
|
-
*
|
|
3712
|
+
* reference to product price group
|
|
3713
3713
|
*/
|
|
3714
|
-
|
|
3714
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3715
3715
|
|
|
3716
3716
|
/**
|
|
3717
|
-
*
|
|
3717
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3718
3718
|
*/
|
|
3719
|
-
|
|
3719
|
+
collectiveInvoiceManually: boolean;
|
|
3720
3720
|
|
|
3721
3721
|
/**
|
|
3722
3722
|
* Unique identifier of the Object
|
|
@@ -3953,14 +3953,14 @@ export interface DeliveryMethod {
|
|
|
3953
3953
|
defaultSizeUnit: UnitTypeReference;
|
|
3954
3954
|
|
|
3955
3955
|
/**
|
|
3956
|
-
*
|
|
3956
|
+
* translations
|
|
3957
3957
|
*/
|
|
3958
|
-
|
|
3958
|
+
translations: Array<DocumentTypeTerm>;
|
|
3959
3959
|
|
|
3960
3960
|
/**
|
|
3961
|
-
*
|
|
3961
|
+
* Quelle für Paketgewicht
|
|
3962
3962
|
*/
|
|
3963
|
-
|
|
3963
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3964
3964
|
|
|
3965
3965
|
/**
|
|
3966
3966
|
* Versand-Anbieter
|
|
@@ -4177,14 +4177,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4177
4177
|
deliveryQuantityPackages: number;
|
|
4178
4178
|
|
|
4179
4179
|
/**
|
|
4180
|
-
*
|
|
4180
|
+
* Leitweg-ID
|
|
4181
4181
|
*/
|
|
4182
|
-
|
|
4182
|
+
buyerReference: string;
|
|
4183
4183
|
|
|
4184
4184
|
/**
|
|
4185
|
-
*
|
|
4185
|
+
* Bestellnummer aus Vorbeleg
|
|
4186
4186
|
*/
|
|
4187
|
-
|
|
4187
|
+
referencedOrderNumber: string;
|
|
4188
4188
|
|
|
4189
4189
|
/**
|
|
4190
4190
|
* Steuerpflichtig oder steuerfrei
|
|
@@ -4287,14 +4287,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4287
4287
|
supplierNumber: string;
|
|
4288
4288
|
|
|
4289
4289
|
/**
|
|
4290
|
-
*
|
|
4290
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4291
4291
|
*/
|
|
4292
|
-
|
|
4292
|
+
deliveryApproved: boolean;
|
|
4293
4293
|
|
|
4294
4294
|
/**
|
|
4295
|
-
*
|
|
4295
|
+
* Gesamtpreis brutto
|
|
4296
4296
|
*/
|
|
4297
|
-
|
|
4297
|
+
totalGrossPrice: number;
|
|
4298
4298
|
|
|
4299
4299
|
/**
|
|
4300
4300
|
* Kassen-Zahlungspositionen
|
|
@@ -4439,14 +4439,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4439
4439
|
additionalInfo: DocumentAdditionalInfo;
|
|
4440
4440
|
|
|
4441
4441
|
/**
|
|
4442
|
-
*
|
|
4442
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4443
4443
|
*/
|
|
4444
|
-
|
|
4444
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4445
4445
|
|
|
4446
4446
|
/**
|
|
4447
|
-
*
|
|
4447
|
+
* Bestelldatum
|
|
4448
4448
|
*/
|
|
4449
|
-
|
|
4449
|
+
orderedOn: ScriptingDate;
|
|
4450
4450
|
|
|
4451
4451
|
/**
|
|
4452
4452
|
* MetaInformations for this Object
|
|
@@ -4469,14 +4469,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4469
4469
|
dropShipping: boolean;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
|
-
*
|
|
4472
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4473
4473
|
*/
|
|
4474
|
-
|
|
4474
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4475
4475
|
|
|
4476
4476
|
/**
|
|
4477
|
-
*
|
|
4477
|
+
* Gesamtpreis netto
|
|
4478
4478
|
*/
|
|
4479
|
-
|
|
4479
|
+
totalNetPrice: number;
|
|
4480
4480
|
|
|
4481
4481
|
/**
|
|
4482
4482
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4598,6 +4598,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4598
4598
|
*/
|
|
4599
4599
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4600
4600
|
|
|
4601
|
+
/**
|
|
4602
|
+
* Rückgeld
|
|
4603
|
+
*/
|
|
4604
|
+
posReceiptChangeAmount: number;
|
|
4605
|
+
|
|
4601
4606
|
/**
|
|
4602
4607
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4603
4608
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4610,11 +4615,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4610
4615
|
*/
|
|
4611
4616
|
deliveryTermRef: ApiObjectReference;
|
|
4612
4617
|
|
|
4613
|
-
/**
|
|
4614
|
-
* Rückgeld
|
|
4615
|
-
*/
|
|
4616
|
-
posReceiptChangeAmount: number;
|
|
4617
|
-
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Gesamtbruttogewicht
|
|
4620
4620
|
*/
|
|
@@ -4664,14 +4664,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4664
4664
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4665
4665
|
|
|
4666
4666
|
/**
|
|
4667
|
-
*
|
|
4667
|
+
* Herkunft der Sprache
|
|
4668
4668
|
*/
|
|
4669
|
-
|
|
4669
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4670
4670
|
|
|
4671
4671
|
/**
|
|
4672
|
-
*
|
|
4672
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4673
4673
|
*/
|
|
4674
|
-
|
|
4674
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4675
4675
|
|
|
4676
4676
|
/**
|
|
4677
4677
|
* Herkunft der Käufer-Referenz
|
|
@@ -4804,14 +4804,14 @@ export interface DocumentAddress {
|
|
|
4804
4804
|
postOfficeBox: string;
|
|
4805
4805
|
|
|
4806
4806
|
/**
|
|
4807
|
-
*
|
|
4807
|
+
* country code IsoAlpha3
|
|
4808
4808
|
*/
|
|
4809
|
-
|
|
4809
|
+
countryCode: string;
|
|
4810
4810
|
|
|
4811
4811
|
/**
|
|
4812
|
-
*
|
|
4812
|
+
* Street
|
|
4813
4813
|
*/
|
|
4814
|
-
|
|
4814
|
+
street: string;
|
|
4815
4815
|
|
|
4816
4816
|
/**
|
|
4817
4817
|
* Unique identifier of the Object
|
|
@@ -4829,14 +4829,14 @@ export interface DocumentAddress {
|
|
|
4829
4829
|
info: MetaInfo;
|
|
4830
4830
|
|
|
4831
4831
|
/**
|
|
4832
|
-
*
|
|
4832
|
+
* GLN
|
|
4833
4833
|
*/
|
|
4834
|
-
|
|
4834
|
+
globalLocationNumber: string;
|
|
4835
4835
|
|
|
4836
4836
|
/**
|
|
4837
|
-
*
|
|
4837
|
+
* Lieferart
|
|
4838
4838
|
*/
|
|
4839
|
-
|
|
4839
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4840
4840
|
|
|
4841
4841
|
/**
|
|
4842
4842
|
* Postcode
|
|
@@ -5017,14 +5017,14 @@ export interface DocumentContractDetail {
|
|
|
5017
5017
|
runtimeToDate: ScriptingDate;
|
|
5018
5018
|
|
|
5019
5019
|
/**
|
|
5020
|
-
*
|
|
5020
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5021
5021
|
*/
|
|
5022
|
-
|
|
5022
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5023
5023
|
|
|
5024
5024
|
/**
|
|
5025
|
-
*
|
|
5025
|
+
* Nächste Fälligkeit
|
|
5026
5026
|
*/
|
|
5027
|
-
|
|
5027
|
+
nextDueDate: ScriptingDate;
|
|
5028
5028
|
|
|
5029
5029
|
/**
|
|
5030
5030
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5259,14 +5259,14 @@ export interface DocumentLine {
|
|
|
5259
5259
|
number: string;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Referenz zur Kundenauftragszeile
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
|
-
*
|
|
5267
|
+
* Gesamtbruttogewicht
|
|
5268
5268
|
*/
|
|
5269
|
-
|
|
5269
|
+
totalGrossWeight: number;
|
|
5270
5270
|
|
|
5271
5271
|
/**
|
|
5272
5272
|
* skontierbare Position?
|
|
@@ -5288,20 +5288,15 @@ export interface DocumentLine {
|
|
|
5288
5288
|
*/
|
|
5289
5289
|
baseTotalLinePrice: number;
|
|
5290
5290
|
|
|
5291
|
-
/**
|
|
5292
|
-
* Positionstyp
|
|
5293
|
-
*/
|
|
5294
|
-
lineType: DocumentLineType;
|
|
5295
|
-
|
|
5296
5291
|
/**
|
|
5297
5292
|
* FiBu-Buchung
|
|
5298
5293
|
*/
|
|
5299
5294
|
financeBooking: DocumentFinanceBooking;
|
|
5300
5295
|
|
|
5301
5296
|
/**
|
|
5302
|
-
*
|
|
5297
|
+
* Positionstyp
|
|
5303
5298
|
*/
|
|
5304
|
-
|
|
5299
|
+
lineType: DocumentLineType;
|
|
5305
5300
|
|
|
5306
5301
|
/**
|
|
5307
5302
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5313,6 +5308,11 @@ export interface DocumentLine {
|
|
|
5313
5308
|
*/
|
|
5314
5309
|
supplierOrderLineIds: Array<number>;
|
|
5315
5310
|
|
|
5311
|
+
/**
|
|
5312
|
+
* Summe Positionspreisänderungen [Brutto, Netto]
|
|
5313
|
+
*/
|
|
5314
|
+
totalLinePriceModifier: number;
|
|
5315
|
+
|
|
5316
5316
|
/**
|
|
5317
5317
|
* Vorgabe zu Streckengeschäft
|
|
5318
5318
|
*/
|
|
@@ -5328,11 +5328,6 @@ export interface DocumentLine {
|
|
|
5328
5328
|
*/
|
|
5329
5329
|
id: number;
|
|
5330
5330
|
|
|
5331
|
-
/**
|
|
5332
|
-
* Preis pro Einheit in Basiswährung
|
|
5333
|
-
*/
|
|
5334
|
-
basePrice: number;
|
|
5335
|
-
|
|
5336
5331
|
/**
|
|
5337
5332
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5338
5333
|
*/
|
|
@@ -5343,6 +5338,11 @@ export interface DocumentLine {
|
|
|
5343
5338
|
*/
|
|
5344
5339
|
externalReferenceVds: string;
|
|
5345
5340
|
|
|
5341
|
+
/**
|
|
5342
|
+
* Preis pro Einheit in Basiswährung
|
|
5343
|
+
*/
|
|
5344
|
+
basePrice: number;
|
|
5345
|
+
|
|
5346
5346
|
/**
|
|
5347
5347
|
* Serientyp
|
|
5348
5348
|
*/
|
|
@@ -5509,14 +5509,14 @@ export interface DocumentLine {
|
|
|
5509
5509
|
unitType: UnitTypeReference;
|
|
5510
5510
|
|
|
5511
5511
|
/**
|
|
5512
|
-
*
|
|
5512
|
+
* Referenz zur Basiszeile
|
|
5513
5513
|
*/
|
|
5514
|
-
|
|
5514
|
+
baseLineId: number;
|
|
5515
5515
|
|
|
5516
5516
|
/**
|
|
5517
|
-
*
|
|
5517
|
+
* Zubehör Einfügeart
|
|
5518
5518
|
*/
|
|
5519
|
-
|
|
5519
|
+
insertTerm: AccessoryInsertTerm;
|
|
5520
5520
|
|
|
5521
5521
|
/**
|
|
5522
5522
|
* Einheit Bruttogewicht
|
|
@@ -5569,14 +5569,14 @@ export interface DocumentLine {
|
|
|
5569
5569
|
deliveryText: string;
|
|
5570
5570
|
|
|
5571
5571
|
/**
|
|
5572
|
-
*
|
|
5572
|
+
* Vorgabewert für die Preiskalkulation
|
|
5573
5573
|
*/
|
|
5574
|
-
|
|
5574
|
+
presetPrice: number;
|
|
5575
5575
|
|
|
5576
5576
|
/**
|
|
5577
|
-
*
|
|
5577
|
+
* Produktionsdetails
|
|
5578
5578
|
*/
|
|
5579
|
-
|
|
5579
|
+
fabricationDetail: DocumentLineFabricationDetail;
|
|
5580
5580
|
|
|
5581
5581
|
/**
|
|
5582
5582
|
* Freifelder
|
|
@@ -5927,14 +5927,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5927
5927
|
quantityFinished: number;
|
|
5928
5928
|
|
|
5929
5929
|
/**
|
|
5930
|
-
*
|
|
5930
|
+
* Produzierte Seriennummern
|
|
5931
5931
|
*/
|
|
5932
|
-
|
|
5932
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5933
5933
|
|
|
5934
5934
|
/**
|
|
5935
|
-
*
|
|
5935
|
+
* Menge defekt
|
|
5936
5936
|
*/
|
|
5937
|
-
|
|
5937
|
+
quantityDefective: number;
|
|
5938
5938
|
|
|
5939
5939
|
/**
|
|
5940
5940
|
* Freifeld
|
|
@@ -6078,14 +6078,14 @@ export interface DocumentLinePosDetail {
|
|
|
6078
6078
|
balanceBeforeWithdrawal: number;
|
|
6079
6079
|
|
|
6080
6080
|
/**
|
|
6081
|
-
*
|
|
6081
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6082
6082
|
*/
|
|
6083
|
-
|
|
6083
|
+
externalPaymentId: string;
|
|
6084
6084
|
|
|
6085
6085
|
/**
|
|
6086
|
-
*
|
|
6086
|
+
* Typ der Position
|
|
6087
6087
|
*/
|
|
6088
|
-
|
|
6088
|
+
posLineType: PosLineType;
|
|
6089
6089
|
|
|
6090
6090
|
/**
|
|
6091
6091
|
* Unique identifier of the Object
|
|
@@ -6318,14 +6318,14 @@ export interface DocumentPosPayment {
|
|
|
6318
6318
|
balanceBeforeWithdrawal: number;
|
|
6319
6319
|
|
|
6320
6320
|
/**
|
|
6321
|
-
*
|
|
6321
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6322
6322
|
*/
|
|
6323
|
-
|
|
6323
|
+
externalPaymentId: string;
|
|
6324
6324
|
|
|
6325
6325
|
/**
|
|
6326
|
-
*
|
|
6326
|
+
* Typ der Position
|
|
6327
6327
|
*/
|
|
6328
|
-
|
|
6328
|
+
posLineType: PosLineType;
|
|
6329
6329
|
|
|
6330
6330
|
/**
|
|
6331
6331
|
* Unique identifier of the Object
|
|
@@ -6448,14 +6448,14 @@ export interface DocumentRef {
|
|
|
6448
6448
|
export interface DocumentShippingCost {
|
|
6449
6449
|
|
|
6450
6450
|
/**
|
|
6451
|
-
*
|
|
6451
|
+
* Die Versandkosten
|
|
6452
6452
|
*/
|
|
6453
|
-
|
|
6453
|
+
costs: number;
|
|
6454
6454
|
|
|
6455
6455
|
/**
|
|
6456
|
-
*
|
|
6456
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6457
6457
|
*/
|
|
6458
|
-
|
|
6458
|
+
manualCosts: boolean;
|
|
6459
6459
|
|
|
6460
6460
|
/**
|
|
6461
6461
|
* Keine Versandkosten (freier Versand)
|
|
@@ -7250,14 +7250,14 @@ export interface FabricationRevertRequest {
|
|
|
7250
7250
|
quantity: number;
|
|
7251
7251
|
|
|
7252
7252
|
/**
|
|
7253
|
-
*
|
|
7253
|
+
* ID der zu stornierenden Position
|
|
7254
7254
|
*/
|
|
7255
|
-
|
|
7255
|
+
documentLineId: number;
|
|
7256
7256
|
|
|
7257
7257
|
/**
|
|
7258
|
-
*
|
|
7258
|
+
* Material automatisch stornieren
|
|
7259
7259
|
*/
|
|
7260
|
-
|
|
7260
|
+
autoRevertComponents: boolean;
|
|
7261
7261
|
|
|
7262
7262
|
/**
|
|
7263
7263
|
* Zu stornierende Seriennummern
|
|
@@ -7273,14 +7273,14 @@ export interface FabricationRevertRequest {
|
|
|
7273
7273
|
export interface FabricationSerialNumber {
|
|
7274
7274
|
|
|
7275
7275
|
/**
|
|
7276
|
-
*
|
|
7276
|
+
* MHD / Verfallsdatum
|
|
7277
7277
|
*/
|
|
7278
|
-
|
|
7278
|
+
expiryDate: ScriptingDate;
|
|
7279
7279
|
|
|
7280
7280
|
/**
|
|
7281
|
-
*
|
|
7281
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7282
7282
|
*/
|
|
7283
|
-
|
|
7283
|
+
serialNumberId: number;
|
|
7284
7284
|
|
|
7285
7285
|
/**
|
|
7286
7286
|
* Bemerkung
|
|
@@ -7492,14 +7492,14 @@ export interface PaymentMethod {
|
|
|
7492
7492
|
daysToAddForFollowup: number;
|
|
7493
7493
|
|
|
7494
7494
|
/**
|
|
7495
|
-
*
|
|
7495
|
+
* external Payment Id
|
|
7496
7496
|
*/
|
|
7497
|
-
|
|
7497
|
+
externalPaymentId: string;
|
|
7498
7498
|
|
|
7499
7499
|
/**
|
|
7500
|
-
*
|
|
7500
|
+
* Die Business Transaction
|
|
7501
7501
|
*/
|
|
7502
|
-
|
|
7502
|
+
businessTransaction: ApiObjectReference;
|
|
7503
7503
|
|
|
7504
7504
|
/**
|
|
7505
7505
|
* Unique identifier of the Object
|
|
@@ -7540,14 +7540,14 @@ export interface PaymentTerm {
|
|
|
7540
7540
|
paymentDiscount1: number;
|
|
7541
7541
|
|
|
7542
7542
|
/**
|
|
7543
|
-
* for
|
|
7543
|
+
* Days for Discount 1
|
|
7544
7544
|
*/
|
|
7545
|
-
|
|
7545
|
+
paymentDays1: number;
|
|
7546
7546
|
|
|
7547
7547
|
/**
|
|
7548
|
-
*
|
|
7548
|
+
* for deposit: remaining term
|
|
7549
7549
|
*/
|
|
7550
|
-
|
|
7550
|
+
remainingTermRef: ApiObjectReference;
|
|
7551
7551
|
|
|
7552
7552
|
/**
|
|
7553
7553
|
* Days for Discount 2
|
|
@@ -7829,14 +7829,14 @@ export const enum PickingType {
|
|
|
7829
7829
|
export interface Picklist {
|
|
7830
7830
|
|
|
7831
7831
|
/**
|
|
7832
|
-
*
|
|
7832
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7833
7833
|
*/
|
|
7834
|
-
|
|
7834
|
+
usedTemplate: PicklistTemplate;
|
|
7835
7835
|
|
|
7836
7836
|
/**
|
|
7837
|
-
*
|
|
7837
|
+
* Ziellager für Nachschub
|
|
7838
7838
|
*/
|
|
7839
|
-
|
|
7839
|
+
targetStorageRef: ApiObjectReference;
|
|
7840
7840
|
|
|
7841
7841
|
/**
|
|
7842
7842
|
* Nummer der Pickliste
|
|
@@ -7887,14 +7887,14 @@ export interface Picklist {
|
|
|
7887
7887
|
export interface PicklistLine {
|
|
7888
7888
|
|
|
7889
7889
|
/**
|
|
7890
|
-
*
|
|
7890
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
7891
7891
|
*/
|
|
7892
|
-
|
|
7892
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
7893
7893
|
|
|
7894
7894
|
/**
|
|
7895
|
-
*
|
|
7895
|
+
* Gesammelte Menge der Position
|
|
7896
7896
|
*/
|
|
7897
|
-
|
|
7897
|
+
quantityCollected: number;
|
|
7898
7898
|
|
|
7899
7899
|
/**
|
|
7900
7900
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -7932,14 +7932,14 @@ export interface PicklistLine {
|
|
|
7932
7932
|
version: number;
|
|
7933
7933
|
|
|
7934
7934
|
/**
|
|
7935
|
-
*
|
|
7935
|
+
* ID der Quell-Dokumentposition
|
|
7936
7936
|
*/
|
|
7937
|
-
|
|
7937
|
+
sourceDocumentLineId: number;
|
|
7938
7938
|
|
|
7939
7939
|
/**
|
|
7940
|
-
*
|
|
7940
|
+
* Lageranzeigename
|
|
7941
7941
|
*/
|
|
7942
|
-
|
|
7942
|
+
storageDisplayName: string;
|
|
7943
7943
|
|
|
7944
7944
|
/**
|
|
7945
7945
|
* Artikelnummer
|
|
@@ -7947,14 +7947,14 @@ export interface PicklistLine {
|
|
|
7947
7947
|
articleNumber: string;
|
|
7948
7948
|
|
|
7949
7949
|
/**
|
|
7950
|
-
*
|
|
7950
|
+
* Lagernummer
|
|
7951
7951
|
*/
|
|
7952
|
-
|
|
7952
|
+
storageNumber: string;
|
|
7953
7953
|
|
|
7954
7954
|
/**
|
|
7955
|
-
*
|
|
7955
|
+
* Art der Position
|
|
7956
7956
|
*/
|
|
7957
|
-
|
|
7957
|
+
lineType: PicklistLineType;
|
|
7958
7958
|
|
|
7959
7959
|
/**
|
|
7960
7960
|
* ID der Ziel-Dokumentposition
|
|
@@ -8093,14 +8093,14 @@ export interface PicklistLineComponent {
|
|
|
8093
8093
|
targetDocumentLineComponentId: number;
|
|
8094
8094
|
|
|
8095
8095
|
/**
|
|
8096
|
-
*
|
|
8096
|
+
* abweichende Artikelbezeichnung
|
|
8097
8097
|
*/
|
|
8098
|
-
|
|
8098
|
+
articleAlternativeName: string;
|
|
8099
8099
|
|
|
8100
8100
|
/**
|
|
8101
|
-
*
|
|
8101
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8102
8102
|
*/
|
|
8103
|
-
|
|
8103
|
+
quantityPerAssemblyGroup: number;
|
|
8104
8104
|
|
|
8105
8105
|
/**
|
|
8106
8106
|
* Verpackte Menge der Position
|
|
@@ -8276,6 +8276,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8276
8276
|
*/
|
|
8277
8277
|
maxOrderValue: number;
|
|
8278
8278
|
|
|
8279
|
+
/**
|
|
8280
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8281
|
+
*/
|
|
8282
|
+
maxOrderCount: number;
|
|
8283
|
+
|
|
8279
8284
|
/**
|
|
8280
8285
|
* Nur vollständig lieferbare Positionen
|
|
8281
8286
|
*/
|
|
@@ -8286,11 +8291,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8286
8291
|
*/
|
|
8287
8292
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8288
8293
|
|
|
8289
|
-
/**
|
|
8290
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8291
|
-
*/
|
|
8292
|
-
maxOrderCount: number;
|
|
8293
|
-
|
|
8294
8294
|
/**
|
|
8295
8295
|
* Selektion über den Bereich vom Belegdatum
|
|
8296
8296
|
*/
|
|
@@ -8364,26 +8364,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8364
8364
|
*/
|
|
8365
8365
|
specifyStorageBins: boolean;
|
|
8366
8366
|
|
|
8367
|
-
/**
|
|
8368
|
-
* Der zu verwendende Pickwagen
|
|
8369
|
-
*/
|
|
8370
|
-
orderPickingTrolleyRef: ApiObjectReference;
|
|
8371
|
-
|
|
8372
8367
|
/**
|
|
8373
8368
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
8374
8369
|
*/
|
|
8375
8370
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8376
8371
|
|
|
8377
8372
|
/**
|
|
8378
|
-
*
|
|
8373
|
+
* Der zu verwendende Pickwagen
|
|
8379
8374
|
*/
|
|
8380
|
-
|
|
8375
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
8381
8376
|
|
|
8382
8377
|
/**
|
|
8383
8378
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8384
8379
|
*/
|
|
8385
8380
|
useAllAvailOrderPickingTrolleys: boolean;
|
|
8386
8381
|
|
|
8382
|
+
/**
|
|
8383
|
+
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8384
|
+
*/
|
|
8385
|
+
sortByRoutePosition: boolean;
|
|
8386
|
+
|
|
8387
8387
|
/**
|
|
8388
8388
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
8389
8389
|
*/
|
|
@@ -8428,14 +8428,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8428
8428
|
alwaysShowDeliveryMethod: boolean;
|
|
8429
8429
|
|
|
8430
8430
|
/**
|
|
8431
|
-
*
|
|
8431
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8432
8432
|
*/
|
|
8433
|
-
|
|
8433
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8434
8434
|
|
|
8435
8435
|
/**
|
|
8436
|
-
*
|
|
8436
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8437
8437
|
*/
|
|
8438
|
-
|
|
8438
|
+
autoPrintDeliveryDocument: boolean;
|
|
8439
8439
|
|
|
8440
8440
|
/**
|
|
8441
8441
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8760,14 +8760,14 @@ export interface ProductDiscount {
|
|
|
8760
8760
|
validFrom: ScriptingDate;
|
|
8761
8761
|
|
|
8762
8762
|
/**
|
|
8763
|
-
*
|
|
8763
|
+
* Bestimmt die Art des Rabatts
|
|
8764
8764
|
*/
|
|
8765
|
-
|
|
8765
|
+
modifierType: PriceModifierType;
|
|
8766
8766
|
|
|
8767
8767
|
/**
|
|
8768
|
-
*
|
|
8768
|
+
* Warengruppe
|
|
8769
8769
|
*/
|
|
8770
|
-
|
|
8770
|
+
productGroupRef: ApiObjectReference;
|
|
8771
8771
|
|
|
8772
8772
|
/**
|
|
8773
8773
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8785,14 +8785,14 @@ export interface ProductDiscount {
|
|
|
8785
8785
|
currencyRef: CurrencyReference;
|
|
8786
8786
|
|
|
8787
8787
|
/**
|
|
8788
|
-
*
|
|
8788
|
+
* Wert des Rabatts
|
|
8789
8789
|
*/
|
|
8790
|
-
|
|
8790
|
+
modifierValue: number;
|
|
8791
8791
|
|
|
8792
8792
|
/**
|
|
8793
|
-
*
|
|
8793
|
+
* Preisgruppe
|
|
8794
8794
|
*/
|
|
8795
|
-
|
|
8795
|
+
priceGroupRef: ApiObjectReference;
|
|
8796
8796
|
|
|
8797
8797
|
/**
|
|
8798
8798
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -9212,26 +9212,26 @@ export interface RequestDocument {
|
|
|
9212
9212
|
*/
|
|
9213
9213
|
lines: Array<RequestDocumentLine>;
|
|
9214
9214
|
|
|
9215
|
-
/**
|
|
9216
|
-
* Die Vertragsdetails
|
|
9217
|
-
*/
|
|
9218
|
-
contractDetail: DocumentContractDetail;
|
|
9219
|
-
|
|
9220
9215
|
/**
|
|
9221
9216
|
* ID der Kasse (bei POS)
|
|
9222
9217
|
*/
|
|
9223
9218
|
posRegisterId: number;
|
|
9224
9219
|
|
|
9225
9220
|
/**
|
|
9226
|
-
*
|
|
9221
|
+
* Die Vertragsdetails
|
|
9227
9222
|
*/
|
|
9228
|
-
|
|
9223
|
+
contractDetail: DocumentContractDetail;
|
|
9229
9224
|
|
|
9230
9225
|
/**
|
|
9231
9226
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9232
9227
|
*/
|
|
9233
9228
|
supplierAccountId: number;
|
|
9234
9229
|
|
|
9230
|
+
/**
|
|
9231
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9232
|
+
*/
|
|
9233
|
+
paymentTermId: number;
|
|
9234
|
+
|
|
9235
9235
|
/**
|
|
9236
9236
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
9237
9237
|
*/
|
|
@@ -9341,14 +9341,14 @@ export interface RequestDocumentLine {
|
|
|
9341
9341
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9342
9342
|
|
|
9343
9343
|
/**
|
|
9344
|
-
*
|
|
9344
|
+
* FiBu-Angaben
|
|
9345
9345
|
*/
|
|
9346
|
-
|
|
9346
|
+
financeBooking: DocumentFinanceBooking;
|
|
9347
9347
|
|
|
9348
9348
|
/**
|
|
9349
|
-
*
|
|
9349
|
+
* Typ dieser Position
|
|
9350
9350
|
*/
|
|
9351
|
-
|
|
9351
|
+
lineType: DocumentLineType;
|
|
9352
9352
|
|
|
9353
9353
|
/**
|
|
9354
9354
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9361,14 +9361,14 @@ export interface RequestDocumentLine {
|
|
|
9361
9361
|
dropShippingPolicy: DropShippingPolicy;
|
|
9362
9362
|
|
|
9363
9363
|
/**
|
|
9364
|
-
*
|
|
9364
|
+
* Positionsnummer der Artikel
|
|
9365
9365
|
*/
|
|
9366
|
-
|
|
9366
|
+
positionOfArticleLine: number;
|
|
9367
9367
|
|
|
9368
9368
|
/**
|
|
9369
|
-
*
|
|
9369
|
+
* (optional) Lager-ID
|
|
9370
9370
|
*/
|
|
9371
|
-
|
|
9371
|
+
storageId: number;
|
|
9372
9372
|
|
|
9373
9373
|
/**
|
|
9374
9374
|
* Vertragsdetails zur Belegposition
|
|
@@ -9446,14 +9446,14 @@ export interface RequestDocumentLine {
|
|
|
9446
9446
|
name: string;
|
|
9447
9447
|
|
|
9448
9448
|
/**
|
|
9449
|
-
*
|
|
9449
|
+
* Für interne Zwecke: Externe Artikelnummer
|
|
9450
9450
|
*/
|
|
9451
|
-
|
|
9451
|
+
externalArticleNumber: string;
|
|
9452
9452
|
|
|
9453
9453
|
/**
|
|
9454
|
-
*
|
|
9454
|
+
* ID der Quell-Belegposition
|
|
9455
9455
|
*/
|
|
9456
|
-
|
|
9456
|
+
sourceLineId: number;
|
|
9457
9457
|
|
|
9458
9458
|
/**
|
|
9459
9459
|
* Buchungen zu dieser Belegposition
|
|
@@ -9620,14 +9620,14 @@ export interface SalesAgent {
|
|
|
9620
9620
|
note: string;
|
|
9621
9621
|
|
|
9622
9622
|
/**
|
|
9623
|
-
*
|
|
9623
|
+
* is sales agent taxable
|
|
9624
9624
|
*/
|
|
9625
|
-
|
|
9625
|
+
taxable: boolean;
|
|
9626
9626
|
|
|
9627
9627
|
/**
|
|
9628
|
-
*
|
|
9628
|
+
* reference to the delivery method
|
|
9629
9629
|
*/
|
|
9630
|
-
|
|
9630
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9631
9631
|
|
|
9632
9632
|
/**
|
|
9633
9633
|
* Freifelder
|
|
@@ -10087,14 +10087,14 @@ export interface ShelfDocument {
|
|
|
10087
10087
|
tags: Array<TagDto>;
|
|
10088
10088
|
|
|
10089
10089
|
/**
|
|
10090
|
-
*
|
|
10090
|
+
* Mehrsprachige Bezeichnungen
|
|
10091
10091
|
*/
|
|
10092
|
-
|
|
10092
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10093
10093
|
|
|
10094
10094
|
/**
|
|
10095
|
-
*
|
|
10095
|
+
* share informations
|
|
10096
10096
|
*/
|
|
10097
|
-
|
|
10097
|
+
shares: Array<ShelfShare>;
|
|
10098
10098
|
|
|
10099
10099
|
/**
|
|
10100
10100
|
* Automatische Löschung ab
|
|
@@ -10170,14 +10170,14 @@ export interface ShelfDocumentAttribution {
|
|
|
10170
10170
|
shelfResourceId: number;
|
|
10171
10171
|
|
|
10172
10172
|
/**
|
|
10173
|
-
*
|
|
10173
|
+
* Verfügbare Transformationen zum Bild
|
|
10174
10174
|
*/
|
|
10175
|
-
|
|
10175
|
+
transformationKeys: Array<string>;
|
|
10176
10176
|
|
|
10177
10177
|
/**
|
|
10178
|
-
*
|
|
10178
|
+
* id of the referenced object
|
|
10179
10179
|
*/
|
|
10180
|
-
|
|
10180
|
+
refId: number;
|
|
10181
10181
|
|
|
10182
10182
|
/**
|
|
10183
10183
|
* Unique identifier of the Object
|
|
@@ -10226,14 +10226,14 @@ export interface ShelfDocumentType {
|
|
|
10226
10226
|
active: boolean;
|
|
10227
10227
|
|
|
10228
10228
|
/**
|
|
10229
|
-
*
|
|
10229
|
+
* access level or reading
|
|
10230
10230
|
*/
|
|
10231
|
-
|
|
10231
|
+
accessLevelRead: number;
|
|
10232
10232
|
|
|
10233
10233
|
/**
|
|
10234
|
-
*
|
|
10234
|
+
* label of type
|
|
10235
10235
|
*/
|
|
10236
|
-
|
|
10236
|
+
label: string;
|
|
10237
10237
|
|
|
10238
10238
|
/**
|
|
10239
10239
|
* storage rule for revisions
|
|
@@ -10279,14 +10279,14 @@ export interface ShelfFile {
|
|
|
10279
10279
|
subFiles: Array<SubFileInfo>;
|
|
10280
10280
|
|
|
10281
10281
|
/**
|
|
10282
|
-
*
|
|
10282
|
+
* revision number of this file
|
|
10283
10283
|
*/
|
|
10284
|
-
|
|
10284
|
+
revisionNumber: number;
|
|
10285
10285
|
|
|
10286
10286
|
/**
|
|
10287
|
-
*
|
|
10287
|
+
* fileSize
|
|
10288
10288
|
*/
|
|
10289
|
-
|
|
10289
|
+
fileSize: number;
|
|
10290
10290
|
|
|
10291
10291
|
/**
|
|
10292
10292
|
* file-extension of this entry
|
|
@@ -10314,14 +10314,14 @@ export interface ShelfFile {
|
|
|
10314
10314
|
version: number;
|
|
10315
10315
|
|
|
10316
10316
|
/**
|
|
10317
|
-
*
|
|
10317
|
+
* meta data
|
|
10318
10318
|
*/
|
|
10319
|
-
|
|
10319
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
10320
10320
|
|
|
10321
10321
|
/**
|
|
10322
|
-
*
|
|
10322
|
+
* current reference of this file in our storage
|
|
10323
10323
|
*/
|
|
10324
|
-
|
|
10324
|
+
storageHandle: string;
|
|
10325
10325
|
|
|
10326
10326
|
/**
|
|
10327
10327
|
* MetaInformations for this Object
|
|
@@ -10365,14 +10365,14 @@ export interface ShelfShare {
|
|
|
10365
10365
|
publishState: ShelfSharePublishState;
|
|
10366
10366
|
|
|
10367
10367
|
/**
|
|
10368
|
-
*
|
|
10368
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
10369
10369
|
*/
|
|
10370
|
-
|
|
10370
|
+
publicUrlDurationInMinutes: number;
|
|
10371
10371
|
|
|
10372
10372
|
/**
|
|
10373
|
-
*
|
|
10373
|
+
* Freifelder
|
|
10374
10374
|
*/
|
|
10375
|
-
|
|
10375
|
+
custom: EavShelfshare;
|
|
10376
10376
|
|
|
10377
10377
|
/**
|
|
10378
10378
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -10801,14 +10801,14 @@ export interface Supplier {
|
|
|
10801
10801
|
info: MetaInfo;
|
|
10802
10802
|
|
|
10803
10803
|
/**
|
|
10804
|
-
*
|
|
10804
|
+
* Lieferantengruppe
|
|
10805
10805
|
*/
|
|
10806
|
-
|
|
10806
|
+
supplierGroupRef: ApiObjectReference;
|
|
10807
10807
|
|
|
10808
10808
|
/**
|
|
10809
|
-
*
|
|
10809
|
+
* reference to the delivery method
|
|
10810
10810
|
*/
|
|
10811
|
-
|
|
10811
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10812
10812
|
|
|
10813
10813
|
/**
|
|
10814
10814
|
* tax able or tax free
|
|
@@ -10866,14 +10866,14 @@ export interface Supplier {
|
|
|
10866
10866
|
performanceCountryCode: string;
|
|
10867
10867
|
|
|
10868
10868
|
/**
|
|
10869
|
-
*
|
|
10869
|
+
* reference to the payment method
|
|
10870
10870
|
*/
|
|
10871
|
-
|
|
10871
|
+
paymentMethodRef: ApiObjectReference;
|
|
10872
10872
|
|
|
10873
10873
|
/**
|
|
10874
|
-
*
|
|
10874
|
+
* Lieferzeit in (Werk-)Tagen
|
|
10875
10875
|
*/
|
|
10876
|
-
|
|
10876
|
+
defaultDeliveryTime: number;
|
|
10877
10877
|
|
|
10878
10878
|
/**
|
|
10879
10879
|
* currency code IsoAlpha3
|
|
@@ -11233,14 +11233,14 @@ export interface User {
|
|
|
11233
11233
|
version: number;
|
|
11234
11234
|
|
|
11235
11235
|
/**
|
|
11236
|
-
*
|
|
11236
|
+
* is the email verified
|
|
11237
11237
|
*/
|
|
11238
|
-
|
|
11238
|
+
emailVerified: boolean;
|
|
11239
11239
|
|
|
11240
11240
|
/**
|
|
11241
|
-
*
|
|
11241
|
+
* first-name
|
|
11242
11242
|
*/
|
|
11243
|
-
|
|
11243
|
+
firstName: string;
|
|
11244
11244
|
|
|
11245
11245
|
/**
|
|
11246
11246
|
* email-address
|