@hmcts/ccpay-web-component 5.2.1 → 5.2.2-beta01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccpay-web-component.umd.js +8 -1
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/pba-payment/pba-payment.component.js +2 -1
- package/esm2015/lib/components/refund-status/refund-status.component.js +8 -2
- package/fesm2015/hmcts-ccpay-web-component.js +8 -1
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/lib/components/pba-payment/pba-payment.component.d.ts.map +1 -1
- package/lib/components/refund-status/refund-status.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6654,7 +6654,13 @@
|
|
|
6654
6654
|
};
|
|
6655
6655
|
RefundStatusComponent.prototype.getRefundFees = function (fees) {
|
|
6656
6656
|
this.fees = fees;
|
|
6657
|
-
this.refundFees = this.fees.map(function (obj) { return ({
|
|
6657
|
+
this.refundFees = this.fees.map(function (obj) { return ({
|
|
6658
|
+
fee_id: obj.id,
|
|
6659
|
+
code: obj.code,
|
|
6660
|
+
version: obj.version,
|
|
6661
|
+
volume: obj.updated_volume ? obj.updated_volume : obj.volume,
|
|
6662
|
+
refund_amount: obj.refund_amount
|
|
6663
|
+
}); });
|
|
6658
6664
|
};
|
|
6659
6665
|
RefundStatusComponent.prototype.gotoReviewRefundConfirmationPage = function () {
|
|
6660
6666
|
var _this = this;
|
|
@@ -7228,6 +7234,7 @@
|
|
|
7228
7234
|
this.isPBAAccountNotExist = false;
|
|
7229
7235
|
this.isPBAServerError = false;
|
|
7230
7236
|
this.isPBAAccountPaymentSuccess = false;
|
|
7237
|
+
this.isContinueButtondisabled = true;
|
|
7231
7238
|
if (this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1) {
|
|
7232
7239
|
var requestBody = new IserviceRequestPbaPayment(this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);
|
|
7233
7240
|
this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)
|