@vario-software/types 2026.23.3 → 2026.23.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 +17 -17
- package/scripting/types.d.ts +253 -253
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -557,19 +557,19 @@ export interface ArticleScriptingService {
|
|
|
557
557
|
*
|
|
558
558
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
559
559
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
560
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
561
560
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
562
561
|
*/
|
|
563
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
562
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
564
563
|
|
|
565
564
|
/**
|
|
566
565
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
567
566
|
*
|
|
568
567
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
569
568
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
569
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
570
570
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
571
571
|
*/
|
|
572
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
572
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -685,21 +685,21 @@ Die Texte werden zur Sprache der eigenen Adresse gespeichert.
|
|
|
685
685
|
newLabelPrintBatchIdentifier(): string;
|
|
686
686
|
|
|
687
687
|
/**
|
|
688
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
688
|
+
* Liest einen Artikel mit Texten zur Sprache languageCode
|
|
689
689
|
*
|
|
690
690
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
691
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
691
692
|
* @return {Article} Der gelesene Artikel
|
|
692
693
|
*/
|
|
693
|
-
readById(id: number): Article;
|
|
694
|
+
readById(id: number, languageCode: string): Article;
|
|
694
695
|
|
|
695
696
|
/**
|
|
696
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
697
|
+
* Liest einen Artikel mit Texten zur Sprache der eigenen Adresse
|
|
697
698
|
*
|
|
698
699
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
699
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
700
700
|
* @return {Article} Der gelesene Artikel
|
|
701
701
|
*/
|
|
702
|
-
readById(id: number
|
|
702
|
+
readById(id: number): Article;
|
|
703
703
|
|
|
704
704
|
/**
|
|
705
705
|
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
@@ -1645,35 +1645,35 @@ export interface DocumentScriptingService {
|
|
|
1645
1645
|
* Löst einen Beleg auf
|
|
1646
1646
|
*
|
|
1647
1647
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1648
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1649
1648
|
* @return {Document} Der aufgelöste Beleg
|
|
1650
1649
|
*/
|
|
1651
|
-
dissolve(documentId: number
|
|
1650
|
+
dissolve(documentId: number): Document;
|
|
1652
1651
|
|
|
1653
1652
|
/**
|
|
1654
1653
|
* Löst einen Beleg auf
|
|
1655
1654
|
*
|
|
1656
1655
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1656
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1657
1657
|
* @return {Document} Der aufgelöste Beleg
|
|
1658
1658
|
*/
|
|
1659
|
-
dissolve(documentId: number): Document;
|
|
1659
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1660
1660
|
|
|
1661
1661
|
/**
|
|
1662
1662
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1663
1663
|
*
|
|
1664
1664
|
* @param {number} documentId - ID des Belegs
|
|
1665
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1665
1666
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1666
1667
|
*/
|
|
1667
|
-
edit(documentId: number): Document;
|
|
1668
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1668
1669
|
|
|
1669
1670
|
/**
|
|
1670
1671
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1671
1672
|
*
|
|
1672
1673
|
* @param {number} documentId - ID des Belegs
|
|
1673
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1674
1674
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1675
1675
|
*/
|
|
1676
|
-
edit(documentId: number
|
|
1676
|
+
edit(documentId: number): Document;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -1776,16 +1776,16 @@ export interface DocumentScriptingService {
|
|
|
1776
1776
|
* Versendet einen Beleg per Mail
|
|
1777
1777
|
*
|
|
1778
1778
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1779
|
-
* @param {string} reportGroupIdentifier -
|
|
1780
1779
|
*/
|
|
1781
|
-
sendViaMail(documentId: number
|
|
1780
|
+
sendViaMail(documentId: number): void;
|
|
1782
1781
|
|
|
1783
1782
|
/**
|
|
1784
1783
|
* Versendet einen Beleg per Mail
|
|
1785
1784
|
*
|
|
1786
1785
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1786
|
+
* @param {string} reportGroupIdentifier -
|
|
1787
1787
|
*/
|
|
1788
|
-
sendViaMail(documentId: number): void;
|
|
1788
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1789
1789
|
|
|
1790
1790
|
/**
|
|
1791
1791
|
* Überführt einen Beleg in einen anderen Status
|
package/scripting/types.d.ts
CHANGED
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Post office box
|
|
295
|
-
*/
|
|
296
|
-
postOfficeBox: string;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Title
|
|
300
295
|
*/
|
|
301
296
|
titleRef: ApiCreatableReference;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Post office box
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
postOfficeBox: string;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -391,14 +391,14 @@ export interface AccountAddress {
|
|
|
391
391
|
additionalAddressLine1: string;
|
|
392
392
|
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* Parcel station
|
|
395
395
|
*/
|
|
396
|
-
|
|
396
|
+
parcelStation: string;
|
|
397
397
|
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* Additional address line2
|
|
400
400
|
*/
|
|
401
|
-
|
|
401
|
+
additionalAddressLine2: string;
|
|
402
402
|
|
|
403
403
|
/**
|
|
404
404
|
* Street address number
|
|
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
|
|
|
469
469
|
active: boolean;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
*
|
|
472
|
+
* post-code of the bank
|
|
473
473
|
*/
|
|
474
|
-
|
|
474
|
+
bankPostCode: string;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
*
|
|
477
|
+
* name of the bank
|
|
478
478
|
*/
|
|
479
|
-
|
|
479
|
+
bankName: string;
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* account from, if differs from account-address
|
|
@@ -499,14 +499,14 @@ export interface AccountBankdetail {
|
|
|
499
499
|
bankCity: string;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* origin type
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
originType: AccountBankdetail$OriginType;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
|
-
*
|
|
507
|
+
* Is default bank?
|
|
508
508
|
*/
|
|
509
|
-
|
|
509
|
+
defaultBank: boolean;
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
@@ -1009,14 +1009,14 @@ export interface Article {
|
|
|
1009
1009
|
customsTariffNumber: string;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
|
-
*
|
|
1012
|
+
* Product custom data
|
|
1013
1013
|
*/
|
|
1014
|
-
|
|
1014
|
+
listingCustom: EavArticleListing;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* base capacity unit
|
|
@@ -1209,14 +1209,14 @@ export interface Article {
|
|
|
1209
1209
|
workUnitInMinutes: number;
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
|
-
*
|
|
1212
|
+
* description custom data
|
|
1213
1213
|
*/
|
|
1214
|
-
|
|
1214
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1215
1215
|
|
|
1216
1216
|
/**
|
|
1217
|
-
*
|
|
1217
|
+
* Frei kommissionierbar
|
|
1218
1218
|
*/
|
|
1219
|
-
|
|
1219
|
+
freelyPickable: boolean;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
@@ -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
|
|
@@ -1494,14 +1494,14 @@ export interface ArticleCustomer {
|
|
|
1494
1494
|
articleName: string;
|
|
1495
1495
|
|
|
1496
1496
|
/**
|
|
1497
|
-
*
|
|
1497
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1498
1498
|
*/
|
|
1499
|
-
|
|
1499
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
|
-
*
|
|
1502
|
+
* Etikettdruck-Einstellungen
|
|
1503
1503
|
*/
|
|
1504
|
-
|
|
1504
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1505
1505
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Kunden-Preise
|
|
@@ -1676,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1676
1676
|
proposedLowestPriceGross: number;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
*
|
|
1679
|
+
* der Sales Channel
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
salesChannelRef: ApiObjectReference;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
* der
|
|
1684
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
customLowestPriceGross: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1893,11 +1893,6 @@ export interface ArticleStorage {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
|
-
/**
|
|
1897
|
-
* Meldebestand
|
|
1898
|
-
*/
|
|
1899
|
-
reorderPoint: number;
|
|
1900
|
-
|
|
1901
1896
|
/**
|
|
1902
1897
|
* Bestellte Menge
|
|
1903
1898
|
*/
|
|
@@ -1909,15 +1904,20 @@ export interface ArticleStorage {
|
|
|
1909
1904
|
quantityInPicking: number;
|
|
1910
1905
|
|
|
1911
1906
|
/**
|
|
1912
|
-
*
|
|
1907
|
+
* Meldebestand
|
|
1913
1908
|
*/
|
|
1914
|
-
|
|
1909
|
+
reorderPoint: number;
|
|
1915
1910
|
|
|
1916
1911
|
/**
|
|
1917
1912
|
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1913
|
*/
|
|
1919
1914
|
virtualStockAmount: number;
|
|
1920
1915
|
|
|
1916
|
+
/**
|
|
1917
|
+
* Nachschub auf
|
|
1918
|
+
*/
|
|
1919
|
+
replenishmentOn: number;
|
|
1920
|
+
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
1923
1923
|
*/
|
|
@@ -1992,14 +1992,14 @@ export interface ArticleSupplier {
|
|
|
1992
1992
|
accountDisplayName: string;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
|
-
*
|
|
1995
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1996
1996
|
*/
|
|
1997
|
-
|
|
1997
|
+
useSupplierArticleDescription: boolean;
|
|
1998
1998
|
|
|
1999
1999
|
/**
|
|
2000
|
-
*
|
|
2000
|
+
* Lieferanten-Meldebestand
|
|
2001
2001
|
*/
|
|
2002
|
-
|
|
2002
|
+
supplierReportingStock: number;
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
2005
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2097,14 +2097,14 @@ export interface ArticleSupplier {
|
|
|
2097
2097
|
dropShippingAllowed: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
* Abweichende
|
|
2100
|
+
* Abweichende Produktbeschreibung
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierArticleDescription: string;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
|
-
* Abweichende
|
|
2105
|
+
* Abweichende Produktbezeichnung
|
|
2106
2106
|
*/
|
|
2107
|
-
|
|
2107
|
+
supplierArticleName: string;
|
|
2108
2108
|
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Standardpreis Netto
|
|
@@ -2407,14 +2407,14 @@ export interface CrmActivity {
|
|
|
2407
2407
|
info: MetaInfo;
|
|
2408
2408
|
|
|
2409
2409
|
/**
|
|
2410
|
-
*
|
|
2410
|
+
* Aktivität intern abgerechnet?
|
|
2411
2411
|
*/
|
|
2412
|
-
|
|
2412
|
+
internalBilled: boolean;
|
|
2413
2413
|
|
|
2414
2414
|
/**
|
|
2415
|
-
*
|
|
2415
|
+
* geplante Dauer
|
|
2416
2416
|
*/
|
|
2417
|
-
|
|
2417
|
+
plannedDurationInSeconds: number;
|
|
2418
2418
|
|
|
2419
2419
|
/**
|
|
2420
2420
|
* Freie Felder der CRM-Aktivität
|
|
@@ -2566,14 +2566,14 @@ export interface CrmActivityType {
|
|
|
2566
2566
|
export interface CrmChecklistItem {
|
|
2567
2567
|
|
|
2568
2568
|
/**
|
|
2569
|
-
*
|
|
2569
|
+
* Text des Checklisten-Elements
|
|
2570
2570
|
*/
|
|
2571
|
-
|
|
2571
|
+
memo: string;
|
|
2572
2572
|
|
|
2573
2573
|
/**
|
|
2574
|
-
*
|
|
2574
|
+
* Ist das Element "angehakt"?
|
|
2575
2575
|
*/
|
|
2576
|
-
|
|
2576
|
+
checked: boolean;
|
|
2577
2577
|
|
|
2578
2578
|
/**
|
|
2579
2579
|
* Unique identifier of the Object
|
|
@@ -2990,14 +2990,14 @@ export interface CrmProject {
|
|
|
2990
2990
|
billedTimes: number;
|
|
2991
2991
|
|
|
2992
2992
|
/**
|
|
2993
|
-
*
|
|
2993
|
+
* Geplanter Projektzeitraum (von)
|
|
2994
2994
|
*/
|
|
2995
|
-
|
|
2995
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2996
2996
|
|
|
2997
2997
|
/**
|
|
2998
|
-
*
|
|
2998
|
+
* Einkaufsbelege
|
|
2999
2999
|
*/
|
|
3000
|
-
|
|
3000
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Verkaufsbelege
|
|
@@ -3220,14 +3220,14 @@ export interface CrmState {
|
|
|
3220
3220
|
readyToBill: boolean;
|
|
3221
3221
|
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
3223
|
+
* Handelt es sich um einen Anfang-Status
|
|
3224
3224
|
*/
|
|
3225
|
-
|
|
3225
|
+
startState: boolean;
|
|
3226
3226
|
|
|
3227
3227
|
/**
|
|
3228
|
-
*
|
|
3228
|
+
* Kommentar bei negativem Abschluß erforderlich
|
|
3229
3229
|
*/
|
|
3230
|
-
|
|
3230
|
+
needsCommentOnNegativeFinish: boolean;
|
|
3231
3231
|
|
|
3232
3232
|
/**
|
|
3233
3233
|
* MetaInformations for this Object
|
|
@@ -3476,14 +3476,14 @@ export interface CrmTask {
|
|
|
3476
3476
|
parentRefs: Array<CrmObjectRef>;
|
|
3477
3477
|
|
|
3478
3478
|
/**
|
|
3479
|
-
*
|
|
3479
|
+
* Beauftragte Zeit in Sekunden
|
|
3480
3480
|
*/
|
|
3481
|
-
|
|
3481
|
+
effortCommissioned: number;
|
|
3482
3482
|
|
|
3483
3483
|
/**
|
|
3484
|
-
*
|
|
3484
|
+
* Erfasste Zeiten in Sekunden (extern)
|
|
3485
3485
|
*/
|
|
3486
|
-
|
|
3486
|
+
externalRecordedTimes: number;
|
|
3487
3487
|
|
|
3488
3488
|
/**
|
|
3489
3489
|
* Aufwandsschätzung in Sekunden
|
|
@@ -3715,14 +3715,14 @@ export interface Customer {
|
|
|
3715
3715
|
stackProcessingPriority: number;
|
|
3716
3716
|
|
|
3717
3717
|
/**
|
|
3718
|
-
*
|
|
3718
|
+
* reference to product price group
|
|
3719
3719
|
*/
|
|
3720
|
-
|
|
3720
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3721
3721
|
|
|
3722
3722
|
/**
|
|
3723
|
-
*
|
|
3723
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3724
3724
|
*/
|
|
3725
|
-
|
|
3725
|
+
collectiveInvoiceManually: boolean;
|
|
3726
3726
|
|
|
3727
3727
|
/**
|
|
3728
3728
|
* Unique identifier of the Object
|
|
@@ -3969,14 +3969,14 @@ export interface DeliveryMethod {
|
|
|
3969
3969
|
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
|
-
*
|
|
3972
|
+
* Versand-Anbieter
|
|
3973
3973
|
*/
|
|
3974
|
-
|
|
3974
|
+
vdsCarrierId: number;
|
|
3975
3975
|
|
|
3976
3976
|
/**
|
|
3977
|
-
*
|
|
3977
|
+
* Gültige Ländercodes
|
|
3978
3978
|
*/
|
|
3979
|
-
|
|
3979
|
+
validCountryCodes: Array<string>;
|
|
3980
3980
|
|
|
3981
3981
|
/**
|
|
3982
3982
|
* Standardgewichtseinheit
|
|
@@ -4188,14 +4188,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4188
4188
|
taxable: boolean;
|
|
4189
4189
|
|
|
4190
4190
|
/**
|
|
4191
|
-
*
|
|
4191
|
+
* Bestellnummer aus Vorbeleg
|
|
4192
4192
|
*/
|
|
4193
|
-
|
|
4193
|
+
referencedOrderNumber: string;
|
|
4194
4194
|
|
|
4195
4195
|
/**
|
|
4196
|
-
*
|
|
4196
|
+
* Leitweg-ID
|
|
4197
4197
|
*/
|
|
4198
|
-
|
|
4198
|
+
buyerReference: string;
|
|
4199
4199
|
|
|
4200
4200
|
/**
|
|
4201
4201
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
@@ -4243,14 +4243,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4243
4243
|
accountId: number;
|
|
4244
4244
|
|
|
4245
4245
|
/**
|
|
4246
|
-
* Länderkennzeichen
|
|
4246
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4247
4247
|
*/
|
|
4248
|
-
|
|
4248
|
+
performanceCountryCode: string;
|
|
4249
4249
|
|
|
4250
4250
|
/**
|
|
4251
|
-
* Länderkennzeichen
|
|
4251
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4252
4252
|
*/
|
|
4253
|
-
|
|
4253
|
+
sourceCountryCode: string;
|
|
4254
4254
|
|
|
4255
4255
|
/**
|
|
4256
4256
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4345,14 +4345,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4345
4345
|
contractDetail: DocumentContractDetail;
|
|
4346
4346
|
|
|
4347
4347
|
/**
|
|
4348
|
-
*
|
|
4348
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4349
4349
|
*/
|
|
4350
|
-
|
|
4350
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
*
|
|
4353
|
+
* Zahlungsplan vorhanden?
|
|
4354
4354
|
*/
|
|
4355
|
-
|
|
4355
|
+
paymentPlan: boolean;
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
4358
|
* Produktionsdetails
|
|
@@ -4409,26 +4409,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4409
4409
|
*/
|
|
4410
4410
|
defaultAddress: DocumentAddress;
|
|
4411
4411
|
|
|
4412
|
-
/**
|
|
4413
|
-
* Verarbeitungsoption für Stapel
|
|
4414
|
-
*/
|
|
4415
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4416
|
-
|
|
4417
4412
|
/**
|
|
4418
4413
|
* Leistungsdatum
|
|
4419
4414
|
*/
|
|
4420
4415
|
performanceDate: ScriptingDate;
|
|
4421
4416
|
|
|
4422
4417
|
/**
|
|
4423
|
-
*
|
|
4418
|
+
* Verarbeitungsoption für Stapel
|
|
4424
4419
|
*/
|
|
4425
|
-
|
|
4420
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4426
4421
|
|
|
4427
4422
|
/**
|
|
4428
4423
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4429
4424
|
*/
|
|
4430
4425
|
dropShippingInvoiceApproved: boolean;
|
|
4431
4426
|
|
|
4427
|
+
/**
|
|
4428
|
+
* EN16931-Profil für elektronische Rechnungen
|
|
4429
|
+
*/
|
|
4430
|
+
en16931Profile: EN16931Profile;
|
|
4431
|
+
|
|
4432
4432
|
/**
|
|
4433
4433
|
* Ort der steuerlichen Leistungserbringung
|
|
4434
4434
|
*/
|
|
@@ -4590,14 +4590,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4590
4590
|
customerNumber: string;
|
|
4591
4591
|
|
|
4592
4592
|
/**
|
|
4593
|
-
*
|
|
4593
|
+
* Statusinstanz des Belegs
|
|
4594
4594
|
*/
|
|
4595
|
-
|
|
4595
|
+
documentState: DocumentTypeState;
|
|
4596
4596
|
|
|
4597
4597
|
/**
|
|
4598
|
-
*
|
|
4598
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4599
4599
|
*/
|
|
4600
|
-
|
|
4600
|
+
taxIdentificationNumber: string;
|
|
4601
4601
|
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Versandkostenpositionen
|
|
@@ -4605,9 +4605,9 @@ true wenn die Quittung bezahlt ist
|
|
|
4605
4605
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4606
4606
|
|
|
4607
4607
|
/**
|
|
4608
|
-
*
|
|
4608
|
+
* Rückgeld
|
|
4609
4609
|
*/
|
|
4610
|
-
|
|
4610
|
+
posReceiptChangeAmount: number;
|
|
4611
4611
|
|
|
4612
4612
|
/**
|
|
4613
4613
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
@@ -4617,9 +4617,9 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4617
4617
|
posReceiptBalanced: boolean;
|
|
4618
4618
|
|
|
4619
4619
|
/**
|
|
4620
|
-
*
|
|
4620
|
+
* Referenz auf Lieferbedingung
|
|
4621
4621
|
*/
|
|
4622
|
-
|
|
4622
|
+
deliveryTermRef: ApiObjectReference;
|
|
4623
4623
|
|
|
4624
4624
|
/**
|
|
4625
4625
|
* Gesamtbruttogewicht
|
|
@@ -4641,25 +4641,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4641
4641
|
*/
|
|
4642
4642
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4643
4643
|
|
|
4644
|
-
/**
|
|
4645
|
-
* Rechnungsadresse
|
|
4646
|
-
*/
|
|
4647
|
-
billingAddress: DocumentAddress;
|
|
4648
|
-
|
|
4649
4644
|
/**
|
|
4650
4645
|
* Status der USt-ID-Prüfung
|
|
4651
4646
|
*/
|
|
4652
4647
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4653
4648
|
|
|
4654
4649
|
/**
|
|
4655
|
-
*
|
|
4650
|
+
* Rechnungsadresse
|
|
4656
4651
|
*/
|
|
4657
|
-
|
|
4652
|
+
billingAddress: DocumentAddress;
|
|
4658
4653
|
|
|
4659
4654
|
/**
|
|
4660
4655
|
* Report-Gruppe, falls vom Standard abweichend
|
|
4661
4656
|
*/
|
|
4662
4657
|
reportGroupRef: ApiObjectReference;
|
|
4658
|
+
|
|
4659
|
+
/**
|
|
4660
|
+
* Bestellt durch Ansprechpartner
|
|
4661
|
+
*/
|
|
4662
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4663
4663
|
}
|
|
4664
4664
|
|
|
4665
4665
|
export interface DocumentAdditionalInfo {
|
|
@@ -4670,14 +4670,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4670
4670
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4671
4671
|
|
|
4672
4672
|
/**
|
|
4673
|
-
*
|
|
4673
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4674
4674
|
*/
|
|
4675
|
-
|
|
4675
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4676
4676
|
|
|
4677
4677
|
/**
|
|
4678
|
-
*
|
|
4678
|
+
* Herkunft der Sprache
|
|
4679
4679
|
*/
|
|
4680
|
-
|
|
4680
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4681
4681
|
|
|
4682
4682
|
/**
|
|
4683
4683
|
* Herkunft der Käufer-Referenz
|
|
@@ -4810,14 +4810,14 @@ export interface DocumentAddress {
|
|
|
4810
4810
|
postOfficeBox: string;
|
|
4811
4811
|
|
|
4812
4812
|
/**
|
|
4813
|
-
*
|
|
4813
|
+
* Street
|
|
4814
4814
|
*/
|
|
4815
|
-
|
|
4815
|
+
street: string;
|
|
4816
4816
|
|
|
4817
4817
|
/**
|
|
4818
|
-
*
|
|
4818
|
+
* country code IsoAlpha3
|
|
4819
4819
|
*/
|
|
4820
|
-
|
|
4820
|
+
countryCode: string;
|
|
4821
4821
|
|
|
4822
4822
|
/**
|
|
4823
4823
|
* Unique identifier of the Object
|
|
@@ -5290,9 +5290,9 @@ export interface DocumentLine {
|
|
|
5290
5290
|
price: number;
|
|
5291
5291
|
|
|
5292
5292
|
/**
|
|
5293
|
-
*
|
|
5293
|
+
* Positionstyp
|
|
5294
5294
|
*/
|
|
5295
|
-
|
|
5295
|
+
lineType: DocumentLineType;
|
|
5296
5296
|
|
|
5297
5297
|
/**
|
|
5298
5298
|
* Gesamtpreis Position in Basiswährung
|
|
@@ -5300,9 +5300,9 @@ export interface DocumentLine {
|
|
|
5300
5300
|
baseTotalLinePrice: number;
|
|
5301
5301
|
|
|
5302
5302
|
/**
|
|
5303
|
-
*
|
|
5303
|
+
* FiBu-Buchung
|
|
5304
5304
|
*/
|
|
5305
|
-
|
|
5305
|
+
financeBooking: DocumentFinanceBooking;
|
|
5306
5306
|
|
|
5307
5307
|
/**
|
|
5308
5308
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5335,14 +5335,14 @@ export interface DocumentLine {
|
|
|
5335
5335
|
id: number;
|
|
5336
5336
|
|
|
5337
5337
|
/**
|
|
5338
|
-
*
|
|
5338
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5339
5339
|
*/
|
|
5340
|
-
|
|
5340
|
+
positionOfArticleLine: number;
|
|
5341
5341
|
|
|
5342
5342
|
/**
|
|
5343
|
-
*
|
|
5343
|
+
* Externe Referenz zum VDS-Paket
|
|
5344
5344
|
*/
|
|
5345
|
-
|
|
5345
|
+
externalReferenceVds: string;
|
|
5346
5346
|
|
|
5347
5347
|
/**
|
|
5348
5348
|
* Serientyp
|
|
@@ -5789,14 +5789,14 @@ export interface DocumentLineComponent {
|
|
|
5789
5789
|
custom: EavDocumentlinecomponent;
|
|
5790
5790
|
|
|
5791
5791
|
/**
|
|
5792
|
-
*
|
|
5792
|
+
* Referenz auf den Artikel der Komponente
|
|
5793
5793
|
*/
|
|
5794
|
-
|
|
5794
|
+
articleId: number;
|
|
5795
5795
|
|
|
5796
5796
|
/**
|
|
5797
|
-
*
|
|
5797
|
+
* Gelieferte Menge
|
|
5798
5798
|
*/
|
|
5799
|
-
|
|
5799
|
+
quantityCommitted: number;
|
|
5800
5800
|
|
|
5801
5801
|
/**
|
|
5802
5802
|
* Beschreibung des Artikels
|
|
@@ -5933,14 +5933,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
5933
5933
|
quantityFinished: number;
|
|
5934
5934
|
|
|
5935
5935
|
/**
|
|
5936
|
-
*
|
|
5936
|
+
* Menge defekt
|
|
5937
5937
|
*/
|
|
5938
|
-
|
|
5938
|
+
quantityDefective: number;
|
|
5939
5939
|
|
|
5940
5940
|
/**
|
|
5941
|
-
*
|
|
5941
|
+
* Produzierte Seriennummern
|
|
5942
5942
|
*/
|
|
5943
|
-
|
|
5943
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
5944
5944
|
|
|
5945
5945
|
/**
|
|
5946
5946
|
* Freifeld
|
|
@@ -6894,14 +6894,14 @@ export const enum DropShippingPolicy {
|
|
|
6894
6894
|
export interface DummySerialNumberStockTransferApi {
|
|
6895
6895
|
|
|
6896
6896
|
/**
|
|
6897
|
-
*
|
|
6897
|
+
* Seriennummer
|
|
6898
6898
|
*/
|
|
6899
|
-
|
|
6899
|
+
serialNumberId: number;
|
|
6900
6900
|
|
|
6901
6901
|
/**
|
|
6902
|
-
*
|
|
6902
|
+
* Ziel-Lager
|
|
6903
6903
|
*/
|
|
6904
|
-
|
|
6904
|
+
targetStorageId: number;
|
|
6905
6905
|
|
|
6906
6906
|
/**
|
|
6907
6907
|
* Bemerkung
|
|
@@ -6914,14 +6914,14 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
6914
6914
|
bookDate: ScriptingDate;
|
|
6915
6915
|
|
|
6916
6916
|
/**
|
|
6917
|
-
*
|
|
6917
|
+
* Die gültige Seriennummer
|
|
6918
6918
|
*/
|
|
6919
|
-
|
|
6919
|
+
targetSerialNumber: string;
|
|
6920
6920
|
|
|
6921
6921
|
/**
|
|
6922
|
-
*
|
|
6922
|
+
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
6923
6923
|
*/
|
|
6924
|
-
|
|
6924
|
+
targetExpiryDate: ScriptingDate;
|
|
6925
6925
|
|
|
6926
6926
|
/**
|
|
6927
6927
|
* Quell-Lagerplatz
|
|
@@ -7195,14 +7195,14 @@ export const enum FabricationOfComponents {
|
|
|
7195
7195
|
export interface FabricationProduceRequest {
|
|
7196
7196
|
|
|
7197
7197
|
/**
|
|
7198
|
-
*
|
|
7198
|
+
* Material automatisch bestätigen
|
|
7199
7199
|
*/
|
|
7200
|
-
|
|
7200
|
+
autoCommitComponents: boolean;
|
|
7201
7201
|
|
|
7202
7202
|
/**
|
|
7203
|
-
*
|
|
7203
|
+
* Zu produzierende Menge
|
|
7204
7204
|
*/
|
|
7205
|
-
|
|
7205
|
+
quantity: number;
|
|
7206
7206
|
|
|
7207
7207
|
/**
|
|
7208
7208
|
* Für die Produktion zu verwendendes Material
|
|
@@ -7256,14 +7256,14 @@ export interface FabricationRevertRequest {
|
|
|
7256
7256
|
quantity: number;
|
|
7257
7257
|
|
|
7258
7258
|
/**
|
|
7259
|
-
*
|
|
7259
|
+
* Material automatisch stornieren
|
|
7260
7260
|
*/
|
|
7261
|
-
|
|
7261
|
+
autoRevertComponents: boolean;
|
|
7262
7262
|
|
|
7263
7263
|
/**
|
|
7264
|
-
*
|
|
7264
|
+
* ID der zu stornierenden Position
|
|
7265
7265
|
*/
|
|
7266
|
-
|
|
7266
|
+
documentLineId: number;
|
|
7267
7267
|
|
|
7268
7268
|
/**
|
|
7269
7269
|
* Zu stornierende Seriennummern
|
|
@@ -7279,14 +7279,14 @@ export interface FabricationRevertRequest {
|
|
|
7279
7279
|
export interface FabricationSerialNumber {
|
|
7280
7280
|
|
|
7281
7281
|
/**
|
|
7282
|
-
*
|
|
7282
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7283
7283
|
*/
|
|
7284
|
-
|
|
7284
|
+
serialNumberId: number;
|
|
7285
7285
|
|
|
7286
7286
|
/**
|
|
7287
|
-
*
|
|
7287
|
+
* MHD / Verfallsdatum
|
|
7288
7288
|
*/
|
|
7289
|
-
|
|
7289
|
+
expiryDate: ScriptingDate;
|
|
7290
7290
|
|
|
7291
7291
|
/**
|
|
7292
7292
|
* Bemerkung
|
|
@@ -7498,14 +7498,14 @@ export interface PaymentMethod {
|
|
|
7498
7498
|
daysToAddForFollowup: number;
|
|
7499
7499
|
|
|
7500
7500
|
/**
|
|
7501
|
-
*
|
|
7501
|
+
* external Payment Id
|
|
7502
7502
|
*/
|
|
7503
|
-
|
|
7503
|
+
externalPaymentId: string;
|
|
7504
7504
|
|
|
7505
7505
|
/**
|
|
7506
|
-
*
|
|
7506
|
+
* Die Business Transaction
|
|
7507
7507
|
*/
|
|
7508
|
-
|
|
7508
|
+
businessTransaction: ApiObjectReference;
|
|
7509
7509
|
|
|
7510
7510
|
/**
|
|
7511
7511
|
* Unique identifier of the Object
|
|
@@ -7674,14 +7674,14 @@ export interface PickTrolley {
|
|
|
7674
7674
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7675
7675
|
|
|
7676
7676
|
/**
|
|
7677
|
-
*
|
|
7677
|
+
* Bearbeiter der Pickliste
|
|
7678
7678
|
*/
|
|
7679
|
-
|
|
7679
|
+
processedByUserRef: ApiObjectReference;
|
|
7680
7680
|
|
|
7681
7681
|
/**
|
|
7682
|
-
*
|
|
7682
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7683
7683
|
*/
|
|
7684
|
-
|
|
7684
|
+
storageBinRef: StorageBinRef;
|
|
7685
7685
|
|
|
7686
7686
|
/**
|
|
7687
7687
|
* Beschreibung des Wagens
|
|
@@ -7836,14 +7836,14 @@ export const enum PickingType {
|
|
|
7836
7836
|
export interface Picklist {
|
|
7837
7837
|
|
|
7838
7838
|
/**
|
|
7839
|
-
*
|
|
7839
|
+
* Ziellager für Nachschub
|
|
7840
7840
|
*/
|
|
7841
|
-
|
|
7841
|
+
targetStorageRef: ApiObjectReference;
|
|
7842
7842
|
|
|
7843
7843
|
/**
|
|
7844
|
-
*
|
|
7844
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7845
7845
|
*/
|
|
7846
|
-
|
|
7846
|
+
usedTemplate: PicklistTemplate;
|
|
7847
7847
|
|
|
7848
7848
|
/**
|
|
7849
7849
|
* Nummer der Pickliste
|
|
@@ -8100,14 +8100,14 @@ export interface PicklistLineComponent {
|
|
|
8100
8100
|
targetDocumentLineComponentId: number;
|
|
8101
8101
|
|
|
8102
8102
|
/**
|
|
8103
|
-
*
|
|
8103
|
+
* abweichende Artikelbezeichnung
|
|
8104
8104
|
*/
|
|
8105
|
-
|
|
8105
|
+
articleAlternativeName: string;
|
|
8106
8106
|
|
|
8107
8107
|
/**
|
|
8108
|
-
*
|
|
8108
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
8109
8109
|
*/
|
|
8110
|
-
|
|
8110
|
+
quantityPerAssemblyGroup: number;
|
|
8111
8111
|
|
|
8112
8112
|
/**
|
|
8113
8113
|
* Verpackte Menge der Position
|
|
@@ -8275,26 +8275,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8275
8275
|
*/
|
|
8276
8276
|
maxArticleCountPerOrder: number;
|
|
8277
8277
|
|
|
8278
|
-
/**
|
|
8279
|
-
* Maximaler Auftragswert
|
|
8280
|
-
*/
|
|
8281
|
-
maxOrderValue: number;
|
|
8282
|
-
|
|
8283
8278
|
/**
|
|
8284
8279
|
* Alternative Selektion in VQL
|
|
8285
8280
|
*/
|
|
8286
8281
|
alternativeSelectionInVql: string;
|
|
8287
8282
|
|
|
8288
8283
|
/**
|
|
8289
|
-
*
|
|
8284
|
+
* Maximaler Auftragswert
|
|
8290
8285
|
*/
|
|
8291
|
-
|
|
8286
|
+
maxOrderValue: number;
|
|
8292
8287
|
|
|
8293
8288
|
/**
|
|
8294
8289
|
* Selektion über den Bereich vom Lieferdatum
|
|
8295
8290
|
*/
|
|
8296
8291
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8297
8292
|
|
|
8293
|
+
/**
|
|
8294
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8295
|
+
*/
|
|
8296
|
+
maxOrderCount: number;
|
|
8297
|
+
|
|
8298
8298
|
/**
|
|
8299
8299
|
* Nur vollständig lieferbare Positionen
|
|
8300
8300
|
*/
|
|
@@ -8358,20 +8358,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8358
8358
|
*/
|
|
8359
8359
|
printPicklist: boolean;
|
|
8360
8360
|
|
|
8361
|
-
/**
|
|
8362
|
-
* Maximale Anzahl an Positionen einer Pickliste
|
|
8363
|
-
*/
|
|
8364
|
-
maxPicklistLineCount: number;
|
|
8365
|
-
|
|
8366
8361
|
/**
|
|
8367
8362
|
* Die zu verwendende Pickwagengruppe
|
|
8368
8363
|
*/
|
|
8369
8364
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8370
8365
|
|
|
8371
8366
|
/**
|
|
8372
|
-
*
|
|
8367
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8373
8368
|
*/
|
|
8374
|
-
|
|
8369
|
+
maxPicklistLineCount: number;
|
|
8375
8370
|
|
|
8376
8371
|
/**
|
|
8377
8372
|
* Der zu verwendende Pickwagen
|
|
@@ -8384,15 +8379,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8384
8379
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8385
8380
|
|
|
8386
8381
|
/**
|
|
8387
|
-
*
|
|
8382
|
+
* Lagerplätze vorgeben
|
|
8388
8383
|
*/
|
|
8389
|
-
|
|
8384
|
+
specifyStorageBins: boolean;
|
|
8390
8385
|
|
|
8391
8386
|
/**
|
|
8392
8387
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8393
8388
|
*/
|
|
8394
8389
|
sortByRoutePosition: boolean;
|
|
8395
8390
|
|
|
8391
|
+
/**
|
|
8392
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
8393
|
+
*/
|
|
8394
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
8395
|
+
|
|
8396
8396
|
/**
|
|
8397
8397
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
8398
8398
|
*/
|
|
@@ -8437,14 +8437,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8437
8437
|
alwaysShowDeliveryMethod: boolean;
|
|
8438
8438
|
|
|
8439
8439
|
/**
|
|
8440
|
-
*
|
|
8440
|
+
* Überschreitung vom maximalen Paketgewicht blockieren?
|
|
8441
8441
|
*/
|
|
8442
|
-
|
|
8442
|
+
blockIfMaximumPackageWeightIsExceeded: boolean;
|
|
8443
8443
|
|
|
8444
8444
|
/**
|
|
8445
|
-
*
|
|
8445
|
+
* Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
|
|
8446
8446
|
*/
|
|
8447
|
-
|
|
8447
|
+
autoPrintDeliveryDocument: boolean;
|
|
8448
8448
|
|
|
8449
8449
|
/**
|
|
8450
8450
|
* Versand-Dialog beim Abschluss zeigen
|
|
@@ -8482,14 +8482,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8482
8482
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8483
8483
|
|
|
8484
8484
|
/**
|
|
8485
|
-
*
|
|
8485
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8486
8486
|
*/
|
|
8487
|
-
|
|
8487
|
+
autoDeterminationOfLots: boolean;
|
|
8488
8488
|
|
|
8489
8489
|
/**
|
|
8490
|
-
*
|
|
8490
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8491
8491
|
*/
|
|
8492
|
-
|
|
8492
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8493
8493
|
|
|
8494
8494
|
/**
|
|
8495
8495
|
* Zielmengen in Masken verstecken?
|
|
@@ -8565,14 +8565,14 @@ export interface PriceSelectionCriteria {
|
|
|
8565
8565
|
quantity: number;
|
|
8566
8566
|
|
|
8567
8567
|
/**
|
|
8568
|
-
* Liste von
|
|
8568
|
+
* Liste von Artikel-IDs
|
|
8569
8569
|
*/
|
|
8570
|
-
|
|
8570
|
+
articleIds: Array<number>;
|
|
8571
8571
|
|
|
8572
8572
|
/**
|
|
8573
|
-
* Liste von
|
|
8573
|
+
* Liste von Account-IDs
|
|
8574
8574
|
*/
|
|
8575
|
-
|
|
8575
|
+
accountIds: Array<number>;
|
|
8576
8576
|
|
|
8577
8577
|
/**
|
|
8578
8578
|
* ein qualifier
|
|
@@ -8739,14 +8739,14 @@ export interface ProductArticleRef {
|
|
|
8739
8739
|
export interface ProductDiscount {
|
|
8740
8740
|
|
|
8741
8741
|
/**
|
|
8742
|
-
*
|
|
8742
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
8743
8743
|
*/
|
|
8744
|
-
|
|
8744
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8745
8745
|
|
|
8746
8746
|
/**
|
|
8747
|
-
*
|
|
8747
|
+
* Kundengruppe
|
|
8748
8748
|
*/
|
|
8749
|
-
|
|
8749
|
+
customerGroupRef: ApiObjectReference;
|
|
8750
8750
|
|
|
8751
8751
|
/**
|
|
8752
8752
|
* Lieferantengruppe
|
|
@@ -8769,14 +8769,14 @@ export interface ProductDiscount {
|
|
|
8769
8769
|
validFrom: ScriptingDate;
|
|
8770
8770
|
|
|
8771
8771
|
/**
|
|
8772
|
-
*
|
|
8772
|
+
* Warengruppe
|
|
8773
8773
|
*/
|
|
8774
|
-
|
|
8774
|
+
productGroupRef: ApiObjectReference;
|
|
8775
8775
|
|
|
8776
8776
|
/**
|
|
8777
|
-
*
|
|
8777
|
+
* Bestimmt die Art des Rabatts
|
|
8778
8778
|
*/
|
|
8779
|
-
|
|
8779
|
+
modifierType: PriceModifierType;
|
|
8780
8780
|
|
|
8781
8781
|
/**
|
|
8782
8782
|
* Version Identifier for this Object (for PUT)
|
|
@@ -8948,14 +8948,14 @@ export interface ProductMainGroup {
|
|
|
8948
8948
|
export interface ProductPrice {
|
|
8949
8949
|
|
|
8950
8950
|
/**
|
|
8951
|
-
*
|
|
8951
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
8952
8952
|
*/
|
|
8953
|
-
|
|
8953
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
8954
8954
|
|
|
8955
8955
|
/**
|
|
8956
|
-
*
|
|
8956
|
+
* Kundengruppe
|
|
8957
8957
|
*/
|
|
8958
|
-
|
|
8958
|
+
customerGroupRef: ApiObjectReference;
|
|
8959
8959
|
|
|
8960
8960
|
/**
|
|
8961
8961
|
* Verwendete Umsatzsteuer zur Umrechnung Netto <-> Brutto
|
|
@@ -9137,14 +9137,14 @@ export const enum RegulationSet {
|
|
|
9137
9137
|
export interface RequestDocument {
|
|
9138
9138
|
|
|
9139
9139
|
/**
|
|
9140
|
-
*
|
|
9140
|
+
* Belegdatum
|
|
9141
9141
|
*/
|
|
9142
|
-
|
|
9142
|
+
documentDate: ScriptingDate;
|
|
9143
9143
|
|
|
9144
9144
|
/**
|
|
9145
|
-
*
|
|
9145
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9146
9146
|
*/
|
|
9147
|
-
|
|
9147
|
+
incomingGoodsStorageBinId: number;
|
|
9148
9148
|
|
|
9149
9149
|
/**
|
|
9150
9150
|
* ID der Kassenschublade (bei POS)
|
|
@@ -9350,14 +9350,14 @@ export interface RequestDocumentLine {
|
|
|
9350
9350
|
commissions: Array<RequestDocumentLineCommission>;
|
|
9351
9351
|
|
|
9352
9352
|
/**
|
|
9353
|
-
*
|
|
9353
|
+
* Typ dieser Position
|
|
9354
9354
|
*/
|
|
9355
|
-
|
|
9355
|
+
lineType: DocumentLineType;
|
|
9356
9356
|
|
|
9357
9357
|
/**
|
|
9358
|
-
*
|
|
9358
|
+
* FiBu-Angaben
|
|
9359
9359
|
*/
|
|
9360
|
-
|
|
9360
|
+
financeBooking: DocumentFinanceBooking;
|
|
9361
9361
|
|
|
9362
9362
|
/**
|
|
9363
9363
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -9454,6 +9454,11 @@ export interface RequestDocumentLine {
|
|
|
9454
9454
|
*/
|
|
9455
9455
|
name: string;
|
|
9456
9456
|
|
|
9457
|
+
/**
|
|
9458
|
+
* Buchungen zu dieser Belegposition
|
|
9459
|
+
*/
|
|
9460
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9461
|
+
|
|
9457
9462
|
/**
|
|
9458
9463
|
* ID der Quell-Belegposition
|
|
9459
9464
|
*/
|
|
@@ -9464,11 +9469,6 @@ export interface RequestDocumentLine {
|
|
|
9464
9469
|
*/
|
|
9465
9470
|
externalArticleNumber: string;
|
|
9466
9471
|
|
|
9467
|
-
/**
|
|
9468
|
-
* Buchungen zu dieser Belegposition
|
|
9469
|
-
*/
|
|
9470
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
9471
|
-
|
|
9472
9472
|
/**
|
|
9473
9473
|
* (optional) Preis des Artikels dieser Position
|
|
9474
9474
|
*/
|
|
@@ -9629,14 +9629,14 @@ export interface SalesAgent {
|
|
|
9629
9629
|
note: string;
|
|
9630
9630
|
|
|
9631
9631
|
/**
|
|
9632
|
-
*
|
|
9632
|
+
* is sales agent taxable
|
|
9633
9633
|
*/
|
|
9634
|
-
|
|
9634
|
+
taxable: boolean;
|
|
9635
9635
|
|
|
9636
9636
|
/**
|
|
9637
|
-
*
|
|
9637
|
+
* reference to the delivery method
|
|
9638
9638
|
*/
|
|
9639
|
-
|
|
9639
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9640
9640
|
|
|
9641
9641
|
/**
|
|
9642
9642
|
* Freifelder
|
|
@@ -9977,14 +9977,14 @@ export interface SequencerConfiguration {
|
|
|
9977
9977
|
key: string;
|
|
9978
9978
|
|
|
9979
9979
|
/**
|
|
9980
|
-
*
|
|
9980
|
+
* Contains details about the sequencer configuration
|
|
9981
9981
|
*/
|
|
9982
|
-
|
|
9982
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
9983
9983
|
|
|
9984
9984
|
/**
|
|
9985
|
-
*
|
|
9985
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
9986
9986
|
*/
|
|
9987
|
-
|
|
9987
|
+
alternativeConfiguration: ApiObjectReference;
|
|
9988
9988
|
|
|
9989
9989
|
/**
|
|
9990
9990
|
* MetaInformations for this Object
|
|
@@ -10511,14 +10511,14 @@ export interface Stock {
|
|
|
10511
10511
|
storageBinId: number;
|
|
10512
10512
|
|
|
10513
10513
|
/**
|
|
10514
|
-
*
|
|
10514
|
+
* Artikel
|
|
10515
10515
|
*/
|
|
10516
|
-
|
|
10516
|
+
articleId: number;
|
|
10517
10517
|
|
|
10518
10518
|
/**
|
|
10519
|
-
*
|
|
10519
|
+
* Reservierte Menge der Seriennummer auf dem Lagerplatz
|
|
10520
10520
|
*/
|
|
10521
|
-
|
|
10521
|
+
reservedSerialQuantity: number;
|
|
10522
10522
|
}
|
|
10523
10523
|
|
|
10524
10524
|
export const enum StockJournalFactor {
|
|
@@ -10593,14 +10593,14 @@ export interface StockMovementManualApi {
|
|
|
10593
10593
|
export interface StockTransferApi {
|
|
10594
10594
|
|
|
10595
10595
|
/**
|
|
10596
|
-
*
|
|
10596
|
+
* Seriennummer
|
|
10597
10597
|
*/
|
|
10598
|
-
|
|
10598
|
+
serialNumberId: number;
|
|
10599
10599
|
|
|
10600
10600
|
/**
|
|
10601
|
-
*
|
|
10601
|
+
* Ziel-Lager
|
|
10602
10602
|
*/
|
|
10603
|
-
|
|
10603
|
+
targetStorageId: number;
|
|
10604
10604
|
|
|
10605
10605
|
/**
|
|
10606
10606
|
* Bemerkung
|
|
@@ -10810,14 +10810,14 @@ export interface Supplier {
|
|
|
10810
10810
|
info: MetaInfo;
|
|
10811
10811
|
|
|
10812
10812
|
/**
|
|
10813
|
-
*
|
|
10813
|
+
* Lieferantengruppe
|
|
10814
10814
|
*/
|
|
10815
|
-
|
|
10815
|
+
supplierGroupRef: ApiObjectReference;
|
|
10816
10816
|
|
|
10817
10817
|
/**
|
|
10818
|
-
*
|
|
10818
|
+
* reference to the delivery method
|
|
10819
10819
|
*/
|
|
10820
|
-
|
|
10820
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10821
10821
|
|
|
10822
10822
|
/**
|
|
10823
10823
|
* tax able or tax free
|
|
@@ -10903,14 +10903,14 @@ export interface TagDto {
|
|
|
10903
10903
|
editColor: string;
|
|
10904
10904
|
|
|
10905
10905
|
/**
|
|
10906
|
-
* Farbe
|
|
10906
|
+
* Farbe in Such-GUI
|
|
10907
10907
|
*/
|
|
10908
|
-
|
|
10908
|
+
searchColor: string;
|
|
10909
10909
|
|
|
10910
10910
|
/**
|
|
10911
|
-
* Farbe
|
|
10911
|
+
* Farbe für die Anzeige des Tags
|
|
10912
10912
|
*/
|
|
10913
|
-
|
|
10913
|
+
color: string;
|
|
10914
10914
|
|
|
10915
10915
|
/**
|
|
10916
10916
|
* Beschriftung des Tags
|