@hmcts/ccpay-web-component 6.5.14 → 6.5.15-beta1
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/esm2022/hmcts-ccpay-web-component.mjs +5 -0
- package/esm2022/lib/components/add-remission/add-remission.component.mjs +1276 -0
- package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +423 -0
- package/esm2022/lib/components/card-details/card-details.component.mjs +32 -0
- package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +885 -0
- package/esm2022/lib/components/contact-details/contact-details.component.mjs +338 -0
- package/esm2022/lib/components/error-banner/error-banner.component.mjs +18 -0
- package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +280 -0
- package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +195 -0
- package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +275 -0
- package/esm2022/lib/components/notification-preview/notification-preview.component.mjs +79 -0
- package/esm2022/lib/components/page-not-found.component.mjs +17 -0
- package/esm2022/lib/components/payment-list/payment-list.component.mjs +36 -0
- package/esm2022/lib/components/payment-view/payment-view.component.mjs +467 -0
- package/esm2022/lib/components/pba-details/pba-details.component.mjs +18 -0
- package/esm2022/lib/components/pba-payment/pba-payment.component.mjs +163 -0
- package/esm2022/lib/components/process-refund/process-refund.component.mjs +417 -0
- package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +37 -0
- package/esm2022/lib/components/refund-list/refund-list.component.mjs +73 -0
- package/esm2022/lib/components/refund-status/refund-status.component.mjs +481 -0
- package/esm2022/lib/components/reports/reports.component.mjs +337 -0
- package/esm2022/lib/components/service-request/service-request.component.mjs +516 -0
- package/esm2022/lib/components/status-history/status-history.component.mjs +33 -0
- package/esm2022/lib/components/table/table.component.mjs +127 -0
- package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +236 -0
- package/esm2022/lib/interfaces/AddRemissionRequest.mjs +17 -0
- package/esm2022/lib/interfaces/AddRetroRemissionRequest.mjs +9 -0
- package/esm2022/lib/interfaces/AllocatePaymentRequest.mjs +41 -0
- package/esm2022/lib/interfaces/IAllocationPaymentsRequest.mjs +20 -0
- package/esm2022/lib/interfaces/IBSPayments.mjs +2 -0
- package/esm2022/lib/interfaces/ICardDetails.mjs +2 -0
- package/esm2022/lib/interfaces/IFee.mjs +2 -0
- package/esm2022/lib/interfaces/INotificationPreview.mjs +2 -0
- package/esm2022/lib/interfaces/IOrderReferenceFee.mjs +2 -0
- package/esm2022/lib/interfaces/IPatchRefundAction.mjs +2 -0
- package/esm2022/lib/interfaces/IPayment.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentFailure.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentGroup.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentStatus.mjs +12 -0
- package/esm2022/lib/interfaces/IPaymentView.mjs +2 -0
- package/esm2022/lib/interfaces/IPayments.mjs +2 -0
- package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IRefundAction.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundContactDetails.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundFee.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundList.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundReasons.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundRejectReason.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundStatus.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundStatusHistory.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundsNotifications.mjs +2 -0
- package/esm2022/lib/interfaces/IRemission.mjs +2 -0
- package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IStatusHistories.mjs +2 -0
- package/esm2022/lib/interfaces/IStatusHistory.mjs +2 -0
- package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
- package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
- package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
- package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +46 -0
- package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +14 -0
- package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +17 -0
- package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
- package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
- package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
- package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
- package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
- package/esm2022/lib/payment-lib.component.mjs +430 -0
- package/esm2022/lib/payment-lib.module.mjs +181 -0
- package/esm2022/lib/payment-lib.service.mjs +49 -0
- package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
- package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
- package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
- package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
- package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
- package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
- package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
- package/esm2022/lib/services/notification/notification.service.mjs +70 -0
- package/esm2022/lib/services/orderslist.service.mjs +154 -0
- package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
- package/esm2022/lib/services/payment-view/payment-view.service.mjs +156 -0
- package/esm2022/lib/services/refunds/refunds.service.mjs +120 -0
- package/esm2022/lib/services/shared/error-handler.service.mjs +76 -0
- package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
- package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
- package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
- package/esm2022/lib/services/status-history/status-history.service.mjs +41 -0
- package/esm2022/lib/services/xl-file/xl-file.service.mjs +197 -0
- package/esm2022/public_api.mjs +7 -0
- package/fesm2022/hmcts-ccpay-web-component.mjs +217 -262
- package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -1
- package/index.d.ts +5 -2340
- package/lib/components/add-remission/add-remission.component.d.ts +208 -0
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +115 -0
- package/lib/components/card-details/card-details.component.d.ts +18 -0
- package/lib/components/case-transactions/case-transactions.component.d.ts +143 -0
- package/lib/components/contact-details/contact-details.component.d.ts +54 -0
- package/lib/components/error-banner/error-banner.component.d.ts +9 -0
- package/lib/components/fee-summary/fee-summary.component.d.ts +72 -0
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +52 -0
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +63 -0
- package/lib/components/notification-preview/notification-preview.component.d.ts +30 -0
- package/lib/components/page-not-found.component.d.ts +5 -0
- package/lib/components/payment-list/payment-list.component.d.ts +19 -0
- package/lib/components/payment-view/payment-view.component.d.ts +110 -0
- package/lib/components/pba-details/pba-details.component.d.ts +10 -0
- package/lib/components/pba-payment/pba-payment.component.d.ts +41 -0
- package/lib/components/process-refund/process-refund.component.d.ts +82 -0
- package/lib/components/processed-payments/processed-payments.component.d.ts +17 -0
- package/lib/components/refund-list/refund-list.component.d.ts +26 -0
- package/lib/components/refund-status/refund-status.component.d.ts +119 -0
- package/lib/components/reports/reports.component.d.ts +49 -0
- package/lib/components/service-request/service-request.component.d.ts +141 -0
- package/lib/components/status-history/status-history.component.d.ts +19 -0
- package/lib/components/table/table.component.d.ts +45 -0
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +61 -0
- package/lib/interfaces/AddRemissionRequest.d.ts +11 -0
- package/lib/interfaces/AddRetroRemissionRequest.d.ts +5 -0
- package/lib/interfaces/AllocatePaymentRequest.d.ts +31 -0
- package/lib/interfaces/IAllocationPaymentsRequest.d.ts +9 -0
- package/lib/interfaces/IBSPayments.d.ts +19 -0
- package/lib/interfaces/ICardDetails.d.ts +7 -0
- package/lib/interfaces/IFee.d.ts +29 -0
- package/lib/interfaces/INotificationPreview.d.ts +27 -0
- package/lib/interfaces/IOrderReferenceFee.d.ts +9 -0
- package/lib/interfaces/IPatchRefundAction.d.ts +4 -0
- package/lib/interfaces/IPayment.d.ts +35 -0
- package/lib/interfaces/IPaymentFailure.d.ts +13 -0
- package/lib/interfaces/IPaymentGroup.d.ts +11 -0
- package/lib/interfaces/IPaymentStatus.d.ts +11 -0
- package/lib/interfaces/IPaymentView.d.ts +5 -0
- package/lib/interfaces/IPayments.d.ts +4 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundAction.d.ts +4 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +20 -0
- package/lib/interfaces/IRefundReasons.d.ts +6 -0
- package/lib/interfaces/IRefundRejectReason.d.ts +4 -0
- package/lib/interfaces/IRefundStatus.d.ts +8 -0
- package/lib/interfaces/IRefundStatusHistory.d.ts +5 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +14 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +9 -0
- package/lib/interfaces/IStatusHistories.d.ts +7 -0
- package/lib/interfaces/IStatusHistory.d.ts +7 -0
- package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
- package/lib/interfaces/IserviceRequestPbaPayment.d.ts +8 -0
- package/lib/interfaces/IssueRefundRequest.d.ts +6 -0
- package/lib/interfaces/NotificationPreviewRequest.d.ts +25 -0
- package/lib/interfaces/PayhubAntennaRequest.d.ts +8 -0
- package/lib/interfaces/PaymentToPayhubRequest.d.ts +11 -0
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +6 -0
- package/lib/interfaces/PostRefundRetroRemission.d.ts +11 -0
- package/lib/interfaces/RefundsRequest.d.ts +5 -0
- package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts +7 -0
- package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts +10 -0
- package/lib/payment-lib.component.d.ts +156 -0
- package/lib/payment-lib.module.d.ts +42 -0
- package/lib/payment-lib.service.d.ts +21 -0
- package/lib/pipes/capitalize.pipe.d.ts +8 -0
- package/lib/pipes/ccd-hyphens.pipe.d.ts +8 -0
- package/lib/pipes/key-value.pipe.d.ts +8 -0
- package/lib/pipes/sanitize-html.pipe.d.ts +10 -0
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +27 -0
- package/lib/services/card-details/card-details.service.d.ts +17 -0
- package/lib/services/case-transactions/case-transactions.service.d.ts +17 -0
- package/lib/services/notification/notification.service.d.ts +21 -0
- package/lib/services/orderslist.service.d.ts +77 -0
- package/lib/services/payment-list/payment-list.service.d.ts +18 -0
- package/lib/services/payment-view/payment-view.service.d.ts +61 -0
- package/lib/services/refunds/refunds.service.d.ts +36 -0
- package/lib/services/shared/error-handler.service.d.ts +14 -0
- package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +17 -0
- package/lib/services/shared/logger/console-logger.service.d.ts +11 -0
- package/lib/services/shared/logger/logger.service.d.ts +14 -0
- package/lib/services/status-history/status-history.service.d.ts +17 -0
- package/lib/services/xl-file/xl-file.service.d.ts +16 -0
- package/package.json +5 -3
- package/public_api.d.ts +3 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
5
|
+
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
6
|
+
import { IBSPayments } from '../../interfaces/IBSPayments';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
9
|
+
export declare class MarkUnidentifiedPaymentComponent implements OnInit {
|
|
10
|
+
private formBuilder;
|
|
11
|
+
private paymentViewService;
|
|
12
|
+
private paymentLibComponent;
|
|
13
|
+
private bulkScaningPaymentService;
|
|
14
|
+
caseType: string;
|
|
15
|
+
markPaymentUnidentifiedForm: FormGroup;
|
|
16
|
+
viewStatus: string;
|
|
17
|
+
ccdCaseNumber: string;
|
|
18
|
+
bspaymentdcn: string;
|
|
19
|
+
isInvesticationDetailEmpty: boolean;
|
|
20
|
+
investicationDetailHasError: boolean;
|
|
21
|
+
investicationDetailMinHasError: boolean;
|
|
22
|
+
investicationDetailMaxHasError: boolean;
|
|
23
|
+
errorMessage: {
|
|
24
|
+
title: string;
|
|
25
|
+
body: string;
|
|
26
|
+
showError: any;
|
|
27
|
+
};
|
|
28
|
+
unassignedRecord: IBSPayments;
|
|
29
|
+
siteID: string;
|
|
30
|
+
investigationComment: string;
|
|
31
|
+
isConfirmButtondisabled: Boolean;
|
|
32
|
+
ccdReference: string;
|
|
33
|
+
exceptionReference: string;
|
|
34
|
+
isStrategicFixEnable: boolean;
|
|
35
|
+
constructor(formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias, bulkScaningPaymentService: BulkScaningPaymentService);
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
getUnassignedPayment(): void;
|
|
38
|
+
trimUnderscore(method: string): string;
|
|
39
|
+
saveAndContinue(): void;
|
|
40
|
+
resetForm(val: any): void;
|
|
41
|
+
confirmPayments(): void;
|
|
42
|
+
cancelMarkUnidentifiedPayments(type?: string): void;
|
|
43
|
+
gotoCasetransationPage(): void;
|
|
44
|
+
getErrorMessage(isErrorExist: any): {
|
|
45
|
+
title: string;
|
|
46
|
+
body: string;
|
|
47
|
+
showError: any;
|
|
48
|
+
};
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnidentifiedPaymentComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnidentifiedPaymentComponent, "app-mark-unidentified-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
|
|
51
|
+
}
|
|
52
|
+
export {};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
5
|
+
import { IBSPayments } from '../../interfaces/IBSPayments';
|
|
6
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
9
|
+
export declare class MarkUnsolicitedPaymentComponent implements OnInit {
|
|
10
|
+
private formBuilder;
|
|
11
|
+
private paymentViewService;
|
|
12
|
+
private paymentLibComponent;
|
|
13
|
+
private bulkScaningPaymentService;
|
|
14
|
+
caseType: string;
|
|
15
|
+
markPaymentUnsolicitedForm: FormGroup;
|
|
16
|
+
viewStatus: string;
|
|
17
|
+
reasonHasError: boolean;
|
|
18
|
+
isReasonEmpty: boolean;
|
|
19
|
+
reasonMinHasError: boolean;
|
|
20
|
+
reasonMaxHasError: boolean;
|
|
21
|
+
responsibleOfficeHasError: boolean;
|
|
22
|
+
isResponsibleOfficeEmpty: boolean;
|
|
23
|
+
errorMessage: {
|
|
24
|
+
title: string;
|
|
25
|
+
body: string;
|
|
26
|
+
showError: any;
|
|
27
|
+
};
|
|
28
|
+
ccdCaseNumber: string;
|
|
29
|
+
bspaymentdcn: string;
|
|
30
|
+
unassignedRecord: IBSPayments;
|
|
31
|
+
siteID: string;
|
|
32
|
+
reason: string;
|
|
33
|
+
responsiblePerson: string;
|
|
34
|
+
responsibleOffice: string;
|
|
35
|
+
emailId: string;
|
|
36
|
+
isConfirmButtondisabled: Boolean;
|
|
37
|
+
isContinueButtondisabled: Boolean;
|
|
38
|
+
ccdReference: string;
|
|
39
|
+
exceptionReference: string;
|
|
40
|
+
selectedSiteId: string;
|
|
41
|
+
selectedSiteName: string;
|
|
42
|
+
isStrategicFixEnable: boolean;
|
|
43
|
+
siteIDList: any;
|
|
44
|
+
constructor(formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias, bulkScaningPaymentService: BulkScaningPaymentService);
|
|
45
|
+
ngOnInit(): void;
|
|
46
|
+
trimUnderscore(method: string): string;
|
|
47
|
+
confirmPayments(): void;
|
|
48
|
+
saveAndContinue(): void;
|
|
49
|
+
resetForm(val: any, field: any): void;
|
|
50
|
+
cancelMarkUnsolicitedPayments(type?: string): void;
|
|
51
|
+
checkingFormValue(): boolean;
|
|
52
|
+
gotoCasetransationPage(): void;
|
|
53
|
+
getUnassignedPayment(): void;
|
|
54
|
+
getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
|
|
55
|
+
title: string;
|
|
56
|
+
body: string;
|
|
57
|
+
showError: any;
|
|
58
|
+
};
|
|
59
|
+
selectchange(args: any): void;
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnsolicitedPaymentComponent, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnsolicitedPaymentComponent, "app-mark-unsolicited-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
|
|
62
|
+
}
|
|
63
|
+
export {};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
3
|
+
import { INotificationPreview } from '../../interfaces/INotificationPreview';
|
|
4
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
5
|
+
import { NotificationPreviewRequest } from '../../interfaces/NotificationPreviewRequest';
|
|
6
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
7
|
+
import { ErrorHandlerService } from '../../services/shared/error-handler.service';
|
|
8
|
+
import { EventEmitter } from '@angular/core';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class NotificationPreviewComponent implements OnInit {
|
|
11
|
+
private errorHandlerService;
|
|
12
|
+
private notificationService;
|
|
13
|
+
payment: IPayment;
|
|
14
|
+
contactDetails: IRefundContactDetails;
|
|
15
|
+
refundReason: string;
|
|
16
|
+
refundAmount: number;
|
|
17
|
+
paymentReference: string;
|
|
18
|
+
refundReference: string;
|
|
19
|
+
previewJourney: string;
|
|
20
|
+
notificationSent: INotificationPreview;
|
|
21
|
+
notificationPreviewEvent: EventEmitter<INotificationPreview>;
|
|
22
|
+
notification: INotificationPreview;
|
|
23
|
+
notificationPreviewRequest: NotificationPreviewRequest;
|
|
24
|
+
today: number;
|
|
25
|
+
errorMessage: any;
|
|
26
|
+
constructor(errorHandlerService: ErrorHandlerService, notificationService: NotificationService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationPreviewComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationPreviewComponent, "app-notification-preview", never, { "payment": { "alias": "payment"; "required": false; }; "contactDetails": { "alias": "contactDetails"; "required": false; }; "refundReason": { "alias": "refundReason"; "required": false; }; "refundAmount": { "alias": "refundAmount"; "required": false; }; "paymentReference": { "alias": "paymentReference"; "required": false; }; "refundReference": { "alias": "refundReference"; "required": false; }; "previewJourney": { "alias": "previewJourney"; "required": false; }; "notificationSent": { "alias": "notificationSent"; "required": false; }; }, { "notificationPreviewEvent": "notificationPreviewEvent"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PageNotFoundComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { PaymentListService } from '../../services/payment-list/payment-list.service';
|
|
3
|
+
import { IPayments } from '../../interfaces/IPayments';
|
|
4
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
7
|
+
export declare class PaymentListComponent implements OnInit {
|
|
8
|
+
private paymentListService;
|
|
9
|
+
private paymentLibComponent;
|
|
10
|
+
payments: IPayments;
|
|
11
|
+
errorMessage: string;
|
|
12
|
+
code: string;
|
|
13
|
+
constructor(paymentListService: PaymentListService, paymentLibComponent: PaymentLibAlias);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentListComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentListComponent, "ccpay-payment-list", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
3
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
4
|
+
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
5
|
+
import { IFee } from '../../interfaces/IFee';
|
|
6
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
7
|
+
import { IRemission } from '../../interfaces/IRemission';
|
|
8
|
+
import { IPaymentFailure } from '../../interfaces/IPaymentFailure';
|
|
9
|
+
import { OrderslistService } from '../../services/orderslist.service';
|
|
10
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
11
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
14
|
+
export declare class PaymentViewComponent implements OnInit {
|
|
15
|
+
private paymentViewService;
|
|
16
|
+
private notificationService;
|
|
17
|
+
private paymentLibComponent;
|
|
18
|
+
private cd;
|
|
19
|
+
private OrderslistService;
|
|
20
|
+
isTurnOff: boolean;
|
|
21
|
+
isTakePayment: boolean;
|
|
22
|
+
caseType: boolean;
|
|
23
|
+
orderRef: string;
|
|
24
|
+
orderStatus: string;
|
|
25
|
+
orderTotalPayments: number;
|
|
26
|
+
payment: IPayment;
|
|
27
|
+
LOGGEDINUSERROLES: string[];
|
|
28
|
+
ISPAYMENTSTATUSENABLED: string;
|
|
29
|
+
orderParty: string;
|
|
30
|
+
orderCreated: Date;
|
|
31
|
+
orderCCDEvent: string;
|
|
32
|
+
orderFeesTotal: number;
|
|
33
|
+
orderRemissionTotal: number;
|
|
34
|
+
orderDetail: any[];
|
|
35
|
+
fees: any;
|
|
36
|
+
isFullyRefund: boolean;
|
|
37
|
+
isServiceRequest: string;
|
|
38
|
+
errorMsg: string;
|
|
39
|
+
paymentGroup: IPaymentGroup;
|
|
40
|
+
errorMessage: string;
|
|
41
|
+
ccdCaseNumber: string;
|
|
42
|
+
selectedOption: string;
|
|
43
|
+
dcnNumber: string;
|
|
44
|
+
isStatusAllocated: boolean;
|
|
45
|
+
isRemissionsMatch: boolean;
|
|
46
|
+
feeId: IFee;
|
|
47
|
+
viewStatus: string;
|
|
48
|
+
isRefundRemission: boolean;
|
|
49
|
+
isStrategicFixEnable: boolean;
|
|
50
|
+
isAddFeeBtnEnabled: boolean;
|
|
51
|
+
isIssueRefunfBtnEnable: boolean;
|
|
52
|
+
allowedRolesToAccessRefund: string[];
|
|
53
|
+
remissions: IRemission[];
|
|
54
|
+
allPaymentsFailure: IPaymentFailure[];
|
|
55
|
+
selectedPaymentsStatus: IPaymentFailure;
|
|
56
|
+
remissionFeeAmt: number;
|
|
57
|
+
isRefundRemissionBtnEnable: boolean;
|
|
58
|
+
serviceReference: string;
|
|
59
|
+
isFromServiceRequestPage: boolean;
|
|
60
|
+
isFromPaymentDetailPage: boolean;
|
|
61
|
+
paymentFees: IFee[];
|
|
62
|
+
paymentType: string;
|
|
63
|
+
isContinueBtnDisabled: boolean;
|
|
64
|
+
viewCompStatus: string;
|
|
65
|
+
contactDetailsObj: IRefundContactDetails;
|
|
66
|
+
notification: any;
|
|
67
|
+
isConfirmationBtnDisabled: boolean;
|
|
68
|
+
refundReference: string;
|
|
69
|
+
refundAmount: string;
|
|
70
|
+
templateInstructionType: string;
|
|
71
|
+
notificationPreview: boolean;
|
|
72
|
+
constructor(paymentViewService: PaymentViewService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
73
|
+
ngAfterContentChecked(): void;
|
|
74
|
+
ngOnInit(): void;
|
|
75
|
+
get isCardPayment(): boolean;
|
|
76
|
+
get isTelephonyPayment(): boolean;
|
|
77
|
+
goToPaymentList(): void;
|
|
78
|
+
getOverPaymentValue(): number;
|
|
79
|
+
goToServiceRequestPage(): void;
|
|
80
|
+
goToCaseTransationPage(event: any): void;
|
|
81
|
+
addRemission(fee: IFee): void;
|
|
82
|
+
checkForFees(paymentGroup: any): boolean;
|
|
83
|
+
processRefund(): void;
|
|
84
|
+
gotoAddressPage(note?: IRefundContactDetails): void;
|
|
85
|
+
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
86
|
+
goToPaymentViewComponent(): void;
|
|
87
|
+
issueRefund(paymentgrp: IPaymentGroup): void;
|
|
88
|
+
isAnyRefundsForThisCase(): boolean;
|
|
89
|
+
showOverPayment(): void;
|
|
90
|
+
showIssueRefundPage(paymentgrp: IPaymentGroup): void;
|
|
91
|
+
getBalanceToBePaid(): number;
|
|
92
|
+
getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission;
|
|
93
|
+
chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
94
|
+
chkIsAddRefundBtnEnable(remission: IRemission): boolean;
|
|
95
|
+
canItBeRefunded(remission: IRemission): boolean;
|
|
96
|
+
chkIsAddRemissionBtnEnable(fee: IFee): boolean;
|
|
97
|
+
selectPymentOption(paymentType: string): void;
|
|
98
|
+
continuePayment(paymentgrp: IPaymentGroup): void;
|
|
99
|
+
gotoPaymentSelectPage(event: Event): void;
|
|
100
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
101
|
+
resetOrderData(): void;
|
|
102
|
+
goToPaymentFailuePage(payment: any): void;
|
|
103
|
+
goBackToPaymentView(event: any): void;
|
|
104
|
+
getTemplateInstructionType(payment: IPayment): void;
|
|
105
|
+
showNotificationPreview(): void;
|
|
106
|
+
hideNotificationPreview(): void;
|
|
107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentViewComponent, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaymentViewComponent, "ccpay-payment-view", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "isTakePayment": { "alias": "isTakePayment"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "payment": { "alias": "payment"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; }, {}, never, never, true, never>;
|
|
109
|
+
}
|
|
110
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PbaDetailsComponent implements OnInit {
|
|
5
|
+
payment: IPayment;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PbaDetailsComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PbaDetailsComponent, "ccpay-pba-details", never, { "payment": { "alias": "payment"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { RpxLanguage } from 'rpx-xui-translation';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
7
|
+
export declare class PbaPaymentComponent implements OnInit {
|
|
8
|
+
private paymentLibComponent;
|
|
9
|
+
private paymentViewService;
|
|
10
|
+
pbaPayOrderRef: any;
|
|
11
|
+
viewStatus: string;
|
|
12
|
+
pbaAccountList: string[];
|
|
13
|
+
isPBAAccountHold: boolean;
|
|
14
|
+
errorMsg: any;
|
|
15
|
+
isCardPaymentSuccess: boolean;
|
|
16
|
+
isInSufficiantFund: boolean;
|
|
17
|
+
isPBAAccountNotExist: boolean;
|
|
18
|
+
isPBAServerError: boolean;
|
|
19
|
+
isGetPBAAccountSucceed: boolean;
|
|
20
|
+
selectedPbaAccount: string;
|
|
21
|
+
pbaAccountRef: string;
|
|
22
|
+
isPbaAccountSelected: boolean;
|
|
23
|
+
isCardPaymentSelected: boolean;
|
|
24
|
+
isPBADropdownSelected: boolean;
|
|
25
|
+
isContinueButtondisabled: boolean;
|
|
26
|
+
isPBAAccountPaymentSuccess: boolean;
|
|
27
|
+
pbaAccountrPaymentResult: any;
|
|
28
|
+
orgName: string;
|
|
29
|
+
constructor(paymentLibComponent: PaymentLibAlias, paymentViewService: PaymentViewService);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
getPersistedLanguage(): RpxLanguage;
|
|
32
|
+
buttonCheck(): void;
|
|
33
|
+
selectpbaaccount(args: any): void;
|
|
34
|
+
saveAndContinue(): void;
|
|
35
|
+
cardPayment(): void;
|
|
36
|
+
selectPaymentMethod(type: string): void;
|
|
37
|
+
gotoCasetransationPage(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PbaPaymentComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PbaPaymentComponent, "ccpay-pba-payment", never, { "pbaPayOrderRef": { "alias": "pbaPayOrderRef"; "required": false; }; }, {}, never, never, true, never>;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
4
|
+
import { IRefundAction } from '../../interfaces/IRefundAction';
|
|
5
|
+
import { IRefundList } from '../../interfaces/IRefundList';
|
|
6
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
7
|
+
import { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';
|
|
8
|
+
import { OrderslistService } from '../../services/orderslist.service';
|
|
9
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
10
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
11
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
12
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
13
|
+
import { INotificationPreview } from '../../interfaces/INotificationPreview';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
16
|
+
export declare class ProcessRefundComponent implements OnInit {
|
|
17
|
+
private RefundsService;
|
|
18
|
+
private paymentViewService;
|
|
19
|
+
private formBuilder;
|
|
20
|
+
private OrderslistService;
|
|
21
|
+
private notificationService;
|
|
22
|
+
private paymentLibComponent;
|
|
23
|
+
private router;
|
|
24
|
+
private activeRoute;
|
|
25
|
+
refundReference: string;
|
|
26
|
+
refundlistsource: IRefundList;
|
|
27
|
+
processRefundForm: FormGroup;
|
|
28
|
+
errorMessage: {
|
|
29
|
+
title: string;
|
|
30
|
+
body: string;
|
|
31
|
+
showError: any;
|
|
32
|
+
};
|
|
33
|
+
sendmeback: string;
|
|
34
|
+
viewStatus: string;
|
|
35
|
+
refundActionList: IRefundAction[];
|
|
36
|
+
refundRejectReasonList: IRefundRejectReason[];
|
|
37
|
+
isSendMeBackClicked: boolean;
|
|
38
|
+
isRejectClicked: boolean;
|
|
39
|
+
isOtherClicked: boolean;
|
|
40
|
+
isSuccesspageEnable: boolean;
|
|
41
|
+
refundActionsHasError: boolean;
|
|
42
|
+
refundRejectReasonHasError: boolean;
|
|
43
|
+
isReasonFieldEmpty: boolean;
|
|
44
|
+
isReasonFieldInvalid: boolean;
|
|
45
|
+
reasonFieldMinHasError: boolean;
|
|
46
|
+
reasonFieldMaxHasError: boolean;
|
|
47
|
+
isReasonEmpty: boolean;
|
|
48
|
+
isReasonInvalid: boolean;
|
|
49
|
+
successMsg: string;
|
|
50
|
+
navigationpage: string;
|
|
51
|
+
ccdCaseNumber: string;
|
|
52
|
+
isFromRefundListPage: boolean;
|
|
53
|
+
cpoDetails: any;
|
|
54
|
+
isCPODown: boolean;
|
|
55
|
+
isConfirmButtondisabled: boolean;
|
|
56
|
+
paymentObj: IPayment;
|
|
57
|
+
templateInstructionType: string;
|
|
58
|
+
notificationPreview: boolean;
|
|
59
|
+
notificationPreviewObj: INotificationPreview;
|
|
60
|
+
constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias, router: Router, activeRoute: ActivatedRoute);
|
|
61
|
+
ngOnInit(): void;
|
|
62
|
+
checkRefundActions(code: string): void;
|
|
63
|
+
getNotificationPreviewObj(notificationPreviewObj: INotificationPreview): void;
|
|
64
|
+
processRefundSubmit(): void;
|
|
65
|
+
getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
|
|
66
|
+
title: string;
|
|
67
|
+
body: string;
|
|
68
|
+
showError: any;
|
|
69
|
+
};
|
|
70
|
+
loadRefundListPage(): void;
|
|
71
|
+
loadRefundsHomePage(): void;
|
|
72
|
+
redirecttoRefundListPage(): void;
|
|
73
|
+
loadCaseTransactionPage(): void;
|
|
74
|
+
resetForm(vals: any, field: any): void;
|
|
75
|
+
goToCaseReview(): void;
|
|
76
|
+
getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
|
|
77
|
+
showNotificationPreview(): void;
|
|
78
|
+
hideNotificationPreview(): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessRefundComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessRefundComponent, "ccpay-process-refund", never, { "refundReference": { "alias": "refundReference"; "required": false; }; "refundlistsource": { "alias": "refundlistsource"; "required": false; }; }, {}, never, never, false, never>;
|
|
81
|
+
}
|
|
82
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
3
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProcessedPaymentsComponent implements OnInit {
|
|
7
|
+
private router;
|
|
8
|
+
private bulkScaningPaymentService;
|
|
9
|
+
NONPAYMENTS: IPayment[];
|
|
10
|
+
goToPaymentViewComponent: EventEmitter<any>;
|
|
11
|
+
constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
trimUnderscore(method: string): string;
|
|
14
|
+
redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessedPaymentsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessedPaymentsComponent, "ccpay-app-processed-payments", never, { "NONPAYMENTS": { "alias": "NONPAYMENTS"; "required": false; }; }, { "goToPaymentViewComponent": "goToPaymentViewComponent"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
|
+
import { IRefundList } from '../../interfaces/IRefundList';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RefundListComponent implements OnInit {
|
|
6
|
+
private refundService;
|
|
7
|
+
USERID: string;
|
|
8
|
+
LOGGEDINUSERROLES: any[];
|
|
9
|
+
LOGGEDINUSEREMAIL: string;
|
|
10
|
+
constructor(refundService: RefundsService);
|
|
11
|
+
tableApprovalHeader: string;
|
|
12
|
+
tableRejectedHeader: string;
|
|
13
|
+
submittedRefundList: IRefundList[];
|
|
14
|
+
rejectedRefundList: IRefundList[];
|
|
15
|
+
approvalStatus: string;
|
|
16
|
+
rejectStatus: string;
|
|
17
|
+
errorMessage: any;
|
|
18
|
+
isApproveTableVisible: boolean;
|
|
19
|
+
isRejectTableVisible: boolean;
|
|
20
|
+
dropdownvalue: string;
|
|
21
|
+
isAuthorized: boolean;
|
|
22
|
+
userLst: any;
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefundListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefundListComponent, "ccpay-refund-list", never, { "USERID": { "alias": "USERID"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "LOGGEDINUSEREMAIL": { "alias": "LOGGEDINUSEREMAIL"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
4
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
5
|
+
import { IRefundList } from '../../interfaces/IRefundList';
|
|
6
|
+
import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
|
|
7
|
+
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
9
|
+
import { IRefundStatus } from '../../interfaces/IRefundStatus';
|
|
10
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
11
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
12
|
+
import { IFee } from '../../interfaces/IFee';
|
|
13
|
+
import { IRefundFee } from '../../interfaces/IRefundFee';
|
|
14
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
17
|
+
export declare class RefundStatusComponent implements OnInit {
|
|
18
|
+
private formBuilder;
|
|
19
|
+
private refundService;
|
|
20
|
+
private notificationService;
|
|
21
|
+
private paymentLibComponent;
|
|
22
|
+
private OrderslistService;
|
|
23
|
+
private paymentViewService;
|
|
24
|
+
LOGGEDINUSERROLES: string[];
|
|
25
|
+
API_ROOT: string;
|
|
26
|
+
ccdCaseNumber: string;
|
|
27
|
+
isTurnOff: boolean;
|
|
28
|
+
orderParty: string;
|
|
29
|
+
refundStatusForm: FormGroup;
|
|
30
|
+
selectedRefundReason: string;
|
|
31
|
+
rejectedRefundList: IRefundList[];
|
|
32
|
+
notificationList: any;
|
|
33
|
+
notification: any;
|
|
34
|
+
approvalStatus: string;
|
|
35
|
+
rejectStatus: string;
|
|
36
|
+
errorMessage: any;
|
|
37
|
+
viewName: string;
|
|
38
|
+
refundReason: string;
|
|
39
|
+
refundlist: IRefundList;
|
|
40
|
+
bsPaymentDcnNumber: string;
|
|
41
|
+
isCallFromRefundList: boolean;
|
|
42
|
+
refundButtonState: string;
|
|
43
|
+
isAmountEmpty: boolean;
|
|
44
|
+
isReasonEmpty: boolean;
|
|
45
|
+
amountHasError: boolean;
|
|
46
|
+
isRemissionLessThanFeeError: boolean;
|
|
47
|
+
refundHasError: boolean;
|
|
48
|
+
refundReasons: any[];
|
|
49
|
+
refundStatusHistories: IRefundStatus[];
|
|
50
|
+
refundNotifications: IRefundStatus[];
|
|
51
|
+
isResendOperationSuccess: boolean;
|
|
52
|
+
isEditDetailsClicked: boolean;
|
|
53
|
+
isEditAddressDeatilsClicked: boolean;
|
|
54
|
+
addressDetails: IRefundContactDetails;
|
|
55
|
+
refundReference: string;
|
|
56
|
+
refundAmount: string;
|
|
57
|
+
refundCode: string;
|
|
58
|
+
isRefundBtnDisabled: boolean;
|
|
59
|
+
isFromPayBubble: boolean;
|
|
60
|
+
oldRefundReason: string;
|
|
61
|
+
refundreason: string;
|
|
62
|
+
navigationpage: string;
|
|
63
|
+
isLastUpdatedByCurrentUser: boolean;
|
|
64
|
+
isProcessRefund: boolean;
|
|
65
|
+
changedAmount: number;
|
|
66
|
+
isRemissionsMatch: boolean;
|
|
67
|
+
payment: IPayment;
|
|
68
|
+
changeRefundReason: string;
|
|
69
|
+
fees: IFee[];
|
|
70
|
+
refundFees: IRefundFee[];
|
|
71
|
+
paymentObj: IPayment;
|
|
72
|
+
templateInstructionType: string;
|
|
73
|
+
notificationSentViewIndex: number;
|
|
74
|
+
notificationPreview: boolean;
|
|
75
|
+
notificationSentView: boolean;
|
|
76
|
+
allowedRolesToAccessRefund: string[];
|
|
77
|
+
isRefundStatusResetBtnDisabled: boolean;
|
|
78
|
+
constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
|
|
79
|
+
ngOnInit(): void;
|
|
80
|
+
getRefundsStatusHistoryList(): void;
|
|
81
|
+
getRefundsNotification(): void;
|
|
82
|
+
goToRefundView(refundlist: IRefundList, navigationpage: string): void;
|
|
83
|
+
loadCaseTransactionPage(): void;
|
|
84
|
+
loadRefundListPage(): void;
|
|
85
|
+
gotoReviewDetailsPage(event: any): void;
|
|
86
|
+
gotoReviewAndReSubmitPage(): void;
|
|
87
|
+
gotoRefundReasonPage(refundReason: string): void;
|
|
88
|
+
gotoAmountPage(): void;
|
|
89
|
+
goToReviewAndSubmitView(): void;
|
|
90
|
+
resetRemissionForm(val: any, field: any): void;
|
|
91
|
+
selectRadioButton(key: any, value: any): void;
|
|
92
|
+
getRefundListReason(refundListReason: any): void;
|
|
93
|
+
getRefundAmount(amount: number): void;
|
|
94
|
+
getRefundFees(fees: IFee[]): void;
|
|
95
|
+
gotoReviewRefundConfirmationPage(): void;
|
|
96
|
+
gotoEditAddressDetails(note: IRefundsNotifications): void;
|
|
97
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
98
|
+
getContactDetailsForRefundList(obj: IRefundContactDetails): void;
|
|
99
|
+
gotoEditDetailsPage(note?: any, view?: string): void;
|
|
100
|
+
submitEditDetail(): void;
|
|
101
|
+
putResend(notification: IRefundsNotifications): void;
|
|
102
|
+
gotoRefundViewPageCancelBtnClicked(event: Event): void;
|
|
103
|
+
gotoRefundReviewAndSubmitViewPageCancelBtnClicked(event: Event): void;
|
|
104
|
+
goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
|
|
105
|
+
getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
|
|
106
|
+
showNotificationPreview(): void;
|
|
107
|
+
hideNotificationPreview(): void;
|
|
108
|
+
showNotificationSentView(index: number): void;
|
|
109
|
+
hideNotificationSentView(): void;
|
|
110
|
+
check4AllowedRoles2DisplayEditRefundBtn: () => boolean;
|
|
111
|
+
displayResetRefundConfirmation(): void;
|
|
112
|
+
redirectToRefundListPage(): void;
|
|
113
|
+
postResetRefund(): void;
|
|
114
|
+
getResetRefundVisibility(): void;
|
|
115
|
+
isCurrentRefundVisibleForReset(): boolean;
|
|
116
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefundStatusComponent, never>;
|
|
117
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefundStatusComponent, "ccpay-refund-status", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; }, {}, never, never, true, never>;
|
|
118
|
+
}
|
|
119
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
5
|
+
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
6
|
+
import { ErrorHandlerService } from '../../services/shared/error-handler.service';
|
|
7
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
8
|
+
import { XlFileService } from '../../services/xl-file/xl-file.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
type PaymentLibAlias = PaymentLibComponent;
|
|
11
|
+
export declare class ReportsComponent implements OnInit {
|
|
12
|
+
private xlFileService;
|
|
13
|
+
private errorHandlerService;
|
|
14
|
+
private formBuilder;
|
|
15
|
+
private bulkScaningPaymentService;
|
|
16
|
+
private paymentLibComponent;
|
|
17
|
+
private paymentViewService;
|
|
18
|
+
ISPAYMENTSTATUSENABLED: boolean;
|
|
19
|
+
fmt: string;
|
|
20
|
+
loc: string;
|
|
21
|
+
reportsForm: FormGroup;
|
|
22
|
+
startDate: string;
|
|
23
|
+
endDate: string;
|
|
24
|
+
errorMeaagse: string;
|
|
25
|
+
ccdCaseNumber: string;
|
|
26
|
+
isDownLoadButtondisabled: Boolean;
|
|
27
|
+
isStartDateLesthanEndDate: Boolean;
|
|
28
|
+
isDateBetwnMonth: Boolean;
|
|
29
|
+
isDateRangeBetnWeek: Boolean;
|
|
30
|
+
errorMessage: any;
|
|
31
|
+
paymentGroups: IPaymentGroup[];
|
|
32
|
+
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibAlias, paymentViewService: PaymentViewService);
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
getToday(): string;
|
|
35
|
+
getSelectedFromDate(): void;
|
|
36
|
+
validateDates(reportName: any): void;
|
|
37
|
+
fromValidation(): void;
|
|
38
|
+
downloadReport(): void;
|
|
39
|
+
getFileName(selectedOption: string, startDate: string, endDate: string): string;
|
|
40
|
+
tranformDate(strDate: string): string;
|
|
41
|
+
getTwodigit(input: number): string;
|
|
42
|
+
getCamelCaseString(selectedOption: any): any;
|
|
43
|
+
applyDateFormat(res: any): any;
|
|
44
|
+
multiDateFormater(dateStr: any): any;
|
|
45
|
+
convertToFloatValue(amt: any): string;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportsComponent, "ccpay-reports", never, { "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; }, {}, never, never, false, never>;
|
|
48
|
+
}
|
|
49
|
+
export {};
|