@hmcts/ccpay-web-component 5.0.1 → 5.0.2-beta100
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/bundles/hmcts-ccpay-web-component.umd.js +8801 -6260
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/hmcts-ccpay-web-component.js +42 -38
- package/esm2015/lib/components/add-remission/add-remission.component.js +810 -198
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +137 -86
- package/esm2015/lib/components/contact-details/contact-details.component.js +447 -0
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +17 -14
- package/esm2015/lib/components/payment-view/payment-view.component.js +290 -119
- package/esm2015/lib/components/pba-payment/pba-payment.component.js +248 -0
- package/esm2015/lib/components/process-refund/process-refund.component.js +94 -9
- package/esm2015/lib/components/refund-list/refund-list.component.js +6 -10
- package/esm2015/lib/components/refund-status/refund-status.component.js +231 -67
- package/esm2015/lib/components/service-request/service-request.component.js +533 -0
- package/esm2015/lib/components/status-history/status-history.component.js +2 -2
- package/esm2015/lib/components/table/table.component.js +48 -16
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
- package/esm2015/lib/interfaces/IFee.js +15 -1
- package/esm2015/lib/interfaces/IPayment.js +9 -1
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
- package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm2015/lib/interfaces/IRefundFee.js +21 -0
- package/esm2015/lib/interfaces/IRefundList.js +7 -1
- package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm2015/lib/interfaces/IRemission.js +7 -1
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +10 -2
- package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +23 -0
- package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +32 -0
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +16 -2
- package/esm2015/lib/payment-lib.component.js +62 -6
- package/esm2015/lib/payment-lib.module.js +8 -2
- package/esm2015/lib/payment-lib.service.js +31 -1
- package/esm2015/lib/services/notification/notification.service.js +85 -0
- package/esm2015/lib/services/orderslist.service.js +193 -1
- package/esm2015/lib/services/payment-view/payment-view.service.js +36 -2
- package/esm2015/lib/services/refunds/refunds.service.js +25 -3
- package/esm2015/lib/services/shared/error-handler.service.js +49 -22
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +16 -3
- package/esm5/hmcts-ccpay-web-component.js +42 -38
- package/esm5/lib/components/add-remission/add-remission.component.js +936 -204
- package/esm5/lib/components/case-transactions/case-transactions.component.js +146 -90
- package/esm5/lib/components/contact-details/contact-details.component.js +472 -0
- package/esm5/lib/components/fee-summary/fee-summary.component.js +17 -14
- package/esm5/lib/components/payment-view/payment-view.component.js +328 -137
- package/esm5/lib/components/pba-payment/pba-payment.component.js +269 -0
- package/esm5/lib/components/process-refund/process-refund.component.js +94 -9
- package/esm5/lib/components/refund-list/refund-list.component.js +6 -10
- package/esm5/lib/components/refund-status/refund-status.component.js +270 -66
- package/esm5/lib/components/service-request/service-request.component.js +589 -0
- package/esm5/lib/components/status-history/status-history.component.js +2 -2
- package/esm5/lib/components/table/table.component.js +50 -17
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
- package/esm5/lib/interfaces/IFee.js +15 -1
- package/esm5/lib/interfaces/IPayment.js +9 -1
- package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
- package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm5/lib/interfaces/IRefundFee.js +21 -0
- package/esm5/lib/interfaces/IRefundList.js +7 -1
- package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm5/lib/interfaces/IRemission.js +7 -1
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +8 -2
- package/esm5/lib/interfaces/IserviceRequestCardPayment.js +22 -0
- package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +28 -0
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +13 -2
- package/esm5/lib/payment-lib.component.js +58 -5
- package/esm5/lib/payment-lib.module.js +8 -2
- package/esm5/lib/payment-lib.service.js +45 -1
- package/esm5/lib/services/notification/notification.service.js +89 -0
- package/esm5/lib/services/orderslist.service.js +256 -1
- package/esm5/lib/services/payment-view/payment-view.service.js +49 -2
- package/esm5/lib/services/refunds/refunds.service.js +31 -3
- package/esm5/lib/services/shared/error-handler.service.js +49 -22
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +16 -3
- package/fesm2015/hmcts-ccpay-web-component.js +2966 -730
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +8935 -6333
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +41 -37
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +59 -4
- package/lib/components/case-transactions/case-transactions.component.d.ts +10 -4
- package/lib/components/contact-details/contact-details.component.d.ts +49 -0
- package/lib/components/payment-view/payment-view.component.d.ts +38 -9
- package/lib/components/pba-payment/pba-payment.component.d.ts +33 -0
- package/lib/components/process-refund/process-refund.component.d.ts +11 -1
- package/lib/components/refund-status/refund-status.component.d.ts +35 -6
- package/lib/components/service-request/service-request.component.d.ts +103 -0
- package/lib/components/table/table.component.d.ts +6 -2
- package/lib/interfaces/IFee.d.ts +7 -0
- package/lib/interfaces/IPayment.d.ts +4 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +4 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +3 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
- package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
- package/lib/interfaces/IserviceRequestPbaPayment.d.ts +8 -0
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +6 -1
- package/lib/payment-lib.component.d.ts +20 -1
- package/lib/payment-lib.service.d.ts +6 -0
- package/lib/services/notification/notification.service.d.ts +15 -0
- package/lib/services/orderslist.service.d.ts +34 -0
- package/lib/services/payment-view/payment-view.service.d.ts +5 -0
- package/lib/services/refunds/refunds.service.d.ts +2 -0
- package/package.json +5 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
|
|
3
3
|
import { IFee } from '../../interfaces/IFee';
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
5
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
@@ -7,9 +7,11 @@ import { PaymentLibComponent } from '../../payment-lib.component';
|
|
|
7
7
|
import { IPayment } from '../../interfaces/IPayment';
|
|
8
8
|
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
9
9
|
import { IRefundReasons } from '../../interfaces/IRefundReasons';
|
|
10
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
10
11
|
import { ChangeDetectorRef } from '@angular/core';
|
|
11
12
|
import { IRemission } from '../../interfaces/IRemission';
|
|
12
13
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
14
|
+
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
13
15
|
export declare class AddRemissionComponent implements OnInit {
|
|
14
16
|
private formBuilder;
|
|
15
17
|
private router;
|
|
@@ -19,6 +21,7 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
19
21
|
private cd;
|
|
20
22
|
private OrderslistService;
|
|
21
23
|
fee: IFee;
|
|
24
|
+
fees: any[];
|
|
22
25
|
payment: IPayment;
|
|
23
26
|
remission: IRemission;
|
|
24
27
|
ccdCaseNumber: string;
|
|
@@ -30,18 +33,34 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
30
33
|
isOldPcipalOff: boolean;
|
|
31
34
|
isNewPcipalOff: boolean;
|
|
32
35
|
isStrategicFixEnable: boolean;
|
|
33
|
-
orderStatus: string;
|
|
34
36
|
paidAmount: any;
|
|
35
37
|
isFromRefundListPage: boolean;
|
|
36
38
|
isFromPaymentDetailPage: boolean;
|
|
37
39
|
isFromServiceRequestPage: boolean;
|
|
40
|
+
isFullyRefund: boolean;
|
|
38
41
|
feeamount: number;
|
|
42
|
+
refundPaymentReference: string;
|
|
43
|
+
isFromRefundStatusPage: boolean;
|
|
44
|
+
changeRefundReason: string;
|
|
45
|
+
isServiceRequest: string;
|
|
46
|
+
LOGGEDINUSERROLES: string[];
|
|
47
|
+
orderDetail: any[];
|
|
48
|
+
orderRef: string;
|
|
49
|
+
orderStatus: string;
|
|
50
|
+
orderParty: string;
|
|
51
|
+
orderCreated: Date;
|
|
52
|
+
orderCCDEvent: string;
|
|
53
|
+
takePayment: boolean;
|
|
54
|
+
orderFeesTotal: number;
|
|
55
|
+
orderTotalPayments: number;
|
|
56
|
+
orderRemissionTotal: number;
|
|
39
57
|
cancelRemission: EventEmitter<void>;
|
|
40
58
|
refundListReason: EventEmitter<{
|
|
41
59
|
reason: string;
|
|
42
60
|
code: string;
|
|
43
61
|
}>;
|
|
44
62
|
refundListAmount: EventEmitter<string>;
|
|
63
|
+
refundFees: EventEmitter<IFee[]>;
|
|
45
64
|
refund: {
|
|
46
65
|
reason: {
|
|
47
66
|
duplicate: string;
|
|
@@ -50,6 +69,8 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
50
69
|
other: string;
|
|
51
70
|
};
|
|
52
71
|
};
|
|
72
|
+
contactDetailsObj: IRefundContactDetails;
|
|
73
|
+
notification: any;
|
|
53
74
|
remissionForm: FormGroup;
|
|
54
75
|
hasErrors: boolean;
|
|
55
76
|
viewStatus: string;
|
|
@@ -79,6 +100,7 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
79
100
|
isPaymentSuccess: boolean;
|
|
80
101
|
isRemissionApplied: boolean;
|
|
81
102
|
remissionamt: number;
|
|
103
|
+
elementId: any;
|
|
82
104
|
commonRefundReasons: any[];
|
|
83
105
|
showReasonText: boolean;
|
|
84
106
|
isRefundReasonsSelected: boolean;
|
|
@@ -87,6 +109,21 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
87
109
|
refundReasons: IRefundReasons[];
|
|
88
110
|
pattern1: string;
|
|
89
111
|
pattern2: string;
|
|
112
|
+
sendOrderDetail: any[];
|
|
113
|
+
sendOrderRef: string;
|
|
114
|
+
paymentReference: string;
|
|
115
|
+
class: string;
|
|
116
|
+
errorMsg: any[];
|
|
117
|
+
totalRefundAmount: number;
|
|
118
|
+
quantityUpdated: number;
|
|
119
|
+
fullRefund: boolean;
|
|
120
|
+
allowedRefundAmount: number;
|
|
121
|
+
isRemissionsMatch: boolean;
|
|
122
|
+
paymentFees: IFee[];
|
|
123
|
+
paymentGroup: IPaymentGroup;
|
|
124
|
+
isStatusAllocated: boolean;
|
|
125
|
+
isFromCheckAnsPage: boolean;
|
|
126
|
+
refundAmtForFeeVolumes: number;
|
|
90
127
|
component: {
|
|
91
128
|
account_number: string;
|
|
92
129
|
amount: number;
|
|
@@ -108,24 +145,42 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
108
145
|
};
|
|
109
146
|
constructor(formBuilder: FormBuilder, router: Router, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, refundService: RefundsService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
110
147
|
ngOnInit(): void;
|
|
148
|
+
goToPaymentViewComponent(): void;
|
|
149
|
+
refundFeesList(): void;
|
|
150
|
+
readonly feesList: FormArray;
|
|
151
|
+
noneSelected(): boolean;
|
|
152
|
+
check_en(i: any, v1: any, AppAmt: any, Volume: any): void;
|
|
111
153
|
addRemission(): void;
|
|
112
154
|
confirmRemission(): void;
|
|
113
155
|
resetRemissionForm(val: any, field: any): void;
|
|
114
156
|
addRemissionCode(): void;
|
|
115
157
|
gotoAddRetroRemissionCodePage(): void;
|
|
116
158
|
gotoCheckRetroRemissionPage(payment: IPayment): void;
|
|
159
|
+
gotoAmountRetroRemission(): void;
|
|
117
160
|
gotoProcessRetroRemissionPage(): void;
|
|
161
|
+
gotoProcessRetroRemission(note?: IRefundContactDetails): void;
|
|
118
162
|
confirmRetroRemission(): void;
|
|
119
163
|
processRefund(): void;
|
|
120
164
|
gotoIssueRefundConfirmation(payment: IPayment): void;
|
|
121
165
|
gotoIssueRefundPage(): void;
|
|
166
|
+
gotoIssuePage(isFullyRefund: any): void;
|
|
167
|
+
calAmtToRefund(value: any, amount: any, volume: any, i: any): void;
|
|
168
|
+
gotoContactDetailsPage(note?: IRefundContactDetails): void;
|
|
169
|
+
getRefundReasons(): void;
|
|
170
|
+
getErrorClass(elementId: any): void;
|
|
122
171
|
changeIssueRefundReason(): void;
|
|
123
|
-
confirmIssueRefund(): void;
|
|
124
|
-
|
|
172
|
+
confirmIssueRefund(isFullyRefund: any): void;
|
|
173
|
+
gotoRefundReasonPage(): void;
|
|
125
174
|
selectRadioButton(key: any, value: any): void;
|
|
126
175
|
selectchange(args: any): void;
|
|
176
|
+
getContactDetails(obj: IRefundContactDetails, type: any): void;
|
|
177
|
+
gotoPartialFeeRefundScreen(): void;
|
|
127
178
|
gotoServiceRequestPage(event: any): void;
|
|
179
|
+
gotoAddressPage(note?: IRefundContactDetails): void;
|
|
180
|
+
gotoRemissionSuccess(event: Event): void;
|
|
128
181
|
gotoCasetransationPage(): void;
|
|
129
182
|
gotoCasetransationPageCancelBtnClicked(event: Event): void;
|
|
183
|
+
resetOrderData(): void;
|
|
184
|
+
changeRefundAmount(): void;
|
|
130
185
|
getFormattedCurrency(currency: number): string | number;
|
|
131
186
|
}
|
|
@@ -19,6 +19,8 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
19
19
|
private paymentLibComponent;
|
|
20
20
|
private OrderslistService;
|
|
21
21
|
LOGGEDINUSERROLES: string[];
|
|
22
|
+
isTakePayment: boolean;
|
|
23
|
+
isFromServiceRequestPage: boolean;
|
|
22
24
|
takePayment: boolean;
|
|
23
25
|
servicerequest: string;
|
|
24
26
|
ccdCaseNumber: string;
|
|
@@ -54,12 +56,12 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
54
56
|
isRemoveBtnDisabled: boolean;
|
|
55
57
|
feeId: IFee;
|
|
56
58
|
clAmountDue: number;
|
|
59
|
+
overPaymentAmount: number;
|
|
57
60
|
unprocessedRecordCount: number;
|
|
58
61
|
isFeeRecordsExist: boolean;
|
|
59
62
|
isGrpOutstandingAmtPositive: boolean;
|
|
60
63
|
totalRefundAmount: Number;
|
|
61
64
|
caseType: String;
|
|
62
|
-
lsCcdNumber: any;
|
|
63
65
|
payment: IPayment;
|
|
64
66
|
paymentGroup: IPaymentGroup;
|
|
65
67
|
paymentView: IPaymentView;
|
|
@@ -67,13 +69,14 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
67
69
|
isAddRemissionEnable: boolean;
|
|
68
70
|
orderRemissionDetails: any[];
|
|
69
71
|
orderLevelFees: IOrderReferenceFee[];
|
|
72
|
+
ispaymentGroupApisuccess: boolean;
|
|
70
73
|
cpoDetails: any;
|
|
71
74
|
orderRef: string;
|
|
72
75
|
orderStatus: string;
|
|
73
76
|
orderParty: string;
|
|
74
77
|
orderCreated: Date;
|
|
75
78
|
orderCCDEvent: string;
|
|
76
|
-
|
|
79
|
+
serviceRequestValue: string;
|
|
77
80
|
orderAddBtnEnable: boolean;
|
|
78
81
|
orderFeesTotal: number;
|
|
79
82
|
orderRemissionTotal: number;
|
|
@@ -86,7 +89,8 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
86
89
|
isAddRemissionBtnEnabled: boolean;
|
|
87
90
|
isRefundRemissionBtnEnable: boolean;
|
|
88
91
|
allowedRolesToAccessRefund: string[];
|
|
89
|
-
|
|
92
|
+
isEligible4PBAPayment: string[];
|
|
93
|
+
currentDate: Date;
|
|
90
94
|
navigationpage: string;
|
|
91
95
|
remissionFeeAmt: number;
|
|
92
96
|
constructor(router: Router, paymentViewService: PaymentViewService, bulkScaningPaymentService: BulkScaningPaymentService, caseTransactionsService: CaseTransactionsService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService);
|
|
@@ -98,7 +102,6 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
98
102
|
resetOrderVariables(): void;
|
|
99
103
|
goToOrderViewDetailSection(orderReferenceObj: any): void;
|
|
100
104
|
redirectToOrderFeeSearchPage(event: any, orderef: any): void;
|
|
101
|
-
goToCaseTransationPage(event: any): void;
|
|
102
105
|
calculateAmounts(): void;
|
|
103
106
|
calculateRefundAmount(): number;
|
|
104
107
|
getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
|
|
@@ -106,6 +109,7 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
106
109
|
addRemission(fee: IFee): void;
|
|
107
110
|
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
108
111
|
redirectToremissionPage(event: any): void;
|
|
112
|
+
goToServiceRequestPage(): void;
|
|
109
113
|
redirectToReportsPage(event: any): void;
|
|
110
114
|
loadFeeSummaryPage(paymentGroup: IPaymentGroup): void;
|
|
111
115
|
goToPaymentViewComponent(paymentGroup: any): void;
|
|
@@ -123,5 +127,7 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
123
127
|
chkIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
124
128
|
chkIsRefundRemissionBtnEnable(): boolean;
|
|
125
129
|
check4AllowedRoles2AccessRefund: () => boolean;
|
|
130
|
+
check4AllowedRoles2AccessPBApayment: () => boolean;
|
|
126
131
|
allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
|
|
132
|
+
loadPBAAccountPage(orderRef: IPayment): void;
|
|
127
133
|
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
5
|
+
export declare class ContactDetailsComponent implements OnInit {
|
|
6
|
+
private formBuilder;
|
|
7
|
+
private notificationService;
|
|
8
|
+
private paymentLibComponent;
|
|
9
|
+
isEditOperation: boolean;
|
|
10
|
+
isEditOperationInRefundList: boolean;
|
|
11
|
+
addressObj: any;
|
|
12
|
+
assignContactDetails: EventEmitter<any>;
|
|
13
|
+
assignContactDetailsInFefundsList: EventEmitter<any>;
|
|
14
|
+
redirectToIssueRefund: EventEmitter<any>;
|
|
15
|
+
pageTitle: string;
|
|
16
|
+
errorMessage: string;
|
|
17
|
+
isEmailSAddressClicked: boolean;
|
|
18
|
+
isShowPickAddress: boolean;
|
|
19
|
+
isPostcodeClicked: boolean;
|
|
20
|
+
isManualAddressClicked: boolean;
|
|
21
|
+
emailAddressForm: FormGroup;
|
|
22
|
+
postCodeForm: FormGroup;
|
|
23
|
+
manualAddressForm: FormGroup;
|
|
24
|
+
addressPostcodeList: any[];
|
|
25
|
+
postcodeAddress: any;
|
|
26
|
+
isAddressBoxEmpty: boolean;
|
|
27
|
+
isEmailEmpty: boolean;
|
|
28
|
+
emailHasError: boolean;
|
|
29
|
+
isPostcodeEmpty: boolean;
|
|
30
|
+
postcodeHasError: boolean;
|
|
31
|
+
isaddressLine1Empty: boolean;
|
|
32
|
+
addressLine1HasError: boolean;
|
|
33
|
+
addressLine2HasError: boolean;
|
|
34
|
+
isTownOrCityEmpty: boolean;
|
|
35
|
+
townOrCityHasError: boolean;
|
|
36
|
+
isCountyEmpty: boolean;
|
|
37
|
+
countyHasError: boolean;
|
|
38
|
+
isMPostcodeEmpty: boolean;
|
|
39
|
+
mpostcodeHasError: boolean;
|
|
40
|
+
isCountryEmpty: boolean;
|
|
41
|
+
constructor(formBuilder: FormBuilder, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent);
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
setEditDetails(): void;
|
|
44
|
+
selectContactOption(type: any, isLinkedClied: any): void;
|
|
45
|
+
finalFormSubmit(): void;
|
|
46
|
+
postcodeValidation(str: any): void;
|
|
47
|
+
redirection(event: any): void;
|
|
48
|
+
resetForm(val: any, field: any): void;
|
|
49
|
+
}
|
|
@@ -7,6 +7,7 @@ import { IPayment } from '../../interfaces/IPayment';
|
|
|
7
7
|
import { IRemission } from '../../interfaces/IRemission';
|
|
8
8
|
import { ChangeDetectorRef } from '@angular/core';
|
|
9
9
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
10
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
10
11
|
export declare class PaymentViewComponent implements OnInit {
|
|
11
12
|
private paymentViewService;
|
|
12
13
|
private paymentLibComponent;
|
|
@@ -17,11 +18,20 @@ export declare class PaymentViewComponent implements OnInit {
|
|
|
17
18
|
caseType: boolean;
|
|
18
19
|
isNewPcipalOff: boolean;
|
|
19
20
|
isOldPcipalOff: boolean;
|
|
20
|
-
orderRef:
|
|
21
|
-
orderStatus:
|
|
22
|
-
orderTotalPayments:
|
|
21
|
+
orderRef: string;
|
|
22
|
+
orderStatus: string;
|
|
23
|
+
orderTotalPayments: number;
|
|
23
24
|
payment: IPayment;
|
|
24
25
|
LOGGEDINUSERROLES: string[];
|
|
26
|
+
orderParty: string;
|
|
27
|
+
orderCreated: Date;
|
|
28
|
+
orderCCDEvent: string;
|
|
29
|
+
orderFeesTotal: number;
|
|
30
|
+
orderRemissionTotal: number;
|
|
31
|
+
orderDetail: any[];
|
|
32
|
+
fees: any;
|
|
33
|
+
isFullyRefund: boolean;
|
|
34
|
+
isServiceRequest: string;
|
|
25
35
|
paymentGroup: IPaymentGroup;
|
|
26
36
|
errorMessage: string;
|
|
27
37
|
ccdCaseNumber: string;
|
|
@@ -39,22 +49,41 @@ export declare class PaymentViewComponent implements OnInit {
|
|
|
39
49
|
remissions: IRemission[];
|
|
40
50
|
remissionFeeAmt: number;
|
|
41
51
|
isRefundRemissionBtnEnable: boolean;
|
|
52
|
+
serviceReference: string;
|
|
53
|
+
isFromServiceRequestPage: boolean;
|
|
54
|
+
isFromPaymentDetailPage: boolean;
|
|
55
|
+
paymentFees: IFee[];
|
|
56
|
+
paymentType: string;
|
|
57
|
+
isContinueBtnDisabled: boolean;
|
|
58
|
+
viewCompStatus: string;
|
|
59
|
+
contactDetailsObj: IRefundContactDetails;
|
|
60
|
+
notification: any;
|
|
61
|
+
isConfirmationBtnDisabled: boolean;
|
|
62
|
+
refundReference: string;
|
|
63
|
+
refundAmount: string;
|
|
42
64
|
constructor(paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
43
65
|
ngAfterContentChecked(): void;
|
|
44
66
|
ngOnInit(): void;
|
|
45
67
|
readonly isCardPayment: boolean;
|
|
46
68
|
readonly isTelephonyPayment: boolean;
|
|
47
69
|
goToPaymentList(): void;
|
|
70
|
+
getOverPaymentValue(): number;
|
|
71
|
+
goToServiceRequestPage(): void;
|
|
48
72
|
goToCaseTransationPage(event: any): void;
|
|
49
73
|
addRemission(fee: IFee): void;
|
|
50
74
|
checkForFees(paymentGroup: any): boolean;
|
|
75
|
+
processRefund(): void;
|
|
76
|
+
gotoAddressPage(note?: IRefundContactDetails): void;
|
|
51
77
|
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
52
|
-
|
|
78
|
+
goToPaymentViewComponent(): void;
|
|
53
79
|
issueRefund(paymentgrp: IPaymentGroup): void;
|
|
54
80
|
getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
81
|
+
chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
82
|
+
chkIsAddRefundBtnEnable(remission: IRemission): boolean;
|
|
83
|
+
chkIsAddRemissionBtnEnable(fee: IFee): boolean;
|
|
84
|
+
selectPymentOption(paymentType: string): void;
|
|
85
|
+
continuePayment(paymentgrp: IPaymentGroup): void;
|
|
86
|
+
gotoPaymentSelectPage(event: Event): void;
|
|
87
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
88
|
+
resetOrderData(): void;
|
|
60
89
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
3
|
+
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
export declare class PbaPaymentComponent implements OnInit {
|
|
5
|
+
private paymentLibComponent;
|
|
6
|
+
private paymentViewService;
|
|
7
|
+
pbaPayOrderRef: any;
|
|
8
|
+
viewStatus: string;
|
|
9
|
+
pbaAccountList: string[];
|
|
10
|
+
isPBAAccountHold: boolean;
|
|
11
|
+
errorMsg: any;
|
|
12
|
+
isCardPaymentSuccess: boolean;
|
|
13
|
+
isInSufficiantFund: boolean;
|
|
14
|
+
isPBAAccountNotExist: boolean;
|
|
15
|
+
isPBAServerError: boolean;
|
|
16
|
+
isGetPBAAccountSucceed: boolean;
|
|
17
|
+
selectedPbaAccount: string;
|
|
18
|
+
pbaAccountRef: string;
|
|
19
|
+
isPbaAccountSelected: boolean;
|
|
20
|
+
isCardPaymentSelected: boolean;
|
|
21
|
+
isPBADropdownSelected: boolean;
|
|
22
|
+
isContinueButtondisabled: boolean;
|
|
23
|
+
isPBAAccountPaymentSuccess: boolean;
|
|
24
|
+
pbaAccountrPaymentResult: any;
|
|
25
|
+
orgName: string;
|
|
26
|
+
constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
selectpbaaccount(args: any): void;
|
|
29
|
+
saveAndContinue(): void;
|
|
30
|
+
cardPayment(): void;
|
|
31
|
+
selectPaymentMethod(type: string): void;
|
|
32
|
+
gotoCasetransationPage(): void;
|
|
33
|
+
}
|
|
@@ -5,12 +5,17 @@ import { IRefundAction } from '../../interfaces/IRefundAction';
|
|
|
5
5
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
6
6
|
import { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
8
9
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
10
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
9
11
|
export declare class ProcessRefundComponent implements OnInit {
|
|
10
12
|
private RefundsService;
|
|
13
|
+
private paymentViewService;
|
|
11
14
|
private formBuilder;
|
|
12
15
|
private OrderslistService;
|
|
13
16
|
private paymentLibComponent;
|
|
17
|
+
private router;
|
|
18
|
+
private activeRoute;
|
|
14
19
|
refundReference: string;
|
|
15
20
|
refundlistsource: IRefundList;
|
|
16
21
|
processRefundForm: FormGroup;
|
|
@@ -37,8 +42,12 @@ export declare class ProcessRefundComponent implements OnInit {
|
|
|
37
42
|
isReasonInvalid: boolean;
|
|
38
43
|
successMsg: string;
|
|
39
44
|
navigationpage: string;
|
|
45
|
+
ccdCaseNumber: string;
|
|
46
|
+
isFromRefundListPage: boolean;
|
|
47
|
+
cpoDetails: any;
|
|
48
|
+
isCPODown: boolean;
|
|
40
49
|
isConfirmButtondisabled: boolean;
|
|
41
|
-
constructor(RefundsService: RefundsService, formBuilder: FormBuilder, OrderslistService: OrderslistService, paymentLibComponent: PaymentLibComponent);
|
|
50
|
+
constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
|
|
42
51
|
ngOnInit(): void;
|
|
43
52
|
checkRefundActions(code: string): void;
|
|
44
53
|
processRefundSubmit(): void;
|
|
@@ -48,6 +57,7 @@ export declare class ProcessRefundComponent implements OnInit {
|
|
|
48
57
|
showError: any;
|
|
49
58
|
};
|
|
50
59
|
loadRefundListPage(): void;
|
|
60
|
+
loadRefundsHomePage(): void;
|
|
51
61
|
redirecttoRefundListPage(): void;
|
|
52
62
|
resetForm(vals: any, field: any): void;
|
|
53
63
|
}
|
|
@@ -1,27 +1,35 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
3
4
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
4
5
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
5
|
-
import {
|
|
6
|
-
import { Router } from '@angular/router';
|
|
6
|
+
import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
8
9
|
import { IRefundStatus } from '../../interfaces/IRefundStatus';
|
|
9
10
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
11
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
12
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
13
|
+
import { IFee } from '../../interfaces/IFee';
|
|
14
|
+
import { IRefundFee } from '../../interfaces/IRefundFee';
|
|
10
15
|
export declare class RefundStatusComponent implements OnInit {
|
|
11
16
|
private formBuilder;
|
|
12
17
|
private refundService;
|
|
18
|
+
private notificationService;
|
|
13
19
|
private paymentLibComponent;
|
|
14
|
-
private paymentViewService;
|
|
15
|
-
private router;
|
|
16
20
|
private OrderslistService;
|
|
21
|
+
private paymentViewService;
|
|
17
22
|
LOGGEDINUSERROLES: string[];
|
|
18
23
|
isOldPcipalOff: boolean;
|
|
19
24
|
isNewPcipalOff: boolean;
|
|
20
25
|
ccdCaseNumber: string;
|
|
21
26
|
isTurnOff: boolean;
|
|
27
|
+
orderParty: string;
|
|
22
28
|
refundStatusForm: FormGroup;
|
|
23
29
|
selectedRefundReason: string;
|
|
24
30
|
rejectedRefundList: IRefundList[];
|
|
31
|
+
notificationList: any;
|
|
32
|
+
notification: any;
|
|
25
33
|
approvalStatus: string;
|
|
26
34
|
rejectStatus: string;
|
|
27
35
|
errorMessage: any;
|
|
@@ -38,6 +46,11 @@ export declare class RefundStatusComponent implements OnInit {
|
|
|
38
46
|
refundHasError: boolean;
|
|
39
47
|
refundReasons: any[];
|
|
40
48
|
refundStatusHistories: IRefundStatus[];
|
|
49
|
+
refundNotifications: IRefundStatus[];
|
|
50
|
+
isResendOperationSuccess: boolean;
|
|
51
|
+
isEditDetailsClicked: boolean;
|
|
52
|
+
isEditAddressDeatilsClicked: boolean;
|
|
53
|
+
addressDetails: IRefundContactDetails;
|
|
41
54
|
refundReference: string;
|
|
42
55
|
refundAmount: string;
|
|
43
56
|
refundCode: string;
|
|
@@ -48,21 +61,37 @@ export declare class RefundStatusComponent implements OnInit {
|
|
|
48
61
|
isLastUpdatedByCurrentUser: boolean;
|
|
49
62
|
isProcessRefund: boolean;
|
|
50
63
|
changedAmount: number;
|
|
51
|
-
|
|
64
|
+
isRemissionsMatch: boolean;
|
|
65
|
+
payment: IPayment;
|
|
66
|
+
changeRefundReason: string;
|
|
67
|
+
fees: IFee[];
|
|
68
|
+
refundFees: IRefundFee[];
|
|
69
|
+
allowedRolesToAccessRefund: string[];
|
|
70
|
+
constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
|
|
52
71
|
ngOnInit(): void;
|
|
72
|
+
check4AllowedRoles2AccessRefund: () => boolean;
|
|
53
73
|
getRefundsStatusHistoryList(): void;
|
|
74
|
+
getRefundsNotification(): void;
|
|
54
75
|
goToRefundView(refundlist: IRefundList, navigationpage: string): void;
|
|
55
76
|
loadCaseTransactionPage(): void;
|
|
56
77
|
loadRefundListPage(): void;
|
|
57
78
|
gotoReviewDetailsPage(event: any): void;
|
|
58
79
|
gotoReviewAndReSubmitPage(): void;
|
|
59
|
-
gotoRefundReasonPage(): void;
|
|
80
|
+
gotoRefundReasonPage(refundReason: string): void;
|
|
60
81
|
gotoAmountPage(): void;
|
|
61
82
|
goToReviewAndSubmitView(): void;
|
|
62
83
|
resetRemissionForm(val: any, field: any): void;
|
|
63
84
|
selectRadioButton(key: any, value: any): void;
|
|
64
85
|
getRefundListReason(refundListReason: any): void;
|
|
65
86
|
getRefundAmount(amount: number): void;
|
|
87
|
+
getRefundFees(fees: IFee[]): void;
|
|
66
88
|
gotoReviewRefundConfirmationPage(): void;
|
|
89
|
+
gotoEditAddressDetails(note: IRefundsNotifications): void;
|
|
90
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
91
|
+
getContactDetailsForRefundList(obj: IRefundContactDetails): void;
|
|
92
|
+
gotoEditDetailsPage(note?: any): void;
|
|
93
|
+
submitEditDetail(): void;
|
|
94
|
+
putResend(notification: IRefundsNotifications): void;
|
|
95
|
+
gotoCasetransationPageCancelBtnClicked(Event: Event): void;
|
|
67
96
|
goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
|
|
68
97
|
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
4
|
+
import { IRemission } from '../../interfaces/IRemission';
|
|
5
|
+
import { IPaymentView } from '../../interfaces/IPaymentView';
|
|
6
|
+
import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
|
|
7
|
+
import { IFee } from '../../interfaces/IFee';
|
|
8
|
+
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
9
|
+
import { Router } from '@angular/router';
|
|
10
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
11
|
+
import { OrderslistService } from '../../services/orderslist.service';
|
|
12
|
+
export declare class ServiceRequestComponent implements OnInit {
|
|
13
|
+
private paymentLibComponent;
|
|
14
|
+
private paymentViewService;
|
|
15
|
+
private OrderslistService;
|
|
16
|
+
private router;
|
|
17
|
+
LOGGEDINUSERROLES: string[];
|
|
18
|
+
viewStatus: string;
|
|
19
|
+
orderDetail: any[];
|
|
20
|
+
orderRef: string;
|
|
21
|
+
orderStatus: string;
|
|
22
|
+
orderParty: string;
|
|
23
|
+
orderCreated: Date;
|
|
24
|
+
orderCCDEvent: string;
|
|
25
|
+
orderFeesTotal: number;
|
|
26
|
+
orderTotalPayments: number;
|
|
27
|
+
orderRemissionTotal: number;
|
|
28
|
+
takePayment: boolean;
|
|
29
|
+
ccdCaseNumber: boolean;
|
|
30
|
+
isServiceRequest: string;
|
|
31
|
+
goToServiceRquestComponent: EventEmitter<any>;
|
|
32
|
+
servicerequest: string;
|
|
33
|
+
excReference: string;
|
|
34
|
+
paymentGroups: any[];
|
|
35
|
+
payments: IPayment[];
|
|
36
|
+
nonPayments: IPayment[];
|
|
37
|
+
allPayments: IPayment[];
|
|
38
|
+
remissions: IRemission[];
|
|
39
|
+
fees: IFee[];
|
|
40
|
+
errorMessage: string;
|
|
41
|
+
totalFees: number;
|
|
42
|
+
totalPayments: number;
|
|
43
|
+
totalNonOffPayments: number;
|
|
44
|
+
totalRemissions: number;
|
|
45
|
+
selectedOption: string;
|
|
46
|
+
dcnNumber: string;
|
|
47
|
+
paymentRef: string;
|
|
48
|
+
isTurnOff: boolean;
|
|
49
|
+
isNewPcipalOff: boolean;
|
|
50
|
+
isRefundRemission: boolean;
|
|
51
|
+
isOldPcipalOff: boolean;
|
|
52
|
+
isStrategicFixEnable: boolean;
|
|
53
|
+
isAddFeeBtnEnabled: boolean;
|
|
54
|
+
isExceptionRecord: boolean;
|
|
55
|
+
isUnprocessedRecordSelected: boolean;
|
|
56
|
+
exceptionRecordReference: string;
|
|
57
|
+
isAnyFeeGroupAvilable: boolean;
|
|
58
|
+
isHistoricGroupAvailable: boolean;
|
|
59
|
+
isBulkScanEnable: any;
|
|
60
|
+
isRemissionsMatch: boolean;
|
|
61
|
+
isRemoveBtnDisabled: boolean;
|
|
62
|
+
feeId: IFee;
|
|
63
|
+
clAmountDue: number;
|
|
64
|
+
unprocessedRecordCount: number;
|
|
65
|
+
isFeeRecordsExist: boolean;
|
|
66
|
+
isGrpOutstandingAmtPositive: boolean;
|
|
67
|
+
totalRefundAmount: Number;
|
|
68
|
+
caseType: String;
|
|
69
|
+
payment: IPayment;
|
|
70
|
+
paymentGroup: IPaymentGroup;
|
|
71
|
+
paymentView: IPaymentView;
|
|
72
|
+
isAddRemissionEnable: boolean;
|
|
73
|
+
orderRemissionDetails: any[];
|
|
74
|
+
orderLevelFees: IOrderReferenceFee[];
|
|
75
|
+
cpoDetails: any;
|
|
76
|
+
serviceRequestValue: string;
|
|
77
|
+
orderAddBtnEnable: boolean;
|
|
78
|
+
isCPODown: boolean;
|
|
79
|
+
test: boolean;
|
|
80
|
+
isPBA: boolean;
|
|
81
|
+
isIssueRefunfBtnEnable: boolean;
|
|
82
|
+
isAddRemissionBtnEnabled: boolean;
|
|
83
|
+
isRefundRemissionBtnEnable: boolean;
|
|
84
|
+
allowedRolesToAccessRefund: string[];
|
|
85
|
+
isFromServiceRequestPage: boolean;
|
|
86
|
+
navigationpage: string;
|
|
87
|
+
remissionFeeAmt: number;
|
|
88
|
+
constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, router: Router);
|
|
89
|
+
ngOnInit(): void;
|
|
90
|
+
goToServiceRequestPage(): void;
|
|
91
|
+
goToCaseTransationPage(event: any): void;
|
|
92
|
+
addRemission(fee: IFee): void;
|
|
93
|
+
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
94
|
+
cancelRemoval(): void;
|
|
95
|
+
removeFee(fee: any): void;
|
|
96
|
+
issueRefund(payment: IPayment): void;
|
|
97
|
+
goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
98
|
+
goToPaymentViewComponent(paymentGroup: any): void;
|
|
99
|
+
chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
100
|
+
chkIsAddRefundBtnEnable(remission: IRemission): boolean;
|
|
101
|
+
chkIsAddRemissionBtnEnable(fee: IFee): boolean;
|
|
102
|
+
resetOrderData(): void;
|
|
103
|
+
}
|
|
@@ -5,10 +5,13 @@ import { MatSort } from '@angular/material/sort';
|
|
|
5
5
|
import { MatPaginator } from '@angular/material/paginator';
|
|
6
6
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
8
9
|
export declare class TableComponent {
|
|
9
10
|
private paymentLibComponent;
|
|
10
11
|
private cdRef;
|
|
11
12
|
private OrderslistService;
|
|
13
|
+
private router;
|
|
14
|
+
private activeRoute;
|
|
12
15
|
DATASOURCE: any[];
|
|
13
16
|
STATUS: string;
|
|
14
17
|
errorMessage: string;
|
|
@@ -16,12 +19,13 @@ export declare class TableComponent {
|
|
|
16
19
|
displayedColumns: string[];
|
|
17
20
|
dataSource: MatTableDataSource<any>;
|
|
18
21
|
userLst: any;
|
|
22
|
+
serviceLst: any;
|
|
19
23
|
actualcount: number;
|
|
20
24
|
count: number;
|
|
21
25
|
refundList: IRefundList[];
|
|
22
26
|
paginator: MatPaginator;
|
|
23
27
|
sort: MatSort;
|
|
24
|
-
constructor(paymentLibComponent: PaymentLibComponent, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
28
|
+
constructor(paymentLibComponent: PaymentLibComponent, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService, router: Router, activeRoute: ActivatedRoute);
|
|
25
29
|
ngOnInit(): void;
|
|
26
30
|
/**
|
|
27
31
|
* Set the paginator and sort after the view init since this component will
|
|
@@ -30,7 +34,7 @@ export declare class TableComponent {
|
|
|
30
34
|
ngAfterViewInit(): void;
|
|
31
35
|
applyFilter(filterValue: string): void;
|
|
32
36
|
selectchange(args: any): void;
|
|
33
|
-
goToRefundProcessComponent(refundReference: string,
|
|
37
|
+
goToRefundProcessComponent(refundReference: string, refundData: IRefundList): void;
|
|
34
38
|
goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
|
|
35
39
|
goToCaseReview(ccdCaseNumber: string, refundData: IRefundList): void;
|
|
36
40
|
}
|
package/lib/interfaces/IFee.d.ts
CHANGED
|
@@ -19,4 +19,11 @@ export interface IFee {
|
|
|
19
19
|
date_created?: string;
|
|
20
20
|
date_updated?: string;
|
|
21
21
|
amount_due?: number;
|
|
22
|
+
remission_enable?: boolean;
|
|
23
|
+
add_remission?: boolean;
|
|
24
|
+
over_payment?: number;
|
|
25
|
+
refund_amount?: number;
|
|
26
|
+
updated_volume?: number;
|
|
27
|
+
selected?: any;
|
|
28
|
+
issue_refund_add_refund_add_remission: boolean;
|
|
22
29
|
}
|
|
@@ -28,4 +28,8 @@ export interface IPayment {
|
|
|
28
28
|
status_histories: IStatusHistory[];
|
|
29
29
|
payment_group_reference: string;
|
|
30
30
|
paymentGroupReference?: string;
|
|
31
|
+
refund_enable?: boolean;
|
|
32
|
+
over_payment?: number;
|
|
33
|
+
issue_refund_add_refund_add_remission: boolean;
|
|
34
|
+
issue_refund: boolean;
|
|
31
35
|
}
|