@colijnit/transaction 262.1.39 → 262.1.41
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/fesm2022/colijnit-transaction.mjs +317 -297
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +10 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -307,7 +307,7 @@ import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, Sc
|
|
|
307
307
|
import * as i5 from '@colijnit/relation';
|
|
308
308
|
import { RelationService } from '@colijnit/relation';
|
|
309
309
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
310
|
-
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
310
|
+
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, WeekStart, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
311
311
|
import { ExternalCatalogAddArticleRequest } from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
|
|
312
312
|
import { TransactionDeliveryCostLineInfo } from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
|
|
313
313
|
import { UserRoleType } from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
|
|
@@ -969,6 +969,7 @@ declare class TransactionEventService {
|
|
|
969
969
|
readonly removeFromContainerSuccess: Subject<void>;
|
|
970
970
|
readonly requestFocusOnArticleField: Subject<void>;
|
|
971
971
|
readonly transportNotificationsSet: Subject<void>;
|
|
972
|
+
readonly relationIdChanged: Subject<void>;
|
|
972
973
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionEventService, never>;
|
|
973
974
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionEventService>;
|
|
974
975
|
}
|
|
@@ -3073,6 +3074,7 @@ declare class TransactionHeaderService {
|
|
|
3073
3074
|
private _relation;
|
|
3074
3075
|
private _readOnly;
|
|
3075
3076
|
constructor(_transactionService: TransactionService, _relationService: TransactionRelationService, _transactionPaymentConnectorService: TransactionPaymentConnectorService, _dictionaryService: DictionaryService, _transactionEventService: TransactionEventService);
|
|
3077
|
+
checkRelationIdChanged(value: Relation): boolean;
|
|
3076
3078
|
canChangeRelationOnTransaction(): boolean;
|
|
3077
3079
|
canAlterRelationDataOnTransaction(): boolean;
|
|
3078
3080
|
getTransactionMargeInfoList(): Promise<void>;
|
|
@@ -9059,7 +9061,7 @@ declare class TransactionSendDocumentsComponent extends TransactionHeaderBaseCom
|
|
|
9059
9061
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSendDocumentsComponent, "co-transaction-send-documents", never, { "transactionTypeCategory": { "alias": "transactionTypeCategory"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "openSendMethodDialog": "openSendMethodDialog"; }, never, never, false, never>;
|
|
9060
9062
|
}
|
|
9061
9063
|
|
|
9062
|
-
declare abstract class TransactionQuickAccessSendMethodBaseComponent extends TransactionHeaderBaseComponent implements OnInit {
|
|
9064
|
+
declare abstract class TransactionQuickAccessSendMethodBaseComponent extends TransactionHeaderBaseComponent implements OnInit, OnDestroy {
|
|
9063
9065
|
searchService: TransactionSearchService;
|
|
9064
9066
|
transactionHeaderService: TransactionHeaderService;
|
|
9065
9067
|
transactionEventService: TransactionEventService;
|
|
@@ -9080,6 +9082,7 @@ declare abstract class TransactionQuickAccessSendMethodBaseComponent extends Tra
|
|
|
9080
9082
|
defaultSendMethod: string;
|
|
9081
9083
|
defaultSendMethodIcon: string;
|
|
9082
9084
|
emailAddresses: string[];
|
|
9085
|
+
private _qaBaseSubs;
|
|
9083
9086
|
set showSendMethodDialog(value: boolean);
|
|
9084
9087
|
get showSendMethodDialog(): boolean;
|
|
9085
9088
|
sendMethods: SendMethod[];
|
|
@@ -9102,6 +9105,7 @@ declare abstract class TransactionQuickAccessSendMethodBaseComponent extends Tra
|
|
|
9102
9105
|
private _showSendMethodDialog;
|
|
9103
9106
|
constructor(searchService: TransactionSearchService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService);
|
|
9104
9107
|
ngOnInit(): void;
|
|
9108
|
+
ngOnDestroy(): void;
|
|
9105
9109
|
handleSendMethodOkClick(method: string | ProcessPrintRequest): Promise<void>;
|
|
9106
9110
|
handleSend(method: string | ProcessPrintRequest): Promise<void>;
|
|
9107
9111
|
commitAndRefreshTransaction(): void;
|
|
@@ -10001,7 +10005,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
10001
10005
|
showCategories: boolean;
|
|
10002
10006
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10003
10007
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10004
|
-
currentTitle(): "
|
|
10008
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10005
10009
|
ngOnDestroy(): void;
|
|
10006
10010
|
handleClickWrapper(event: MouseEvent): void;
|
|
10007
10011
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10027,7 +10031,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10027
10031
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10028
10032
|
ngOnDestroy(): void;
|
|
10029
10033
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10030
|
-
currentTitle(): "
|
|
10034
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10031
10035
|
handleClickWrapper(event: MouseEvent): void;
|
|
10032
10036
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10033
10037
|
private handleDocumentClick;
|
|
@@ -10079,7 +10083,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10079
10083
|
showCategories: boolean;
|
|
10080
10084
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10081
10085
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10082
|
-
currentTitle(): "
|
|
10086
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10083
10087
|
ngOnDestroy(): void;
|
|
10084
10088
|
handleClickWrapper(event: MouseEvent): void;
|
|
10085
10089
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10955,6 +10959,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10955
10959
|
readonly planningActions: typeof DeliveryPlanningUpdateActions;
|
|
10956
10960
|
readonly tileModes: typeof DeliveryPlanningTileModes;
|
|
10957
10961
|
deliveryPlanningViewModes: typeof DeliveryPlanningViewModes;
|
|
10962
|
+
weekStart: typeof WeekStart;
|
|
10958
10963
|
availability: {
|
|
10959
10964
|
transportDay: PlanningTransportWeekDay;
|
|
10960
10965
|
available: boolean;
|