@colijnit/transaction 12.0.5 → 12.1.3
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/app/component/core/base/default-ok-cancel-buttons.component.d.ts +13 -0
- package/app/component/core/base/transaction-base.component.d.ts +48 -0
- package/app/component/{shopping-cart → core}/characteristic-answer/characteristic-answer.component.d.ts +0 -0
- package/app/component/core/directive/template-wrapper.directive.d.ts +13 -0
- package/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.d.ts +0 -0
- package/app/component/core/warehouse/warehouse.component.d.ts +35 -0
- package/app/component/service-order/ione-service-order-module.d.ts +2 -0
- package/app/component/service-order/ione-service-order.component.d.ts +25 -0
- package/app/component/service-order/service-order.component.d.ts +53 -0
- package/app/component/service-order/summary/transaction-article-summary.component.d.ts +17 -0
- package/app/component/service-order/summary/transaction-delivery-summary.component.d.ts +20 -0
- package/app/component/service-order/summary/transaction-order-summary.component.d.ts +16 -0
- package/app/component/service-order/summary/transaction-payment-info.component.d.ts +14 -0
- package/app/component/service-order/summary/transaction-product-contract-summary.component.d.ts +7 -0
- package/app/component/service-order/summary/transaction-product-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-status.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-summary-block.component.d.ts +16 -0
- package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +24 -0
- package/app/component/service-order/transaction-header-block/transaction-header-block.component.d.ts +15 -0
- package/app/component/service-order/transaction-manager/transaction-manager.component.d.ts +63 -0
- package/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.d.ts +16 -0
- package/app/component/service-order/transaction-order-lines/transaction-order-lines.component.d.ts +25 -0
- package/app/component/service-order/transaction-order-totals/transaction-order-totals.component.d.ts +6 -0
- package/app/component/service-order/transaction-relation/transaction-relation-address.component.d.ts +22 -0
- package/app/component/service-order/transaction-relation/transaction-relation-edit.component.d.ts +29 -0
- package/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.d.ts +11 -0
- package/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.d.ts +26 -0
- package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +1 -1
- package/app/service/ione-connector-adapter.service.d.ts +1 -0
- package/app/service/transaction-event.service.d.ts +5 -0
- package/app/service/transaction.service.d.ts +19 -8
- package/bundles/colijnit-transaction.umd.js +2396 -63
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +26 -2
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/app/component/checkout/checkout-overview/checkout-overview.component.js +2 -2
- package/esm2015/app/component/checkout/ione-checkout.module.js +3 -3
- package/esm2015/app/component/common/icon/icon.component.js +2 -1
- package/esm2015/app/component/core/base/default-ok-cancel-buttons.component.js +39 -0
- package/esm2015/app/component/core/base/transaction-base.component.js +146 -0
- package/esm2015/app/component/core/characteristic-answer/characteristic-answer.component.js +100 -0
- package/esm2015/app/component/core/directive/template-wrapper.directive.js +69 -0
- package/esm2015/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/app/component/core/warehouse/warehouse.component.js +133 -0
- package/esm2015/app/component/service-order/ione-service-order-module.js +108 -0
- package/esm2015/app/component/service-order/ione-service-order.component.js +96 -0
- package/esm2015/app/component/service-order/service-order.component.js +195 -0
- package/esm2015/app/component/service-order/summary/transaction-article-summary.component.js +55 -0
- package/esm2015/app/component/service-order/summary/transaction-delivery-summary.component.js +59 -0
- package/esm2015/app/component/service-order/summary/transaction-order-summary.component.js +43 -0
- package/esm2015/app/component/service-order/summary/transaction-payment-info.component.js +35 -0
- package/esm2015/app/component/service-order/summary/transaction-product-contract-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-product-summary.component.js +41 -0
- package/esm2015/app/component/service-order/summary/transaction-service-status.component.js +37 -0
- package/esm2015/app/component/service-order/summary/transaction-service-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-summary-block.component.js +53 -0
- package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +194 -0
- package/esm2015/app/component/service-order/transaction-header-block/transaction-header-block.component.js +83 -0
- package/esm2015/app/component/service-order/transaction-manager/transaction-manager.component.js +305 -0
- package/esm2015/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.js +76 -0
- package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +71 -0
- package/esm2015/app/component/service-order/transaction-order-totals/transaction-order-totals.component.js +36 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-address.component.js +116 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-edit.component.js +225 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.js +172 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.js +120 -0
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +4 -6
- package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +1 -1
- package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +1 -1
- package/esm2015/app/service/ione-connector-adapter.service.js +24 -6
- package/esm2015/app/service/transaction-event.service.js +4 -1
- package/esm2015/app/service/transaction.service.js +122 -37
- package/esm2015/assets/dictionary/text.properties.js +37 -1
- package/esm2015/colijnit-transaction.js +27 -3
- package/esm2015/public_api.js +3 -1
- package/fesm2015/colijnit-transaction.js +2625 -50
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +3 -3
- package/public_api.d.ts +2 -0
- package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +0 -99
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { ButtonComponent } from "@colijnit/corecomponents_v12";
|
|
3
|
+
export declare class DefaultOkCancelButtonsComponent {
|
|
4
|
+
okDisabled: boolean;
|
|
5
|
+
hideCancel: boolean;
|
|
6
|
+
hideOk: boolean;
|
|
7
|
+
okLabel: string;
|
|
8
|
+
okClick: EventEmitter<MouseEvent>;
|
|
9
|
+
cancelClick: EventEmitter<MouseEvent>;
|
|
10
|
+
okButtonComp: ButtonComponent;
|
|
11
|
+
constructor();
|
|
12
|
+
onOkClick(event: MouseEvent): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
2
|
+
import { TransactionInfoResponse } from "@colijnit/transactionapi/build/model/transaction-info-response.bo";
|
|
3
|
+
import { TransactionInfo } from "@colijnit/transactionapi/build/model/transaction-info.bo";
|
|
4
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
5
|
+
import { TransactionTotal } from "@colijnit/transactionapi/build/model/transaction-total.bo";
|
|
6
|
+
import { RelationListObject } from "@colijnit/transactionapi/build/model/relation-list-object.bo";
|
|
7
|
+
import { CustomerFullObject } from "@colijnit/transactionapi/build/model/customer-full-object.bo";
|
|
8
|
+
import { SlaProduct } from "@colijnit/transactionapi/build/model/sla-product.bo";
|
|
9
|
+
import { LineOperationStatus } from "@colijnit/transactionapi/build/model/line-operation-status.bo";
|
|
10
|
+
export declare abstract class TransactionBaseComponent {
|
|
11
|
+
protected readonly service: TransactionService;
|
|
12
|
+
set transaction(value: TransactionInfoResponse);
|
|
13
|
+
get transaction(): TransactionInfoResponse;
|
|
14
|
+
set transactionInfo(value: TransactionInfo);
|
|
15
|
+
get transactionInfo(): TransactionInfo;
|
|
16
|
+
set transactionLines(value: TransactionLineInfo[]);
|
|
17
|
+
get transactionLines(): TransactionLineInfo[];
|
|
18
|
+
set transactionTotal(value: TransactionTotal);
|
|
19
|
+
get transactionTotal(): TransactionTotal;
|
|
20
|
+
get lineOperationStatuses(): LineOperationStatus[];
|
|
21
|
+
set lineOperationStatuses(value: LineOperationStatus[]);
|
|
22
|
+
get isService(): boolean;
|
|
23
|
+
set relationId(value: number);
|
|
24
|
+
get relationId(): number;
|
|
25
|
+
set customerId(value: number);
|
|
26
|
+
get customerId(): number;
|
|
27
|
+
set product(value: SlaProduct);
|
|
28
|
+
get product(): SlaProduct;
|
|
29
|
+
get isNew(): boolean;
|
|
30
|
+
relation: RelationListObject;
|
|
31
|
+
customer: CustomerFullObject;
|
|
32
|
+
_isService: boolean;
|
|
33
|
+
basedOnProduct: boolean;
|
|
34
|
+
private _transactionInfo;
|
|
35
|
+
private _lineOperationStatuses;
|
|
36
|
+
private _transactionLines;
|
|
37
|
+
private _transactionTotal;
|
|
38
|
+
private _relationId;
|
|
39
|
+
private _customerId;
|
|
40
|
+
private _transaction;
|
|
41
|
+
private _product;
|
|
42
|
+
constructor(service: TransactionService);
|
|
43
|
+
transactionSet(): void;
|
|
44
|
+
productSet(): void;
|
|
45
|
+
private _retrieveCustomer;
|
|
46
|
+
private _retrieveRelation;
|
|
47
|
+
private _setBasedOnProduct;
|
|
48
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnChanges, OnDestroy, SimpleChanges, TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
export declare class TemplateWrapperDirective implements OnDestroy, OnChanges {
|
|
3
|
+
protected viewContainer: ViewContainerRef;
|
|
4
|
+
templateWrapper: TemplateRef<any> | null;
|
|
5
|
+
templateWrapperContext: Object | null;
|
|
6
|
+
private _viewRef;
|
|
7
|
+
constructor(viewContainer: ViewContainerRef);
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
private _shouldRecreateView;
|
|
11
|
+
private _hasContextShapeChanged;
|
|
12
|
+
private _updateExistingContext;
|
|
13
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { CommissionCodeType } from "@colijnit/transactionapi/build/enum/refcode/commission-code-type.enum";
|
|
4
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
5
|
+
import { CoDomainValue } from "@colijnit/transactionapi/build/model/co-domain-value.bo";
|
|
6
|
+
import { TransactionArticleWarehouse } from "@colijnit/transactionapi/build/model/transaction-article-warehouse.bo";
|
|
7
|
+
import { CoDialogComponent, CoGridComponent } from "@colijnit/corecomponents_v12";
|
|
8
|
+
import { DictionaryService } from "../../../service/dictionary.service";
|
|
9
|
+
export declare class WarehouseComponent implements OnInit, OnDestroy {
|
|
10
|
+
service: TransactionService;
|
|
11
|
+
_dictionaryService: DictionaryService;
|
|
12
|
+
warehouseDialog: CoDialogComponent;
|
|
13
|
+
warehouseGrid: CoGridComponent<any>;
|
|
14
|
+
message: string;
|
|
15
|
+
readonly okClick: EventEmitter<void>;
|
|
16
|
+
readonly cancelClick: EventEmitter<void>;
|
|
17
|
+
selectedWarehouseNr: number;
|
|
18
|
+
amount: number;
|
|
19
|
+
commissionCode: CommissionCodeType;
|
|
20
|
+
commissionCodes: CoDomainValue[];
|
|
21
|
+
commissionFields: Object;
|
|
22
|
+
transactionArticleWarehouses: TransactionArticleWarehouse[];
|
|
23
|
+
columns: any[];
|
|
24
|
+
private _okOrCancelClick;
|
|
25
|
+
constructor(service: TransactionService, _dictionaryService: DictionaryService);
|
|
26
|
+
ngOnInit(): Promise<void>;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
showStockManager(line: TransactionLineInfo): Promise<void>;
|
|
29
|
+
hide(): Promise<void>;
|
|
30
|
+
show(articleNr: string): void;
|
|
31
|
+
handleRowsSelected(rows: any): void;
|
|
32
|
+
onStockManagerCancelClick(): Promise<void>;
|
|
33
|
+
onStockManagerOkClick(): Promise<void>;
|
|
34
|
+
private _reloadDataCollections;
|
|
35
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { OptionsService } from "../../service/options.service";
|
|
3
|
+
import { DictionaryService } from "../../service/dictionary.service";
|
|
4
|
+
import { IOneConnectorAdapterService } from "../../service/ione-connector-adapter.service";
|
|
5
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
6
|
+
export declare class IoneServiceOrderComponent implements OnInit, OnDestroy {
|
|
7
|
+
_changeDetector: ChangeDetectorRef;
|
|
8
|
+
_optionsService: OptionsService;
|
|
9
|
+
_connector: IOneConnectorAdapterService;
|
|
10
|
+
_dictionary: DictionaryService;
|
|
11
|
+
_service: TransactionService;
|
|
12
|
+
set orderId(value: number);
|
|
13
|
+
set options(value: any);
|
|
14
|
+
upAndLoaded: boolean;
|
|
15
|
+
private _subscriptions;
|
|
16
|
+
private _remoteOptions;
|
|
17
|
+
private _publicOptions;
|
|
18
|
+
private _orderId;
|
|
19
|
+
constructor(_changeDetector: ChangeDetectorRef, _optionsService: OptionsService, _connector: IOneConnectorAdapterService, _dictionary: DictionaryService, _service: TransactionService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
private _handleSettingsLoaded;
|
|
23
|
+
private _initConnection;
|
|
24
|
+
private _getTransactionById;
|
|
25
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { AnimationTriggerMetadata } from "@angular/animations";
|
|
3
|
+
import { Scroll } from "@angular/router";
|
|
4
|
+
import { TransactionService } from "../../service/transaction.service";
|
|
5
|
+
import { TransactionEventService } from "../../service/transaction-event.service";
|
|
6
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
7
|
+
import { ContentViewMode } from "../../enum/content-view-mode.enum";
|
|
8
|
+
import { CoreComponentsIcon, IconCacheService, PromptService } from "@colijnit/corecomponents_v12";
|
|
9
|
+
import { ContextMenuItemModel } from "@syncfusion/ej2-angular-grids";
|
|
10
|
+
import { TransactionBaseComponent } from "../core/base/transaction-base.component";
|
|
11
|
+
export declare class ServiceOrderComponent extends TransactionBaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
12
|
+
service: TransactionService;
|
|
13
|
+
transactionEvents: TransactionEventService;
|
|
14
|
+
iconCacheService: IconCacheService;
|
|
15
|
+
private _promptService;
|
|
16
|
+
private _transactionArticleTextComponent;
|
|
17
|
+
private _transactionManager;
|
|
18
|
+
static readonly FLOAT_BUTTON_RIGHT_POSITION_WITHOUT_SIDEBAR = 50;
|
|
19
|
+
static readonly FLOAT_BUTTON_RIGHT_POSITION_WITH_SIDEBAR = 350;
|
|
20
|
+
readonly iconThickLines: CoreComponentsIcon;
|
|
21
|
+
readonly iconThinLines: CoreComponentsIcon;
|
|
22
|
+
readonly iconOrder: CoreComponentsIcon;
|
|
23
|
+
readonly viewModes: typeof ContentViewMode;
|
|
24
|
+
popupHeaderLabel: string;
|
|
25
|
+
canPlanDelivery: boolean;
|
|
26
|
+
showTotals: boolean;
|
|
27
|
+
floatButtonRightPosition: number;
|
|
28
|
+
get inListView(): boolean;
|
|
29
|
+
get inGridView(): boolean;
|
|
30
|
+
contextMenuItems: ContextMenuItemModel[];
|
|
31
|
+
isRouteOptimizationConfigured: boolean;
|
|
32
|
+
activeViewMode: ContentViewMode;
|
|
33
|
+
floatButtonSelected: boolean;
|
|
34
|
+
newArticleNr: string;
|
|
35
|
+
private _subs;
|
|
36
|
+
private _selectedTransLine;
|
|
37
|
+
constructor(service: TransactionService, transactionEvents: TransactionEventService, iconCacheService: IconCacheService, _promptService: PromptService);
|
|
38
|
+
ngOnInit(): Promise<void>;
|
|
39
|
+
ngAfterViewInit(): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
animationFn(): AnimationTriggerMetadata;
|
|
42
|
+
trackByFn(index: number, line: TransactionLineInfo): any;
|
|
43
|
+
handleRowsSelected(rows: any): void;
|
|
44
|
+
handlePlanningRequest(event: any): void;
|
|
45
|
+
moveFloatingButtonToLeft(): void;
|
|
46
|
+
moveFloatingButtonToRight(): void;
|
|
47
|
+
onOkClick(): void;
|
|
48
|
+
hide(): void;
|
|
49
|
+
floatButtonClick(): void;
|
|
50
|
+
get subHeader(): string;
|
|
51
|
+
hideOrderTotals(event: Scroll): void;
|
|
52
|
+
addArticleLine(event: KeyboardEvent): Promise<void>;
|
|
53
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
export declare class TransactionArticleSummaryComponent extends TransactionBaseComponent {
|
|
4
|
+
service: TransactionService;
|
|
5
|
+
decimals: number;
|
|
6
|
+
forceReadonly: boolean;
|
|
7
|
+
hidden: boolean;
|
|
8
|
+
maxLength: number;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
required: boolean;
|
|
11
|
+
imageDataUri: string;
|
|
12
|
+
get sourceArticleDescription(): string;
|
|
13
|
+
get sourceArticleNr(): string;
|
|
14
|
+
constructor(service: TransactionService);
|
|
15
|
+
private _getArticleImage;
|
|
16
|
+
transactionSet(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
3
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
4
|
+
import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
|
|
5
|
+
export declare class TransactionDeliverySummaryComponent extends TransactionBaseComponent {
|
|
6
|
+
service: TransactionService;
|
|
7
|
+
readonly deliveryTruck: CoreComponentsIcon.DeliveryTruck;
|
|
8
|
+
readonly calendarRoundOpen: CoreComponentsIcon.CalendarRoundOpen;
|
|
9
|
+
decimals: number;
|
|
10
|
+
forceReadonly: boolean;
|
|
11
|
+
hidden: boolean;
|
|
12
|
+
maxLength: number;
|
|
13
|
+
readonly: boolean;
|
|
14
|
+
required: boolean;
|
|
15
|
+
deliveryMethodDescription: string;
|
|
16
|
+
canPlanDelivery: boolean;
|
|
17
|
+
planningRequestButtonClick: EventEmitter<any>;
|
|
18
|
+
constructor(service: TransactionService);
|
|
19
|
+
transactionSet(): Promise<void>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
|
|
4
|
+
export declare class TransactionOrderSummaryComponent extends TransactionBaseComponent {
|
|
5
|
+
service: TransactionService;
|
|
6
|
+
readonly iconOrder: CoreComponentsIcon;
|
|
7
|
+
get sourceTransactionNr(): number;
|
|
8
|
+
get sourceTransactionDate(): Date;
|
|
9
|
+
decimals: number;
|
|
10
|
+
forceReadonly: boolean;
|
|
11
|
+
hidden: boolean;
|
|
12
|
+
maxLength: number;
|
|
13
|
+
readonly: boolean;
|
|
14
|
+
required: boolean;
|
|
15
|
+
constructor(service: TransactionService);
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
2
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
3
|
+
import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
|
|
4
|
+
export declare class TransactionPaymentInfoComponent extends TransactionBaseComponent {
|
|
5
|
+
service: TransactionService;
|
|
6
|
+
readonly euro: CoreComponentsIcon.Information;
|
|
7
|
+
decimals: number;
|
|
8
|
+
forceReadonly: boolean;
|
|
9
|
+
hidden: boolean;
|
|
10
|
+
maxLength: number;
|
|
11
|
+
readonly: boolean;
|
|
12
|
+
required: boolean;
|
|
13
|
+
constructor(service: TransactionService);
|
|
14
|
+
}
|
package/app/component/service-order/summary/transaction-product-contract-summary.component.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
export declare class TransactionProductContractSummaryComponent extends TransactionBaseComponent {
|
|
4
|
+
service: TransactionService;
|
|
5
|
+
constructor(service: TransactionService);
|
|
6
|
+
productSet(): void;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
export declare class TransactionProductSummaryComponent extends TransactionBaseComponent {
|
|
4
|
+
service: TransactionService;
|
|
5
|
+
decimals: number;
|
|
6
|
+
forceReadonly: boolean;
|
|
7
|
+
hidden: boolean;
|
|
8
|
+
maxLength: number;
|
|
9
|
+
objectConfigName: string;
|
|
10
|
+
readonly: boolean;
|
|
11
|
+
redErrorBackground: boolean;
|
|
12
|
+
required: boolean;
|
|
13
|
+
constructor(service: TransactionService);
|
|
14
|
+
productSet(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
|
|
4
|
+
export declare class TransactionServiceStatusComponent extends TransactionBaseComponent {
|
|
5
|
+
service: TransactionService;
|
|
6
|
+
readonly iconPin: CoreComponentsIcon;
|
|
7
|
+
get serviceStatus(): string;
|
|
8
|
+
decimals: number;
|
|
9
|
+
forceReadonly: boolean;
|
|
10
|
+
hidden: boolean;
|
|
11
|
+
maxLength: number;
|
|
12
|
+
readonly: boolean;
|
|
13
|
+
required: boolean;
|
|
14
|
+
constructor(service: TransactionService);
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v12";
|
|
4
|
+
export declare class TransactionServiceSummaryComponent extends TransactionBaseComponent {
|
|
5
|
+
service: TransactionService;
|
|
6
|
+
iconCacheService: IconCacheService;
|
|
7
|
+
readonly iconWrench: CoreComponentsIcon;
|
|
8
|
+
decimals: number;
|
|
9
|
+
forceReadonly: boolean;
|
|
10
|
+
hidden: boolean;
|
|
11
|
+
maxLength: number;
|
|
12
|
+
readonly: boolean;
|
|
13
|
+
required: boolean;
|
|
14
|
+
constructor(service: TransactionService, iconCacheService: IconCacheService);
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnDestroy, TemplateRef } from "@angular/core";
|
|
2
|
+
import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
|
|
3
|
+
export declare class TransactionSummaryBlockComponent implements OnDestroy {
|
|
4
|
+
readonly Icon: typeof CoreComponentsIcon;
|
|
5
|
+
hideAvatar: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
icon: CoreComponentsIcon;
|
|
8
|
+
image: string;
|
|
9
|
+
headerLabel: string;
|
|
10
|
+
headerValue: string;
|
|
11
|
+
subHeaderLabel: string;
|
|
12
|
+
subHeaderValue: string;
|
|
13
|
+
subHeaderTemplate: TemplateRef<any>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
}
|
package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { BusinessObject } from "@colijnit/transactionapi/build/model/business-object";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
4
|
+
export declare class TransactionArticleTextComponent extends TransactionBaseComponent {
|
|
5
|
+
service: TransactionService;
|
|
6
|
+
subHeader: string;
|
|
7
|
+
visible: boolean;
|
|
8
|
+
floatButtonSelected: boolean;
|
|
9
|
+
overviewSelected: boolean;
|
|
10
|
+
editArtikelText: boolean;
|
|
11
|
+
collection: Object[];
|
|
12
|
+
articleTexts: Object[];
|
|
13
|
+
fields: Object;
|
|
14
|
+
constructor(service: TransactionService);
|
|
15
|
+
onOkClick(): void;
|
|
16
|
+
onPopupClose(): void;
|
|
17
|
+
hide(): void;
|
|
18
|
+
onOverview(): void;
|
|
19
|
+
onOkOverviewClick(): void;
|
|
20
|
+
hideOverview(): void;
|
|
21
|
+
onDetailLinkClick(bo: BusinessObject): void;
|
|
22
|
+
hideEditArtikelText(): void;
|
|
23
|
+
onOkEditArtikelTextClick(): void;
|
|
24
|
+
}
|
package/app/component/service-order/transaction-header-block/transaction-header-block.component.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
3
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
4
|
+
import { TransactionRelationEditComponent } from "../transaction-relation/transaction-relation-edit.component";
|
|
5
|
+
export declare class TransactionHeaderBlockComponent extends TransactionBaseComponent {
|
|
6
|
+
service: TransactionService;
|
|
7
|
+
relationPopup: TransactionRelationEditComponent;
|
|
8
|
+
canPlanDelivery: boolean;
|
|
9
|
+
planningRequestButtonClick: EventEmitter<any>;
|
|
10
|
+
selectedTab: number;
|
|
11
|
+
showPopupTab(index: number): void;
|
|
12
|
+
constructor(service: TransactionService);
|
|
13
|
+
tabClick(): void;
|
|
14
|
+
transactionEditClose(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
3
|
+
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
4
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
5
|
+
import { ResolvePendingLineReasonRequest } from "@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo";
|
|
6
|
+
import { LineOperationStatus } from "@colijnit/transactionapi/build/model/line-operation-status.bo";
|
|
7
|
+
import { ArticleFullObject } from "@colijnit/transactionapi/build/model/article-full-object";
|
|
8
|
+
import { DictionaryService } from "../../../service/dictionary.service";
|
|
9
|
+
import { LineOperationResponse } from "@colijnit/transactionapi/build/model/line-operation-response.bo";
|
|
10
|
+
import { PositionGridRow } from "../../../../enum/position-grid-row.enum";
|
|
11
|
+
import { CharacteristicAnswerComponent } from "../../core/characteristic-answer/characteristic-answer.component";
|
|
12
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
13
|
+
import { TransactionInfoResponse } from "@colijnit/transactionapi/build/model/transaction-info-response.bo";
|
|
14
|
+
import { WarehouseComponent } from "../../core/warehouse/warehouse.component";
|
|
15
|
+
import { PromptService } from "@colijnit/corecomponents_v12";
|
|
16
|
+
export declare class TransactionManagerComponent extends TransactionBaseComponent implements OnDestroy {
|
|
17
|
+
service: TransactionService;
|
|
18
|
+
transactionEvents: TransactionEventService;
|
|
19
|
+
promptService: PromptService;
|
|
20
|
+
_dictionaryService: DictionaryService;
|
|
21
|
+
warehouse: WarehouseComponent;
|
|
22
|
+
characteristicAnswer: CharacteristicAnswerComponent;
|
|
23
|
+
readonly linesChanged: EventEmitter<boolean>;
|
|
24
|
+
readonly articleAdded: EventEmitter<TransactionInfoResponse>;
|
|
25
|
+
get amountOfLines(): number;
|
|
26
|
+
get showCharacteristicDialog(): boolean;
|
|
27
|
+
set showCharacteristicDialog(value: boolean);
|
|
28
|
+
newArticleNr: string;
|
|
29
|
+
newArticle: ArticleFullObject;
|
|
30
|
+
selectedWarehouseNr: number;
|
|
31
|
+
amount: number;
|
|
32
|
+
columns: any[];
|
|
33
|
+
currentPendingLine: TransactionLineInfo;
|
|
34
|
+
currentReason: ResolvePendingLineReasonRequest;
|
|
35
|
+
private currentOperationStatus;
|
|
36
|
+
private _inOutCollection;
|
|
37
|
+
private _showCharacteristic;
|
|
38
|
+
private _subs;
|
|
39
|
+
constructor(service: TransactionService, transactionEvents: TransactionEventService, promptService: PromptService, _dictionaryService: DictionaryService);
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
addArticleLine(transactionUuid: string, sku: string, amount: number, lineNr: number, beforeOrAfter: PositionGridRow): Promise<void>;
|
|
42
|
+
changeLineSequence(fromIndex: number, toIndex: number): Promise<void>;
|
|
43
|
+
showStockManager(line: TransactionLineInfo): Promise<void>;
|
|
44
|
+
warehouseOkClick(): Promise<void>;
|
|
45
|
+
warehouseCancelClick(): Promise<void>;
|
|
46
|
+
handleCharacteristicAnswerOkClick(answer: string): Promise<void>;
|
|
47
|
+
private _handleAddArticle;
|
|
48
|
+
private _handleAddArticleLineAt;
|
|
49
|
+
private _getWareHouseNoFromArticle;
|
|
50
|
+
isLineOperationStatus(lineOperationStatuses: LineOperationStatus[]): boolean;
|
|
51
|
+
private _confirmAction;
|
|
52
|
+
private _showInformation;
|
|
53
|
+
private _getPendingReasonText;
|
|
54
|
+
private getInOutCollectionOfArticle;
|
|
55
|
+
handleLineOperationStatus(lineOperationResponse: LineOperationResponse): Promise<void>;
|
|
56
|
+
private _handlePendingLine;
|
|
57
|
+
private _saveTransaction;
|
|
58
|
+
private _loadArticle;
|
|
59
|
+
private addEmailAddressToTransaction;
|
|
60
|
+
private CharacteristicsAnswerNeeded;
|
|
61
|
+
private _getTransactionLineInfoByIndex;
|
|
62
|
+
private _cancelArticle;
|
|
63
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
3
|
+
import { StockStatus } from "@colijnit/transactionapi/build/enum/refcode/stock-status.enum";
|
|
4
|
+
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
5
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
6
|
+
export declare class TransactionOrderLineViewComponent implements OnInit {
|
|
7
|
+
private _service;
|
|
8
|
+
private _eventService;
|
|
9
|
+
line: TransactionLineInfo;
|
|
10
|
+
stock: StockStatus;
|
|
11
|
+
image: string;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
constructor(_service: TransactionService, _eventService: TransactionEventService);
|
|
14
|
+
private _loadArticleImage;
|
|
15
|
+
transactionLineClick(line: TransactionLineInfo): void;
|
|
16
|
+
}
|
package/app/component/service-order/transaction-order-lines/transaction-order-lines.component.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { CoGridComponent } from "@colijnit/corecomponents_v12";
|
|
3
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
4
|
+
import { DictionaryService } from "../../../service/dictionary.service";
|
|
5
|
+
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
6
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
7
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
8
|
+
export declare class TransactionOrderLinesComponent extends TransactionBaseComponent {
|
|
9
|
+
service: TransactionService;
|
|
10
|
+
private _eventService;
|
|
11
|
+
private _dictionaryService;
|
|
12
|
+
static readonly MAX_TRANSACTION_LINES = 20;
|
|
13
|
+
transactionGrid: CoGridComponent<any>;
|
|
14
|
+
createServiceClick: EventEmitter<TransactionLineInfo>;
|
|
15
|
+
get pagingEnabled(): boolean;
|
|
16
|
+
nothingSelected: boolean;
|
|
17
|
+
columns: any[];
|
|
18
|
+
private _selectedTransLine;
|
|
19
|
+
private set selectedTransLine(value);
|
|
20
|
+
private get selectedTransLine();
|
|
21
|
+
constructor(service: TransactionService, _eventService: TransactionEventService, _dictionaryService: DictionaryService);
|
|
22
|
+
onRowClick(row: TransactionLineInfo): void;
|
|
23
|
+
onRowDeselect(event: any): void;
|
|
24
|
+
newServiceRequestClick(): void;
|
|
25
|
+
}
|
package/app/component/service-order/transaction-order-totals/transaction-order-totals.component.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
2
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
3
|
+
export declare class TransactionOrderTotalsComponent extends TransactionBaseComponent {
|
|
4
|
+
protected readonly service: TransactionService;
|
|
5
|
+
constructor(service: TransactionService);
|
|
6
|
+
}
|
package/app/component/service-order/transaction-relation/transaction-relation-address.component.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { Address } from "@colijnit/transactionapi/build/model/address.bo";
|
|
3
|
+
import { Country } from "@colijnit/transactionapi/build/model/country.bo";
|
|
4
|
+
import { IOneConnectorAdapterService } from "../../../service/ione-connector-adapter.service";
|
|
5
|
+
import { DictionaryService } from "../../../service/dictionary.service";
|
|
6
|
+
export declare class TransactionRelationAddressComponent implements OnInit {
|
|
7
|
+
private _dictionary;
|
|
8
|
+
private _connector;
|
|
9
|
+
label: string;
|
|
10
|
+
set address(address: Address);
|
|
11
|
+
get address(): Address;
|
|
12
|
+
countries: Country[];
|
|
13
|
+
fields: Object;
|
|
14
|
+
constructor(_dictionary: DictionaryService, _connector: IOneConnectorAdapterService);
|
|
15
|
+
postalCodeCheckErrorMessage: string;
|
|
16
|
+
private _prevPostalCodeForCheck;
|
|
17
|
+
private _prevHouseNoForCheck;
|
|
18
|
+
private _address;
|
|
19
|
+
ngOnInit(): Promise<void>;
|
|
20
|
+
checkForPostalCodeCheckError(): Promise<void>;
|
|
21
|
+
changeHouseNo(): void;
|
|
22
|
+
}
|
package/app/component/service-order/transaction-relation/transaction-relation-edit.component.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { GenderType } from "@colijnit/transactionapi/build/enum/gender-type.enum";
|
|
3
|
+
import { Address } from "@colijnit/transactionapi/build/model/address.bo";
|
|
4
|
+
import { ContactOption } from "@colijnit/transactionapi/build/model/contact-option.bo";
|
|
5
|
+
import { RelationNameKind } from "@colijnit/transactionapi/build/enum/relation-name-kind.enum";
|
|
6
|
+
import { FormComponent } from "@colijnit/corecomponents_v12";
|
|
7
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
8
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
9
|
+
export declare class TransactionRelationEditComponent extends TransactionBaseComponent {
|
|
10
|
+
protected readonly service: TransactionService;
|
|
11
|
+
transactionRelationEditForm: FormComponent;
|
|
12
|
+
showPopup: boolean;
|
|
13
|
+
readonly relType: typeof RelationNameKind;
|
|
14
|
+
readonly genderType: typeof GenderType;
|
|
15
|
+
validSubmit: EventEmitter<void>;
|
|
16
|
+
invalidSubmit: EventEmitter<void>;
|
|
17
|
+
dateOfBirth: Date;
|
|
18
|
+
phoneNumber: ContactOption;
|
|
19
|
+
get readonly(): boolean;
|
|
20
|
+
constructor(service: TransactionService);
|
|
21
|
+
get subHeader(): string;
|
|
22
|
+
get editFirstAddress(): Address;
|
|
23
|
+
get firstAddress(): Address;
|
|
24
|
+
onPopupClose(): void;
|
|
25
|
+
changeRelationType(relationType: RelationNameKind): void;
|
|
26
|
+
changeGenderType(genderType: GenderType): void;
|
|
27
|
+
firstNameChange(firstName: string): void;
|
|
28
|
+
familyNameChange(familyName: string): void;
|
|
29
|
+
}
|
package/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from "@angular/core";
|
|
2
|
+
import { Accordion } from "@syncfusion/ej2-navigations";
|
|
3
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
4
|
+
export declare class TransactionLineAccordionComponent implements OnInit {
|
|
5
|
+
protected changeDetector: ChangeDetectorRef;
|
|
6
|
+
transactionLine: TransactionLineInfo;
|
|
7
|
+
accordion: Accordion;
|
|
8
|
+
private _subscriptions;
|
|
9
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
}
|
package/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { Sidebar } from "@syncfusion/ej2-navigations";
|
|
3
|
+
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
4
|
+
import { TransactionBaseComponent } from "../../core/base/transaction-base.component";
|
|
5
|
+
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
6
|
+
import { TransactionService } from "../../../service/transaction.service";
|
|
7
|
+
import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v12";
|
|
8
|
+
export declare class TransactionSidebarRightComponent extends TransactionBaseComponent implements OnInit, OnDestroy {
|
|
9
|
+
service: TransactionService;
|
|
10
|
+
iconCacheService: IconCacheService;
|
|
11
|
+
private _eventService;
|
|
12
|
+
protected changeDetector: ChangeDetectorRef;
|
|
13
|
+
readonly iconDetailView: CoreComponentsIcon;
|
|
14
|
+
readonly iconArrowPointRight: CoreComponentsIcon;
|
|
15
|
+
readonly iconStock: CoreComponentsIcon;
|
|
16
|
+
readonly iconDocuments: CoreComponentsIcon;
|
|
17
|
+
ArrowPointRight: any;
|
|
18
|
+
test: string;
|
|
19
|
+
transactionLine: TransactionLineInfo;
|
|
20
|
+
defaultSidebar: Sidebar;
|
|
21
|
+
private _subscriptions;
|
|
22
|
+
constructor(service: TransactionService, iconCacheService: IconCacheService, _eventService: TransactionEventService, changeDetector: ChangeDetectorRef);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
sidebarCloseClick(): void;
|
|
26
|
+
}
|
package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { TransactionArticleWarehouse } from "@colijnit/transactionapi/build/mode
|
|
|
9
9
|
import { CoDialogComponent, CoGridComponent, PromptService } from "@colijnit/corecomponents_v12";
|
|
10
10
|
import { ArticleFullObject } from "@colijnit/transactionapi/build/model/article-full-object";
|
|
11
11
|
import { DictionaryService } from "../../../service/dictionary.service";
|
|
12
|
-
import { CharacteristicAnswerComponent } from "
|
|
12
|
+
import { CharacteristicAnswerComponent } from "../../core/characteristic-answer/characteristic-answer.component";
|
|
13
13
|
import { PositionGridRow } from "../../../../enum/position-grid-row.enum";
|
|
14
14
|
export declare class ShoppingCartManagerComponent implements OnInit, OnDestroy {
|
|
15
15
|
service: TransactionService;
|
|
@@ -40,6 +40,7 @@ export declare class IOneConnectorAdapterService {
|
|
|
40
40
|
getMarketingCodes(): Promise<Marketing[]>;
|
|
41
41
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
42
42
|
getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<TransactionInfoResponse>;
|
|
43
|
+
getTransactionById(transactionId: number): Promise<TransactionInfoResponse>;
|
|
43
44
|
saveTransaction(uuid: string): Promise<TransactionInfoResponse>;
|
|
44
45
|
getCustomerFullObject(relationNo: number): Promise<CustomerFullObject>;
|
|
45
46
|
getRelationNumber(relationId: number): Promise<string>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { Subject } from "rxjs";
|
|
2
|
+
import { BusinessObject } from "@colijnit/transactionapi/build/model/business-object";
|
|
2
3
|
import { PositionGridRow } from "../../enum/position-grid-row.enum";
|
|
4
|
+
import { Scroll } from "@angular/router";
|
|
3
5
|
export declare class TransactionEventService {
|
|
4
6
|
readonly addToCartBySku: Subject<{
|
|
5
7
|
sku: string;
|
|
@@ -45,4 +47,7 @@ export declare class TransactionEventService {
|
|
|
45
47
|
fromIndex: number;
|
|
46
48
|
toIndex: number;
|
|
47
49
|
})>;
|
|
50
|
+
readonly transactionLineClicked: Subject<BusinessObject>;
|
|
51
|
+
readonly rightSidebarClose: Subject<void>;
|
|
52
|
+
readonly scrollContent: Subject<Scroll>;
|
|
48
53
|
}
|