@sachin9822/reports-lib 0.0.222 → 0.0.224

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.
Files changed (36) hide show
  1. package/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +1 -1
  2. package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +24 -30
  3. package/esm2020/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.mjs +1 -1
  4. package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +3 -4
  5. package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +2 -6
  6. package/esm2020/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.mjs +1 -1
  7. package/esm2020/lib/components/funding-report/funding-report.component.mjs +1 -1
  8. package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +2 -4
  9. package/esm2020/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.mjs +1 -1
  10. package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +2 -4
  11. package/esm2020/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.mjs +1 -1
  12. package/esm2020/lib/models/branch-activity-report/branch-activity-send-report.mjs +1 -1
  13. package/esm2020/lib/reports-lib.module.mjs +5 -15
  14. package/esm2020/lib/services/report.service.mjs +1 -59
  15. package/esm2020/lib/shared/export-generic.service.mjs +1 -10
  16. package/esm2020/lib/shared/search-filter/search-filter.component.mjs +5 -329
  17. package/esm2020/public-api.mjs +1 -5
  18. package/fesm2015/sachin9822-reports-lib.mjs +186 -1597
  19. package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
  20. package/fesm2020/sachin9822-reports-lib.mjs +184 -1596
  21. package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
  22. package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +0 -8
  23. package/lib/models/branch-activity-report/branch-activity-send-report.d.ts +0 -4
  24. package/lib/reports-lib.module.d.ts +10 -12
  25. package/lib/services/report.service.d.ts +0 -10
  26. package/lib/shared/search-filter/search-filter.component.d.ts +1 -6
  27. package/package.json +1 -1
  28. package/public-api.d.ts +0 -4
  29. package/esm2020/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.mjs +0 -700
  30. package/esm2020/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.mjs +0 -332
  31. package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.mjs +0 -6
  32. package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report.mjs +0 -5
  33. package/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.d.ts +0 -78
  34. package/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.d.ts +0 -69
  35. package/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.d.ts +0 -13
  36. package/lib/models/transaction-monitoring-report/transaction-monitoring-report.d.ts +0 -23
@@ -1,69 +0,0 @@
1
- import { NgZone, OnInit } from "@angular/core";
2
- import { TransactionMonitoringReport } from "../../models/transaction-monitoring-report/transaction-monitoring-report";
3
- import { ColDef, GridApi, GridReadyEvent } from "ag-grid-community";
4
- import { ComponentLoadingStates } from "../../models/component-loading-states";
5
- import { GenericExportService } from "../../shared/export-generic.service";
6
- import { ReportService } from "../../services/report.service";
7
- import { ActivatedRoute } from '@angular/router';
8
- import * as i0 from "@angular/core";
9
- export declare class TransactionMonitoringReportComponent implements OnInit {
10
- private reportService;
11
- private ngZone;
12
- private route;
13
- dataMap: Record<string, TransactionMonitoringReport[]>;
14
- filteredData: Record<string, TransactionMonitoringReport[]>;
15
- proxyData: Record<string, TransactionMonitoringReport[]>;
16
- showReport: boolean;
17
- paginationArray: any[];
18
- selectedExportOption: string;
19
- gridApis: GridApi[];
20
- gridColumnApi: any;
21
- user: string;
22
- reportDate: string;
23
- fromDate: string;
24
- toDate: string;
25
- searchText: string;
26
- buffer: any;
27
- sysUserId: string;
28
- private logoBase64;
29
- ComponentLoadingState: typeof ComponentLoadingStates;
30
- loadingState: ComponentLoadingStates;
31
- ReportName: string;
32
- leftData: Record<string, string>;
33
- metaDataTwo: Record<string, string>;
34
- exportService: GenericExportService;
35
- searchCriteria: [string, string][];
36
- initialFilters: any;
37
- showMessage: boolean;
38
- noDataFound: boolean;
39
- isFormValid: boolean;
40
- clearSearch: boolean;
41
- columnDefs: ColDef<TransactionMonitoringReport>[];
42
- defaultColDef: {
43
- sortable: boolean;
44
- filter: boolean;
45
- resizable: boolean;
46
- minwidth: number;
47
- wrapHeaderText: boolean;
48
- autoHeaderHeight: boolean;
49
- suppressSizeToFit: boolean;
50
- wrapText: boolean;
51
- };
52
- rowData: TransactionMonitoringReport[];
53
- constructor(reportService: ReportService, ngZone: NgZone, route: ActivatedRoute);
54
- reportTheme: import("@ag-grid-community/theming").Theme<import("@ag-grid-community/theming/dist/types/src/styles/core/core-css").CoreParams & import("@ag-grid-community/theming").CheckboxStyleParams & import("@ag-grid-community/theming").TabStyleParams & import("@ag-grid-community/theming").InputStyleParams>;
55
- ngOnInit(): void;
56
- filter(text: string): void;
57
- onGridReady(params: GridReadyEvent, id: number): void;
58
- handleExport(option: string): void;
59
- dateValueFormatter(format: string): (params: any) => string;
60
- getKeys(obj: Record<string, unknown>): string[];
61
- hasAnyGroups(): boolean;
62
- formatAmount(params: any): string;
63
- statusOrderMap: any;
64
- statusOrderComparator: (a: any, b: any) => number;
65
- handleSearch(criteria: any): void;
66
- handleFormValid(isValid: boolean): void;
67
- static ɵfac: i0.ɵɵFactoryDeclaration<TransactionMonitoringReportComponent, never>;
68
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionMonitoringReportComponent, "lib-transaction-monitoring-report", never, {}, {}, never, never, false>;
69
- }
@@ -1,13 +0,0 @@
1
- export declare class TransactionMonitoringRequestDomainModel {
2
- startDate: string;
3
- endDate: string;
4
- sendCountryCode: string;
5
- recvCountryCode: string;
6
- businessPartnerCode: string;
7
- transactionStatus: string;
8
- payoutCurrency: string;
9
- transactionType: string;
10
- branchCode: string;
11
- companyCode: string;
12
- constructor(values?: Object);
13
- }
@@ -1,23 +0,0 @@
1
- export declare class TransactionMonitoringReport {
2
- SendAgentBranchNameAndCode: string;
3
- BusinessDateTime: string;
4
- TransactionDateTime: string;
5
- TransactionNumber: string;
6
- Product: string;
7
- SendAgentBranchCode: string;
8
- SendPrincipalAgentCode: string;
9
- ReceiveAgentCode: string;
10
- PayoutCCcode: string;
11
- PayoutAmount?: number;
12
- PayinCCcode: string;
13
- PayinAmount?: number;
14
- TransactionCommissionAmount?: number;
15
- Tax?: number;
16
- TotalPayinAmount?: number;
17
- Status: string;
18
- TxnStatusDateAndTime: string;
19
- SendAgentCode: string;
20
- SendAgentBranchName: string;
21
- SenderName: string;
22
- ReceiverName: string;
23
- }