@vario-software/types 2026.21.4 → 2026.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/erp.d.ts +23023 -19385
- package/scripting/services.d.ts +160 -56
- package/scripting/types.d.ts +676 -351
package/scripting/services.d.ts
CHANGED
|
@@ -3,14 +3,15 @@ import {
|
|
|
3
3
|
AccountLoanValue, AccountManufacturer, AccountManufacturerDescription,
|
|
4
4
|
AccountPerson, AccountRelation, AdditionalParameter, ApiCreatableReference,
|
|
5
5
|
ApiObjectReference, Article, Article$Metric,
|
|
6
|
-
ArticleAvailabilityDetermination,
|
|
7
|
-
ArticlePrintLabelSettings, ArticleSerialNumber,
|
|
8
|
-
ArticleSupplier, BulkTransferRequestApi,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
ArticleAvailabilityDetermination, ArticleCustomer, ArticleIdentifier,
|
|
7
|
+
ArticleListing, ArticlePrintLabelSettings, ArticleSerialNumber,
|
|
8
|
+
ArticleStorage, ArticleSupplier, BulkTransferRequestApi,
|
|
9
|
+
BulkTransferResult, Contact, CountryReference, CreateNewDocumentRequest,
|
|
10
|
+
CrmActivity, CrmActivityType, CrmChecklistItem, CrmDeal, CrmDealTopic,
|
|
11
|
+
CrmObjectRef, CrmParticipant, CrmPriority, CrmProject, CrmReference,
|
|
12
|
+
CrmReminder, CrmState, CrmSubType, CrmTask, CrmTaskParticipant,
|
|
13
|
+
CrmTypedDocumentRef, CrmTypedDocumentRefList, CurrencyReference, Customer,
|
|
14
|
+
DangerousGoodInformation, DealNotificationEventConfig, DeliveryMethod,
|
|
14
15
|
DeliveryTerm, Document, DocumentAdditionalInfo,
|
|
15
16
|
DocumentAdditionalInfo$IncomingGoodsTarget,
|
|
16
17
|
DocumentAdditionalInfo$IncomingGoodsTargetOfLine,
|
|
@@ -37,10 +38,11 @@ import {
|
|
|
37
38
|
PicklistTemplate$PicklistCreationOptions,
|
|
38
39
|
PicklistTemplate$PicklistProcessingOptions,
|
|
39
40
|
PicklistTemplate$PicklistScript, PriceSelectionCriteria, Product,
|
|
40
|
-
ProductDiscount, ProductGroup, ProductMainGroup,
|
|
41
|
-
RecommendedRetailPrice, RequestDocument, RequestDocumentLine,
|
|
41
|
+
ProductArticleRef, ProductDiscount, ProductGroup, ProductMainGroup,
|
|
42
|
+
ProductPrice, RecommendedRetailPrice, RequestDocument, RequestDocumentLine,
|
|
42
43
|
RequestDocumentLineBooking, RequestDocumentLineCommission,
|
|
43
|
-
RequestDocumentLineFabricationDetail,
|
|
44
|
+
RequestDocumentLineFabricationDetail,
|
|
45
|
+
RequestDocumentLineShippingCostDetail, RequestDocumentPriceModifier,
|
|
44
46
|
RequestDocumentText, RevenueCalculation, SalesAgent, Scenario,
|
|
45
47
|
ScenarioActualValue, ScenarioDimension, ScenarioDimensionValue,
|
|
46
48
|
ScriptOutputRequest, ScriptingDate, ScriptingDateTime, SecureHttpClient,
|
|
@@ -371,6 +373,82 @@ export interface AccountScriptingService {
|
|
|
371
373
|
updateRelation(accountId: number, relation: AccountRelation): AccountRelation;
|
|
372
374
|
}
|
|
373
375
|
|
|
376
|
+
/**
|
|
377
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
378
|
+
*/
|
|
379
|
+
export interface ArticleCustomerScriptingService {
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Aktiviert ein DTO
|
|
383
|
+
*
|
|
384
|
+
* @param {number} idToActivate - ID vom zu aktivierenden DTO
|
|
385
|
+
* @return {ArticleCustomer} Das aktivierte DTO
|
|
386
|
+
*/
|
|
387
|
+
activate(idToActivate: number): ArticleCustomer;
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Persistiert ein DTO
|
|
391
|
+
*
|
|
392
|
+
* @param {ArticleCustomer} toCreate - Das zu persistierende DTO
|
|
393
|
+
* @return {ArticleCustomer} Das persistierte DTO
|
|
394
|
+
*/
|
|
395
|
+
create(toCreate: ArticleCustomer): ArticleCustomer;
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* Deaktiviert ein DTO
|
|
399
|
+
*
|
|
400
|
+
* @param {number} idToDeactivate - ID vom zu deaktivierenden DTO
|
|
401
|
+
* @return {ArticleCustomer} Das deaktivierte DTO
|
|
402
|
+
*/
|
|
403
|
+
deactivate(idToDeactivate: number): ArticleCustomer;
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* Löscht eine Entity
|
|
407
|
+
*
|
|
408
|
+
* @param {number} id - ID der zu löschenden Entity
|
|
409
|
+
*/
|
|
410
|
+
deleteById(id: number): void;
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* Erstellt eine neue DTO-Instanz
|
|
414
|
+
*
|
|
415
|
+
* @return {ArticleCustomer} Die neue DTO-Instanz
|
|
416
|
+
*/
|
|
417
|
+
getNewDto(): ArticleCustomer;
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* Liest eine Liste von DTOs
|
|
421
|
+
*
|
|
422
|
+
* @param {Array<number>} ids - Die Liste der gelesenen DTOs
|
|
423
|
+
* @return {Array<ArticleCustomer>} Die Liste der gelesenen DTOs
|
|
424
|
+
*/
|
|
425
|
+
readAllById(ids: Array<number>): Array<ArticleCustomer>;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Liest ein DTO
|
|
429
|
+
*
|
|
430
|
+
* @param {number} id - ID vom zu lesenden DTO
|
|
431
|
+
* @return {ArticleCustomer} Das gelesene DTO
|
|
432
|
+
*/
|
|
433
|
+
readById(id: number): ArticleCustomer;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* Persistiert eine DTO
|
|
437
|
+
*
|
|
438
|
+
* @param {ArticleCustomer} toStore - Das zu persistierende DTO
|
|
439
|
+
* @return {ArticleCustomer} Das persistierte DTO
|
|
440
|
+
*/
|
|
441
|
+
store(toStore: ArticleCustomer): ArticleCustomer;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* Aktualisiert ein persistiertes DTO
|
|
445
|
+
*
|
|
446
|
+
* @param {ArticleCustomer} toUpdate - Die zu aktualisierende Entity
|
|
447
|
+
* @return {ArticleCustomer} Das aktualisierte DTO
|
|
448
|
+
*/
|
|
449
|
+
update(toUpdate: ArticleCustomer): ArticleCustomer;
|
|
450
|
+
}
|
|
451
|
+
|
|
374
452
|
/**
|
|
375
453
|
* Service zur Verarbeitung von Artikel-Listings im Skripten
|
|
376
454
|
*/
|
|
@@ -479,36 +557,36 @@ export interface ArticleScriptingService {
|
|
|
479
557
|
*
|
|
480
558
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
481
559
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
560
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
482
561
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
483
562
|
*/
|
|
484
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
563
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
485
564
|
|
|
486
565
|
/**
|
|
487
566
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
488
567
|
*
|
|
489
568
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
490
569
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
491
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
492
570
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
493
571
|
*/
|
|
494
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
572
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
495
573
|
|
|
496
574
|
/**
|
|
497
|
-
* Persistiert einen Artikel. Die Texte werden zur Sprache
|
|
575
|
+
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
498
576
|
*
|
|
499
577
|
* @param {Article} toCreate - Der zu persistierende Artikel
|
|
578
|
+
* @param {string} languageCode -
|
|
500
579
|
* @return {Article} Der persistierte Artikel
|
|
501
580
|
*/
|
|
502
|
-
create(toCreate: Article): Article;
|
|
581
|
+
create(toCreate: Article, languageCode: string): Article;
|
|
503
582
|
|
|
504
583
|
/**
|
|
505
|
-
* Persistiert einen Artikel. Die Texte werden zur Sprache
|
|
584
|
+
* Persistiert einen Artikel. Die Texte werden zur Sprache der eigenen Adresse gespeichert
|
|
506
585
|
*
|
|
507
586
|
* @param {Article} toCreate - Der zu persistierende Artikel
|
|
508
|
-
* @param {string} languageCode -
|
|
509
587
|
* @return {Article} Der persistierte Artikel
|
|
510
588
|
*/
|
|
511
|
-
create(toCreate: Article
|
|
589
|
+
create(toCreate: Article): Article;
|
|
512
590
|
|
|
513
591
|
/**
|
|
514
592
|
* Persistiert einen Haupt-Artikel und die dazugehörigen Gebinde-Artikel.
|
|
@@ -624,38 +702,38 @@ Die Texte werden zur Sprache der eigenen Adresse gespeichert.
|
|
|
624
702
|
readById(id: number, languageCode: string): Article;
|
|
625
703
|
|
|
626
704
|
/**
|
|
627
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
705
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache der eigenen Adresse
|
|
628
706
|
*
|
|
629
707
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
630
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
631
708
|
* @return {Article} Der gelesene Artikel
|
|
632
709
|
*/
|
|
633
|
-
readByNumber(articleNumber: string
|
|
710
|
+
readByNumber(articleNumber: string): Article;
|
|
634
711
|
|
|
635
712
|
/**
|
|
636
|
-
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache
|
|
713
|
+
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
637
714
|
*
|
|
638
715
|
* @param {string} articleNumber - Eine Artikelnummer
|
|
716
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
639
717
|
* @return {Article} Der gelesene Artikel
|
|
640
718
|
*/
|
|
641
|
-
readByNumber(articleNumber: string): Article;
|
|
719
|
+
readByNumber(articleNumber: string, languageCode: string): Article;
|
|
642
720
|
|
|
643
721
|
/**
|
|
644
|
-
* Persistiert einen Artikel. Die Texte werden zur Sprache
|
|
722
|
+
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
645
723
|
*
|
|
646
724
|
* @param {Article} toStore - Der zu persistierende Artikel
|
|
725
|
+
* @param {string} languageCode -
|
|
647
726
|
* @return {Article} Der persistierte Artikel
|
|
648
727
|
*/
|
|
649
|
-
store(toStore: Article): Article;
|
|
728
|
+
store(toStore: Article, languageCode: string): Article;
|
|
650
729
|
|
|
651
730
|
/**
|
|
652
|
-
* Persistiert einen Artikel. Die Texte werden zur Sprache
|
|
731
|
+
* Persistiert einen Artikel. Die Texte werden zur Sprache der eigenen Adresse gespeichert
|
|
653
732
|
*
|
|
654
733
|
* @param {Article} toStore - Der zu persistierende Artikel
|
|
655
|
-
* @param {string} languageCode -
|
|
656
734
|
* @return {Article} Der persistierte Artikel
|
|
657
735
|
*/
|
|
658
|
-
store(toStore: Article
|
|
736
|
+
store(toStore: Article): Article;
|
|
659
737
|
|
|
660
738
|
/**
|
|
661
739
|
* Aktualisiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -1567,35 +1645,35 @@ export interface DocumentScriptingService {
|
|
|
1567
1645
|
* Löst einen Beleg auf
|
|
1568
1646
|
*
|
|
1569
1647
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1570
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1571
1648
|
* @return {Document} Der aufgelöste Beleg
|
|
1572
1649
|
*/
|
|
1573
|
-
dissolve(documentId: number
|
|
1650
|
+
dissolve(documentId: number): Document;
|
|
1574
1651
|
|
|
1575
1652
|
/**
|
|
1576
1653
|
* Löst einen Beleg auf
|
|
1577
1654
|
*
|
|
1578
1655
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1656
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1579
1657
|
* @return {Document} Der aufgelöste Beleg
|
|
1580
1658
|
*/
|
|
1581
|
-
dissolve(documentId: number): Document;
|
|
1659
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1582
1660
|
|
|
1583
1661
|
/**
|
|
1584
1662
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1585
1663
|
*
|
|
1586
1664
|
* @param {number} documentId - ID des Belegs
|
|
1665
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1587
1666
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1588
1667
|
*/
|
|
1589
|
-
edit(documentId: number): Document;
|
|
1668
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1590
1669
|
|
|
1591
1670
|
/**
|
|
1592
1671
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1593
1672
|
*
|
|
1594
1673
|
* @param {number} documentId - ID des Belegs
|
|
1595
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1596
1674
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1597
1675
|
*/
|
|
1598
|
-
edit(documentId: number
|
|
1676
|
+
edit(documentId: number): Document;
|
|
1599
1677
|
|
|
1600
1678
|
/**
|
|
1601
1679
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -1681,33 +1759,33 @@ export interface DocumentScriptingService {
|
|
|
1681
1759
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1682
1760
|
*
|
|
1683
1761
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1684
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1685
1762
|
* @return {Document} Der gespeicherte Beleg
|
|
1686
1763
|
*/
|
|
1687
|
-
save(documentId: number
|
|
1764
|
+
save(documentId: number): Document;
|
|
1688
1765
|
|
|
1689
1766
|
/**
|
|
1690
1767
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1691
1768
|
*
|
|
1692
1769
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1770
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1693
1771
|
* @return {Document} Der gespeicherte Beleg
|
|
1694
1772
|
*/
|
|
1695
|
-
save(documentId: number): Document;
|
|
1773
|
+
save(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1696
1774
|
|
|
1697
1775
|
/**
|
|
1698
1776
|
* Versendet einen Beleg per Mail
|
|
1699
1777
|
*
|
|
1700
1778
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1779
|
+
* @param {string} reportGroupIdentifier -
|
|
1701
1780
|
*/
|
|
1702
|
-
sendViaMail(documentId: number): void;
|
|
1781
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1703
1782
|
|
|
1704
1783
|
/**
|
|
1705
1784
|
* Versendet einen Beleg per Mail
|
|
1706
1785
|
*
|
|
1707
1786
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1708
|
-
* @param {string} reportGroupIdentifier -
|
|
1709
1787
|
*/
|
|
1710
|
-
sendViaMail(documentId: number
|
|
1788
|
+
sendViaMail(documentId: number): void;
|
|
1711
1789
|
|
|
1712
1790
|
/**
|
|
1713
1791
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2574,26 +2652,26 @@ export interface ScriptingServiceList {
|
|
|
2574
2652
|
*/
|
|
2575
2653
|
crmTaskService: CrmTaskScriptingService;
|
|
2576
2654
|
|
|
2577
|
-
/**
|
|
2578
|
-
* Service zur Verarbeitung von Accounts
|
|
2579
|
-
*/
|
|
2580
|
-
accountService: AccountScriptingService;
|
|
2581
|
-
|
|
2582
2655
|
/**
|
|
2583
2656
|
* Service zur Verarbeitung von Shelf-Documents
|
|
2584
2657
|
*/
|
|
2585
2658
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2586
2659
|
|
|
2587
2660
|
/**
|
|
2588
|
-
*
|
|
2661
|
+
* Service zur Verarbeitung von Accounts
|
|
2589
2662
|
*/
|
|
2590
|
-
|
|
2663
|
+
accountService: AccountScriptingService;
|
|
2591
2664
|
|
|
2592
2665
|
/**
|
|
2593
2666
|
* Verwaltung von Versandarten
|
|
2594
2667
|
*/
|
|
2595
2668
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2596
2669
|
|
|
2670
|
+
/**
|
|
2671
|
+
* Logging im Scripting
|
|
2672
|
+
*/
|
|
2673
|
+
logger: LoggingScriptingService;
|
|
2674
|
+
|
|
2597
2675
|
/**
|
|
2598
2676
|
* Service zur Verarbeitung von Deals
|
|
2599
2677
|
*/
|
|
@@ -2610,14 +2688,14 @@ export interface ScriptingServiceList {
|
|
|
2610
2688
|
productGroupService: ProductGroupScriptingService;
|
|
2611
2689
|
|
|
2612
2690
|
/**
|
|
2613
|
-
*
|
|
2691
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2614
2692
|
*/
|
|
2615
|
-
|
|
2693
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2616
2694
|
|
|
2617
2695
|
/**
|
|
2618
|
-
*
|
|
2696
|
+
* Ausgabe-Support Methoden
|
|
2619
2697
|
*/
|
|
2620
|
-
|
|
2698
|
+
outputHelper: ScriptOutputHelperService;
|
|
2621
2699
|
|
|
2622
2700
|
/**
|
|
2623
2701
|
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
@@ -2639,6 +2717,11 @@ export interface ScriptingServiceList {
|
|
|
2639
2717
|
*/
|
|
2640
2718
|
utils: ScriptingUtilities;
|
|
2641
2719
|
|
|
2720
|
+
/**
|
|
2721
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2722
|
+
*/
|
|
2723
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
2724
|
+
|
|
2642
2725
|
/**
|
|
2643
2726
|
* Service zur Verarbeitung von Variantenschemas in Skripten
|
|
2644
2727
|
*/
|
|
@@ -2670,14 +2753,14 @@ export interface ScriptingServiceList {
|
|
|
2670
2753
|
articleStorageService: ArticleStorageScriptingService;
|
|
2671
2754
|
|
|
2672
2755
|
/**
|
|
2673
|
-
*
|
|
2756
|
+
* Verwaltung von Zahlungsarten
|
|
2674
2757
|
*/
|
|
2675
|
-
|
|
2758
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2676
2759
|
|
|
2677
2760
|
/**
|
|
2678
|
-
*
|
|
2761
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2679
2762
|
*/
|
|
2680
|
-
|
|
2763
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2681
2764
|
|
|
2682
2765
|
/**
|
|
2683
2766
|
* Service zur Bestandsabfrage und Lagerbuchung in Skripten
|
|
@@ -3749,6 +3832,13 @@ export interface dtoFactory {
|
|
|
3749
3832
|
*/
|
|
3750
3833
|
createCustomer(): Customer;
|
|
3751
3834
|
|
|
3835
|
+
/**
|
|
3836
|
+
* Erstellt einen neue Instanz von DangerousGoodInformation
|
|
3837
|
+
*
|
|
3838
|
+
* @return {DangerousGoodInformation} Neue Instanz von DangerousGoodInformation
|
|
3839
|
+
*/
|
|
3840
|
+
createDangerousGoodInformation(): DangerousGoodInformation;
|
|
3841
|
+
|
|
3752
3842
|
/**
|
|
3753
3843
|
* Erstellt einen neue Instanz von PicklistTemplate$DateRange
|
|
3754
3844
|
*
|
|
@@ -4141,6 +4231,13 @@ export interface dtoFactory {
|
|
|
4141
4231
|
*/
|
|
4142
4232
|
createPrintedTranslatedField(): DocumentAdditionalInfo$PrintedTranslatedField;
|
|
4143
4233
|
|
|
4234
|
+
/**
|
|
4235
|
+
* Erstellt einen neue Instanz von ProductArticleRef
|
|
4236
|
+
*
|
|
4237
|
+
* @return {ProductArticleRef} Neue Instanz von ProductArticleRef
|
|
4238
|
+
*/
|
|
4239
|
+
createProductArticleRef(): ProductArticleRef;
|
|
4240
|
+
|
|
4144
4241
|
/**
|
|
4145
4242
|
* Erstellt einen neue Instanz von RecommendedRetailPrice
|
|
4146
4243
|
*
|
|
@@ -4183,6 +4280,13 @@ export interface dtoFactory {
|
|
|
4183
4280
|
*/
|
|
4184
4281
|
createRequestDocumentLineFabricationDetail(): RequestDocumentLineFabricationDetail;
|
|
4185
4282
|
|
|
4283
|
+
/**
|
|
4284
|
+
* Erstellt einen neue Instanz von RequestDocumentLineShippingCostDetail
|
|
4285
|
+
*
|
|
4286
|
+
* @return {RequestDocumentLineShippingCostDetail} Neue Instanz von RequestDocumentLineShippingCostDetail
|
|
4287
|
+
*/
|
|
4288
|
+
createRequestDocumentLineShippingCostDetail(): RequestDocumentLineShippingCostDetail;
|
|
4289
|
+
|
|
4186
4290
|
/**
|
|
4187
4291
|
* Erstellt einen neue Instanz von RequestDocumentPriceModifier
|
|
4188
4292
|
*
|