@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.
Files changed (179) hide show
  1. package/esm2022/hmcts-ccpay-web-component.mjs +5 -0
  2. package/esm2022/lib/components/add-remission/add-remission.component.mjs +1276 -0
  3. package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +423 -0
  4. package/esm2022/lib/components/card-details/card-details.component.mjs +32 -0
  5. package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +885 -0
  6. package/esm2022/lib/components/contact-details/contact-details.component.mjs +338 -0
  7. package/esm2022/lib/components/error-banner/error-banner.component.mjs +18 -0
  8. package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +280 -0
  9. package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +195 -0
  10. package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +275 -0
  11. package/esm2022/lib/components/notification-preview/notification-preview.component.mjs +79 -0
  12. package/esm2022/lib/components/page-not-found.component.mjs +17 -0
  13. package/esm2022/lib/components/payment-list/payment-list.component.mjs +36 -0
  14. package/esm2022/lib/components/payment-view/payment-view.component.mjs +467 -0
  15. package/esm2022/lib/components/pba-details/pba-details.component.mjs +18 -0
  16. package/esm2022/lib/components/pba-payment/pba-payment.component.mjs +163 -0
  17. package/esm2022/lib/components/process-refund/process-refund.component.mjs +417 -0
  18. package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +37 -0
  19. package/esm2022/lib/components/refund-list/refund-list.component.mjs +73 -0
  20. package/esm2022/lib/components/refund-status/refund-status.component.mjs +481 -0
  21. package/esm2022/lib/components/reports/reports.component.mjs +337 -0
  22. package/esm2022/lib/components/service-request/service-request.component.mjs +516 -0
  23. package/esm2022/lib/components/status-history/status-history.component.mjs +33 -0
  24. package/esm2022/lib/components/table/table.component.mjs +127 -0
  25. package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +236 -0
  26. package/esm2022/lib/interfaces/AddRemissionRequest.mjs +17 -0
  27. package/esm2022/lib/interfaces/AddRetroRemissionRequest.mjs +9 -0
  28. package/esm2022/lib/interfaces/AllocatePaymentRequest.mjs +41 -0
  29. package/esm2022/lib/interfaces/IAllocationPaymentsRequest.mjs +20 -0
  30. package/esm2022/lib/interfaces/IBSPayments.mjs +2 -0
  31. package/esm2022/lib/interfaces/ICardDetails.mjs +2 -0
  32. package/esm2022/lib/interfaces/IFee.mjs +2 -0
  33. package/esm2022/lib/interfaces/INotificationPreview.mjs +2 -0
  34. package/esm2022/lib/interfaces/IOrderReferenceFee.mjs +2 -0
  35. package/esm2022/lib/interfaces/IPatchRefundAction.mjs +2 -0
  36. package/esm2022/lib/interfaces/IPayment.mjs +2 -0
  37. package/esm2022/lib/interfaces/IPaymentFailure.mjs +2 -0
  38. package/esm2022/lib/interfaces/IPaymentGroup.mjs +2 -0
  39. package/esm2022/lib/interfaces/IPaymentStatus.mjs +12 -0
  40. package/esm2022/lib/interfaces/IPaymentView.mjs +2 -0
  41. package/esm2022/lib/interfaces/IPayments.mjs +2 -0
  42. package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
  43. package/esm2022/lib/interfaces/IRefundAction.mjs +2 -0
  44. package/esm2022/lib/interfaces/IRefundContactDetails.mjs +2 -0
  45. package/esm2022/lib/interfaces/IRefundFee.mjs +2 -0
  46. package/esm2022/lib/interfaces/IRefundList.mjs +2 -0
  47. package/esm2022/lib/interfaces/IRefundReasons.mjs +2 -0
  48. package/esm2022/lib/interfaces/IRefundRejectReason.mjs +2 -0
  49. package/esm2022/lib/interfaces/IRefundStatus.mjs +2 -0
  50. package/esm2022/lib/interfaces/IRefundStatusHistory.mjs +2 -0
  51. package/esm2022/lib/interfaces/IRefundsNotifications.mjs +2 -0
  52. package/esm2022/lib/interfaces/IRemission.mjs +2 -0
  53. package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
  54. package/esm2022/lib/interfaces/IStatusHistories.mjs +2 -0
  55. package/esm2022/lib/interfaces/IStatusHistory.mjs +2 -0
  56. package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
  57. package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
  58. package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
  59. package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +46 -0
  60. package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +14 -0
  61. package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +17 -0
  62. package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
  63. package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
  64. package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
  65. package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
  66. package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
  67. package/esm2022/lib/payment-lib.component.mjs +430 -0
  68. package/esm2022/lib/payment-lib.module.mjs +181 -0
  69. package/esm2022/lib/payment-lib.service.mjs +49 -0
  70. package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
  71. package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
  72. package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
  73. package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
  74. package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
  75. package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
  76. package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
  77. package/esm2022/lib/services/notification/notification.service.mjs +70 -0
  78. package/esm2022/lib/services/orderslist.service.mjs +154 -0
  79. package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
  80. package/esm2022/lib/services/payment-view/payment-view.service.mjs +156 -0
  81. package/esm2022/lib/services/refunds/refunds.service.mjs +120 -0
  82. package/esm2022/lib/services/shared/error-handler.service.mjs +76 -0
  83. package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
  84. package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
  85. package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
  86. package/esm2022/lib/services/status-history/status-history.service.mjs +41 -0
  87. package/esm2022/lib/services/xl-file/xl-file.service.mjs +197 -0
  88. package/esm2022/public_api.mjs +7 -0
  89. package/fesm2022/hmcts-ccpay-web-component.mjs +217 -262
  90. package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -1
  91. package/index.d.ts +5 -2340
  92. package/lib/components/add-remission/add-remission.component.d.ts +208 -0
  93. package/lib/components/allocate-payments/allocate-payments.component.d.ts +115 -0
  94. package/lib/components/card-details/card-details.component.d.ts +18 -0
  95. package/lib/components/case-transactions/case-transactions.component.d.ts +143 -0
  96. package/lib/components/contact-details/contact-details.component.d.ts +54 -0
  97. package/lib/components/error-banner/error-banner.component.d.ts +9 -0
  98. package/lib/components/fee-summary/fee-summary.component.d.ts +72 -0
  99. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +52 -0
  100. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +63 -0
  101. package/lib/components/notification-preview/notification-preview.component.d.ts +30 -0
  102. package/lib/components/page-not-found.component.d.ts +5 -0
  103. package/lib/components/payment-list/payment-list.component.d.ts +19 -0
  104. package/lib/components/payment-view/payment-view.component.d.ts +110 -0
  105. package/lib/components/pba-details/pba-details.component.d.ts +10 -0
  106. package/lib/components/pba-payment/pba-payment.component.d.ts +41 -0
  107. package/lib/components/process-refund/process-refund.component.d.ts +82 -0
  108. package/lib/components/processed-payments/processed-payments.component.d.ts +17 -0
  109. package/lib/components/refund-list/refund-list.component.d.ts +26 -0
  110. package/lib/components/refund-status/refund-status.component.d.ts +119 -0
  111. package/lib/components/reports/reports.component.d.ts +49 -0
  112. package/lib/components/service-request/service-request.component.d.ts +141 -0
  113. package/lib/components/status-history/status-history.component.d.ts +19 -0
  114. package/lib/components/table/table.component.d.ts +45 -0
  115. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +61 -0
  116. package/lib/interfaces/AddRemissionRequest.d.ts +11 -0
  117. package/lib/interfaces/AddRetroRemissionRequest.d.ts +5 -0
  118. package/lib/interfaces/AllocatePaymentRequest.d.ts +31 -0
  119. package/lib/interfaces/IAllocationPaymentsRequest.d.ts +9 -0
  120. package/lib/interfaces/IBSPayments.d.ts +19 -0
  121. package/lib/interfaces/ICardDetails.d.ts +7 -0
  122. package/lib/interfaces/IFee.d.ts +29 -0
  123. package/lib/interfaces/INotificationPreview.d.ts +27 -0
  124. package/lib/interfaces/IOrderReferenceFee.d.ts +9 -0
  125. package/lib/interfaces/IPatchRefundAction.d.ts +4 -0
  126. package/lib/interfaces/IPayment.d.ts +35 -0
  127. package/lib/interfaces/IPaymentFailure.d.ts +13 -0
  128. package/lib/interfaces/IPaymentGroup.d.ts +11 -0
  129. package/lib/interfaces/IPaymentStatus.d.ts +11 -0
  130. package/lib/interfaces/IPaymentView.d.ts +5 -0
  131. package/lib/interfaces/IPayments.d.ts +4 -0
  132. package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
  133. package/lib/interfaces/IRefundAction.d.ts +4 -0
  134. package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
  135. package/lib/interfaces/IRefundFee.d.ts +7 -0
  136. package/lib/interfaces/IRefundList.d.ts +20 -0
  137. package/lib/interfaces/IRefundReasons.d.ts +6 -0
  138. package/lib/interfaces/IRefundRejectReason.d.ts +4 -0
  139. package/lib/interfaces/IRefundStatus.d.ts +8 -0
  140. package/lib/interfaces/IRefundStatusHistory.d.ts +5 -0
  141. package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
  142. package/lib/interfaces/IRemission.d.ts +14 -0
  143. package/lib/interfaces/IResubmitRefundRequest.d.ts +9 -0
  144. package/lib/interfaces/IStatusHistories.d.ts +7 -0
  145. package/lib/interfaces/IStatusHistory.d.ts +7 -0
  146. package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
  147. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +8 -0
  148. package/lib/interfaces/IssueRefundRequest.d.ts +6 -0
  149. package/lib/interfaces/NotificationPreviewRequest.d.ts +25 -0
  150. package/lib/interfaces/PayhubAntennaRequest.d.ts +8 -0
  151. package/lib/interfaces/PaymentToPayhubRequest.d.ts +11 -0
  152. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +6 -0
  153. package/lib/interfaces/PostRefundRetroRemission.d.ts +11 -0
  154. package/lib/interfaces/RefundsRequest.d.ts +5 -0
  155. package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts +7 -0
  156. package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts +10 -0
  157. package/lib/payment-lib.component.d.ts +156 -0
  158. package/lib/payment-lib.module.d.ts +42 -0
  159. package/lib/payment-lib.service.d.ts +21 -0
  160. package/lib/pipes/capitalize.pipe.d.ts +8 -0
  161. package/lib/pipes/ccd-hyphens.pipe.d.ts +8 -0
  162. package/lib/pipes/key-value.pipe.d.ts +8 -0
  163. package/lib/pipes/sanitize-html.pipe.d.ts +10 -0
  164. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +27 -0
  165. package/lib/services/card-details/card-details.service.d.ts +17 -0
  166. package/lib/services/case-transactions/case-transactions.service.d.ts +17 -0
  167. package/lib/services/notification/notification.service.d.ts +21 -0
  168. package/lib/services/orderslist.service.d.ts +77 -0
  169. package/lib/services/payment-list/payment-list.service.d.ts +18 -0
  170. package/lib/services/payment-view/payment-view.service.d.ts +61 -0
  171. package/lib/services/refunds/refunds.service.d.ts +36 -0
  172. package/lib/services/shared/error-handler.service.d.ts +14 -0
  173. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +17 -0
  174. package/lib/services/shared/logger/console-logger.service.d.ts +11 -0
  175. package/lib/services/shared/logger/logger.service.d.ts +14 -0
  176. package/lib/services/status-history/status-history.service.d.ts +17 -0
  177. package/lib/services/xl-file/xl-file.service.d.ts +16 -0
  178. package/package.json +5 -3
  179. package/public_api.d.ts +3 -0
package/index.d.ts CHANGED
@@ -1,2340 +1,5 @@
1
- import * as i0 from '@angular/core';
2
- import { OnInit, ChangeDetectorRef, EventEmitter, PipeTransform } from '@angular/core';
3
- import { Observable, BehaviorSubject } from 'rxjs';
4
- import { HttpErrorResponse, HttpClient } from '@angular/common/http';
5
- import { Observable as Observable$1 } from 'rxjs/internal/Observable';
6
- import * as i19 from '@angular/forms';
7
- import { FormGroup, FormBuilder, FormArray } from '@angular/forms';
8
- import { Meta, SafeHtml, DomSanitizer } from '@angular/platform-browser';
9
- import { Router, ActivatedRoute } from '@angular/router';
10
- import * as i18 from '@angular/common';
11
- import { Location } from '@angular/common';
12
- import * as i20 from '@angular/material/table';
13
- import { MatTableDataSource } from '@angular/material/table';
14
- import * as i22 from '@angular/material/sort';
15
- import { MatSort } from '@angular/material/sort';
16
- import * as i21 from '@angular/material/paginator';
17
- import { MatPaginator } from '@angular/material/paginator';
18
- import * as i23 from '@angular/material/form-field';
19
- import * as i24 from '@angular/material/input';
20
- import * as i37 from 'rpx-xui-translation';
21
- import { RpxLanguage } from 'rpx-xui-translation';
22
-
23
- declare class PaymentLibService {
24
- API_ROOT: string;
25
- BULKSCAN_API_ROOT: string;
26
- REFUNDS_API_ROOT: string;
27
- NOTIFICATION_API_ROOT: string;
28
- CARDPAYMENTRETURNURL: string;
29
- constructor();
30
- setApiRootUrl(apiRoot: string): void;
31
- getApiRootUrl(): string;
32
- setBulkScanApiRootUrl(bulkscanapiRoot: string): void;
33
- getBulkScanApiRootUrl(): string;
34
- setRefundndsApiRootUrl(refundsapiRoot: string): void;
35
- getRefundsApiRootUrl(): string;
36
- setNoticationApiRootUrl(notificationapiRoot: string): void;
37
- getNoticationApiRootUrl(): string;
38
- setCardPaymentReturnUrl(cardPaymentReturnUrl: string): void;
39
- getCardPaymentReturnUrl(): string;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibService, never>;
41
- static ɵprov: i0.ɵɵInjectableDeclaration<PaymentLibService>;
42
- }
43
-
44
- interface IBSPayments {
45
- id?: string;
46
- dcn_reference?: string;
47
- bgc_reference?: string;
48
- amount?: number;
49
- currency?: string;
50
- payment_method?: string;
51
- outbound_batch_number?: string;
52
- dcn_case?: string;
53
- case_reference?: string;
54
- po_box?: string;
55
- first_cheque_dcn_in_batch?: string;
56
- payer_name?: string;
57
- date_banked?: string;
58
- date_created?: string;
59
- date_updated?: string;
60
- length?: number;
61
- expanded?: boolean;
62
- }
63
-
64
- interface IOrderReferenceFee {
65
- orderRefId: number;
66
- orderTotalFees: number;
67
- orderStatus: string;
68
- orderParty: string;
69
- orderCCDEvent: string;
70
- orderCreated: Date;
71
- orderAddBtnEnable: boolean;
72
- }
73
-
74
- interface IRefundContactDetails {
75
- address_line?: string;
76
- city?: string;
77
- country?: string;
78
- county?: string;
79
- email?: string;
80
- notification_type?: string;
81
- postal_code?: string;
82
- }
83
-
84
- interface IRefundList {
85
- amount: number;
86
- ccd_case_number: string;
87
- date_created: string;
88
- date_updated: string;
89
- payment_reference: string;
90
- reason: string;
91
- reason_code: string;
92
- refund_reference: string;
93
- refund_status: {
94
- description: string;
95
- name: string;
96
- };
97
- contact_details: IRefundContactDetails;
98
- user_full_name: string;
99
- service_type: string;
100
- fee_ids: string;
101
- code: string;
102
- }
103
-
104
- interface IPaymentView {
105
- method: string;
106
- payment_group_reference: string;
107
- reference: string;
108
- }
109
-
110
- declare class OrderslistService {
111
- private ordersList;
112
- private refundView;
113
- private caseType;
114
- getcaseType: Observable<string>;
115
- private feeExists;
116
- getFeeExist: Observable<boolean>;
117
- private ccdCaseNumber;
118
- getCCDCaseNumberforRefund: Observable<string>;
119
- private isFromServiceRequestPage;
120
- getisFromServiceRequestPage: Observable<boolean>;
121
- private OrderRefId;
122
- getOrderRefId: Observable<string>;
123
- private navigationPage;
124
- getnavigationPage: Observable<string>;
125
- private orderRef;
126
- getorderRef: Observable<string>;
127
- private orderCCDEvent;
128
- getorderCCDEvent: Observable<string>;
129
- private orderCreated;
130
- getorderCreated: Observable<Date>;
131
- private orderParty;
132
- getorderParty: Observable<string>;
133
- private orderRemissionTotal;
134
- getorderRemissionTotal: Observable<number>;
135
- private orderFeesTotal;
136
- getorderFeesTotal: Observable<number>;
137
- private orderTotalPayments;
138
- getorderTotalPayments: Observable<number>;
139
- private rolesList;
140
- private orderDetail;
141
- private paymentPageView;
142
- constructor();
143
- setOrdersList(orderLevelFees: IOrderReferenceFee[]): void;
144
- getOrdersList(): BehaviorSubject<IOrderReferenceFee[]>;
145
- setRefundView(refundList: IRefundList): void;
146
- getRefundView(): BehaviorSubject<IRefundList>;
147
- setCaseType(caseType: string): void;
148
- getCaseType(): BehaviorSubject<string>;
149
- setCCDCaseNumber(ccdCaseNumber: string): void;
150
- getCCDCaseNumber(): BehaviorSubject<string>;
151
- setFeeExists(feeExists: boolean): void;
152
- getFeeExists(): BehaviorSubject<boolean>;
153
- setisFromServiceRequestPage(isFromServiceRequestPage: boolean): void;
154
- getisFromServiceRequestPages(): BehaviorSubject<boolean>;
155
- setOrderRefId(OrderRefId: string): void;
156
- getSelectedOrderRefId(): BehaviorSubject<string>;
157
- setnavigationPage(navigationPage: string): void;
158
- getnavigationPageValue(): BehaviorSubject<string>;
159
- setpaymentPageView(paymentpageList: IPaymentView): void;
160
- getpaymentPageView(): BehaviorSubject<IPaymentView>;
161
- setUserRolesList(rolesList: any[]): void;
162
- getUserRolesList(): BehaviorSubject<any[]>;
163
- setorderDetail(orderDetail: any[]): void;
164
- getorderDetail(): BehaviorSubject<any[]>;
165
- setOrderRef(orderRef: string): void;
166
- getorderRefs(): BehaviorSubject<string>;
167
- setorderCCDEvent(orderCCDEvent: string): void;
168
- getorderCCDEvents(): BehaviorSubject<string>;
169
- setorderCreated(orderCreated: Date): void;
170
- getorderCreateds(): BehaviorSubject<Date>;
171
- setorderParty(orderParty: string): void;
172
- getorderPartys(): BehaviorSubject<string>;
173
- setorderRemissionTotal(orderRemissionTotal: number): void;
174
- getorderRemissionTotals(): BehaviorSubject<number>;
175
- setorderFeesTotal(orderFeesTotal: number): void;
176
- getorderFeesTotals(): BehaviorSubject<number>;
177
- setorderTotalPayments(orderTotalPayments: number): void;
178
- getoorderTotalPaymentss(): BehaviorSubject<number>;
179
- static ɵfac: i0.ɵɵFactoryDeclaration<OrderslistService, never>;
180
- static ɵprov: i0.ɵɵInjectableDeclaration<OrderslistService>;
181
- }
182
-
183
- interface IFee {
184
- code: string;
185
- version: string;
186
- volume?: number;
187
- calculated_amount: number;
188
- net_amount: number;
189
- description: string;
190
- ccd_case_number: string;
191
- id: number;
192
- jurisdiction1: string;
193
- jurisdiction2: string;
194
- reference: string;
195
- memo_line: string;
196
- fee_amount?: number;
197
- apportion_amount?: number;
198
- allocated_amount?: number;
199
- is_fully_apportioned?: string;
200
- date_apportioned?: string;
201
- date_created?: string;
202
- date_updated?: string;
203
- amount_due?: number;
204
- remission_enable?: boolean;
205
- add_remission?: boolean;
206
- over_payment?: number;
207
- refund_amount?: number;
208
- updated_volume?: number;
209
- selected?: any;
210
- issue_refund_add_refund_add_remission: boolean;
211
- }
212
-
213
- interface IStatusHistory {
214
- status: string;
215
- external_status: string;
216
- date_created: Date;
217
- error_code: string;
218
- error_message: string;
219
- }
220
-
221
- declare class IPaymentStatus {
222
- allocation_status: any;
223
- date_created: string;
224
- payment_group_reference: string;
225
- payment_reference: string;
226
- receiving_office: string;
227
- receiving_email_address: string;
228
- sending_email_address: string;
229
- unidentified_reason: string;
230
- user_id: string;
231
- }
232
-
233
- interface IPayment {
234
- amount: number;
235
- description: string;
236
- reference: string;
237
- currency: string;
238
- date_created: string;
239
- banked_date: string;
240
- document_control_number: string;
241
- payer_name: string;
242
- date_updated: string;
243
- ccd_case_number: string;
244
- case_reference: string;
245
- channel: string;
246
- method: string;
247
- external_provider: string;
248
- status: string;
249
- payment_allocation: IPaymentStatus[];
250
- external_reference: string;
251
- site_id: string;
252
- service_name: string;
253
- account_number: string;
254
- customer_reference: string;
255
- organisation_name: string;
256
- fees: IFee[];
257
- status_histories: IStatusHistory[];
258
- payment_group_reference: string;
259
- paymentGroupReference?: string;
260
- refund_enable?: boolean;
261
- over_payment?: number;
262
- issue_refund_add_refund_add_remission: boolean;
263
- issue_refund: boolean;
264
- }
265
-
266
- interface IRemission {
267
- remission_reference: string;
268
- hwf_reference: string;
269
- hwf_amount: number;
270
- beneficiary_name: string;
271
- ccd_case_number: string;
272
- fee_code: string;
273
- date_created: string;
274
- fee_id: number;
275
- issue_refund_add_refund_add_remission: boolean;
276
- add_refund: boolean;
277
- overall_balance: number;
278
- acollection_of_fess: boolean;
279
- }
280
-
281
- interface IPaymentGroup {
282
- payment_group_reference: string;
283
- payments: IPayment[];
284
- remissions: IRemission[];
285
- fees: IFee[];
286
- refunds: IRefundList[];
287
- }
288
-
289
- declare class AddRetroRemissionRequest {
290
- hwf_amount: number;
291
- hwf_reference: string;
292
- constructor(hwf_amount: number, hwf_reference: string);
293
- }
294
-
295
- declare class PaymentLibComponent implements OnInit {
296
- private paymentLibService;
297
- private cd;
298
- private OrderslistService;
299
- API_ROOT: string;
300
- BULKSCAN_API_ROOT: string;
301
- REFUNDS_API_ROOT: string;
302
- NOTIFICATION_API_ROOT: string;
303
- CARDPAYMENTRETURNURL: string;
304
- CCD_CASE_NUMBER: string;
305
- EXC_REFERENCE: string;
306
- PAYMENT_METHOD: string;
307
- VIEW: string;
308
- VIEWSERVICE: string;
309
- PAYMENT_GROUP_REF?: string;
310
- TAKEPAYMENT: boolean;
311
- SERVICEREQUEST: string;
312
- DCN_NUMBER: string;
313
- SELECTED_OPTION: string;
314
- ISBSENABLE: Boolean;
315
- ISSFENABLE: boolean;
316
- ISTURNOFF: boolean;
317
- CASETYPE: string;
318
- ISPAYMENTSTATUSENABLED: boolean;
319
- rootUrl: boolean;
320
- REFUNDLIST: string;
321
- USERID: string;
322
- LOGGEDINUSERROLES: any[];
323
- LOGGEDINUSEREMAIL: string;
324
- isFromServiceRequestPage: boolean;
325
- telephonySelectionEnable: boolean;
326
- paymentMethod: string;
327
- bspaymentdcn: string;
328
- unProcessedPaymentServiceId: string;
329
- paymentGroupReference: string;
330
- paymentReference: string;
331
- refundReference: string;
332
- isFromPayBubble: boolean;
333
- refundlistsource: any;
334
- viewName: string;
335
- isTurnOff: boolean;
336
- caseType: string;
337
- unProcessedPayment: IBSPayments;
338
- isRefundStatusView: boolean;
339
- isRedirectFromCaseTransactionPage: string;
340
- isCallFromRefundList: boolean;
341
- isFromRefundStatusPage: boolean;
342
- iscancelClicked: boolean;
343
- isFromPaymentDetailPage: boolean;
344
- pbaPayOrderRef: IPayment;
345
- isTakePayment: boolean;
346
- orderDetail: any[];
347
- orderRef: string;
348
- orderStatus: string;
349
- orderParty: string;
350
- orderCreated: Date;
351
- orderCCDEvent: string;
352
- serviceRequestValue: string;
353
- orderAddBtnEnable: boolean;
354
- orderFeesTotal: number;
355
- orderRemissionTotal: number;
356
- orderTotalPayments: number;
357
- orderPendingPayments: number;
358
- paymentGroup: IPaymentGroup;
359
- overPaymentAmount: number;
360
- refunds: IRefundList[];
361
- constructor(paymentLibService: PaymentLibService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
362
- ngAfterContentChecked(): void;
363
- ngOnInit(): void;
364
- /**
365
- * Adds a remission to the payment group using data from the provided form group.
366
- *
367
- * This method checks if the `paymentGroup` is not null before attempting to add the remission.
368
- * If the `paymentGroup` exists, a new remission is created using the values from the provided
369
- * form group (`currentRemissionFormGroup`), and it is pushed into the `remissions` array of the payment group.
370
- *
371
- * @param {AddRetroRemissionRequest} currentRemissionFormGroup - The form group containing remission data
372
- * (e.g., `hwf_amount`, `hwf_reference`).
373
- */
374
- addRemission(currentRemissionFormGroup: AddRetroRemissionRequest): void;
375
- /**
376
- * This method is used to set the paymentGroup for the add remission journey.
377
- * @param updatedPaymentGroup this is an updated paymentGroup version.
378
- */
379
- addPaymentGroup(updatedPaymentGroup: IPaymentGroup): void;
380
- /**
381
- * Calculates the total remission amount for the current payment group.
382
- *
383
- * This method checks if the payment group contains any remissions and, if so,
384
- * sums up the `hwf_amount` of all remissions using the `reduce()` method.
385
- * If no remissions are found, it returns a default value of 0.
386
- *
387
- * @returns {number} The total remission amount, or 0 if no remissions are present.
388
- */
389
- getTotalRemission(): number;
390
- /**
391
- * Calculates the total fee amount for the current payment group.
392
- *
393
- * This method checks if the payment group contains any fees and, if so,
394
- * sums up the `calculated_amount` of all fees using the `reduce()` method.
395
- * If no fees are found, it returns a default value of 0.
396
- *
397
- * @returns {number} The total fee amount, or 0 if no fees are present.
398
- */
399
- getTotalFees(): number;
400
- /**
401
- * Calculates the total payment amount for the current payment group.
402
- *
403
- * This method checks if the payment group contains any payments and, if so,
404
- * sums up the `amount` of all payments using the `reduce()` method.
405
- * If no payments are found, it returns a default value of 0.
406
- *
407
- * @returns {number} The total payment amount, or 0 if no payments are present.
408
- */
409
- getTotalPayments(): number;
410
- /**
411
- * This function is used to find out if the current refunds list are in progress for the fee passed as parameter
412
- * @param fee this is the fee used to find out if the refunds are in progress.
413
- */
414
- isTheCurrentRefundInProcessForThisFee(fee: IFee): boolean;
415
- /**
416
- * This function is used to find out if in current list of refunds all refunds has been rejected
417
- * for the fee passed as parameter.
418
- * @param feeCode this is the fee code used to find out all refunds rejected refunds.
419
- */
420
- isTheCurrentRefundRejectedForTheFee(feeCode: string): boolean;
421
- /**
422
- * Rounds very small values to zero if they fall below a specified threshold.
423
- *
424
- * This is useful for eliminating floating-point precision errors that result in
425
- * extremely small non-zero values (e.g., 1.1368683772161603e-13) which should
426
- * logically be treated as zero.
427
- *
428
- * @param value - The numeric value to evaluate and potentially round.
429
- * @param threshold - The minimum absolute value considered significant. Defaults to 1e-10.
430
- * @returns The original value if it's above the threshold, or 0 if it's below.
431
- *
432
- * @example
433
- * roundTinyValue(1.1368683772161603e-13); // returns 0
434
- * roundTinyValue(0.00001); // returns 0.00001
435
- */
436
- roundTinyValue(value: number, threshold?: number): number;
437
- getRoundedOverPayment(): number;
438
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibComponent, never>;
439
- static ɵcmp: i0.ɵɵComponentDeclaration<PaymentLibComponent, "ccpay-payment-lib", never, { "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "BULKSCAN_API_ROOT": { "alias": "BULKSCAN_API_ROOT"; "required": false; }; "REFUNDS_API_ROOT": { "alias": "REFUNDS_API_ROOT"; "required": false; }; "NOTIFICATION_API_ROOT": { "alias": "NOTIFICATION_API_ROOT"; "required": false; }; "CARDPAYMENTRETURNURL": { "alias": "CARDPAYMENTRETURNURL"; "required": false; }; "CCD_CASE_NUMBER": { "alias": "CCD_CASE_NUMBER"; "required": false; }; "EXC_REFERENCE": { "alias": "EXC_REFERENCE"; "required": false; }; "PAYMENT_METHOD": { "alias": "PAYMENT_METHOD"; "required": false; }; "VIEW": { "alias": "VIEW"; "required": false; }; "VIEWSERVICE": { "alias": "VIEWSERVICE"; "required": false; }; "PAYMENT_GROUP_REF": { "alias": "PAYMENT_GROUP_REF"; "required": false; }; "TAKEPAYMENT": { "alias": "TAKEPAYMENT"; "required": false; }; "SERVICEREQUEST": { "alias": "SERVICEREQUEST"; "required": false; }; "DCN_NUMBER": { "alias": "DCN_NUMBER"; "required": false; }; "SELECTED_OPTION": { "alias": "SELECTED_OPTION"; "required": false; }; "ISBSENABLE": { "alias": "ISBSENABLE"; "required": false; }; "ISSFENABLE": { "alias": "ISSFENABLE"; "required": false; }; "ISTURNOFF": { "alias": "ISTURNOFF"; "required": false; }; "CASETYPE": { "alias": "CASETYPE"; "required": false; }; "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; "rootUrl": { "alias": "rootUrl"; "required": false; }; "REFUNDLIST": { "alias": "REFUNDLIST"; "required": false; }; "USERID": { "alias": "USERID"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "LOGGEDINUSEREMAIL": { "alias": "LOGGEDINUSEREMAIL"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; "telephonySelectionEnable": { "alias": "telephonySelectionEnable"; "required": false; }; }, {}, never, never, false, never>;
440
- }
441
-
442
- interface IPayments {
443
- payments: IPayment[];
444
- }
445
-
446
- declare class ErrorHandlerService {
447
- constructor();
448
- handleError(err: HttpErrorResponse): Observable<any>;
449
- getServerErrorMessage(isErrorExist: any, isDataNotExist?: boolean, error?: string): {
450
- title: string;
451
- body: string;
452
- showError: any;
453
- };
454
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorHandlerService, never>;
455
- static ɵprov: i0.ɵɵInjectableDeclaration<ErrorHandlerService>;
456
- }
457
-
458
- declare abstract class Logger {
459
- info: any;
460
- warn: any;
461
- error: any;
462
- }
463
- declare class LoggerService implements Logger {
464
- info: any;
465
- warn: any;
466
- error: any;
467
- invokeConsoleMethod(type: string, args?: any): void;
468
- static ɵfac: i0.ɵɵFactoryDeclaration<LoggerService, never>;
469
- static ɵprov: i0.ɵɵInjectableDeclaration<LoggerService>;
470
- }
471
-
472
- declare class PaymentListService {
473
- private http;
474
- private logger;
475
- private errorHandlerService;
476
- private paymentLibService;
477
- payments: IPayments;
478
- constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
479
- getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable$1<IPayments>;
480
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentListService, never>;
481
- static ɵprov: i0.ɵɵInjectableDeclaration<PaymentListService>;
482
- }
483
-
484
- type PaymentLibAlias$f = PaymentLibComponent;
485
- declare class PaymentListComponent implements OnInit {
486
- private paymentListService;
487
- private paymentLibComponent;
488
- payments: IPayments;
489
- errorMessage: string;
490
- code: string;
491
- constructor(paymentListService: PaymentListService, paymentLibComponent: PaymentLibAlias$f);
492
- ngOnInit(): void;
493
- loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
494
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentListComponent, never>;
495
- static ɵcmp: i0.ɵɵComponentDeclaration<PaymentListComponent, "ccpay-payment-list", never, {}, {}, never, never, false, never>;
496
- }
497
-
498
- declare class WebComponentHttpClient {
499
- private http;
500
- private meta;
501
- constructor(http: HttpClient, meta: Meta);
502
- post(url: string, body: any | null, options?: any): Observable<any>;
503
- put(url: string, body: any | null, options?: any): Observable<any>;
504
- get(url: string, options?: any): Observable<any>;
505
- delete(url: string, options?: any): Observable<any>;
506
- patch(url: string, body: any | null, options?: any): Observable<any>;
507
- addHeaders(options: any): any;
508
- static ɵfac: i0.ɵɵFactoryDeclaration<WebComponentHttpClient, never>;
509
- static ɵprov: i0.ɵɵInjectableDeclaration<WebComponentHttpClient>;
510
- }
511
-
512
- interface IRefundReasons {
513
- code: string;
514
- description: string;
515
- name: string;
516
- recently_used: boolean;
517
- }
518
-
519
- interface IPatchRefundAction {
520
- code: string;
521
- reason: string;
522
- }
523
-
524
- declare class IssueRefundRequest {
525
- payment_reference: string;
526
- refund_reason: string;
527
- refund_amount: number;
528
- constructor(payment_reference: string, refund_reason: string, refund_amount: number);
529
- }
530
-
531
- declare class IResubmitRefundRequest {
532
- refund_reason: string;
533
- amount: number;
534
- contact_details: IRefundContactDetails;
535
- refund_fees: IFee[];
536
- constructor(refund_reason: string, amount: number, contact_details: any, refund_fees: any[]);
537
- }
538
-
539
- declare class IPutNotificationRequest {
540
- recipient_email_address?: string;
541
- recipient_postal_address?: IRefundContactDetails;
542
- constructor(contactDetails: any, notificationType: string);
543
- }
544
-
545
- declare class RefundsService {
546
- private http;
547
- private https;
548
- private errorHandlerService;
549
- private paymentLibService;
550
- private meta;
551
- constructor(http: HttpClient, https: WebComponentHttpClient, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService, meta: Meta);
552
- getRefundReasons(): Observable<IRefundReasons[]>;
553
- getRefundRejectReasons(): Observable<any>;
554
- getRefundActions(refundReference: string): Observable<any>;
555
- patchRefundActions(body: IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any>;
556
- getRefundList(refundstatus?: string, selfexclusive?: boolean): Observable<IRefundList[]>;
557
- getRefundStatusHistory(reference?: string): Observable<any>;
558
- getRefundStatusList(ccdCaseNumber: string): Observable<IRefundList[]>;
559
- getUserDetails(): Observable<any>;
560
- postIssueRefund(body: IssueRefundRequest): Observable<any>;
561
- putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
562
- patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
563
- addHeaders(options: any): any;
564
- static ɵfac: i0.ɵɵFactoryDeclaration<RefundsService, never>;
565
- static ɵprov: i0.ɵɵInjectableDeclaration<RefundsService>;
566
- }
567
-
568
- interface IRefundAction {
569
- code: string;
570
- label: string;
571
- }
572
-
573
- interface IRefundRejectReason {
574
- code: string;
575
- name: string;
576
- }
577
-
578
- interface IRefundsNotifications {
579
- contact_details: {
580
- address_line: string;
581
- city: string;
582
- country: string;
583
- county: string;
584
- date_created: string;
585
- date_updated: string;
586
- email: string;
587
- postal_code: string;
588
- };
589
- date_created: string;
590
- date_updated: string;
591
- notification_type: string;
592
- reference: string;
593
- }
594
-
595
- declare class NotificationPreviewRequest {
596
- notification_type?: string;
597
- payment_channel?: string;
598
- payment_method?: string;
599
- payment_reference?: string;
600
- personalisation?: {
601
- ccd_case_number?: string;
602
- refund_amount?: number;
603
- refund_reason?: string;
604
- refund_reference?: string;
605
- customer_reference?: string;
606
- };
607
- recipient_email_address?: string;
608
- recipient_postal_address?: {
609
- address_line?: string;
610
- city?: string;
611
- county?: string;
612
- country?: string;
613
- postal_code?: string;
614
- };
615
- service_name?: string;
616
- constructor(payment: IPayment, contactDetails: IRefundContactDetails, refund_reason: string, refund_amount: number, refund_reference: string, payment_reference: string);
617
- }
618
-
619
- declare class NotificationService {
620
- private http;
621
- private https;
622
- private errorHandlerService;
623
- private paymentLibService;
624
- constructor(http: HttpClient, https: WebComponentHttpClient, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
625
- getRefundNotification(reference: string): Observable<IRefundsNotifications>;
626
- getAddressByPostcode(postcode: string): Observable<any>;
627
- getNotificationPreview(body: NotificationPreviewRequest): Observable<any>;
628
- getNotificationInstructionType(paymentChannel: string, paymentMethod: string): any;
629
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
630
- static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
631
- }
632
-
633
- declare class AddRemissionRequest {
634
- beneficiary_name: string;
635
- ccd_case_number: string;
636
- fee: IFee;
637
- hwf_amount: number;
638
- hwf_reference: string;
639
- payment_group_reference: string;
640
- case_type: string;
641
- constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string);
642
- }
643
-
644
- declare class PaymentToPayhubRequest {
645
- currency: string;
646
- description: string;
647
- channel: string;
648
- provider: string;
649
- case_type: string;
650
- ccd_case_number: string;
651
- amount: number;
652
- telephony_system: string;
653
- constructor(ccd_case_number: string, amount: number, caseType: string, telephony_system: string);
654
- }
655
-
656
- declare class PayhubAntennaRequest {
657
- currency: string;
658
- case_type: string;
659
- ccd_case_number: string;
660
- amount: number;
661
- telephony_system: string;
662
- constructor(ccd_case_number: string, amount: number, caseType: string, telephony_system: string);
663
- }
664
-
665
- declare class UnidentifiedPaymentsRequest {
666
- payment_allocation_status: any;
667
- payment_group_reference: string;
668
- payment_reference: string;
669
- unidentified_reason: string;
670
- constructor(payment_group_reference: string, payment_reference: string, unidentified_reason: any);
671
- }
672
-
673
- declare class UnsolicitedPaymentsRequest {
674
- payment_allocation_status: any;
675
- payment_group_reference: string;
676
- payment_reference: string;
677
- receiving_office: string;
678
- receiving_email_address: string;
679
- sending_email_address: string;
680
- unidentified_reason: string;
681
- constructor(payment_group_reference: string, payment_reference: string, reason: string, responsible_office: string, responsible_person: string, email_id: string);
682
- }
683
-
684
- declare class AllocatePaymentRequest {
685
- amount: Number;
686
- banked_date: String;
687
- ccd_case_number: String;
688
- exception_record: string;
689
- currency: String;
690
- document_control_number: String;
691
- external_provider: String;
692
- giro_slip_no: String;
693
- payer_name: String;
694
- payment_channel: Object;
695
- payment_status: Object;
696
- payment_method: String;
697
- case_type: String;
698
- payment_allocation_dto?: {
699
- allocation_reason: String;
700
- allocation_status: String;
701
- explanation: String;
702
- payment_allocation_status: Object;
703
- payment_group_reference: String;
704
- payment_reference: String;
705
- reason: String;
706
- receiving_office: String;
707
- unidentified_reason: String;
708
- user_id: String;
709
- user_name: String;
710
- case_type: String;
711
- };
712
- constructor(ccd_case_number: string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any);
713
- }
714
-
715
- declare class IAllocationPaymentsRequest {
716
- payment_allocation_status: any;
717
- payment_group_reference: string;
718
- payment_reference: string;
719
- reason: string;
720
- explanation: string;
721
- user_name: string;
722
- constructor(payment_group_reference: string, payment_reference: string, reason?: string, explanation?: string, userName?: string);
723
- }
724
-
725
- declare class IserviceRequestPbaPayment {
726
- account_number: string;
727
- amount: string;
728
- currency: string;
729
- customer_reference: string;
730
- organisation_name: string;
731
- constructor(account_number: string, amount: string, customer_reference: string, orgName: string);
732
- }
733
-
734
- declare class IserviceRequestCardPayment {
735
- amount: string;
736
- currency: string;
737
- language: string;
738
- constructor(amount: string, language: string);
739
- }
740
-
741
- declare class PostRefundRetroRemission {
742
- ccd_case_number: string;
743
- payment_reference: string;
744
- refund_reason: string;
745
- total_refund_amount: any;
746
- fees: any[];
747
- is_over_payment: boolean;
748
- contact_details: IRefundContactDetails;
749
- constructor(contact_details: any, fees: any[], payment_reference: string, refund_reason: string, total_refund_amount: any, is_over_payment: string);
750
- }
751
-
752
- declare class PostIssueRefundRetroRemission {
753
- remissionReference: string;
754
- contact_details: IRefundContactDetails;
755
- constructor(remissionReference: string, contactDeatils: any);
756
- }
757
-
758
- declare class PaymentViewService {
759
- private http;
760
- private https;
761
- private logger;
762
- private errorHandlerService;
763
- private paymentLibService;
764
- private ordersList;
765
- private meta;
766
- constructor(http: HttpClient, https: WebComponentHttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
767
- getPaymentDetails(paymentReference: string, paymentMethod?: string): Observable$1<IPayment>;
768
- getPaymentGroupDetails(paymentGroupReference: string): Observable$1<IPaymentGroup>;
769
- getApportionPaymentDetails(paymentReference: string): Observable$1<IPaymentGroup>;
770
- getPBAaccountDetails(): Observable$1<any>;
771
- postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable$1<any>;
772
- postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable$1<any>;
773
- postBSPayments(body: AllocatePaymentRequest): Observable$1<any>;
774
- postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable$1<any>;
775
- postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable$1<any>;
776
- postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable$1<any>;
777
- postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable$1<any>;
778
- deleteFeeFromPaymentGroup(feeId: number): Observable$1<any>;
779
- postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable$1<any>;
780
- postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable$1<any>;
781
- downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable$1<any>;
782
- downloadFailureReport(startDate: string, endDate: string): Observable$1<any>;
783
- downloadTelephonyPaymentsReport(startDate: string, endDate: string): Observable$1<any>;
784
- getBSfeature(): Observable$1<any>;
785
- getSiteID(): Observable$1<any>;
786
- getPartyDetails(caseNumber: string): Observable$1<any>;
787
- setOrdersList(orderLevelFees: IOrderReferenceFee[]): void;
788
- getOrdersList(): BehaviorSubject<IOrderReferenceFee[]>;
789
- postRefundsReason(body: PostRefundRetroRemission): Observable$1<any>;
790
- postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable$1<any>;
791
- postRefundRetroRemission(body: PostIssueRefundRetroRemission): Observable$1<any>;
792
- getPaymentFailure(paymentReference: string): Observable$1<any>;
793
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentViewService, never>;
794
- static ɵprov: i0.ɵɵInjectableDeclaration<PaymentViewService>;
795
- }
796
-
797
- interface INotificationPreview {
798
- template_id: string;
799
- template_type: string;
800
- from: {
801
- from_email_address: string;
802
- from_mail_address: {
803
- address_line: string;
804
- city: string;
805
- county: string;
806
- country: string;
807
- postal_code: String;
808
- };
809
- };
810
- recipient_contact: {
811
- recipient_email_address: string;
812
- recipient_mail_address: {
813
- address_line: string;
814
- city: string;
815
- county: string;
816
- country: string;
817
- postal_code: String;
818
- };
819
- };
820
- subject: string;
821
- body: string;
822
- html: string;
823
- }
824
-
825
- type PaymentLibAlias$e = PaymentLibComponent;
826
- declare class ProcessRefundComponent implements OnInit {
827
- private RefundsService;
828
- private paymentViewService;
829
- private formBuilder;
830
- private OrderslistService;
831
- private notificationService;
832
- private paymentLibComponent;
833
- private router;
834
- private activeRoute;
835
- refundReference: string;
836
- refundlistsource: IRefundList;
837
- processRefundForm: FormGroup;
838
- errorMessage: {
839
- title: string;
840
- body: string;
841
- showError: any;
842
- };
843
- sendmeback: string;
844
- viewStatus: string;
845
- refundActionList: IRefundAction[];
846
- refundRejectReasonList: IRefundRejectReason[];
847
- isSendMeBackClicked: boolean;
848
- isRejectClicked: boolean;
849
- isOtherClicked: boolean;
850
- isSuccesspageEnable: boolean;
851
- refundActionsHasError: boolean;
852
- refundRejectReasonHasError: boolean;
853
- isReasonFieldEmpty: boolean;
854
- isReasonFieldInvalid: boolean;
855
- reasonFieldMinHasError: boolean;
856
- reasonFieldMaxHasError: boolean;
857
- isReasonEmpty: boolean;
858
- isReasonInvalid: boolean;
859
- successMsg: string;
860
- navigationpage: string;
861
- ccdCaseNumber: string;
862
- isFromRefundListPage: boolean;
863
- cpoDetails: any;
864
- isCPODown: boolean;
865
- isConfirmButtondisabled: boolean;
866
- paymentObj: IPayment;
867
- templateInstructionType: string;
868
- notificationPreview: boolean;
869
- notificationPreviewObj: INotificationPreview;
870
- constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$e, router: Router, activeRoute: ActivatedRoute);
871
- ngOnInit(): void;
872
- checkRefundActions(code: string): void;
873
- getNotificationPreviewObj(notificationPreviewObj: INotificationPreview): void;
874
- processRefundSubmit(): void;
875
- getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
876
- title: string;
877
- body: string;
878
- showError: any;
879
- };
880
- loadRefundListPage(): void;
881
- loadRefundsHomePage(): void;
882
- redirecttoRefundListPage(): void;
883
- loadCaseTransactionPage(): void;
884
- resetForm(vals: any, field: any): void;
885
- goToCaseReview(): void;
886
- getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
887
- showNotificationPreview(): void;
888
- hideNotificationPreview(): void;
889
- static ɵfac: i0.ɵɵFactoryDeclaration<ProcessRefundComponent, never>;
890
- static ɵcmp: i0.ɵɵComponentDeclaration<ProcessRefundComponent, "ccpay-process-refund", never, { "refundReference": { "alias": "refundReference"; "required": false; }; "refundlistsource": { "alias": "refundlistsource"; "required": false; }; }, {}, never, never, false, never>;
891
- }
892
-
893
- declare class RefundListComponent implements OnInit {
894
- private refundService;
895
- USERID: string;
896
- LOGGEDINUSERROLES: any[];
897
- LOGGEDINUSEREMAIL: string;
898
- constructor(refundService: RefundsService);
899
- tableApprovalHeader: string;
900
- tableRejectedHeader: string;
901
- submittedRefundList: IRefundList[];
902
- rejectedRefundList: IRefundList[];
903
- approvalStatus: string;
904
- rejectStatus: string;
905
- errorMessage: any;
906
- isApproveTableVisible: boolean;
907
- isRejectTableVisible: boolean;
908
- dropdownvalue: string;
909
- isAuthorized: boolean;
910
- userLst: any;
911
- ngOnInit(): void;
912
- static ɵfac: i0.ɵɵFactoryDeclaration<RefundListComponent, never>;
913
- 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>;
914
- }
915
-
916
- interface ICardDetails {
917
- card_brand: string;
918
- cardholder_name: string;
919
- email: string;
920
- expiry_date: string;
921
- last_digits_card_number: string;
922
- }
923
-
924
- declare class CardDetailsService {
925
- private http;
926
- private logger;
927
- private errorHandlerService;
928
- private paymentLibService;
929
- constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
930
- getCardDetails(paymentReference: string): Observable$1<ICardDetails>;
931
- static ɵfac: i0.ɵɵFactoryDeclaration<CardDetailsService, never>;
932
- static ɵprov: i0.ɵɵInjectableDeclaration<CardDetailsService>;
933
- }
934
-
935
- declare class CardDetailsComponent implements OnInit {
936
- private cardDetailsService;
937
- private paymentLibComponent;
938
- pageTitle: string;
939
- cardDetails: ICardDetails;
940
- paymentReference: string;
941
- errorMessage: string;
942
- constructor(cardDetailsService: CardDetailsService, paymentLibComponent: PaymentLibComponent);
943
- ngOnInit(): void;
944
- get getPaymentReference(): string;
945
- static ɵfac: i0.ɵɵFactoryDeclaration<CardDetailsComponent, never>;
946
- static ɵcmp: i0.ɵɵComponentDeclaration<CardDetailsComponent, "ccpay-card-details", never, {}, {}, never, never, false, never>;
947
- }
948
-
949
- declare class PageNotFoundComponent {
950
- static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
951
- static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "ng-component", never, {}, {}, never, never, false, never>;
952
- }
953
-
954
- declare class BulkScaningPaymentService {
955
- private http;
956
- private https;
957
- private errorHandlerService;
958
- private paymentLibService;
959
- constructor(http: HttpClient, https: WebComponentHttpClient, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
960
- getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments>;
961
- getBSPaymentsByDCN(dcn: string): Observable<IBSPayments>;
962
- postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any>;
963
- postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any>;
964
- postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any>;
965
- patchBSChangeStatus(dcnNumber: string, status: string): Observable<any>;
966
- calculateOutStandingAmount(paymentGroup: IPaymentGroup): number;
967
- removeUnwantedString(input: string, replaceText: string): string;
968
- downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable<any>;
969
- static ɵfac: i0.ɵɵFactoryDeclaration<BulkScaningPaymentService, never>;
970
- static ɵprov: i0.ɵɵInjectableDeclaration<BulkScaningPaymentService>;
971
- }
972
-
973
- type PaymentLibAlias$d = PaymentLibComponent;
974
- declare class MarkUnidentifiedPaymentComponent implements OnInit {
975
- private formBuilder;
976
- private paymentViewService;
977
- private paymentLibComponent;
978
- private bulkScaningPaymentService;
979
- caseType: string;
980
- markPaymentUnidentifiedForm: FormGroup;
981
- viewStatus: string;
982
- ccdCaseNumber: string;
983
- bspaymentdcn: string;
984
- isInvesticationDetailEmpty: boolean;
985
- investicationDetailHasError: boolean;
986
- investicationDetailMinHasError: boolean;
987
- investicationDetailMaxHasError: boolean;
988
- errorMessage: {
989
- title: string;
990
- body: string;
991
- showError: any;
992
- };
993
- unassignedRecord: IBSPayments;
994
- siteID: string;
995
- investigationComment: string;
996
- isConfirmButtondisabled: Boolean;
997
- ccdReference: string;
998
- exceptionReference: string;
999
- isStrategicFixEnable: boolean;
1000
- constructor(formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias$d, bulkScaningPaymentService: BulkScaningPaymentService);
1001
- ngOnInit(): void;
1002
- getUnassignedPayment(): void;
1003
- trimUnderscore(method: string): string;
1004
- saveAndContinue(): void;
1005
- resetForm(val: any): void;
1006
- confirmPayments(): void;
1007
- cancelMarkUnidentifiedPayments(type?: string): void;
1008
- gotoCasetransationPage(): void;
1009
- getErrorMessage(isErrorExist: any): {
1010
- title: string;
1011
- body: string;
1012
- showError: any;
1013
- };
1014
- static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnidentifiedPaymentComponent, never>;
1015
- static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnidentifiedPaymentComponent, "app-mark-unidentified-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
1016
- }
1017
-
1018
- type PaymentLibAlias$c = PaymentLibComponent;
1019
- declare class MarkUnsolicitedPaymentComponent implements OnInit {
1020
- private formBuilder;
1021
- private paymentViewService;
1022
- private paymentLibComponent;
1023
- private bulkScaningPaymentService;
1024
- caseType: string;
1025
- markPaymentUnsolicitedForm: FormGroup;
1026
- viewStatus: string;
1027
- reasonHasError: boolean;
1028
- isReasonEmpty: boolean;
1029
- reasonMinHasError: boolean;
1030
- reasonMaxHasError: boolean;
1031
- responsibleOfficeHasError: boolean;
1032
- isResponsibleOfficeEmpty: boolean;
1033
- errorMessage: {
1034
- title: string;
1035
- body: string;
1036
- showError: any;
1037
- };
1038
- ccdCaseNumber: string;
1039
- bspaymentdcn: string;
1040
- unassignedRecord: IBSPayments;
1041
- siteID: string;
1042
- reason: string;
1043
- responsiblePerson: string;
1044
- responsibleOffice: string;
1045
- emailId: string;
1046
- isConfirmButtondisabled: Boolean;
1047
- isContinueButtondisabled: Boolean;
1048
- ccdReference: string;
1049
- exceptionReference: string;
1050
- selectedSiteId: string;
1051
- selectedSiteName: string;
1052
- isStrategicFixEnable: boolean;
1053
- siteIDList: any;
1054
- constructor(formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias$c, bulkScaningPaymentService: BulkScaningPaymentService);
1055
- ngOnInit(): void;
1056
- trimUnderscore(method: string): string;
1057
- confirmPayments(): void;
1058
- saveAndContinue(): void;
1059
- resetForm(val: any, field: any): void;
1060
- cancelMarkUnsolicitedPayments(type?: string): void;
1061
- checkingFormValue(): boolean;
1062
- gotoCasetransationPage(): void;
1063
- getUnassignedPayment(): void;
1064
- getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
1065
- title: string;
1066
- body: string;
1067
- showError: any;
1068
- };
1069
- selectchange(args: any): void;
1070
- static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnsolicitedPaymentComponent, never>;
1071
- static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnsolicitedPaymentComponent, "app-mark-unsolicited-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
1072
- }
1073
-
1074
- declare class ProcessedPaymentsComponent implements OnInit {
1075
- private router;
1076
- private bulkScaningPaymentService;
1077
- NONPAYMENTS: IPayment[];
1078
- goToPaymentViewComponent: EventEmitter<any>;
1079
- constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService);
1080
- ngOnInit(): void;
1081
- trimUnderscore(method: string): string;
1082
- redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
1083
- static ɵfac: i0.ɵɵFactoryDeclaration<ProcessedPaymentsComponent, never>;
1084
- static ɵcmp: i0.ɵɵComponentDeclaration<ProcessedPaymentsComponent, "ccpay-app-processed-payments", never, { "NONPAYMENTS": { "alias": "NONPAYMENTS"; "required": false; }; }, { "goToPaymentViewComponent": "goToPaymentViewComponent"; }, never, never, false, never>;
1085
- }
1086
-
1087
- declare class CaseTransactionsService {
1088
- private http;
1089
- private logger;
1090
- private errorHandlerService;
1091
- private paymentLibService;
1092
- constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
1093
- getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]>;
1094
- static ɵfac: i0.ɵɵFactoryDeclaration<CaseTransactionsService, never>;
1095
- static ɵprov: i0.ɵɵInjectableDeclaration<CaseTransactionsService>;
1096
- }
1097
-
1098
- type PaymentLibAlias$b = PaymentLibComponent;
1099
- declare class AllocatePaymentsComponent implements OnInit {
1100
- private errorHandlerService;
1101
- private caseTransactionsService;
1102
- private formBuilder;
1103
- private paymentViewService;
1104
- private paymentLibComponent;
1105
- private bulkScaningPaymentService;
1106
- private OrderslistService;
1107
- isTurnOff: boolean;
1108
- caseType: string;
1109
- reasonEventEmitter: EventEmitter<string>;
1110
- explanationEventEmitter: EventEmitter<string>;
1111
- overUnderPaymentForm: FormGroup;
1112
- viewStatus: string;
1113
- ccdCaseNumber: string;
1114
- bspaymentdcn: string;
1115
- recordId: string;
1116
- feedbackUrlLabel: string;
1117
- unAllocatedPayment: IBSPayments;
1118
- siteID: string;
1119
- errorMessage: any;
1120
- paymentGroup: IPaymentGroup;
1121
- paymentGroups: IPaymentGroup[];
1122
- remainingAmount: number;
1123
- isRemainingAmountGtZero: boolean;
1124
- isMoreDetailsBoxHide: boolean;
1125
- isRemainingAmountLtZero: boolean;
1126
- afterFeeAllocateOutstanding: number;
1127
- amountForAllocation: number;
1128
- isConfirmButtondisabled: boolean;
1129
- isContinueButtondisabled: boolean;
1130
- otherPaymentExplanation: string;
1131
- selectedOption: string;
1132
- isFeeAmountZero: boolean;
1133
- paymentReasonHasError: boolean;
1134
- paymentExplanationHasError: boolean;
1135
- isPaymentDetailsEmpty: boolean;
1136
- isPaymentDetailsInvalid: boolean;
1137
- paymentDetailsMinHasError: boolean;
1138
- paymentDetailsMaxHasError: boolean;
1139
- isUserNameEmpty: boolean;
1140
- isUserNameInvalid: boolean;
1141
- ccdReference: string;
1142
- exceptionReference: string;
1143
- paymentReason: string;
1144
- paymentExplanation: string;
1145
- userName: string;
1146
- paymentSectionLabel: any;
1147
- paymentRef: string;
1148
- isStrategicFixEnable: boolean;
1149
- orderLevelFees: IOrderReferenceFee[];
1150
- cookieUserName: string[];
1151
- enCookieUserName: any;
1152
- userNameField: string;
1153
- reasonList: {
1154
- [key: string]: {
1155
- [key: string]: string;
1156
- };
1157
- };
1158
- explanationList: {
1159
- overPayment: {
1160
- referRefund: string;
1161
- noRefund: string;
1162
- noCase: string;
1163
- other: string;
1164
- };
1165
- shortFall: {
1166
- holdCase: string;
1167
- heldCase: string;
1168
- other: string;
1169
- };
1170
- };
1171
- refund: {
1172
- reason: {
1173
- duplicate: string;
1174
- humanerror: string;
1175
- caseWithdrawn: string;
1176
- other: string;
1177
- };
1178
- };
1179
- constructor(errorHandlerService: ErrorHandlerService, caseTransactionsService: CaseTransactionsService, formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias$b, bulkScaningPaymentService: BulkScaningPaymentService, OrderslistService: OrderslistService);
1180
- ngOnInit(): void;
1181
- getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
1182
- getExplanationValue(inputValue: string): void;
1183
- getReasonValue(inputValue: string): void;
1184
- getPaymentGroupDetails(): void;
1185
- selectedPaymentGroup(paymentGroup: IPaymentGroup): void;
1186
- gotoCasetransationPage(): void;
1187
- gotoSummaryPage(event: any): void;
1188
- cancelAllocatePayment(event: any): void;
1189
- confirmAllocatePayement(): void;
1190
- resetForm(vals: any, field: any): void;
1191
- finalServiceCall(): void;
1192
- saveAndContinue(): void;
1193
- getUnassignedPayment(): void;
1194
- selectRadioButton(key: any, type: any): void;
1195
- OrderListSelectEvent(orderef: any): void;
1196
- redirectToOrderFeeSearchPage(): void;
1197
- static ɵfac: i0.ɵɵFactoryDeclaration<AllocatePaymentsComponent, never>;
1198
- static ɵcmp: i0.ɵɵComponentDeclaration<AllocatePaymentsComponent, "app-allocate-payments", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; }, { "reasonEventEmitter": "reasonEventEmitter"; "explanationEventEmitter": "explanationEventEmitter"; }, never, never, false, never>;
1199
- }
1200
-
1201
- declare class PbaDetailsComponent implements OnInit {
1202
- payment: IPayment;
1203
- constructor();
1204
- ngOnInit(): void;
1205
- static ɵfac: i0.ɵɵFactoryDeclaration<PbaDetailsComponent, never>;
1206
- static ɵcmp: i0.ɵɵComponentDeclaration<PbaDetailsComponent, "ccpay-pba-details", never, { "payment": { "alias": "payment"; "required": false; }; }, {}, never, never, false, never>;
1207
- }
1208
-
1209
- type PaymentLibAlias$a = PaymentLibComponent;
1210
- declare class FeeSummaryComponent implements OnInit {
1211
- private router;
1212
- private bulkScaningPaymentService;
1213
- private location;
1214
- private paymentViewService;
1215
- private paymentLibComponent;
1216
- private OrderslistService;
1217
- paymentGroupRef: string;
1218
- ccdCaseNumber: string;
1219
- isTurnOff: string;
1220
- caseType: string;
1221
- telephonySelectionEnable: boolean;
1222
- paymentMethod: string;
1223
- bsPaymentDcnNumber: string;
1224
- paymentGroup: IPaymentGroup;
1225
- errorMessage: string;
1226
- viewStatus: string;
1227
- currentFee: IFee;
1228
- totalFee: number;
1229
- payhubHtml: SafeHtml;
1230
- service: string;
1231
- platForm: string;
1232
- upPaymentErrorMessage: string;
1233
- selectedOption: string;
1234
- isBackButtonEnable: boolean;
1235
- outStandingAmount: number;
1236
- isFeeAmountZero: boolean;
1237
- totalAfterRemission: number;
1238
- isConfirmationBtnDisabled: boolean;
1239
- isRemoveBtnDisabled: boolean;
1240
- isPaymentExist: boolean;
1241
- isRemissionsExist: Boolean;
1242
- isRemissionsMatch: boolean;
1243
- isStrategicFixEnable: boolean;
1244
- constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, location: Location, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias$a, OrderslistService: OrderslistService);
1245
- ngOnInit(): void;
1246
- getUnassignedPaymentlist(): void;
1247
- getRemissionByFeeCode(feeCode: string): IRemission;
1248
- addRemission(fee: IFee): void;
1249
- getPaymentGroup(): void;
1250
- confirmRemoveFee(fee: IFee): void;
1251
- removeFee(fee: any): void;
1252
- loadCaseTransactionPage(): void;
1253
- cancelRemission(): void;
1254
- redirectToFeeSearchPage(event: any, page?: string): void;
1255
- takePayment(): void;
1256
- goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean): void;
1257
- isCheckAmountdueExist(amountDue: any): amountDue is undefined;
1258
- getAntennaValue(): string;
1259
- getKervValue(): string;
1260
- getPaymentMethod(): string;
1261
- setPaymentValue(value: string): void;
1262
- isTakePaymentButtonDisabled(): boolean;
1263
- isTelephonySelectionEnable(): boolean;
1264
- isTelephonySelectionEnableNull(): void;
1265
- static ɵfac: i0.ɵɵFactoryDeclaration<FeeSummaryComponent, never>;
1266
- static ɵcmp: i0.ɵɵComponentDeclaration<FeeSummaryComponent, "ccpay-fee-summary", never, { "paymentGroupRef": { "alias": "paymentGroupRef"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "telephonySelectionEnable": { "alias": "telephonySelectionEnable"; "required": false; }; }, {}, never, never, false, never>;
1267
- }
1268
-
1269
- declare class keyValuePipe implements PipeTransform {
1270
- constructor();
1271
- transform(input: any): any;
1272
- static ɵfac: i0.ɵɵFactoryDeclaration<keyValuePipe, never>;
1273
- static ɵpipe: i0.ɵɵPipeDeclaration<keyValuePipe, "keyValue", false>;
1274
- }
1275
-
1276
- declare class SanitizeHtmlPipe implements PipeTransform {
1277
- private sanitizer;
1278
- constructor(sanitizer: DomSanitizer);
1279
- transform(value: any): SafeHtml;
1280
- static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
1281
- static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
1282
- }
1283
-
1284
- declare class XlFileService {
1285
- constructor();
1286
- exportAsExcelFile(json: any[], excelFileName: string): void;
1287
- private autoFitColumns;
1288
- private addRowData;
1289
- private setDataLossReportHeaders;
1290
- private setUnprocessedReportHeaders;
1291
- private setProcessedUnallocatedReportHeaders;
1292
- private setPaymentFailureReportHeaders;
1293
- private setShortFallReportHeaders;
1294
- private setTelphonyPaymentsReportHeaders;
1295
- private sanitizeString;
1296
- static ɵfac: i0.ɵɵFactoryDeclaration<XlFileService, never>;
1297
- static ɵprov: i0.ɵɵInjectableDeclaration<XlFileService>;
1298
- }
1299
-
1300
- type PaymentLibAlias$9 = PaymentLibComponent;
1301
- declare class ReportsComponent implements OnInit {
1302
- private xlFileService;
1303
- private errorHandlerService;
1304
- private formBuilder;
1305
- private bulkScaningPaymentService;
1306
- private paymentLibComponent;
1307
- private paymentViewService;
1308
- ISPAYMENTSTATUSENABLED: boolean;
1309
- fmt: string;
1310
- loc: string;
1311
- reportsForm: FormGroup;
1312
- startDate: string;
1313
- endDate: string;
1314
- errorMeaagse: string;
1315
- ccdCaseNumber: string;
1316
- isDownLoadButtondisabled: Boolean;
1317
- isStartDateLesthanEndDate: Boolean;
1318
- isDateBetwnMonth: Boolean;
1319
- isDateRangeBetnWeek: Boolean;
1320
- errorMessage: any;
1321
- paymentGroups: IPaymentGroup[];
1322
- constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibAlias$9, paymentViewService: PaymentViewService);
1323
- ngOnInit(): void;
1324
- getToday(): string;
1325
- getSelectedFromDate(): void;
1326
- validateDates(reportName: any): void;
1327
- fromValidation(): void;
1328
- downloadReport(): void;
1329
- getFileName(selectedOption: string, startDate: string, endDate: string): string;
1330
- tranformDate(strDate: string): string;
1331
- getTwodigit(input: number): string;
1332
- getCamelCaseString(selectedOption: any): any;
1333
- applyDateFormat(res: any): any;
1334
- multiDateFormater(dateStr: any): any;
1335
- convertToFloatValue(amt: any): string;
1336
- static ɵfac: i0.ɵɵFactoryDeclaration<ReportsComponent, never>;
1337
- static ɵcmp: i0.ɵɵComponentDeclaration<ReportsComponent, "ccpay-reports", never, { "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; }, {}, never, never, false, never>;
1338
- }
1339
-
1340
- declare class ErrorBannerComponent implements OnInit {
1341
- errorMessage: any;
1342
- constructor();
1343
- ngOnInit(): void;
1344
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorBannerComponent, never>;
1345
- static ɵcmp: i0.ɵɵComponentDeclaration<ErrorBannerComponent, "ccpay-error-banner", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
1346
- }
1347
-
1348
- type PaymentLibAlias$8 = PaymentLibComponent;
1349
- declare class TableComponent {
1350
- private paymentLibComponent;
1351
- private cdRef;
1352
- private OrderslistService;
1353
- private router;
1354
- private activeRoute;
1355
- DATASOURCE: any[];
1356
- STATUS: string;
1357
- errorMessage: string;
1358
- isApprovalFlow: boolean;
1359
- displayedColumns: string[];
1360
- dataSource: MatTableDataSource<any>;
1361
- userLst: any;
1362
- serviceLst: any;
1363
- actualcount: number;
1364
- count: number;
1365
- refundList: IRefundList[];
1366
- paginator: MatPaginator;
1367
- sort: MatSort;
1368
- constructor(paymentLibComponent: PaymentLibAlias$8, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService, router: Router, activeRoute: ActivatedRoute);
1369
- ngOnInit(): void;
1370
- /**
1371
- * Set the paginator and sort after the view init since this component will
1372
- * be able to query its view for the initialized paginator and sort.
1373
- */
1374
- ngAfterViewInit(): void;
1375
- applyFilter(filterValue: string): void;
1376
- selectchange(args: any): void;
1377
- goToRefundProcessComponent(refundReference: string, refundData: IRefundList): void;
1378
- goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
1379
- goToCaseReview(ccdCaseNumber: string, refundData: IRefundList): void;
1380
- static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
1381
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ccpay-table", never, { "DATASOURCE": { "alias": "DATASOURCE"; "required": false; }; "STATUS": { "alias": "STATUS"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
1382
- }
1383
-
1384
- declare class CcdHyphensPipe implements PipeTransform {
1385
- constructor();
1386
- transform(value: any, args?: any): any;
1387
- static ɵfac: i0.ɵɵFactoryDeclaration<CcdHyphensPipe, never>;
1388
- static ɵpipe: i0.ɵɵPipeDeclaration<CcdHyphensPipe, "ccdHyphens", true>;
1389
- }
1390
-
1391
- declare class CapitalizePipe implements PipeTransform {
1392
- constructor();
1393
- transform(s: any, args?: any): any;
1394
- static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
1395
- static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "capitalize", true>;
1396
- }
1397
-
1398
- interface IPaymentFailure {
1399
- additional_reference: string;
1400
- disputed_amount: number;
1401
- failure_event_date_time: string;
1402
- failure_reason: string;
1403
- failure_reference: string;
1404
- failure_type: string;
1405
- payment_reference: string;
1406
- representment_date: string;
1407
- representment_status: string;
1408
- has_amount_debited?: string;
1409
- status: string;
1410
- }
1411
-
1412
- type PaymentLibAlias$7 = PaymentLibComponent;
1413
- declare class PaymentViewComponent implements OnInit {
1414
- private paymentViewService;
1415
- private notificationService;
1416
- private paymentLibComponent;
1417
- private cd;
1418
- private OrderslistService;
1419
- isTurnOff: boolean;
1420
- isTakePayment: boolean;
1421
- caseType: boolean;
1422
- orderRef: string;
1423
- orderStatus: string;
1424
- orderTotalPayments: number;
1425
- payment: IPayment;
1426
- LOGGEDINUSERROLES: string[];
1427
- ISPAYMENTSTATUSENABLED: string;
1428
- orderParty: string;
1429
- orderCreated: Date;
1430
- orderCCDEvent: string;
1431
- orderFeesTotal: number;
1432
- orderRemissionTotal: number;
1433
- orderDetail: any[];
1434
- fees: any;
1435
- isFullyRefund: boolean;
1436
- isServiceRequest: string;
1437
- errorMsg: string;
1438
- paymentGroup: IPaymentGroup;
1439
- errorMessage: string;
1440
- ccdCaseNumber: string;
1441
- selectedOption: string;
1442
- dcnNumber: string;
1443
- isStatusAllocated: boolean;
1444
- isRemissionsMatch: boolean;
1445
- feeId: IFee;
1446
- viewStatus: string;
1447
- isRefundRemission: boolean;
1448
- isStrategicFixEnable: boolean;
1449
- isAddFeeBtnEnabled: boolean;
1450
- isIssueRefunfBtnEnable: boolean;
1451
- allowedRolesToAccessRefund: string[];
1452
- remissions: IRemission[];
1453
- allPaymentsFailure: IPaymentFailure[];
1454
- selectedPaymentsStatus: IPaymentFailure;
1455
- remissionFeeAmt: number;
1456
- isRefundRemissionBtnEnable: boolean;
1457
- serviceReference: string;
1458
- isFromServiceRequestPage: boolean;
1459
- isFromPaymentDetailPage: boolean;
1460
- paymentFees: IFee[];
1461
- paymentType: string;
1462
- isContinueBtnDisabled: boolean;
1463
- viewCompStatus: string;
1464
- contactDetailsObj: IRefundContactDetails;
1465
- notification: any;
1466
- isConfirmationBtnDisabled: boolean;
1467
- refundReference: string;
1468
- refundAmount: string;
1469
- templateInstructionType: string;
1470
- notificationPreview: boolean;
1471
- constructor(paymentViewService: PaymentViewService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$7, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
1472
- ngAfterContentChecked(): void;
1473
- ngOnInit(): void;
1474
- get isCardPayment(): boolean;
1475
- get isTelephonyPayment(): boolean;
1476
- goToPaymentList(): void;
1477
- getOverPaymentValue(): number;
1478
- goToServiceRequestPage(): void;
1479
- goToCaseTransationPage(event: any): void;
1480
- addRemission(fee: IFee): void;
1481
- checkForFees(paymentGroup: any): boolean;
1482
- processRefund(): void;
1483
- gotoAddressPage(note?: IRefundContactDetails): void;
1484
- addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
1485
- goToPaymentViewComponent(): void;
1486
- issueRefund(paymentgrp: IPaymentGroup): void;
1487
- isAnyRefundsForThisCase(): boolean;
1488
- showOverPayment(): void;
1489
- showIssueRefundPage(paymentgrp: IPaymentGroup): void;
1490
- getBalanceToBePaid(): number;
1491
- getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission;
1492
- chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
1493
- chkIsAddRefundBtnEnable(remission: IRemission): boolean;
1494
- canItBeRefunded(remission: IRemission): boolean;
1495
- chkIsAddRemissionBtnEnable(fee: IFee): boolean;
1496
- selectPymentOption(paymentType: string): void;
1497
- continuePayment(paymentgrp: IPaymentGroup): void;
1498
- gotoPaymentSelectPage(event: Event): void;
1499
- getContactDetails(obj: IRefundContactDetails): void;
1500
- resetOrderData(): void;
1501
- goToPaymentFailuePage(payment: any): void;
1502
- goBackToPaymentView(event: any): void;
1503
- getTemplateInstructionType(payment: IPayment): void;
1504
- showNotificationPreview(): void;
1505
- hideNotificationPreview(): void;
1506
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentViewComponent, never>;
1507
- 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>;
1508
- }
1509
-
1510
- type PaymentLibAlias$6 = PaymentLibComponent;
1511
- declare class ContactDetailsComponent implements OnInit {
1512
- private formBuilder;
1513
- private notificationService;
1514
- private paymentLibComponent;
1515
- isEditOperation: boolean;
1516
- isEditOperationInRefundList: boolean;
1517
- addressObj: any;
1518
- assignContactDetails: EventEmitter<any>;
1519
- assignContactDetailsInFefundsList: EventEmitter<any>;
1520
- redirectToIssueRefund: EventEmitter<any>;
1521
- pageTitle: string;
1522
- errorMessage: string;
1523
- isEmailSAddressClicked: boolean;
1524
- isShowPickAddress: boolean;
1525
- isPostcodeClicked: boolean;
1526
- isManualAddressClicked: boolean;
1527
- emailAddressForm: FormGroup;
1528
- postCodeForm: FormGroup;
1529
- manualAddressForm: FormGroup;
1530
- addressPostcodeList: any[];
1531
- postcodeAddress: any;
1532
- isAddressBoxEmpty: boolean;
1533
- isEmailEmpty: boolean;
1534
- emailHasError: boolean;
1535
- isPostcodeEmpty: boolean;
1536
- postcodeHasError: boolean;
1537
- isaddressLine1Empty: boolean;
1538
- addressLine1HasError: boolean;
1539
- addressLine2HasError: boolean;
1540
- isTownOrCityEmpty: boolean;
1541
- townOrCityHasError: boolean;
1542
- isCountyEmpty: boolean;
1543
- countyHasError: boolean;
1544
- isMPostcodeEmpty: boolean;
1545
- mpostcodeHasError: boolean;
1546
- isCountryEmpty: boolean;
1547
- constructor(formBuilder: FormBuilder, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$6);
1548
- ngOnInit(): void;
1549
- setEditDetails(): void;
1550
- selectContactOption(type: any, isLinkedClied: any): void;
1551
- finalFormSubmit(): void;
1552
- postcodeValidation(str: any): void;
1553
- redirection(event: any): void;
1554
- resetForm(val: any, field: any): void;
1555
- static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
1556
- static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "ccpay-contact-details", never, { "isEditOperation": { "alias": "isEditOperation"; "required": false; }; "isEditOperationInRefundList": { "alias": "isEditOperationInRefundList"; "required": false; }; "addressObj": { "alias": "addressObj"; "required": false; }; }, { "assignContactDetails": "assignContactDetails"; "assignContactDetailsInFefundsList": "assignContactDetailsInFefundsList"; "redirectToIssueRefund": "redirectToIssueRefund"; }, never, never, true, never>;
1557
- }
1558
-
1559
- type PaymentLibAlias$5 = PaymentLibComponent;
1560
- declare class AddRemissionComponent implements OnInit {
1561
- private formBuilder;
1562
- private router;
1563
- private paymentViewService;
1564
- private notificationService;
1565
- private paymentLibComponent;
1566
- private refundService;
1567
- private cd;
1568
- private OrderslistService;
1569
- fee: IFee;
1570
- fees: any[];
1571
- payment: IPayment;
1572
- remission: IRemission;
1573
- ccdCaseNumber: string;
1574
- caseType: string;
1575
- viewCompStatus: string;
1576
- paymentGroupRef: string;
1577
- isTurnOff: boolean;
1578
- isRefundRemission: boolean;
1579
- isStrategicFixEnable: boolean;
1580
- paidAmount: any;
1581
- isFromRefundListPage: boolean;
1582
- isFromPaymentDetailPage: boolean;
1583
- isFromServiceRequestPage: boolean;
1584
- isFullyRefund: boolean;
1585
- feeamount: number;
1586
- refundPaymentReference: string;
1587
- isFromRefundStatusPage: boolean;
1588
- changeRefundReason: string;
1589
- isServiceRequest: string;
1590
- LOGGEDINUSERROLES: string[];
1591
- orderDetail: any[];
1592
- orderRef: string;
1593
- orderStatus: string;
1594
- orderParty: string;
1595
- orderCreated: Date;
1596
- orderCCDEvent: string;
1597
- takePayment: boolean;
1598
- orderFeesTotal: number;
1599
- orderTotalPayments: number;
1600
- orderRemissionTotal: number;
1601
- cancelRemission: EventEmitter<void>;
1602
- refundListReason: EventEmitter<{
1603
- reason: string;
1604
- code: string;
1605
- }>;
1606
- refundListAmount: EventEmitter<string>;
1607
- refundFees: EventEmitter<IFee[]>;
1608
- refund: {
1609
- reason: {
1610
- duplicate: string;
1611
- humanerror: string;
1612
- caseWithdrawn: string;
1613
- other: string;
1614
- };
1615
- };
1616
- contactDetailsObj: IRefundContactDetails;
1617
- notification: any;
1618
- remissionForm: FormGroup;
1619
- hasErrors: boolean;
1620
- viewStatus: string;
1621
- errorMessage: any;
1622
- option: string;
1623
- isConfirmationBtnDisabled: boolean;
1624
- bsPaymentDcnNumber: string;
1625
- selectedValue: string;
1626
- amount: any;
1627
- retroRemission: boolean;
1628
- remissionReference: string;
1629
- refundReference: string;
1630
- refundAmount: string;
1631
- paymentExplanationHasError: boolean;
1632
- refundReason: string;
1633
- selectedRefundReason: string;
1634
- selectedRefundReasonCode: string;
1635
- displayRefundReason: string;
1636
- refundCode: string;
1637
- remessionPayment: IPayment;
1638
- isRemissionCodeEmpty: boolean;
1639
- remissionCodeHasError: boolean;
1640
- isAmountEmpty: boolean;
1641
- isReasonEmpty: boolean;
1642
- amountHasError: boolean;
1643
- isRemissionLessThanFeeError: boolean;
1644
- refundHasError: boolean;
1645
- isPaymentSuccess: boolean;
1646
- isRemissionApplied: boolean;
1647
- remissionamt: number;
1648
- elementId: any;
1649
- commonRefundReasons: any[];
1650
- showReasonText: boolean;
1651
- isRefundReasonsSelected: boolean;
1652
- default: string;
1653
- reasonLength: number;
1654
- refundReasons: IRefundReasons[];
1655
- pattern1: string;
1656
- pattern2: string;
1657
- sendOrderDetail: any[];
1658
- sendOrderRef: string;
1659
- paymentReference: string;
1660
- class: string;
1661
- errorMsg: any[];
1662
- totalRefundAmount: number;
1663
- quantityUpdated: number;
1664
- fullRefund: boolean;
1665
- allowedRefundAmount: number;
1666
- isRemissionsMatch: boolean;
1667
- paymentFees: IFee[];
1668
- paymentGroup: IPaymentGroup;
1669
- isStatusAllocated: boolean;
1670
- isFromCheckAnsPage: boolean;
1671
- refundAmtForFeeVolumes: number;
1672
- paymentObj: IPayment;
1673
- templateInstructionType: string;
1674
- notificationPreview: boolean;
1675
- component: {
1676
- account_number: string;
1677
- amount: number;
1678
- case_reference: string;
1679
- ccd_case_number: string;
1680
- channel: string;
1681
- currency: string;
1682
- customer_reference: string;
1683
- date_created: string;
1684
- date_updated: string;
1685
- description: string;
1686
- method: string;
1687
- organisation_name: string;
1688
- payment_allocation: any[];
1689
- reference: string;
1690
- service_name: string;
1691
- site_id: string;
1692
- status: string;
1693
- };
1694
- constructor(formBuilder: FormBuilder, router: Router, paymentViewService: PaymentViewService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$5, refundService: RefundsService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
1695
- ngOnInit(): void;
1696
- goToPaymentViewComponent(): void;
1697
- refundFeesList(): void;
1698
- get feesList(): FormArray;
1699
- noneSelected(): boolean;
1700
- calculateRefundAmount(index: any, AppAmt: any): any;
1701
- check_en(i: any, v1: any, AppAmt: any, Volume: any): void;
1702
- addRemission(): void;
1703
- confirmRemission(): void;
1704
- resetRemissionForm(val: any, field: any): void;
1705
- addRemissionCode(): void;
1706
- gotoAddRetroRemissionCodePage(): void;
1707
- gotoCheckRetroRemissionPage(payment: IPayment): void;
1708
- gotoAmountRetroRemission(): void;
1709
- gotoProcessRetroRemissionPage(): void;
1710
- gotoProcessRetroRemission(note?: IRefundContactDetails): void;
1711
- confirmRetroRemission(): void;
1712
- processRefund(): void;
1713
- gotoIssueRefundConfirmation(payment: IPayment): void;
1714
- gotoIssueRefundPage(): void;
1715
- gotoIssuePage(isFullyRefund: any): void;
1716
- calAmtToRefund(value: any, amount: any, volume: any, i: any): void;
1717
- gotoContactDetailsPage(note?: IRefundContactDetails): void;
1718
- getRefundReasons(): void;
1719
- getErrorClass(elementId: any): void;
1720
- changeIssueRefundReason(): void;
1721
- confirmIssueRefund(isFullyRefund: any): void;
1722
- gotoRefundReasonPage(): void;
1723
- selectRadioButton(key: any, value: any): void;
1724
- selectchange(args: any): void;
1725
- getContactDetails(obj: IRefundContactDetails, type: any): void;
1726
- gotoPartialFeeRefundScreen(): void;
1727
- gotoServiceRequestPage(event: any): void;
1728
- gotoAddressPage(note?: IRefundContactDetails): void;
1729
- gotoRemissionSuccess(event: Event): void;
1730
- gotoCasetransationPage(): void;
1731
- gotoCasetransationPageCancelBtnClicked(event: Event): void;
1732
- canRefundBeApplied(): boolean;
1733
- resetOrderData(): void;
1734
- changeRefundAmount(): void;
1735
- getFormattedCurrency(currency: number): string | number;
1736
- showNotificationPreview(): void;
1737
- hideNotificationPreview(): void;
1738
- getTemplateInstructionType(paymentReference: string, payment?: IPayment): void;
1739
- getRefundAmountToBeDisplayed(remission: IRemission): string;
1740
- getRefundAmountToBeDisplayedForContinueJourney(): string;
1741
- getRemissionAmountToBeDisplayed(remission: IRemission): string;
1742
- isRemissionEnabled(feeCode: string): boolean;
1743
- isRemissionEnabledForFeeCode(feeCode: string): boolean;
1744
- getRemissions(feeCode: string): IRemission;
1745
- getRemissionsHwfAmount(feeCode: string): string;
1746
- getNetAmountFee(hwfAmount: number, feeAmount: number): number;
1747
- getRemissionValueForFullyRefund(): number;
1748
- static ɵfac: i0.ɵɵFactoryDeclaration<AddRemissionComponent, never>;
1749
- static ɵcmp: i0.ɵɵComponentDeclaration<AddRemissionComponent, "ccpay-add-remission", never, { "fee": { "alias": "fee"; "required": false; }; "fees": { "alias": "fees"; "required": false; }; "payment": { "alias": "payment"; "required": false; }; "remission": { "alias": "remission"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "viewCompStatus": { "alias": "viewCompStatus"; "required": false; }; "paymentGroupRef": { "alias": "paymentGroupRef"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "isRefundRemission": { "alias": "isRefundRemission"; "required": false; }; "isStrategicFixEnable": { "alias": "isStrategicFixEnable"; "required": false; }; "paidAmount": { "alias": "paidAmount"; "required": false; }; "isFromRefundListPage": { "alias": "isFromRefundListPage"; "required": false; }; "isFromPaymentDetailPage": { "alias": "isFromPaymentDetailPage"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; "isFullyRefund": { "alias": "isFullyRefund"; "required": false; }; "feeamount": { "alias": "feeamount"; "required": false; }; "refundPaymentReference": { "alias": "refundPaymentReference"; "required": false; }; "isFromRefundStatusPage": { "alias": "isFromRefundStatusPage"; "required": false; }; "changeRefundReason": { "alias": "changeRefundReason"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "takePayment": { "alias": "takepayment"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; }, { "cancelRemission": "cancelRemission"; "refundListReason": "refundListReason"; "refundListAmount": "refundListAmount"; "refundFees": "refundFees"; }, never, never, true, never>;
1750
- }
1751
-
1752
- type PaymentLibAlias$4 = PaymentLibComponent;
1753
- declare class ServiceRequestComponent implements OnInit {
1754
- private paymentLibComponent;
1755
- private paymentViewService;
1756
- private OrderslistService;
1757
- private notificationService;
1758
- private cd;
1759
- private router;
1760
- LOGGEDINUSERROLES: string[];
1761
- viewStatus: string;
1762
- orderDetail: any[];
1763
- orderRef: string;
1764
- orderStatus: string;
1765
- orderParty: string;
1766
- orderCreated: Date;
1767
- orderCCDEvent: string;
1768
- orderFeesTotal: number;
1769
- orderTotalPayments: number;
1770
- orderRemissionTotal: number;
1771
- paymentGroupList: IPaymentGroup;
1772
- takePayment: boolean;
1773
- ccdCaseNumber: boolean;
1774
- isServiceRequest: string;
1775
- goToServiceRquestComponent: EventEmitter<any>;
1776
- viewCompStatus: any;
1777
- servicerequest: string;
1778
- paymentType: string;
1779
- excReference: string;
1780
- paymentGroups: any[];
1781
- payments: IPayment[];
1782
- nonPayments: IPayment[];
1783
- allPayments: IPayment[];
1784
- remissions: IRemission[];
1785
- paymentFees: IFee[];
1786
- fees: any;
1787
- errorMessage: string;
1788
- totalFees: number;
1789
- totalPayments: number;
1790
- totalNonOffPayments: number;
1791
- totalRemissions: number;
1792
- selectedOption: string;
1793
- dcnNumber: string;
1794
- paymentRef: string;
1795
- isTurnOff: boolean;
1796
- isRefundRemission: boolean;
1797
- isStrategicFixEnable: boolean;
1798
- isAddFeeBtnEnabled: boolean;
1799
- isExceptionRecord: boolean;
1800
- isUnprocessedRecordSelected: boolean;
1801
- exceptionRecordReference: string;
1802
- isAnyFeeGroupAvilable: boolean;
1803
- isHistoricGroupAvailable: boolean;
1804
- isBulkScanEnable: any;
1805
- isRemissionsMatch: boolean;
1806
- isRemoveBtnDisabled: boolean;
1807
- feeId: IFee;
1808
- clAmountDue: number;
1809
- unprocessedRecordCount: number;
1810
- isFeeRecordsExist: boolean;
1811
- isGrpOutstandingAmtPositive: boolean;
1812
- totalRefundAmount: Number;
1813
- caseType: String;
1814
- isConfirmationBtnDisabled: boolean;
1815
- refundReference: string;
1816
- refundAmount: string;
1817
- payment: IPayment;
1818
- paymentGroup: IPaymentGroup;
1819
- paymentView: IPaymentView;
1820
- isAddRemissionEnable: boolean;
1821
- orderRemissionDetails: any[];
1822
- orderLevelFees: IOrderReferenceFee[];
1823
- cpoDetails: any[];
1824
- serviceRequestValue: string;
1825
- orderAddBtnEnable: boolean;
1826
- isFromPaymentDetailPage: boolean;
1827
- contactDetailsObj: IRefundContactDetails;
1828
- notification: any;
1829
- isCPODown: boolean;
1830
- test: boolean;
1831
- isPBA: boolean;
1832
- isIssueRefunfBtnEnable: boolean;
1833
- isAddRemissionBtnEnabled: boolean;
1834
- isRefundRemissionBtnEnable: boolean;
1835
- allowedRolesToAccessRefund: string[];
1836
- isFromServiceRequestPage: boolean;
1837
- navigationpage: string;
1838
- remissionFeeAmt: number;
1839
- isContinueBtnDisabled: boolean;
1840
- isFullyRefund: boolean;
1841
- templateInstructionType: string;
1842
- notificationPreview: boolean;
1843
- constructor(paymentLibComponent: PaymentLibAlias$4, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
1844
- ngOnInit(): void;
1845
- goToServiceRequestPage(): void;
1846
- goToCaseTransationPage(event: any): void;
1847
- addRemission(fee: IFee): void;
1848
- addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
1849
- cancelRemoval(): void;
1850
- removeFee(fee: any): void;
1851
- issueRefund(payment: IPayment): void;
1852
- isAnyRefundsForThisCase(): boolean;
1853
- showOverPayment(paymentgrp: IPaymentGroup, payment: any): void;
1854
- showIssueRefundPage(paymentgrp: IPaymentGroup, payment: any): void;
1855
- getBalanceToBePaid(): number;
1856
- goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
1857
- goToPaymentViewComponent(paymentGroup: any): void;
1858
- chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
1859
- chkIsAddRefundBtnEnable(remission: IRemission): boolean;
1860
- canItBeRefunded(remission: IRemission): boolean;
1861
- chkIsAddRemissionBtnEnable(fee: IFee): boolean;
1862
- resetOrderData(): void;
1863
- selectPymentOption(paymentType: string): void;
1864
- goToPaymentViewComp(): void;
1865
- continuePayment(paymentgrp: IPaymentGroup): void;
1866
- getContactDetails(obj: IRefundContactDetails): void;
1867
- gotoPaymentSelectPage(event: Event): void;
1868
- gotoAddressPage(note?: IRefundContactDetails): void;
1869
- processRefund(): void;
1870
- getOverPaymentValue(): number;
1871
- getTemplateInstructionType(payment: IPayment): void;
1872
- showNotificationPreview(): void;
1873
- hideNotificationPreview(): void;
1874
- hasPaymentsRole(): boolean;
1875
- static ɵfac: i0.ɵɵFactoryDeclaration<ServiceRequestComponent, never>;
1876
- static ɵcmp: i0.ɵɵComponentDeclaration<ServiceRequestComponent, "ccpay-service-request", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "viewStatus": { "alias": "viewStatus"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; "paymentGroupList": { "alias": "paymentGroupList"; "required": false; }; "takePayment": { "alias": "takePayment"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; }, { "goToServiceRquestComponent": "goToServiceRquestComponent"; }, never, never, true, never>;
1877
- }
1878
-
1879
- declare class NotificationPreviewComponent implements OnInit {
1880
- private errorHandlerService;
1881
- private notificationService;
1882
- payment: IPayment;
1883
- contactDetails: IRefundContactDetails;
1884
- refundReason: string;
1885
- refundAmount: number;
1886
- paymentReference: string;
1887
- refundReference: string;
1888
- previewJourney: string;
1889
- notificationSent: INotificationPreview;
1890
- notificationPreviewEvent: EventEmitter<INotificationPreview>;
1891
- notification: INotificationPreview;
1892
- notificationPreviewRequest: NotificationPreviewRequest;
1893
- today: number;
1894
- errorMessage: any;
1895
- constructor(errorHandlerService: ErrorHandlerService, notificationService: NotificationService);
1896
- ngOnInit(): void;
1897
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationPreviewComponent, never>;
1898
- 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>;
1899
- }
1900
-
1901
- type PaymentLibAlias$3 = PaymentLibComponent;
1902
- declare class CaseTransactionsComponent implements OnInit {
1903
- private router;
1904
- private paymentViewService;
1905
- private bulkScaningPaymentService;
1906
- private caseTransactionsService;
1907
- private paymentLibComponent;
1908
- private OrderslistService;
1909
- LOGGEDINUSERROLES: string[];
1910
- isTakePayment: boolean;
1911
- isFromServiceRequestPage: boolean;
1912
- takePayment: boolean;
1913
- ccdCaseNumber: string;
1914
- excReference: string;
1915
- paymentGroups: any[];
1916
- payments: IPayment[];
1917
- nonPayments: IPayment[];
1918
- allPayments: IPayment[];
1919
- remissions: IRemission[];
1920
- fees: IFee[];
1921
- errorMessage: string;
1922
- totalFees: number;
1923
- totalPayments: number;
1924
- totalNonOffPayments: number;
1925
- totalRemissions: number;
1926
- selectedOption: string;
1927
- dcnNumber: string;
1928
- paymentRef: string;
1929
- isTurnOff: boolean;
1930
- isRefundRemission: boolean;
1931
- isStrategicFixEnable: boolean;
1932
- isAddFeeBtnEnabled: boolean;
1933
- isExceptionRecord: boolean;
1934
- isUnprocessedRecordSelected: boolean;
1935
- exceptionRecordReference: string;
1936
- isAnyFeeGroupAvilable: boolean;
1937
- isHistoricGroupAvailable: boolean;
1938
- isBulkScanEnable: any;
1939
- isRemissionsMatch: boolean;
1940
- viewStatus: string;
1941
- isRemoveBtnDisabled: boolean;
1942
- feeId: IFee;
1943
- clAmountDue: number;
1944
- overPaymentAmount: number;
1945
- unprocessedRecordCount: number;
1946
- isFeeRecordsExist: boolean;
1947
- isGrpOutstandingAmtPositive: boolean;
1948
- totalRefundAmount: number;
1949
- caseType: String;
1950
- payment: IPayment;
1951
- paymentGroup: IPaymentGroup;
1952
- paymentView: IPaymentView;
1953
- orderDetail: any[];
1954
- isAddRemissionEnable: boolean;
1955
- orderRemissionDetails: any[];
1956
- orderLevelFees: IOrderReferenceFee[];
1957
- ispaymentGroupApisuccess: boolean;
1958
- cpoDetails: any[];
1959
- orderRef: string;
1960
- orderStatus: string;
1961
- orderParty: string;
1962
- orderCreated: Date;
1963
- orderCCDEvent: string;
1964
- serviceRequestValue: string;
1965
- orderAddBtnEnable: boolean;
1966
- orderFeesTotal: number;
1967
- orderRemissionTotal: number;
1968
- orderTotalPayments: number;
1969
- orderPendingPayments: number;
1970
- isCPODown: boolean;
1971
- test: boolean;
1972
- isPBA: boolean;
1973
- isIssueRefunfBtnEnable: boolean;
1974
- isAddRemissionBtnEnabled: boolean;
1975
- isRefundRemissionBtnEnable: boolean;
1976
- allowedRolesToAccessRefund: string[];
1977
- isEligible4PBAPayment: string[];
1978
- currentDate: Date;
1979
- navigationpage: string;
1980
- remissionFeeAmt: number;
1981
- constructor(router: Router, paymentViewService: PaymentViewService, bulkScaningPaymentService: BulkScaningPaymentService, caseTransactionsService: CaseTransactionsService, paymentLibComponent: PaymentLibAlias$3, OrderslistService: OrderslistService);
1982
- ngOnInit(): void;
1983
- setDefaults(): void;
1984
- getAllocationStatus(payments: any): any;
1985
- checkForExceptionRecord(): void;
1986
- calculateOrderFeesAmounts(): void;
1987
- resetOrderVariables(): void;
1988
- goToOrderViewDetailSection(orderReferenceObj: any): void;
1989
- redirectToOrderFeeSearchPage(event: any, orderef: any): void;
1990
- calculateAmounts(): void;
1991
- isThereRemissions(): boolean;
1992
- calculateOverpaymentBasedOnRemission(): void;
1993
- getOrderFeesTotalOrTotalFees(): number;
1994
- getNumberOfFeesPerCaseTransaction(): number;
1995
- calculateAmountDueTo(): void;
1996
- validateAmountDueTo(): void;
1997
- calculateOverpaymentBaseOnAcceptedRefund(): void;
1998
- canItCalculateAmountDueForRemission(): boolean;
1999
- calculateRefundAmount(): number;
2000
- getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
2001
- redirectToFeeSearchPage(event: any): void;
2002
- addRemission(fee: IFee): void;
2003
- addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
2004
- redirectToremissionPage(event: any): void;
2005
- goToServiceRequestPage(): void;
2006
- redirectToReportsPage(event: any): void;
2007
- loadFeeSummaryPage(paymentGroup: IPaymentGroup): void;
2008
- goToPaymentViewComponent(paymentGroup: any): void;
2009
- goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
2010
- selectedUnprocessedFeeEvent(unprocessedRecordId: string): void;
2011
- getUnprocessedFeeCount(unProcessedRecordCount: number): void;
2012
- calculateAmountDue(fee: IFee): number | "0.00";
2013
- confirmRemoveFee(fee: IFee): void;
2014
- cancelRemoval(): void;
2015
- removeFee(fee: any): void;
2016
- isCheckAmountdueExist(amountDue: any): amountDue is undefined;
2017
- issueRefund(payment: IPayment): void;
2018
- chkForAddRemission(feeCode: string): boolean;
2019
- chkForPBAPayment(): boolean;
2020
- chkIssueRefundBtnEnable(payment: IPayment): boolean;
2021
- chkIsRefundRemissionBtnEnable(): boolean;
2022
- check4AllowedRoles2AccessRefund: () => boolean;
2023
- check4AllowedRoles2AccessPBApayment: () => boolean;
2024
- allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
2025
- loadPBAAccountPage(orderRef: IPayment): void;
2026
- setBspaymentdcn(dcn: string): void;
2027
- setViewName(viewName: string): void;
2028
- setUnProcessedPaymentServiceId(serviceId: string): void;
2029
- setPaymentGroupReference(paymentGroupRef: string): void;
2030
- static ɵfac: i0.ɵɵFactoryDeclaration<CaseTransactionsComponent, never>;
2031
- static ɵcmp: i0.ɵɵComponentDeclaration<CaseTransactionsComponent, "ccpay-case-transactions", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "isTakePayment": { "alias": "isTakePayment"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; }, {}, never, never, true, never>;
2032
- }
2033
-
2034
- declare class UnprocessedPaymentsComponent implements OnInit {
2035
- private router;
2036
- private bulkScaningPaymentService;
2037
- private paymentViewService;
2038
- private OrderslistService;
2039
- FEE_RECORDS_EXISTS: boolean;
2040
- PAYMENTREF: string;
2041
- ISTURNOFF: boolean;
2042
- IS_BUTTON_ENABLE: boolean;
2043
- IS_OS_AMT_AVAILABLE: boolean;
2044
- ISSFENABLE: boolean;
2045
- PAYMENTSLENGTH: Number;
2046
- LEVEL: Number;
2047
- CCD_CASE_NUMBER: string;
2048
- SELECTED_OPTION: string;
2049
- DCN_NUMBER: string;
2050
- ISBSENABLE: boolean;
2051
- CASETYPE: string;
2052
- selectedUnprocessedFeeEvent: EventEmitter<string>;
2053
- getUnprocessedFeeCount: EventEmitter<string>;
2054
- setBspaymentdcn: EventEmitter<string>;
2055
- setViewName: EventEmitter<string>;
2056
- setUnProcessedPaymentServiceId: EventEmitter<string>;
2057
- setPaymentGroupReference: EventEmitter<string>;
2058
- viewStatus: string;
2059
- unassignedRecordList: IBSPayments;
2060
- upPaymentErrorMessage: string;
2061
- ccdCaseNumber: string;
2062
- recordId: string;
2063
- isRecordExist: boolean;
2064
- dcnNumber: string;
2065
- selectedOption: string;
2066
- isUnprocessedRecordSelected: boolean;
2067
- isAllocateToExistingFeebtnEnabled: boolean;
2068
- isMarkAsUnidentifiedbtnEnabled: boolean;
2069
- isAllocatedToNewFeebtnEnabled: boolean;
2070
- isExceptionCase: boolean;
2071
- serviceId: string;
2072
- isBulkScanEnable: any;
2073
- isTurnOff: boolean;
2074
- isStFixEnable: any;
2075
- unassignedRecordSelectedList: IBSPayments;
2076
- unassignedRecordListLength: number;
2077
- showContent: boolean;
2078
- constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, paymentViewService: PaymentViewService, OrderslistService: OrderslistService);
2079
- ngOnInit(): void;
2080
- getUnassignedPaymentlist(): void;
2081
- setValuesForUnassignedRecord(unassignedPayments: any): void;
2082
- formatUnassignedRecordId(ID: Number): string;
2083
- trimUnderscore(method: string): string;
2084
- redirectToFeeSearchPage(event: any, dcn_reference: any): void;
2085
- loadUnsolicitedPage(viewName: string, dcn_reference: any): void;
2086
- unprocessedPaymentSelectEvent(selectedRecordReference: any): void;
2087
- resetButtons(): void;
2088
- goToAllocatePage(dcn_reference: any): void;
2089
- validateButtons(): void;
2090
- unprocessedPaymentUnSelectEvent(event: any): void;
2091
- showDetailRow(event: any, obj: any, i: any): void;
2092
- static ɵfac: i0.ɵɵFactoryDeclaration<UnprocessedPaymentsComponent, never>;
2093
- static ɵcmp: i0.ɵɵComponentDeclaration<UnprocessedPaymentsComponent, "ccpay-app-unprocessed-payments", never, { "FEE_RECORDS_EXISTS": { "alias": "FEE_RECORDS_EXISTS"; "required": false; }; "PAYMENTREF": { "alias": "PAYMENTREF"; "required": false; }; "ISTURNOFF": { "alias": "ISTURNOFF"; "required": false; }; "IS_BUTTON_ENABLE": { "alias": "IS_BUTTON_ENABLE"; "required": false; }; "IS_OS_AMT_AVAILABLE": { "alias": "IS_OS_AMT_AVAILABLE"; "required": false; }; "ISSFENABLE": { "alias": "ISSFENABLE"; "required": false; }; "PAYMENTSLENGTH": { "alias": "PAYMENTSLENGTH"; "required": false; }; "LEVEL": { "alias": "LEVEL"; "required": false; }; "CCD_CASE_NUMBER": { "alias": "CCD_CASE_NUMBER"; "required": false; }; "SELECTED_OPTION": { "alias": "SELECTED_OPTION"; "required": false; }; "DCN_NUMBER": { "alias": "DCN_NUMBER"; "required": false; }; "ISBSENABLE": { "alias": "ISBSENABLE"; "required": false; }; "CASETYPE": { "alias": "CASETYPE"; "required": false; }; }, { "selectedUnprocessedFeeEvent": "selectedUnprocessedFeeEvent"; "getUnprocessedFeeCount": "getUnprocessedFeeCount"; "setBspaymentdcn": "setBspaymentdcn"; "setViewName": "setViewName"; "setUnProcessedPaymentServiceId": "setUnProcessedPaymentServiceId"; "setPaymentGroupReference": "setPaymentGroupReference"; }, never, never, true, never>;
2094
- }
2095
-
2096
- interface IRefundStatus {
2097
- date_created: string;
2098
- created_by: string;
2099
- id: number;
2100
- notes: string;
2101
- refunds_id: number;
2102
- status: string;
2103
- }
2104
-
2105
- interface IRefundFee {
2106
- fee_id: number;
2107
- code: string;
2108
- version: string;
2109
- volume: number;
2110
- refund_amount: number;
2111
- }
2112
-
2113
- type PaymentLibAlias$2 = PaymentLibComponent;
2114
- declare class RefundStatusComponent implements OnInit {
2115
- private formBuilder;
2116
- private refundService;
2117
- private notificationService;
2118
- private paymentLibComponent;
2119
- private OrderslistService;
2120
- private paymentViewService;
2121
- LOGGEDINUSERROLES: string[];
2122
- API_ROOT: string;
2123
- ccdCaseNumber: string;
2124
- isTurnOff: boolean;
2125
- orderParty: string;
2126
- refundStatusForm: FormGroup;
2127
- selectedRefundReason: string;
2128
- rejectedRefundList: IRefundList[];
2129
- notificationList: any;
2130
- notification: any;
2131
- approvalStatus: string;
2132
- rejectStatus: string;
2133
- errorMessage: any;
2134
- viewName: string;
2135
- refundReason: string;
2136
- refundlist: IRefundList;
2137
- bsPaymentDcnNumber: string;
2138
- isCallFromRefundList: boolean;
2139
- refundButtonState: string;
2140
- isAmountEmpty: boolean;
2141
- isReasonEmpty: boolean;
2142
- amountHasError: boolean;
2143
- isRemissionLessThanFeeError: boolean;
2144
- refundHasError: boolean;
2145
- refundReasons: any[];
2146
- refundStatusHistories: IRefundStatus[];
2147
- refundNotifications: IRefundStatus[];
2148
- isResendOperationSuccess: boolean;
2149
- isEditDetailsClicked: boolean;
2150
- isEditAddressDeatilsClicked: boolean;
2151
- addressDetails: IRefundContactDetails;
2152
- refundReference: string;
2153
- refundAmount: string;
2154
- refundCode: string;
2155
- isRefundBtnDisabled: boolean;
2156
- isFromPayBubble: boolean;
2157
- oldRefundReason: string;
2158
- refundreason: string;
2159
- navigationpage: string;
2160
- isLastUpdatedByCurrentUser: boolean;
2161
- isProcessRefund: boolean;
2162
- changedAmount: number;
2163
- isRemissionsMatch: boolean;
2164
- payment: IPayment;
2165
- changeRefundReason: string;
2166
- fees: IFee[];
2167
- refundFees: IRefundFee[];
2168
- paymentObj: IPayment;
2169
- templateInstructionType: string;
2170
- notificationSentViewIndex: number;
2171
- notificationPreview: boolean;
2172
- notificationSentView: boolean;
2173
- allowedRolesToAccessRefund: string[];
2174
- constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$2, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
2175
- ngOnInit(): void;
2176
- getRefundsStatusHistoryList(): void;
2177
- getRefundsNotification(): void;
2178
- goToRefundView(refundlist: IRefundList, navigationpage: string): void;
2179
- loadCaseTransactionPage(): void;
2180
- loadRefundListPage(): void;
2181
- gotoReviewDetailsPage(event: any): void;
2182
- gotoReviewAndReSubmitPage(): void;
2183
- gotoRefundReasonPage(refundReason: string): void;
2184
- gotoAmountPage(): void;
2185
- goToReviewAndSubmitView(): void;
2186
- resetRemissionForm(val: any, field: any): void;
2187
- selectRadioButton(key: any, value: any): void;
2188
- getRefundListReason(refundListReason: any): void;
2189
- getRefundAmount(amount: number): void;
2190
- getRefundFees(fees: IFee[]): void;
2191
- gotoReviewRefundConfirmationPage(): void;
2192
- gotoEditAddressDetails(note: IRefundsNotifications): void;
2193
- getContactDetails(obj: IRefundContactDetails): void;
2194
- getContactDetailsForRefundList(obj: IRefundContactDetails): void;
2195
- gotoEditDetailsPage(note?: any, view?: string): void;
2196
- submitEditDetail(): void;
2197
- putResend(notification: IRefundsNotifications): void;
2198
- gotoRefundViewPageCancelBtnClicked(event: Event): void;
2199
- gotoRefundReviewAndSubmitViewPageCancelBtnClicked(event: Event): void;
2200
- goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
2201
- getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
2202
- showNotificationPreview(): void;
2203
- hideNotificationPreview(): void;
2204
- showNotificationSentView(index: number): void;
2205
- hideNotificationSentView(): void;
2206
- static ɵfac: i0.ɵɵFactoryDeclaration<RefundStatusComponent, never>;
2207
- 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>;
2208
- }
2209
-
2210
- type PaymentLibAlias$1 = PaymentLibComponent;
2211
- declare class PbaPaymentComponent implements OnInit {
2212
- private paymentLibComponent;
2213
- private paymentViewService;
2214
- pbaPayOrderRef: any;
2215
- viewStatus: string;
2216
- pbaAccountList: string[];
2217
- isPBAAccountHold: boolean;
2218
- errorMsg: any;
2219
- isCardPaymentSuccess: boolean;
2220
- isInSufficiantFund: boolean;
2221
- isPBAAccountNotExist: boolean;
2222
- isPBAServerError: boolean;
2223
- isGetPBAAccountSucceed: boolean;
2224
- selectedPbaAccount: string;
2225
- pbaAccountRef: string;
2226
- isPbaAccountSelected: boolean;
2227
- isCardPaymentSelected: boolean;
2228
- isPBADropdownSelected: boolean;
2229
- isContinueButtondisabled: boolean;
2230
- isPBAAccountPaymentSuccess: boolean;
2231
- pbaAccountrPaymentResult: any;
2232
- orgName: string;
2233
- constructor(paymentLibComponent: PaymentLibAlias$1, paymentViewService: PaymentViewService);
2234
- ngOnInit(): void;
2235
- getPersistedLanguage(): RpxLanguage;
2236
- buttonCheck(): void;
2237
- selectpbaaccount(args: any): void;
2238
- saveAndContinue(): void;
2239
- cardPayment(): void;
2240
- selectPaymentMethod(type: string): void;
2241
- gotoCasetransationPage(): void;
2242
- static ɵfac: i0.ɵɵFactoryDeclaration<PbaPaymentComponent, never>;
2243
- static ɵcmp: i0.ɵɵComponentDeclaration<PbaPaymentComponent, "ccpay-pba-payment", never, { "pbaPayOrderRef": { "alias": "pbaPayOrderRef"; "required": false; }; }, {}, never, never, true, never>;
2244
- }
2245
-
2246
- interface IStatusHistories {
2247
- amount: number;
2248
- reference: string;
2249
- status: string;
2250
- status_histories: IStatusHistory[];
2251
- }
2252
-
2253
- declare class StatusHistoryService {
2254
- private http;
2255
- private logger;
2256
- private errorHandlerService;
2257
- private paymentLibService;
2258
- constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
2259
- getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable$1<IStatusHistories>;
2260
- static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryService, never>;
2261
- static ɵprov: i0.ɵɵInjectableDeclaration<StatusHistoryService>;
2262
- }
2263
-
2264
- type PaymentLibAlias = PaymentLibComponent;
2265
- declare class StatusHistoryComponent implements OnInit {
2266
- private statusHistoryService;
2267
- private paymentLibComponent;
2268
- isTakePayment: boolean;
2269
- pageTitle: string;
2270
- statuses: IStatusHistories;
2271
- errorMessage: string;
2272
- constructor(statusHistoryService: StatusHistoryService, paymentLibComponent: PaymentLibAlias);
2273
- ngOnInit(): void;
2274
- static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryComponent, never>;
2275
- static ɵcmp: i0.ɵɵComponentDeclaration<StatusHistoryComponent, "ccpay-payment-statuses", never, { "isTakePayment": { "alias": "isTakePayment"; "required": false; }; }, {}, never, never, true, never>;
2276
- }
2277
-
2278
- declare class PaymentLibModule {
2279
- static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibModule, never>;
2280
- static ɵmod: i0.ɵɵNgModuleDeclaration<PaymentLibModule, [typeof PaymentLibComponent, typeof PaymentListComponent, typeof ProcessRefundComponent, typeof RefundListComponent, typeof CardDetailsComponent, typeof PageNotFoundComponent, typeof MarkUnidentifiedPaymentComponent, typeof MarkUnsolicitedPaymentComponent, typeof ProcessedPaymentsComponent, typeof AllocatePaymentsComponent, typeof PbaDetailsComponent, typeof FeeSummaryComponent, typeof keyValuePipe, typeof SanitizeHtmlPipe, typeof ReportsComponent, typeof ErrorBannerComponent, typeof TableComponent], [typeof i18.CommonModule, typeof i19.FormsModule, typeof i19.ReactiveFormsModule, typeof i20.MatTableModule, typeof i21.MatPaginatorModule, typeof i22.MatSortModule, typeof i23.MatFormFieldModule, typeof i24.MatInputModule, typeof CcdHyphensPipe, typeof CapitalizePipe, typeof PaymentViewComponent, typeof ContactDetailsComponent, typeof AddRemissionComponent, typeof ServiceRequestComponent, typeof NotificationPreviewComponent, typeof CaseTransactionsComponent, typeof UnprocessedPaymentsComponent, typeof RefundStatusComponent, typeof PbaPaymentComponent, typeof StatusHistoryComponent, typeof i37.RpxTranslationModule], [typeof PaymentLibComponent]>;
2281
- static ɵinj: i0.ɵɵInjectorDeclaration<PaymentLibModule>;
2282
- }
2283
-
2284
- interface ICasePayments {
2285
- 'caseNumber': string;
2286
- 'payments': IPayment[];
2287
- }
2288
-
2289
- interface IPaymentHistory {
2290
- 'paymentStatus': string;
2291
- 'paymentAmount': string;
2292
- 'dateCreated': string;
2293
- }
2294
-
2295
- interface IPaymentDetails {
2296
- 'payment': IPayment;
2297
- 'fees': IFee;
2298
- 'cardDetails': ICardDetails;
2299
- 'paymentHistories': IPaymentHistory[];
2300
- 'caseNumber': string;
2301
- }
2302
-
2303
- interface IRefundNotification {
2304
- amount: number;
2305
- ccd_case_number: string;
2306
- date_created: string;
2307
- date_updated: string;
2308
- payment_reference: string;
2309
- reason: string;
2310
- refund_reference: string;
2311
- refund_status: {
2312
- description: string;
2313
- name: string;
2314
- };
2315
- user_full_name: string;
2316
- }
2317
-
2318
- interface IRefundStatusHistory {
2319
- iRefundStatus: IRefundStatus[];
2320
- lastUpdatedByCurrentUser: boolean;
2321
- }
2322
-
2323
- interface IUnprocessedRecords {
2324
- beneficiary_name: string;
2325
- ccd_case_number: string;
2326
- fee: string;
2327
- hwf_amount: number;
2328
- hwf_reference: string;
2329
- payment_group_reference: string;
2330
- site_id: string;
2331
- }
2332
-
2333
- declare class RefundsRequest {
2334
- payment_reference: string;
2335
- refund_reason: string;
2336
- constructor(payment_reference: string, refund_reason: string);
2337
- }
2338
-
2339
- export { AddRemissionRequest, AddRetroRemissionRequest, AllocatePaymentRequest, IAllocationPaymentsRequest, IPaymentStatus, IPutNotificationRequest, IResubmitRefundRequest, IserviceRequestCardPayment, IserviceRequestPbaPayment, IssueRefundRequest, NotificationPreviewRequest, PayhubAntennaRequest, PaymentLibComponent, PaymentLibModule, PaymentLibService, PaymentToPayhubRequest, PostIssueRefundRetroRemission, PostRefundRetroRemission, RefundsRequest, UnidentifiedPaymentsRequest, UnsolicitedPaymentsRequest };
2340
- export type { IBSPayments, ICardDetails, ICasePayments, IFee, INotificationPreview, IOrderReferenceFee, IPatchRefundAction, IPayment, IPaymentDetails, IPaymentFailure, IPaymentGroup, IPaymentHistory, IPaymentView, IPayments, IRefundAction, IRefundContactDetails, IRefundFee, IRefundList, IRefundNotification, IRefundReasons, IRefundRejectReason, IRefundStatus, IRefundStatusHistory, IRefundsNotifications, IRemission, IStatusHistories, IStatusHistory, IUnprocessedRecords };
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@hmcts/ccpay-web-component" />
5
+ export * from './public_api';