@hmcts/ccpay-web-component 6.0.10 → 6.0.11
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
4
|
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
4
5
|
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
5
6
|
import { ErrorHandlerService } from '../../services/shared/error-handler.service';
|
|
@@ -11,6 +12,7 @@ export declare class ReportsComponent implements OnInit {
|
|
|
11
12
|
private errorHandlerService;
|
|
12
13
|
private formBuilder;
|
|
13
14
|
private bulkScaningPaymentService;
|
|
15
|
+
private paymentLibComponent;
|
|
14
16
|
private paymentViewService;
|
|
15
17
|
ISPAYMENTSTATUSENABLED: string;
|
|
16
18
|
fmt: string;
|
|
@@ -26,7 +28,7 @@ export declare class ReportsComponent implements OnInit {
|
|
|
26
28
|
isDateRangeBetnWeek: Boolean;
|
|
27
29
|
errorMessage: any;
|
|
28
30
|
paymentGroups: IPaymentGroup[];
|
|
29
|
-
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentViewService: PaymentViewService);
|
|
31
|
+
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
|
|
30
32
|
ngOnInit(): void;
|
|
31
33
|
getToday(): string;
|
|
32
34
|
getSelectedFromDate(): void;
|