@hmcts/ccpay-web-component 5.0.1-beta105 → 5.0.1-beta106

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 (52) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +759 -142
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/hmcts-ccpay-web-component.js +34 -33
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +368 -58
  7. package/esm2015/lib/components/case-transactions/case-transactions.component.js +32 -4
  8. package/esm2015/lib/components/payment-view/payment-view.component.js +6 -4
  9. package/esm2015/lib/components/pba-payment/pba-payment.component.js +199 -0
  10. package/esm2015/lib/components/process-refund/process-refund.component.js +8 -3
  11. package/esm2015/lib/components/refund-status/refund-status.component.js +3 -3
  12. package/esm2015/lib/components/service-request/service-request.component.js +28 -9
  13. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +23 -0
  14. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +28 -0
  15. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +16 -4
  16. package/esm2015/lib/payment-lib.component.js +6 -4
  17. package/esm2015/lib/payment-lib.module.js +3 -3
  18. package/esm2015/lib/services/payment-view/payment-view.service.js +29 -1
  19. package/esm2015/lib/services/shared/error-handler.service.js +19 -10
  20. package/esm5/hmcts-ccpay-web-component.js +34 -33
  21. package/esm5/lib/components/add-remission/add-remission.component.js +444 -65
  22. package/esm5/lib/components/case-transactions/case-transactions.component.js +38 -4
  23. package/esm5/lib/components/payment-view/payment-view.component.js +6 -4
  24. package/esm5/lib/components/pba-payment/pba-payment.component.js +216 -0
  25. package/esm5/lib/components/process-refund/process-refund.component.js +8 -3
  26. package/esm5/lib/components/refund-status/refund-status.component.js +3 -3
  27. package/esm5/lib/components/service-request/service-request.component.js +32 -9
  28. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +22 -0
  29. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +25 -0
  30. package/esm5/lib/interfaces/PostRefundRetroRemission.js +12 -3
  31. package/esm5/lib/payment-lib.component.js +4 -3
  32. package/esm5/lib/payment-lib.module.js +3 -3
  33. package/esm5/lib/services/payment-view/payment-view.service.js +42 -1
  34. package/esm5/lib/services/shared/error-handler.service.js +19 -10
  35. package/fesm2015/hmcts-ccpay-web-component.js +643 -107
  36. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  37. package/fesm5/hmcts-ccpay-web-component.js +746 -109
  38. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  39. package/hmcts-ccpay-web-component.d.ts +33 -32
  40. package/hmcts-ccpay-web-component.metadata.json +1 -1
  41. package/lib/components/add-remission/add-remission.component.d.ts +22 -2
  42. package/lib/components/case-transactions/case-transactions.component.d.ts +5 -0
  43. package/lib/components/payment-view/payment-view.component.d.ts +1 -0
  44. package/lib/components/pba-payment/pba-payment.component.d.ts +27 -0
  45. package/lib/components/process-refund/process-refund.component.d.ts +1 -0
  46. package/lib/components/service-request/service-request.component.d.ts +2 -0
  47. package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
  48. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +7 -0
  49. package/lib/interfaces/PostRefundRetroRemission.d.ts +5 -2
  50. package/lib/payment-lib.component.d.ts +2 -0
  51. package/lib/services/payment-view/payment-view.service.d.ts +6 -2
  52. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { OnInit, EventEmitter } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
2
+ import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
3
3
  import { IFee } from '../../interfaces/IFee';
4
4
  import { Router } from '@angular/router';
5
5
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
@@ -11,6 +11,7 @@ import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
11
11
  import { ChangeDetectorRef } from '@angular/core';
12
12
  import { IRemission } from '../../interfaces/IRemission';
13
13
  import { OrderslistService } from '../../services/orderslist.service';
14
+ import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
14
15
  export declare class AddRemissionComponent implements OnInit {
15
16
  private formBuilder;
16
17
  private router;
@@ -20,6 +21,7 @@ export declare class AddRemissionComponent implements OnInit {
20
21
  private cd;
21
22
  private OrderslistService;
22
23
  fee: IFee;
24
+ fees: any[];
23
25
  payment: IPayment;
24
26
  remission: IRemission;
25
27
  ccdCaseNumber: string;
@@ -91,6 +93,7 @@ export declare class AddRemissionComponent implements OnInit {
91
93
  isPaymentSuccess: boolean;
92
94
  isRemissionApplied: boolean;
93
95
  remissionamt: number;
96
+ elementId: any;
94
97
  commonRefundReasons: any[];
95
98
  showReasonText: boolean;
96
99
  isRefundReasonsSelected: boolean;
@@ -101,6 +104,17 @@ export declare class AddRemissionComponent implements OnInit {
101
104
  pattern2: string;
102
105
  sendOrderDetail: any[];
103
106
  sendOrderRef: string;
107
+ paymentReference: string;
108
+ class: string;
109
+ errorMsg: any[];
110
+ totalRefundAmount: number;
111
+ quantityUpdated: number;
112
+ fullRefund: boolean;
113
+ allowedRefundAmount: number;
114
+ isRemissionsMatch: boolean;
115
+ paymentFees: IFee[];
116
+ paymentGroup: IPaymentGroup;
117
+ isStatusAllocated: boolean;
104
118
  component: {
105
119
  account_number: string;
106
120
  amount: number;
@@ -122,6 +136,10 @@ export declare class AddRemissionComponent implements OnInit {
122
136
  };
123
137
  constructor(formBuilder: FormBuilder, router: Router, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, refundService: RefundsService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
124
138
  ngOnInit(): void;
139
+ refundFeesList(): void;
140
+ readonly feesList: FormArray;
141
+ noneSelected(): boolean;
142
+ check_en(v1: any): void;
125
143
  addRemission(): void;
126
144
  confirmRemission(): void;
127
145
  resetRemissionForm(val: any, field: any): void;
@@ -135,10 +153,12 @@ export declare class AddRemissionComponent implements OnInit {
135
153
  processRefund(): void;
136
154
  gotoIssueRefundConfirmation(payment: IPayment): void;
137
155
  gotoIssueRefundPage(): void;
156
+ gotoIssuePage(): void;
138
157
  gotoContactDetailsPage(): void;
158
+ getRefundReasons(): void;
159
+ getErrorClass(elementId: any): void;
139
160
  changeIssueRefundReason(): void;
140
161
  confirmIssueRefund(): void;
141
- confirmRetroRefund(): void;
142
162
  selectRadioButton(key: any, value: any): void;
143
163
  selectchange(args: any): void;
144
164
  getContactDetails(obj: IRefundContactDetails, type: any): void;
@@ -67,6 +67,7 @@ export declare class CaseTransactionsComponent implements OnInit {
67
67
  isAddRemissionEnable: boolean;
68
68
  orderRemissionDetails: any[];
69
69
  orderLevelFees: IOrderReferenceFee[];
70
+ ispaymentGroupApisuccess: boolean;
70
71
  cpoDetails: any;
71
72
  orderRef: string;
72
73
  orderStatus: string;
@@ -86,6 +87,8 @@ export declare class CaseTransactionsComponent implements OnInit {
86
87
  isAddRemissionBtnEnabled: boolean;
87
88
  isRefundRemissionBtnEnable: boolean;
88
89
  allowedRolesToAccessRefund: string[];
90
+ isEligible4PBAPayment: string[];
91
+ currentDate: Date;
89
92
  isFromServiceRequestPage: boolean;
90
93
  navigationpage: string;
91
94
  remissionFeeAmt: number;
@@ -122,5 +125,7 @@ export declare class CaseTransactionsComponent implements OnInit {
122
125
  chkIssueRefundBtnEnable(payment: IPayment): boolean;
123
126
  chkIsRefundRemissionBtnEnable(): boolean;
124
127
  check4AllowedRoles2AccessRefund: () => boolean;
128
+ check4AllowedRoles2AccessPBApayment: () => boolean;
125
129
  allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
130
+ loadPBAAccountPage(orderRef: IPayment): void;
126
131
  }
@@ -48,6 +48,7 @@ export declare class PaymentViewComponent implements OnInit {
48
48
  serviceReference: string;
49
49
  isFromServiceRequestPage: boolean;
50
50
  isFromPaymentDetailPage: boolean;
51
+ paymentFees: IFee[];
51
52
  constructor(paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
52
53
  ngAfterContentChecked(): void;
53
54
  ngOnInit(): void;
@@ -0,0 +1,27 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { PaymentViewService } from '../../services/payment-view/payment-view.service';
3
+ import { PaymentLibComponent } from '../../payment-lib.component';
4
+ export declare class PbaPaymentComponent implements OnInit {
5
+ private paymentLibComponent;
6
+ private paymentViewService;
7
+ pbaPayOrderRef: any;
8
+ viewStatus: string;
9
+ pbaAccountList: string[];
10
+ errorMsg: any;
11
+ isCardPaymentSuccess: boolean;
12
+ isInSufficiantFund: boolean;
13
+ isPBAAccountNotExist: boolean;
14
+ isPBAServerError: boolean;
15
+ isGetPBAAccountSucceed: boolean;
16
+ selectedPbaAccount: string;
17
+ pbaAccountRef: string;
18
+ isContinueButtondisabled: boolean;
19
+ isPBAAccountPaymentSuccess: boolean;
20
+ pbaAccountrPaymentResult: any;
21
+ constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
22
+ ngOnInit(): void;
23
+ selectpbaaccount(args: any): void;
24
+ saveAndContinue(): void;
25
+ cardPayment(): void;
26
+ gotoCasetransationPage(): void;
27
+ }
@@ -43,6 +43,7 @@ export declare class ProcessRefundComponent implements OnInit {
43
43
  successMsg: string;
44
44
  navigationpage: string;
45
45
  ccdCaseNumber: string;
46
+ isFromRefundListPage: boolean;
46
47
  cpoDetails: any;
47
48
  isCPODown: boolean;
48
49
  isConfirmButtondisabled: boolean;
@@ -27,6 +27,7 @@ export declare class ServiceRequestComponent implements OnInit {
27
27
  orderRemissionTotal: number;
28
28
  takePayment: boolean;
29
29
  ccdCaseNumber: boolean;
30
+ isServiceRequest: string;
30
31
  servicerequest: string;
31
32
  excReference: string;
32
33
  paymentGroups: any[];
@@ -97,6 +98,7 @@ export declare class ServiceRequestComponent implements OnInit {
97
98
  check4AllowedRoles2AccessRefund: () => boolean;
98
99
  allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
99
100
  issueRefund(payment: IPayment): void;
101
+ goToServiceRequestPage(event: any): void;
100
102
  goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
101
103
  goToPaymentViewComponent(paymentGroup: any): void;
102
104
  resetOrderData(): void;
@@ -0,0 +1,6 @@
1
+ export declare class IserviceRequestCardPayment {
2
+ amount: string;
3
+ currency: string;
4
+ language: string;
5
+ constructor(amount: string);
6
+ }
@@ -0,0 +1,7 @@
1
+ export declare class IserviceRequestPbaPayment {
2
+ account_number: string;
3
+ amount: string;
4
+ currency: string;
5
+ customer_reference: string;
6
+ constructor(account_number: string, amount: string, customer_reference: string);
7
+ }
@@ -1,7 +1,10 @@
1
- import { IRefundContactDetails } from './IRefundContactDetails';
1
+ import { IRefundContactDetails } from "./IRefundContactDetails";
2
2
  export declare class PostRefundRetroRemission {
3
+ ccd_case_number: string;
3
4
  payment_reference: string;
4
5
  refund_reason: string;
6
+ refund_amount: any;
7
+ fees: any[];
5
8
  contact_details: IRefundContactDetails;
6
- constructor(payment_reference: string, refund_reason: string, contactDeatils: any);
9
+ constructor(ccd_case_number: string, payment_reference: string, refund_reason: string, refund_amount: any, fees: any[], contact_details: any);
7
10
  }
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { PaymentLibService } from './payment-lib.service';
3
3
  import { IBSPayments } from './interfaces/IBSPayments';
4
4
  import { OrderslistService } from './services/orderslist.service';
5
+ import { IPayment } from './interfaces/IPayment';
5
6
  export declare class PaymentLibComponent implements OnInit {
6
7
  private paymentLibService;
7
8
  private cd;
@@ -51,6 +52,7 @@ export declare class PaymentLibComponent implements OnInit {
51
52
  isFromRefundStatusPage: boolean;
52
53
  iscancelClicked: boolean;
53
54
  isFromPaymentDetailPage: boolean;
55
+ pbaPayOrderRef: IPayment;
54
56
  isTakePayment: boolean;
55
57
  orderDetail: any[];
56
58
  orderRef: string;
@@ -15,9 +15,10 @@ import { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest'
15
15
  import { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';
16
16
  import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
17
17
  import { BehaviorSubject } from 'rxjs';
18
+ import { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';
19
+ import { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';
18
20
  import { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';
19
21
  import { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';
20
- import { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';
21
22
  export declare class PaymentViewService {
22
23
  private http;
23
24
  private https;
@@ -30,6 +31,9 @@ export declare class PaymentViewService {
30
31
  getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment>;
31
32
  getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup>;
32
33
  getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup>;
34
+ getPBAaccountDetails(): Observable<any>;
35
+ postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any>;
36
+ postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any>;
33
37
  postBSPayments(body: AllocatePaymentRequest): Observable<any>;
34
38
  postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any>;
35
39
  postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any>;
@@ -46,5 +50,5 @@ export declare class PaymentViewService {
46
50
  getOrdersList(): BehaviorSubject<IOrderReferenceFee[]>;
47
51
  postRefundsReason(body: PostRefundRetroRemission): Observable<any>;
48
52
  postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any>;
49
- postRefundRetroRemission(body: PostIssueRefundRetroRemission): Observable<any>;
53
+ postRefundRetroRemission(body: PostRefundRetroRemission): Observable<any>;
50
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "5.0.1-beta105",
3
+ "version": "5.0.1-beta106",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },