@hmcts/ccpay-web-component 5.0.2-beta102 → 5.0.2-beta105
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 +2117 -586
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/hmcts-ccpay-web-component.js +33 -31
- package/esm2015/lib/components/add-remission/add-remission.component.js +706 -141
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +38 -13
- package/esm2015/lib/components/contact-details/contact-details.component.js +447 -0
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +59 -16
- package/esm2015/lib/components/payment-view/payment-view.component.js +194 -106
- package/esm2015/lib/components/process-refund/process-refund.component.js +31 -9
- package/esm2015/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm2015/lib/components/refund-status/refund-status.component.js +215 -31
- package/esm2015/lib/components/service-request/service-request.component.js +235 -145
- package/esm2015/lib/components/table/table.component.js +24 -9
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
- package/esm2015/lib/interfaces/IFee.js +13 -1
- package/esm2015/lib/interfaces/IPayment.js +7 -1
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
- package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm2015/lib/interfaces/IRefundFee.js +21 -0
- package/esm2015/lib/interfaces/IRefundList.js +7 -1
- package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm2015/lib/interfaces/IRemission.js +7 -1
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +10 -2
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +16 -2
- package/esm2015/lib/payment-lib.component.js +21 -4
- package/esm2015/lib/payment-lib.module.js +3 -1
- package/esm2015/lib/payment-lib.service.js +16 -1
- package/esm2015/lib/services/notification/notification.service.js +85 -0
- package/esm2015/lib/services/refunds/refunds.service.js +10 -1
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm5/hmcts-ccpay-web-component.js +33 -31
- package/esm5/lib/components/add-remission/add-remission.component.js +828 -147
- package/esm5/lib/components/case-transactions/case-transactions.component.js +38 -13
- package/esm5/lib/components/contact-details/contact-details.component.js +472 -0
- package/esm5/lib/components/fee-summary/fee-summary.component.js +59 -16
- package/esm5/lib/components/payment-view/payment-view.component.js +225 -124
- package/esm5/lib/components/process-refund/process-refund.component.js +30 -12
- package/esm5/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm5/lib/components/refund-status/refund-status.component.js +251 -29
- package/esm5/lib/components/service-request/service-request.component.js +276 -176
- package/esm5/lib/components/table/table.component.js +27 -9
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
- package/esm5/lib/interfaces/IFee.js +13 -1
- package/esm5/lib/interfaces/IPayment.js +7 -1
- package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
- package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm5/lib/interfaces/IRefundFee.js +21 -0
- package/esm5/lib/interfaces/IRefundList.js +7 -1
- package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm5/lib/interfaces/IRemission.js +7 -1
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +8 -2
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +13 -2
- package/esm5/lib/payment-lib.component.js +16 -2
- package/esm5/lib/payment-lib.module.js +3 -1
- package/esm5/lib/payment-lib.service.js +23 -1
- package/esm5/lib/services/notification/notification.service.js +89 -0
- package/esm5/lib/services/refunds/refunds.service.js +16 -1
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/fesm2015/hmcts-ccpay-web-component.js +1861 -497
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2102 -533
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +32 -30
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +47 -3
- package/lib/components/case-transactions/case-transactions.component.d.ts +4 -1
- package/lib/components/contact-details/contact-details.component.d.ts +49 -0
- package/lib/components/fee-summary/fee-summary.component.d.ts +2 -0
- package/lib/components/payment-view/payment-view.component.d.ts +25 -6
- package/lib/components/process-refund/process-refund.component.d.ts +5 -2
- package/lib/components/refund-status/refund-status.component.d.ts +35 -6
- package/lib/components/service-request/service-request.component.d.ts +28 -9
- package/lib/components/table/table.component.d.ts +1 -0
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -0
- package/lib/interfaces/IFee.d.ts +6 -0
- package/lib/interfaces/IPayment.d.ts +3 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +4 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +3 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +6 -1
- package/lib/payment-lib.component.d.ts +5 -0
- package/lib/payment-lib.service.d.ts +3 -0
- package/lib/services/notification/notification.service.d.ts +15 -0
- package/lib/services/refunds/refunds.service.d.ts +2 -0
- package/package.json +5 -1
|
@@ -71,6 +71,26 @@
|
|
|
71
71
|
function () {
|
|
72
72
|
return this.REFUNDS_API_ROOT;
|
|
73
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* @param {?} notificationapiRoot
|
|
76
|
+
* @return {?}
|
|
77
|
+
*/
|
|
78
|
+
PaymentLibService.prototype.setNoticationApiRootUrl = /**
|
|
79
|
+
* @param {?} notificationapiRoot
|
|
80
|
+
* @return {?}
|
|
81
|
+
*/
|
|
82
|
+
function (notificationapiRoot) {
|
|
83
|
+
this.NOTIFICATION_API_ROOT = notificationapiRoot;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @return {?}
|
|
87
|
+
*/
|
|
88
|
+
PaymentLibService.prototype.getNoticationApiRootUrl = /**
|
|
89
|
+
* @return {?}
|
|
90
|
+
*/
|
|
91
|
+
function () {
|
|
92
|
+
return this.NOTIFICATION_API_ROOT;
|
|
93
|
+
};
|
|
74
94
|
/**
|
|
75
95
|
* @param {?} cardPaymentReturnUrl
|
|
76
96
|
* @return {?}
|
|
@@ -546,6 +566,7 @@
|
|
|
546
566
|
this.paymentLibService.setApiRootUrl(this.API_ROOT);
|
|
547
567
|
this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);
|
|
548
568
|
this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);
|
|
569
|
+
this.paymentLibService.setNoticationApiRootUrl(this.NOTIFICATION_API_ROOT);
|
|
549
570
|
this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);
|
|
550
571
|
if (this.LOGGEDINUSERROLES.length > 0) {
|
|
551
572
|
this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);
|
|
@@ -576,7 +597,7 @@
|
|
|
576
597
|
PaymentLibComponent.decorators = [
|
|
577
598
|
{ type: i0.Component, args: [{
|
|
578
599
|
selector: 'ccpay-payment-lib',
|
|
579
|
-
template: "\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n ></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\"\n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n "
|
|
600
|
+
template: "\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [isFromServiceRequestPage]=\"isFromServiceRequestPage\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n "
|
|
580
601
|
}] }
|
|
581
602
|
];
|
|
582
603
|
/** @nocollapse */
|
|
@@ -591,6 +612,7 @@
|
|
|
591
612
|
API_ROOT: [{ type: i0.Input, args: ['API_ROOT',] }],
|
|
592
613
|
BULKSCAN_API_ROOT: [{ type: i0.Input, args: ['BULKSCAN_API_ROOT',] }],
|
|
593
614
|
REFUNDS_API_ROOT: [{ type: i0.Input, args: ['REFUNDS_API_ROOT',] }],
|
|
615
|
+
NOTIFICATION_API_ROOT: [{ type: i0.Input, args: ['NOTIFICATION_API_ROOT',] }],
|
|
594
616
|
CARDPAYMENTRETURNURL: [{ type: i0.Input, args: ['CARDPAYMENTRETURNURL',] }],
|
|
595
617
|
CCD_CASE_NUMBER: [{ type: i0.Input, args: ['CCD_CASE_NUMBER',] }],
|
|
596
618
|
EXC_REFERENCE: [{ type: i0.Input, args: ['EXC_REFERENCE',] }],
|
|
@@ -606,6 +628,8 @@
|
|
|
606
628
|
ISSFENABLE: [{ type: i0.Input, args: ['ISSFENABLE',] }],
|
|
607
629
|
ISTURNOFF: [{ type: i0.Input, args: ['ISTURNOFF',] }],
|
|
608
630
|
CASETYPE: [{ type: i0.Input, args: ['CASETYPE',] }],
|
|
631
|
+
ISOLDPCIPALOFF: [{ type: i0.Input, args: ['ISOLDPCIPALOFF',] }],
|
|
632
|
+
ISNEWPCIPALOFF: [{ type: i0.Input, args: ['ISNEWPCIPALOFF',] }],
|
|
609
633
|
rootUrl: [{ type: i0.Input, args: ['rootUrl',] }],
|
|
610
634
|
REFUNDLIST: [{ type: i0.Input, args: ['REFUNDLIST',] }],
|
|
611
635
|
USERID: [{ type: i0.Input, args: ['USERID',] }],
|
|
@@ -1381,13 +1405,27 @@
|
|
|
1381
1405
|
return PaymentViewService;
|
|
1382
1406
|
}());
|
|
1383
1407
|
|
|
1408
|
+
/**
|
|
1409
|
+
* @fileoverview added by tsickle
|
|
1410
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1411
|
+
*/
|
|
1412
|
+
var PostRefundRetroRemission = /** @class */ (function () {
|
|
1413
|
+
function PostRefundRetroRemission(contact_details, fees, payment_reference, refund_reason, total_refund_amount) {
|
|
1414
|
+
this.contact_details = contact_details;
|
|
1415
|
+
this.fees = fees;
|
|
1416
|
+
this.payment_reference = payment_reference;
|
|
1417
|
+
this.refund_reason = refund_reason;
|
|
1418
|
+
this.total_refund_amount = total_refund_amount;
|
|
1419
|
+
}
|
|
1420
|
+
return PostRefundRetroRemission;
|
|
1421
|
+
}());
|
|
1422
|
+
|
|
1384
1423
|
/**
|
|
1385
1424
|
* @fileoverview added by tsickle
|
|
1386
1425
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1387
1426
|
*/
|
|
1388
1427
|
var PaymentViewComponent = /** @class */ (function () {
|
|
1389
1428
|
function PaymentViewComponent(paymentViewService, paymentLibComponent, cd, OrderslistService$$1) {
|
|
1390
|
-
var _this = this;
|
|
1391
1429
|
this.paymentViewService = paymentViewService;
|
|
1392
1430
|
this.paymentLibComponent = paymentLibComponent;
|
|
1393
1431
|
this.cd = cd;
|
|
@@ -1397,27 +1435,7 @@
|
|
|
1397
1435
|
this.isIssueRefunfBtnEnable = false;
|
|
1398
1436
|
this.allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];
|
|
1399
1437
|
this.remissions = [];
|
|
1400
|
-
this.
|
|
1401
|
-
* @return {?}
|
|
1402
|
-
*/function () {
|
|
1403
|
-
return _this.allowedRolesToAccessRefund.some(( /**
|
|
1404
|
-
* @param {?} role
|
|
1405
|
-
* @return {?}
|
|
1406
|
-
*/function (role) {
|
|
1407
|
-
return _this.LOGGEDINUSERROLES.indexOf(role) !== -1;
|
|
1408
|
-
}));
|
|
1409
|
-
});
|
|
1410
|
-
this.allowFurtherAccessAfter4Days = ( /**
|
|
1411
|
-
* @param {?} payment
|
|
1412
|
-
* @return {?}
|
|
1413
|
-
*/function (payment) {
|
|
1414
|
-
if (payment !== null && payment !== undefined) {
|
|
1415
|
-
/** @type {?} */
|
|
1416
|
-
var tmp4DayAgo = new Date();
|
|
1417
|
-
tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);
|
|
1418
|
-
return tmp4DayAgo >= new Date(payment.date_created);
|
|
1419
|
-
}
|
|
1420
|
-
});
|
|
1438
|
+
this.isContinueBtnDisabled = true;
|
|
1421
1439
|
}
|
|
1422
1440
|
/**
|
|
1423
1441
|
* @return {?}
|
|
@@ -1468,6 +1486,7 @@
|
|
|
1468
1486
|
}
|
|
1469
1487
|
}));
|
|
1470
1488
|
paymentGroup.fees = fees;
|
|
1489
|
+
_this.paymentFees = fees;
|
|
1471
1490
|
_this.paymentGroup = paymentGroup;
|
|
1472
1491
|
_this.paymentGroup.payments = _this.paymentGroup.payments.filter(( /**
|
|
1473
1492
|
* @param {?} paymentGroupObj
|
|
@@ -1511,6 +1530,23 @@
|
|
|
1511
1530
|
/**
|
|
1512
1531
|
* @return {?}
|
|
1513
1532
|
*/
|
|
1533
|
+
PaymentViewComponent.prototype.getOverPaymentValue = /**
|
|
1534
|
+
* @return {?}
|
|
1535
|
+
*/
|
|
1536
|
+
function () {
|
|
1537
|
+
/** @type {?} */
|
|
1538
|
+
var feesOverPayment = 0;
|
|
1539
|
+
this.paymentGroup.fees.forEach(( /**
|
|
1540
|
+
* @param {?} fee
|
|
1541
|
+
* @return {?}
|
|
1542
|
+
*/function (fee) {
|
|
1543
|
+
feesOverPayment += fee.over_payment;
|
|
1544
|
+
}));
|
|
1545
|
+
return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;
|
|
1546
|
+
};
|
|
1547
|
+
/**
|
|
1548
|
+
* @return {?}
|
|
1549
|
+
*/
|
|
1514
1550
|
PaymentViewComponent.prototype.goToServiceRequestPage = /**
|
|
1515
1551
|
* @return {?}
|
|
1516
1552
|
*/
|
|
@@ -1585,7 +1621,7 @@
|
|
|
1585
1621
|
*/
|
|
1586
1622
|
function (fee) {
|
|
1587
1623
|
var _this = this;
|
|
1588
|
-
if (this.
|
|
1624
|
+
if (this.chkIsAddRemissionBtnEnable(fee)) {
|
|
1589
1625
|
this.feeId = fee;
|
|
1590
1626
|
this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(( /**
|
|
1591
1627
|
* @param {?} paymentGroup
|
|
@@ -1623,6 +1659,62 @@
|
|
|
1623
1659
|
}
|
|
1624
1660
|
return false;
|
|
1625
1661
|
};
|
|
1662
|
+
/**
|
|
1663
|
+
* @return {?}
|
|
1664
|
+
*/
|
|
1665
|
+
PaymentViewComponent.prototype.processRefund = /**
|
|
1666
|
+
* @return {?}
|
|
1667
|
+
*/
|
|
1668
|
+
function () {
|
|
1669
|
+
var _this = this;
|
|
1670
|
+
this.isConfirmationBtnDisabled = true;
|
|
1671
|
+
this.errorMessage = '';
|
|
1672
|
+
/** @type {?} */
|
|
1673
|
+
var obj = this.paymentGroup.fees[0];
|
|
1674
|
+
this.fees = [{ id: obj.id,
|
|
1675
|
+
code: obj.code,
|
|
1676
|
+
version: obj.version,
|
|
1677
|
+
apportion_amount: obj.apportion_amount,
|
|
1678
|
+
calculated_amount: obj.calculated_amount,
|
|
1679
|
+
updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,
|
|
1680
|
+
volume: obj.volume,
|
|
1681
|
+
refund_amount: this.getOverPaymentValue() }];
|
|
1682
|
+
/** @type {?} */
|
|
1683
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.paymentGroup.payments[0].reference, 'RR037', this.getOverPaymentValue());
|
|
1684
|
+
this.paymentViewService.postRefundsReason(requestBody).subscribe(( /**
|
|
1685
|
+
* @param {?} response
|
|
1686
|
+
* @return {?}
|
|
1687
|
+
*/function (response) {
|
|
1688
|
+
if (JSON.parse(response)) {
|
|
1689
|
+
_this.viewCompStatus = '';
|
|
1690
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
1691
|
+
_this.refundReference = JSON.parse(response).refund_reference;
|
|
1692
|
+
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
1693
|
+
}
|
|
1694
|
+
}), ( /**
|
|
1695
|
+
* @param {?} error
|
|
1696
|
+
* @return {?}
|
|
1697
|
+
*/function (error) {
|
|
1698
|
+
_this.errorMessage = error;
|
|
1699
|
+
_this.isConfirmationBtnDisabled = false;
|
|
1700
|
+
_this.cd.detectChanges();
|
|
1701
|
+
}));
|
|
1702
|
+
};
|
|
1703
|
+
/**
|
|
1704
|
+
* @param {?=} note
|
|
1705
|
+
* @return {?}
|
|
1706
|
+
*/
|
|
1707
|
+
PaymentViewComponent.prototype.gotoAddressPage = /**
|
|
1708
|
+
* @param {?=} note
|
|
1709
|
+
* @return {?}
|
|
1710
|
+
*/
|
|
1711
|
+
function (note) {
|
|
1712
|
+
if (note) {
|
|
1713
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
1714
|
+
}
|
|
1715
|
+
this.errorMessage = '';
|
|
1716
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
1717
|
+
};
|
|
1626
1718
|
/**
|
|
1627
1719
|
* @param {?} payment
|
|
1628
1720
|
* @param {?} remission
|
|
@@ -1637,56 +1729,40 @@
|
|
|
1637
1729
|
*/
|
|
1638
1730
|
function (payment, remission, fees) {
|
|
1639
1731
|
var _this = this;
|
|
1640
|
-
if
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1732
|
+
//if(!this.chkIsIssueRefundBtnEnable(payment)) {
|
|
1733
|
+
this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(( /**
|
|
1734
|
+
* @param {?} paymentGroup
|
|
1735
|
+
* @return {?}
|
|
1736
|
+
*/function (paymentGroup) {
|
|
1737
|
+
_this.paymentGroup = paymentGroup;
|
|
1738
|
+
_this.paymentGroup.payments = _this.paymentGroup.payments.filter(( /**
|
|
1739
|
+
* @param {?} paymentGroupObj
|
|
1644
1740
|
* @return {?}
|
|
1645
|
-
*/function (
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
*/function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.payment.reference); }));
|
|
1651
|
-
_this.payment = _this.paymentGroup.payments[0];
|
|
1652
|
-
_this.remissions = remission;
|
|
1653
|
-
_this.remissionFeeAmt = fees.filter(( /**
|
|
1654
|
-
* @param {?} data
|
|
1655
|
-
* @return {?}
|
|
1656
|
-
*/function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
1657
|
-
_this.viewStatus = 'addrefundforremission';
|
|
1658
|
-
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
1659
|
-
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
1660
|
-
}), ( /**
|
|
1661
|
-
* @param {?} error
|
|
1741
|
+
*/function (paymentGroupObj) { return paymentGroupObj['reference'].includes(payment.reference); }));
|
|
1742
|
+
_this.payment = _this.paymentGroup.payments[0];
|
|
1743
|
+
_this.remissions = remission;
|
|
1744
|
+
_this.remissionFeeAmt = fees.filter(( /**
|
|
1745
|
+
* @param {?} data
|
|
1662
1746
|
* @return {?}
|
|
1663
|
-
*/function (
|
|
1664
|
-
|
|
1747
|
+
*/function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
1748
|
+
_this.viewStatus = 'addrefundforremission';
|
|
1749
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
1750
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
1751
|
+
}), ( /**
|
|
1752
|
+
* @param {?} error
|
|
1753
|
+
* @return {?}
|
|
1754
|
+
*/function (error) { return _this.errorMessage = error; }));
|
|
1755
|
+
//}
|
|
1665
1756
|
};
|
|
1666
1757
|
/**
|
|
1667
1758
|
* @return {?}
|
|
1668
1759
|
*/
|
|
1669
|
-
PaymentViewComponent.prototype.
|
|
1760
|
+
PaymentViewComponent.prototype.goToPaymentViewComponent = /**
|
|
1670
1761
|
* @return {?}
|
|
1671
1762
|
*/
|
|
1672
1763
|
function () {
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
this.paymentGroup.payments.forEach(( /**
|
|
1676
|
-
* @param {?} payment
|
|
1677
|
-
* @return {?}
|
|
1678
|
-
*/function (payment) {
|
|
1679
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
1680
|
-
_this.isRefundRemissionBtnEnable = true;
|
|
1681
|
-
}
|
|
1682
|
-
}));
|
|
1683
|
-
if (this.isRefundRemissionBtnEnable) {
|
|
1684
|
-
return true;
|
|
1685
|
-
}
|
|
1686
|
-
else {
|
|
1687
|
-
return false;
|
|
1688
|
-
}
|
|
1689
|
-
}
|
|
1764
|
+
this.viewCompStatus = '';
|
|
1765
|
+
this.viewStatus = 'paymentview';
|
|
1690
1766
|
};
|
|
1691
1767
|
/**
|
|
1692
1768
|
* @param {?} paymentgrp
|
|
@@ -1698,13 +1774,18 @@
|
|
|
1698
1774
|
*/
|
|
1699
1775
|
function (paymentgrp) {
|
|
1700
1776
|
if (paymentgrp !== null && paymentgrp !== undefined) {
|
|
1701
|
-
if (this.
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1777
|
+
if (this.chkIsIssueRefundBtnEnable(paymentgrp.payments[0])) {
|
|
1778
|
+
if (paymentgrp.payments[0].over_payment > 0) {
|
|
1779
|
+
this.viewCompStatus = 'overpayment';
|
|
1780
|
+
}
|
|
1781
|
+
else {
|
|
1782
|
+
this.paymentGroup = paymentgrp;
|
|
1783
|
+
this.viewStatus = 'issuerefund';
|
|
1784
|
+
this.isRefundRemission = true;
|
|
1785
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
1786
|
+
this.isFromPaymentDetailPage = true;
|
|
1787
|
+
this.isFromServiceRequestPage = false;
|
|
1788
|
+
}
|
|
1708
1789
|
}
|
|
1709
1790
|
}
|
|
1710
1791
|
};
|
|
@@ -1749,79 +1830,110 @@
|
|
|
1749
1830
|
* @param {?} payment
|
|
1750
1831
|
* @return {?}
|
|
1751
1832
|
*/
|
|
1752
|
-
PaymentViewComponent.prototype.
|
|
1833
|
+
PaymentViewComponent.prototype.chkIsIssueRefundBtnEnable = /**
|
|
1753
1834
|
* @param {?} payment
|
|
1754
1835
|
* @return {?}
|
|
1755
1836
|
*/
|
|
1756
1837
|
function (payment) {
|
|
1757
|
-
if (
|
|
1758
|
-
payment.
|
|
1759
|
-
this.isIssueRefunfBtnEnable = true;
|
|
1760
|
-
}
|
|
1761
|
-
if (this.isIssueRefunfBtnEnable) {
|
|
1762
|
-
return true;
|
|
1838
|
+
if (payment !== null && payment !== undefined) {
|
|
1839
|
+
return payment.issue_refund && payment.refund_enable;
|
|
1763
1840
|
}
|
|
1764
1841
|
else {
|
|
1765
1842
|
return false;
|
|
1766
1843
|
}
|
|
1767
1844
|
};
|
|
1768
1845
|
/**
|
|
1846
|
+
* @param {?} remission
|
|
1769
1847
|
* @return {?}
|
|
1770
1848
|
*/
|
|
1771
|
-
PaymentViewComponent.prototype.
|
|
1849
|
+
PaymentViewComponent.prototype.chkIsAddRefundBtnEnable = /**
|
|
1850
|
+
* @param {?} remission
|
|
1772
1851
|
* @return {?}
|
|
1773
1852
|
*/
|
|
1774
|
-
function () {
|
|
1775
|
-
if (
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
return true;
|
|
1780
|
-
}
|
|
1853
|
+
function (remission) {
|
|
1854
|
+
if (remission !== null && remission !== undefined) {
|
|
1855
|
+
return remission.add_refund;
|
|
1856
|
+
}
|
|
1857
|
+
else {
|
|
1781
1858
|
return false;
|
|
1782
1859
|
}
|
|
1783
1860
|
};
|
|
1784
1861
|
/**
|
|
1785
|
-
* @param {?}
|
|
1862
|
+
* @param {?} fee
|
|
1786
1863
|
* @return {?}
|
|
1787
1864
|
*/
|
|
1788
|
-
PaymentViewComponent.prototype.
|
|
1789
|
-
* @param {?}
|
|
1865
|
+
PaymentViewComponent.prototype.chkIsAddRemissionBtnEnable = /**
|
|
1866
|
+
* @param {?} fee
|
|
1790
1867
|
* @return {?}
|
|
1791
1868
|
*/
|
|
1792
|
-
function (
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {
|
|
1796
|
-
try {
|
|
1797
|
-
for (var _b = __values(this.paymentGroup.remissions), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1798
|
-
var remission = _c.value;
|
|
1799
|
-
if (remission.fee_code === feeCode) {
|
|
1800
|
-
return false;
|
|
1801
|
-
}
|
|
1802
|
-
}
|
|
1803
|
-
}
|
|
1804
|
-
catch (e_2_1) {
|
|
1805
|
-
e_2 = { error: e_2_1 };
|
|
1806
|
-
}
|
|
1807
|
-
finally {
|
|
1808
|
-
try {
|
|
1809
|
-
if (_c && !_c.done && (_a = _b.return))
|
|
1810
|
-
_a.call(_b);
|
|
1811
|
-
}
|
|
1812
|
-
finally {
|
|
1813
|
-
if (e_2)
|
|
1814
|
-
throw e_2.error;
|
|
1815
|
-
}
|
|
1816
|
-
}
|
|
1817
|
-
return true;
|
|
1818
|
-
}
|
|
1819
|
-
return true;
|
|
1869
|
+
function (fee) {
|
|
1870
|
+
if (fee !== null && fee !== undefined) {
|
|
1871
|
+
return fee.add_remission && fee.remission_enable;
|
|
1820
1872
|
}
|
|
1821
1873
|
else {
|
|
1822
1874
|
return false;
|
|
1823
1875
|
}
|
|
1824
1876
|
};
|
|
1877
|
+
/**
|
|
1878
|
+
* @param {?} paymentType
|
|
1879
|
+
* @return {?}
|
|
1880
|
+
*/
|
|
1881
|
+
PaymentViewComponent.prototype.selectPymentOption = /**
|
|
1882
|
+
* @param {?} paymentType
|
|
1883
|
+
* @return {?}
|
|
1884
|
+
*/
|
|
1885
|
+
function (paymentType) {
|
|
1886
|
+
this.paymentType = paymentType;
|
|
1887
|
+
this.isContinueBtnDisabled = false;
|
|
1888
|
+
};
|
|
1889
|
+
/**
|
|
1890
|
+
* @param {?} paymentgrp
|
|
1891
|
+
* @return {?}
|
|
1892
|
+
*/
|
|
1893
|
+
PaymentViewComponent.prototype.continuePayment = /**
|
|
1894
|
+
* @param {?} paymentgrp
|
|
1895
|
+
* @return {?}
|
|
1896
|
+
*/
|
|
1897
|
+
function (paymentgrp) {
|
|
1898
|
+
if (this.paymentType === 'op') {
|
|
1899
|
+
this.isFullyRefund = false;
|
|
1900
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
1901
|
+
}
|
|
1902
|
+
else if (this.paymentType === 'fp') {
|
|
1903
|
+
this.isFullyRefund = true;
|
|
1904
|
+
this.paymentGroup = paymentgrp;
|
|
1905
|
+
this.viewStatus = 'issuerefund';
|
|
1906
|
+
this.viewCompStatus = "";
|
|
1907
|
+
this.isRefundRemission = true;
|
|
1908
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
1909
|
+
this.isFromPaymentDetailPage = true;
|
|
1910
|
+
this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;
|
|
1911
|
+
}
|
|
1912
|
+
};
|
|
1913
|
+
/**
|
|
1914
|
+
* @param {?} event
|
|
1915
|
+
* @return {?}
|
|
1916
|
+
*/
|
|
1917
|
+
PaymentViewComponent.prototype.gotoPaymentSelectPage = /**
|
|
1918
|
+
* @param {?} event
|
|
1919
|
+
* @return {?}
|
|
1920
|
+
*/
|
|
1921
|
+
function (event) {
|
|
1922
|
+
event.preventDefault();
|
|
1923
|
+
this.viewCompStatus = 'overpayment';
|
|
1924
|
+
};
|
|
1925
|
+
/**
|
|
1926
|
+
* @param {?} obj
|
|
1927
|
+
* @return {?}
|
|
1928
|
+
*/
|
|
1929
|
+
PaymentViewComponent.prototype.getContactDetails = /**
|
|
1930
|
+
* @param {?} obj
|
|
1931
|
+
* @return {?}
|
|
1932
|
+
*/
|
|
1933
|
+
function (obj) {
|
|
1934
|
+
this.contactDetailsObj = obj;
|
|
1935
|
+
this.viewCompStatus = 'overpaymentcheckandanswer';
|
|
1936
|
+
};
|
|
1825
1937
|
/**
|
|
1826
1938
|
* @return {?}
|
|
1827
1939
|
*/
|
|
@@ -1841,8 +1953,8 @@
|
|
|
1841
1953
|
PaymentViewComponent.decorators = [
|
|
1842
1954
|
{ type: i0.Component, args: [{
|
|
1843
1955
|
selector: 'ccpay-payment-view',
|
|
1844
|
-
template: "\n<ng-container *ngIf=\"viewStatus === 'paymentview'\">\n<div class=\"govuk-width-container\">\n\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n\n <main class=\"govuk-main-wrapper govuk-!-padding-top-0\" id=\"main-content\" role=\"main\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div class=\"payment-view-alignment\" *ngIf=\"!errorMessage && paymentGroup?.payments[0]\">\n\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PAYMENTDETAILS'>\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Payment details</h1>\n </div>\n </div>\n <table>\n <tbody>\n\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Service request reference</td>\n <td class=\"tb-col-w\">{{ serviceReference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment reference</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment amount</td>\n <td class=\"tb-col-w\">\u00A3{{ paymentGroup?.payments[0]?.amount | number:'.2' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.document_control_number && !paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">Payment asset number(DCN)</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.document_control_number }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.document_control_number && !paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">Banked date</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.banked_date | date:'dd MMM yyyy' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">GovPay Transaction ID</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.external_reference }}</td>\n </tr>\n <tr class=\"section\" >\n <td class=\"bold tb-col-w\">Payment method</td>\n <td class=\"tb-col-w text-transform\">{{ paymentGroup?.payments[0]?.method }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.method === 'payment by account'\" >\n <td class=\"bold tb-col-w\">Type</td>\n <td class=\"tb-col-w\" *ngIf=\"paymentGroup?.payments[0]?.method !== 'card'\">Credit</td>\n <td class=\"tb-col-w\" *ngIf=\"paymentGroup?.payments[0]?.method === 'card'\">Card</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Channel</td>\n <td class=\"tb-col-w text-transform\">{{ paymentGroup?.payments[0]?.channel }}</td>\n </tr>\n <!-- <tr class=\"section\">\n <td class=\"bold tb-col-w\">Method</td>\n <td *ngIf=\"paymentGroup?.payments[0]?.method !== 'card'\">{{ paymentGroup?.payments[0]?.method }}</td>\n <td *ngIf=\"paymentGroup?.payments[0]?.method === 'card'\">CARD</td>\n </tr> -->\n <!-- <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.channel !== 'telephony'\">\n <td class=\"bold tb-col-w\">Status</td>\n <td>{{ paymentGroup?.payments[0]?.status }}</td>\n </tr> -->\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.payment_allocation[0] !== undefined\">\n <td class=\"bold tb-col-w\">Allocaton status</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.payment_allocation[0]?.allocation_status }}</td>\n </tr>\n\n <tr *ngIf=\"paymentGroup?.payments[0].organisation_name\">\n <td class=\"bold tb-col-w\">PBA account name</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.organisation_name }}</td>\n </tr>\n\n <tr *ngIf=\"paymentGroup?.payments[0].account_number\">\n <td class=\"bold tb-col-w\">PBA number</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.account_number }}</td>\n </tr>\n\n <tr *ngIf=\"paymentGroup?.payments[0].customer_reference\">\n <td class=\"bold tb-col-w\">Customer internal reference</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.customer_reference }}</td>\n </tr>\n\n </tbody>\n </table>\n\n <div>\n <!-- Status histories -->\n <ccpay-payment-statuses *ngIf=\"isStatusAllocated\" [isTakePayment]=\"isTakePayment\"></ccpay-payment-statuses>\n </div>\n <div class=\"remission\">\n <button [disabled]=\"!chkIssueRefundBtnEnable(paymentGroup?.payments[0])\" (click)=\"issueRefund(paymentGroup)\" class=\"govuk-button govuk-button--secondary\">Issue refund</button>\n </div>\n\n <div *ngIf=\"checkForFees(paymentGroup)\">\n <div *ngIf=\"paymentGroup.fees.length > 0\">\n <div class=\"column\">\n <br/>\n <br/>\n <h2 class=\"heading-large\">Fee and remission details</h2>\n\n </div>\n </div>\n\n <div *ngFor=\"let fee of paymentGroup.fees\">\n <table class=\"table\">\n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Description</td>\n <td class=\"tb-col-w\">Application for {{ fee.description }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Fee code</td>\n <td class=\"tb-col-w\">{{ fee?.code }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\" [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff }\">Fee amount</td>\n <td [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff}\">\u00A3{{ fee?.calculated_amount | number:'.2' }}</td>\n </tr>\n\n <tr *ngIf=\"fee.apportion_amount\">\n <td class=\"bold tb-col-w tr-border\" [ngClass]=\"{'tr-border': !fee.remissions}\">Allocated amount</td>\n <td [ngClass]=\"{'tr-border': !fee.remissions}\">\u00A3{{ fee?.apportion_amount | number:'.2' }}</td>\n </tr>\n\n </tbody>\n </table>\n <button [disabled]=\"!chkForAddRemission(fee.code)\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n\n\n\n <!-- <button *ngIf=\"paymentGroup.payments[0].method === 'payment by account'\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n -->\n\n </div>\n\n <!-- remissions -->\n <div class=\"order-class\">\n <div class=\"column\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Help with fees or remission code</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Reference</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Fee</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header whitespace-inherit refundBtn\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let remission of paymentGroup.remissions\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n <button [disabled]=\"!chkIsRefundRemissionBtnEnable()\" (click)=\"addRefundForRemission(paymentGroup.payments[0],remission,paymentGroup.fees)\" class=\"govuk-button govuk-button--secondary\"> Add refund</button>\n </td>\n <!-- <td *ngIf=\"!chkIsRefundRemissionBtnEnable()\" class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n\n </td> -->\n </tr>\n </tbody>\n\n\n </table>\n </div></div>\n\n <div *ngIf=\"paymentGroup.remissions?.length === 0\">\n <span class=\"mar-17\" >No help with fees or remissions.</span>\n </div>\n\n </div>\n\n\n\n <!-- card details -->\n <!-- <ccpay-card-details *ngIf=\"isCardPayment && !isTelephonyPayment\"></ccpay-card-details> -->\n\n <!-- pba details -->\n <!-- <ccpay-pba-details *ngIf=\"!isCardPayment\" [payment]=\"paymentGroup.payments[0]\"></ccpay-pba-details> -->\n\n\n\n </div>\n\n </main>\n</div>\n\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'addremission' && feeId\">\n<ccpay-add-remission\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[fee]=\"feeId\"\n[payment] = \"payment\"\n[orderStatus] =\"paymentGroup.payments[0].status\"\n[paidAmount]= \"paymentGroup.payments[0].amount\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[paymentGroupRef]=\"paymentGroup.payment_group_reference\"\n[isFromPaymentDetailPage] = \"true\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[orderRef] = \"orderRef\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'addrefundforremission' && payment\">\n\n<ccpay-add-remission\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[payment]=\"payment\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"false\"\n[paymentGroupRef]=\"paymentGroup.payment_group_reference\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[orderRef] = \"orderRef\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'issuerefund'\">\n <ccpay-add-remission\n [isTurnOff]=\"isTurnOff\"\n [isStrategicFixEnable]=\"isStrategicFixEnable\"\n [payment] = 'paymentGroup.payments[0]'\n [viewCompStatus]= \"viewStatus\"\n [orderStatus] =\"paymentGroup.payments[0].status\"\n [paidAmount]= \"paymentGroup.payments[0].amount\"\n [isRefundRemission]=\"isRefundRemission\"\n [caseType]=\"caseType\"\n [isFromServiceRequestPage]=\"isFromServiceRequestPage\"\n [isFromPaymentDetailPage] = \"isFromPaymentDetailPage\"\n [paymentGroupRef]=\"paymentGroup.payment_group_reference\"\n [ccdCaseNumber]=\"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [orderRef] = \"orderRef\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\">\n ></ccpay-add-remission>\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [takePayment] = \"isTakePayment\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [isServiceRequest] = \"isServiceRequest\"\n (goToServiceRquestComponent) = \"goToServiceRequestPage()\"\n>\n</ccpay-service-request>\n\n\n\n\n</ng-container>\n<!-- <ng-container *ngIf=\"isTakePayment\">\n <div class=\"govuk-width-container\">\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"#\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n\n <main class=\"govuk-main-wrapper govuk-!-padding-top-0\" id=\"main-content\" role=\"main\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div class=\"payment-view-alignment\" *ngIf=\"!errorMessage && paymentGroup\">\n\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PAYMENTDETAILS'>\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Payment details</h1>\n </div>\n </div>\n <table>\n <tbody>\n <tr class=\"section\" *ngIf=\"isTurnOff\">\n <td class=\"bold tb-col-w\">Payment group reference</td>\n <td>{{ paymentGroup.payment_group_reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment reference</td>\n <td>{{ paymentGroup.payments[0].reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment amount</td>\n <td>\u00A3{{ paymentGroup.payments[0].amount | number:'.2' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup.payments[0] && paymentGroup.payments[0].external_reference\">\n <td class=\"bold tb-col-w\">GovPay Transaction ID</td>\n <td>{{ paymentGroup.payments[0].external_reference }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup.payments[0] && paymentGroup.payments[0].document_control_number && !paymentGroup.payments[0].external_reference\">\n <td class=\"bold tb-col-w\">Payment asset number(DCN)</td>\n <td>{{ paymentGroup.payments[0].document_control_number }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup.payments[0] && paymentGroup.payments[0].document_control_number && !paymentGroup.payments[0].external_reference\">\n <td class=\"bold tb-col-w\">Banked date</td>\n <td>{{ paymentGroup.payments[0].banked_date | date:'dd MMM yyyy' }}</td>\n </tr>\n </tbody>\n </table>\n\n <div class=\"govuk-grid-row\" *ngIf=\"paymentGroup.fees.length > 0\">\n <div class=\"column\">\n <h2 class=\"heading-large\">Fee and remission details</h2>\n </div>\n </div>\n\n <div *ngFor=\"let fee of paymentGroup.fees\">\n <table class=\"table\">\n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Description</td>\n <td>Application for {{ fee.description }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Fee code</td>\n <td>{{ fee.code }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\" [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff }\">Fee amount</td>\n <td [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff }\">\u00A3{{ fee.calculated_amount | number:'.2' }}</td>\n </tr>\n <tr *ngIf=\"fee.net_amount && isTurnOff\">\n <td class=\"bold tb-col-w\" [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions}\" >Net amount</td>\n <td [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions}\">\u00A3{{ fee.net_amount | number:'.2' }}</td>\n </tr>\n <tr *ngIf=\"fee.apportion_amount\">\n <td class=\"bold tb-col-w tr-border\" [ngClass]=\"{'tr-border': !fee.remissions}\">Allocated amount</td>\n <td [ngClass]=\"{'tr-border': !fee.remissions}\">\u00A3{{ fee.apportion_amount | number:'.2' }}</td>\n </tr>\n\n <tr *ngIf=\"fee.remissions\">\n <td class=\"bold tb-col-w\">Remission code</td>\n <td>{{fee.remissions.hwf_reference}}</td>\n </tr>\n <tr *ngIf=\"fee.remissions\">\n <td class=\"bold tb-col-w tr-border\">Remission amount</td>\n <td class=\"tr-border\">\u00A3{{ fee.remissions.hwf_amount | number:'.2'}}</td>\n </tr>\n </tbody>\n </table>\n\n </div>\n\n <!-- card details -->\n <!-- <ccpay-card-details *ngIf=\"isCardPayment && !isTelephonyPayment\"></ccpay-card-details>\n -->\n <!-- pba details -->\n <!-- <ccpay-pba-details *ngIf=\"!isCardPayment\" [payment]=\"paymentGroup.payments[0]\"></ccpay-pba-details> -->\n <!-- Status histories -->\n <!-- <ccpay-payment-statuses *ngIf=\"isStatusAllocated\"[isTakePayment]=\"isTakePayment\" ></ccpay-payment-statuses>\n\n </div>\n\n </main>\n </div> -->\n<!-- </ng-container> -->\n",
|
|
1845
|
-
styles: [".tb-col-w{width:330px}.tr-border{border-bottom:2px solid}.payment-view-alignment{margin-left:30px}.govuk-button{font-size:19px;float:left;margin-top:2em}.remission{margin-bottom:7em}.govuk-error-summary__title{font-size:24px!important}.govuk-table__cell,.govuk-table__header{padding:0;line-height:1.3;vertical-align:middle}.govuk-table__row{line-height:1.3}.govuk-table__cell:last-child{text-align:right}.text-transform::first-letter{text-transform:capitalize}.govuk-link{cursor:pointer}.mar-17{font-size:19px!important}"]
|
|
1956
|
+
template: "<div class=\"payment-view-section\">\n<ng-container *ngIf=\"viewStatus === 'paymentview' && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n<div class=\"govuk-width-container\">\n\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n\n <main class=\"govuk-main-wrapper govuk-!-padding-top-0\" id=\"main-content\" role=\"main\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div class=\"payment-view-alignment\" *ngIf=\"!errorMessage && paymentGroup?.payments[0]\">\n\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PAYMENTDETAILS'>\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Payment details</h1>\n </div>\n </div>\n <table>\n <tbody>\n \n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Service request reference</td>\n <td class=\"tb-col-w\">{{ serviceReference }}</td> \n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment reference</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment amount</td>\n <td class=\"tb-col-w\">\u00A3{{ paymentGroup?.payments[0]?.amount | number:'.2' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.over_payment > 0\">\n <td class=\"bold tb-col-w\">Over payment</td>\n <td class=\"tb-col-w\">\u00A3{{ getOverPaymentValue() | number:'.2' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.document_control_number && !paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">Payment asset number(DCN)</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.document_control_number }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.document_control_number && !paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">Banked date</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.banked_date | date:'dd MMM yyyy' }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0] && paymentGroup?.payments[0]?.external_reference\">\n <td class=\"bold tb-col-w\">GovPay Transaction ID</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.external_reference }}</td>\n </tr>\n <tr class=\"section\" >\n <td class=\"bold tb-col-w\">Payment method</td>\n <td class=\"tb-col-w text-transform\">{{ paymentGroup?.payments[0]?.method }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.method === 'payment by account'\" >\n <td class=\"bold tb-col-w\">Type</td>\n <td class=\"tb-col-w\" *ngIf=\"paymentGroup?.payments[0]?.method !== 'card'\">Credit</td>\n <td class=\"tb-col-w\" *ngIf=\"paymentGroup?.payments[0]?.method === 'card'\">Card</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Channel</td>\n <td class=\"tb-col-w text-transform\">{{ paymentGroup?.payments[0]?.channel }}</td>\n </tr>\n <!-- <tr class=\"section\">\n <td class=\"bold tb-col-w\">Method</td>\n <td *ngIf=\"paymentGroup?.payments[0]?.method !== 'card'\">{{ paymentGroup?.payments[0]?.method }}</td>\n <td *ngIf=\"paymentGroup?.payments[0]?.method === 'card'\">CARD</td>\n </tr> -->\n <!-- <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.channel !== 'telephony'\">\n <td class=\"bold tb-col-w\">Status</td>\n <td>{{ paymentGroup?.payments[0]?.status }}</td>\n </tr> -->\n <tr class=\"section\" *ngIf=\"paymentGroup?.payments[0]?.payment_allocation[0] !== undefined\">\n <td class=\"bold tb-col-w\">Allocaton status</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.payment_allocation[0]?.allocation_status }}</td>\n </tr>\n \n <tr *ngIf=\"paymentGroup?.payments[0].organisation_name\">\n <td class=\"bold tb-col-w\">PBA account name</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.organisation_name }}</td>\n </tr>\n\n <tr *ngIf=\"paymentGroup?.payments[0].account_number\">\n <td class=\"bold tb-col-w\">PBA number</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.account_number }}</td>\n </tr>\n\n <tr *ngIf=\"paymentGroup?.payments[0].customer_reference\">\n <td class=\"bold tb-col-w\">Customer internal reference</td>\n <td class=\"tb-col-w\">{{ paymentGroup?.payments[0]?.customer_reference }}</td>\n </tr>\n \n </tbody>\n </table>\n\n <div>\n <!-- Status histories -->\n <ccpay-payment-statuses *ngIf=\"isStatusAllocated\" [isTakePayment]=\"isTakePayment\"></ccpay-payment-statuses>\n </div>\n <div class=\"remission\">\n <button [disabled]=\"!chkIsIssueRefundBtnEnable(paymentGroup?.payments[0])\" (click)=\"issueRefund(paymentGroup)\" class=\"govuk-button govuk-button--secondary\">Issue refund</button>\n </div>\n \n <div *ngIf=\"checkForFees(paymentGroup)\">\n <div *ngIf=\"paymentGroup.fees.length > 0\">\n <div class=\"column\">\n <br/>\n <br/>\n <h2 class=\"heading-large\">Fee and remission details</h2>\n \n </div>\n </div>\n \n <div *ngFor=\"let fee of paymentGroup.fees\">\n <table class=\"table\">\n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Description</td>\n <td class=\"tb-col-w\">Application for {{ fee.description }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Fee code</td>\n <td class=\"tb-col-w\">{{ fee?.code }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\" [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff }\">Fee amount</td>\n <td [ngClass]=\"{'tr-border': !fee.apportion_amount && !fee.remissions && !isTurnOff}\">\u00A3{{ fee?.calculated_amount | number:'.2' }}</td>\n </tr>\n \n <tr *ngIf=\"fee.apportion_amount\">\n <td class=\"bold tb-col-w tr-border\" [ngClass]=\"{'tr-border': !fee.remissions}\">Allocated amount</td>\n <td [ngClass]=\"{'tr-border': !fee.remissions}\">\u00A3{{ fee?.apportion_amount | number:'.2' }}</td>\n </tr>\n\n </tbody>\n </table>\n <button [disabled]=\"!chkIsAddRemissionBtnEnable(fee)\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n \n <!-- <button *ngIf=\"paymentGroup.payments[0].method === 'payment by account'\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n -->\n\n </div>\n\n <!-- remissions -->\n <div class=\"order-class\">\n <div class=\"column\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Help with fees or remission code</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Reference</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Fee</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header whitespace-inherit refundBtn\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let remission of paymentGroup.remissions\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n <button [disabled]=\"!chkIsAddRefundBtnEnable(remission)\" (click)=\"addRefundForRemission(paymentGroup.payments[0],remission,paymentGroup.fees)\" class=\"govuk-button govuk-button--secondary\"> Add refund</button>\n </td>\n <!-- <td *ngIf=\"!chkIsRefundRemissionBtnEnable()\" class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n \n </td> -->\n </tr>\n </tbody>\n \n\n </table>\n </div></div>\n \n <div *ngIf=\"paymentGroup.remissions?.length === 0\">\n <span class=\"mar-17\" >No help with fees or remissions.</span>\n </div>\n \n </div>\n\n\n\n <!-- card details -->\n <!-- <ccpay-card-details *ngIf=\"isCardPayment && !isTelephonyPayment\"></ccpay-card-details> -->\n\n <!-- pba details -->\n <!-- <ccpay-pba-details *ngIf=\"!isCardPayment\" [payment]=\"paymentGroup.payments[0]\"></ccpay-pba-details> -->\n\n \n\n </div>\n\n </main>\n</div>\n\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'addremission' && feeId && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n<ccpay-add-remission \n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[fee]=\"feeId\" \n[payment] = \"payment\"\n[orderStatus] =\"paymentGroup.payments[0].status\"\n[paidAmount]= \"paymentGroup.payments[0].amount\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[paymentGroupRef]=\"paymentGroup.payment_group_reference\" \n[isFromPaymentDetailPage] = \"true\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[orderRef] = \"orderRef\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'addrefundforremission' && payment && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n\n<ccpay-add-remission \n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[payment]=\"payment\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"false\" \n[paymentGroupRef]=\"paymentGroup.payment_group_reference\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[orderRef] = \"orderRef\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'issuerefund' && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n <ccpay-add-remission \n [isTurnOff]=\"isTurnOff\"\n [isStrategicFixEnable]=\"isStrategicFixEnable\" \n [isOldPcipalOff]=\"isOldPcipalOff\" \n [payment] = 'paymentGroup.payments[0]'\n [viewCompStatus]= \"viewStatus\"\n [isNewPcipalOff]=\"isNewPcipalOff\" \n [orderStatus] =\"paymentGroup.payments[0].status\"\n [paidAmount]= \"paymentGroup.payments[0].amount\"\n [isRefundRemission]=\"isRefundRemission\"\n [caseType]=\"caseType\" \n [isFromServiceRequestPage]=\"isFromServiceRequestPage\"\n [isFromPaymentDetailPage] = \"isFromPaymentDetailPage\"\n [paymentGroupRef]=\"paymentGroup.payment_group_reference\" \n [ccdCaseNumber]=\"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [orderRef] = \"orderRef\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [fees] =\"paymentFees\"\n [isFullyRefund] = \"isFullyRefund\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\">\n \n ></ccpay-add-remission>\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'order-full-view' && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [takePayment] = \"isTakePayment\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [isServiceRequest] = \"isServiceRequest\"\n (goToServiceRquestComponent) = \"goToServiceRequestPage()\"\n>\n</ccpay-service-request>\n\n\n\n\n</ng-container>\n</div>\n<div class=\"over-payment\">\n<ng-container *ngIf=\"viewCompStatus === 'overpayment'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='OVERPAYMENTPAGE'> \n <h1 class=\"heading-large\">Issue refund</h1>\n <h1 class=\"heading-medium\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h1>\n <span id=\"how-contacted-conditional-hint govuk-font19px\" class=\"form-hint\">\n Payment reference: {{paymentGroup?.payments[0]?.reference}}\n </span>\n<div class=\"govuk-form-group\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <b>\n Select payment to refund\n </b>\n </legend>\n <div class=\"govuk-radios\" data-module=\"govuk-radios\">\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"over-payment\" name=\"over-payment\" type=\"radio\" (click)=\"selectPymentOption('op')\" value=\"op\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"where-do-you-live\">\n Over payment \u00A3{{getOverPaymentValue() | number:'.2'}}\n </label>\n </div>\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"full-payment\" name=\"over-payment\" type=\"radio\" (click)=\"selectPymentOption('fp')\" value=\"fp\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"where-do-you-live-2\">\n Full payment \u00A3{{paymentGroup?.payments[0]?.amount | number:'.2'}}\n </label>\n </div>\n </div>\n <button class=\"govuk-button govuk-button--secondary over-payment-alignment govuk-font19px\"\n (click)=\"goToPaymentViewComponent()\"> Previous</button>\n <button \n (click)=\"continuePayment(paymentGroup)\"\n [disabled]=\"isContinueBtnDisabled\"\n [ngClass]='isContinueBtnDisabled ? \"button button--disabled govuk-!-margin-right-1 govuk-font19px\" : \"button govuk-!-margin-right-1 govuk-font19px\"'\n class=\"govuk-button\"> Continue</button>\n </fieldset>\n</div>\n</ng-container>\n\n<ng-container *ngIf=\"viewCompStatus === 'overPaymentAddressCapture'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='OVERPAYMENTADDRESSCAPTUREPAGE'> \n <h1 class=\"govuk-heading-l\">Issue refund</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint govuk-font19px\">\n Payment reference: {{paymentGroup?.payments[0]?.reference}}\n </span>\n<ccpay-contact-details \n[addressObj] = notification\n(assignContactDetails)=\"getContactDetails($event)\"\n(redirectToIssueRefund)=\"gotoPaymentSelectPage($event)\" ></ccpay-contact-details>\n<p>\n <a (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n</p>\n</ng-container>\n\n<ng-container *ngIf=\"viewCompStatus === 'overpaymentcheckandanswer'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREFUNDFORREMISSION'> \n <div class=\"govuk-warning-text\">\n \n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\"> {{paymentGroup.payments[0].reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">{{paymentGroup.payments[0].amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee amount</td>\n <td class=\"govuk-table__cell\">{{paymentGroup?.fees[0]?.net_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{getOverPaymentValue() | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund reason</td>\n <td class=\"govuk-table__cell\">Over payment</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"contactDetailsObj?.notification_type === 'EMAIL'\" class=\"contactDetails-width\">\n <strong>Email</strong>\n <br/>\n {{contactDetailsObj?.email}}\n </div>\n <div *ngIf=\"contactDetailsObj?.notification_type === 'LETTER'\" class=\"contactDetails-width\">\n <strong>Post</strong>\n <br/>\n {{contactDetailsObj?.address_line}} {{contactDetailsObj?.city}} {{contactDetailsObj?.county}} {{contactDetailsObj?.country}} {{contactDetailsObj?.postal_code}}\n </div>\n <a (click)=\"gotoAddressPage(contactDetailsObj)\" class=\"govuk-link right margin-top--size\" >Change</a>\n </td>\n </table>\n <button type=\"submit\" class=\"button govuk-button--secondary over-payment-alignment govuk-font19px\" (click)=\"gotoAddressPage(contactDetailsObj)\">Previous</button>\n <button type=\"submit\"\n [ngClass]='isContinueBtnDisabled ? \"button button--disabled govuk-!-margin-right-1 govuk-font19px\" : \"button govuk-!-margin-right-1 govuk-font19px\"'\n (click)=\"processRefund()\">\n Submit refund\n </button>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link govuk-font19px\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'refundconfirmationpage' && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONREFUNDCONFIRMATIONPAGE'> \n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n \n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n \n </div>\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount | currency:'GBP':'symbol-narrow':'1.2-2' }} has been created and will be passed to a team leader to approve.\n </p>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n\n</ng-container>\n</div>",
|
|
1957
|
+
styles: [".payment-view-section .tb-col-w{width:330px}.payment-view-section .tr-border{border-bottom:2px solid}.payment-view-section .payment-view-alignment{margin-left:30px}.payment-view-section .govuk-button{font-size:19px;float:left;margin-top:2em}.payment-view-section .remission{margin-bottom:7em}.payment-view-section .govuk-error-summary__title{font-size:24px!important}.payment-view-section .govuk-table__cell,.payment-view-section .govuk-table__header{padding:0;line-height:1.3;vertical-align:middle}.payment-view-section .govuk-table__row{line-height:1.3}.payment-view-section .govuk-table__cell:last-child{text-align:right}.payment-view-section .text-transform::first-letter{text-transform:capitalize}.payment-view-section .govuk-link{cursor:pointer}.payment-view-section .mar-17{font-size:19px!important}.over-payment .contactDetails-width{width:70%}.over-payment .margin-top10px{margin-top:20px}.over-payment .govuk-font19px{font-size:19px!important}.over-payment .margin-top--size{margin-top:-30px}.over-payment .over-payment-alignment{margin-right:10px}.over-payment .govuk-button{font-size:19px;float:left;margin-top:2em}.over-payment td.govuk-table__cell{width:50%}.over-payment .govuk-label--s,.over-payment .govuk-warning-text__text,.over-payment .hmcts-currency-input__symbol{font-size:19px;font-weight:400}.over-payment .inline-error-class{outline:#a71414 solid 3px;outline-offset:0;border-color:#a71414}.over-payment .inline-error-message{color:#a71414;border-color:#a71414;font-weight:700;margin-top:10px;font-size:20px}.over-payment .govuk-button-group{padding-top:2em}.over-payment .heading-medium{margin-top:.875em}.over-payment .heading-large{margin-top:.25em}.over-payment .govuk-panel--confirmation{color:#fff;background:#00703c}.over-payment .govuk-panel__title{font-size:5rem}.over-payment .govuk-body,.over-payment .govuk-body-m{font-size:2.1875rem}.over-payment .govuk-link{cursor:pointer}.over-payment .govuk-radios__conditional{padding-top:12px!important}.over-payment .right{float:right;cursor:pointer}.over-payment .radio{float:right}.over-payment .white{color:#fff}"]
|
|
1846
1958
|
}] }
|
|
1847
1959
|
];
|
|
1848
1960
|
/** @nocollapse */
|
|
@@ -1858,6 +1970,8 @@
|
|
|
1858
1970
|
isTurnOff: [{ type: i0.Input }],
|
|
1859
1971
|
isTakePayment: [{ type: i0.Input }],
|
|
1860
1972
|
caseType: [{ type: i0.Input }],
|
|
1973
|
+
isNewPcipalOff: [{ type: i0.Input }],
|
|
1974
|
+
isOldPcipalOff: [{ type: i0.Input }],
|
|
1861
1975
|
orderRef: [{ type: i0.Input }],
|
|
1862
1976
|
orderStatus: [{ type: i0.Input }],
|
|
1863
1977
|
orderTotalPayments: [{ type: i0.Input }],
|
|
@@ -2008,6 +2122,21 @@
|
|
|
2008
2122
|
function (body) {
|
|
2009
2123
|
return this.https.post(this.paymentLibService.REFUNDS_API_ROOT + "/refund", body).pipe(operators.catchError(this.errorHandlerService.handleError));
|
|
2010
2124
|
};
|
|
2125
|
+
/**
|
|
2126
|
+
* @param {?} body
|
|
2127
|
+
* @param {?} refundRef
|
|
2128
|
+
* @param {?} notificationType
|
|
2129
|
+
* @return {?}
|
|
2130
|
+
*/
|
|
2131
|
+
RefundsService.prototype.putResendOrEdit = /**
|
|
2132
|
+
* @param {?} body
|
|
2133
|
+
* @param {?} refundRef
|
|
2134
|
+
* @param {?} notificationType
|
|
2135
|
+
* @return {?}
|
|
2136
|
+
*/
|
|
2137
|
+
function (body, refundRef, notificationType) {
|
|
2138
|
+
return this.https.put(this.paymentLibService.REFUNDS_API_ROOT + "/resend/notification/" + refundRef + "?notificationType=" + notificationType, body).pipe(operators.catchError(this.errorHandlerService.handleError));
|
|
2139
|
+
};
|
|
2011
2140
|
/**
|
|
2012
2141
|
* @param {?} body
|
|
2013
2142
|
* @param {?} refund_reference
|
|
@@ -2092,8 +2221,9 @@
|
|
|
2092
2221
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2093
2222
|
*/
|
|
2094
2223
|
var ProcessRefundComponent = /** @class */ (function () {
|
|
2095
|
-
function ProcessRefundComponent(RefundsService$$1, formBuilder, OrderslistService$$1, paymentLibComponent, router$$1, activeRoute) {
|
|
2224
|
+
function ProcessRefundComponent(RefundsService$$1, paymentViewService, formBuilder, OrderslistService$$1, paymentLibComponent, router$$1, activeRoute) {
|
|
2096
2225
|
this.RefundsService = RefundsService$$1;
|
|
2226
|
+
this.paymentViewService = paymentViewService;
|
|
2097
2227
|
this.formBuilder = formBuilder;
|
|
2098
2228
|
this.OrderslistService = OrderslistService$$1;
|
|
2099
2229
|
this.paymentLibComponent = paymentLibComponent;
|
|
@@ -2116,6 +2246,7 @@
|
|
|
2116
2246
|
this.isReasonEmpty = false;
|
|
2117
2247
|
this.isReasonInvalid = false;
|
|
2118
2248
|
this.successMsg = null;
|
|
2249
|
+
this.cpoDetails = null;
|
|
2119
2250
|
this.isConfirmButtondisabled = true;
|
|
2120
2251
|
}
|
|
2121
2252
|
/**
|
|
@@ -2161,6 +2292,18 @@
|
|
|
2161
2292
|
if ((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT)) {
|
|
2162
2293
|
this.isFromRefundListPage = true;
|
|
2163
2294
|
}
|
|
2295
|
+
this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(( /**
|
|
2296
|
+
* @param {?} response
|
|
2297
|
+
* @return {?}
|
|
2298
|
+
*/function (response) {
|
|
2299
|
+
_this.cpoDetails = JSON.parse(response).content[0];
|
|
2300
|
+
}), ( /**
|
|
2301
|
+
* @param {?} error
|
|
2302
|
+
* @return {?}
|
|
2303
|
+
*/function (error) {
|
|
2304
|
+
_this.errorMessage = ( /** @type {?} */(error.replace(/"/g, "")));
|
|
2305
|
+
_this.isCPODown = true;
|
|
2306
|
+
}));
|
|
2164
2307
|
};
|
|
2165
2308
|
/**
|
|
2166
2309
|
* @param {?} code
|
|
@@ -2495,19 +2638,10 @@
|
|
|
2495
2638
|
this.isReasonInvalid = vals[7];
|
|
2496
2639
|
}
|
|
2497
2640
|
};
|
|
2498
|
-
/**
|
|
2499
|
-
* @return {?}
|
|
2500
|
-
*/
|
|
2501
|
-
ProcessRefundComponent.prototype.goToCaseReview = /**
|
|
2502
|
-
* @return {?}
|
|
2503
|
-
*/
|
|
2504
|
-
function () {
|
|
2505
|
-
this.router.navigate(["/cases/case-details/" + this.ccdCaseNumber], { relativeTo: this.activeRoute });
|
|
2506
|
-
};
|
|
2507
2641
|
ProcessRefundComponent.decorators = [
|
|
2508
2642
|
{ type: i0.Component, args: [{
|
|
2509
2643
|
selector: 'ccpay-process-refund',
|
|
2510
|
-
template: "<ng-container *ngIf=\"viewStatus === 'RefundProcess'\">\n<div class=\"govuk-width-container\">\n\n <main class=\"govuk-main-wrapper govuk-!-padding-top-0\" [ngClass]=\"{'govuk-radios__conditional--hidden': isSuccesspageEnable}\" id=\"main-content\" role=\"main\">\n <div *ngIf=\"errorMessage.showError\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n {{errorMessage.title}}\n </h2>\n <div class=\"govuk-error-summary__body process-refund-font\">\n {{errorMessage.body}}\n </div>\n </div>\n </div>\n\n <div class=\"payment-view-alignment\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Review refund details</h1>\n </div>\n </div>\n <table>\n <tbody>\n\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment to be refunded</td>\n <td>\t{{refundlistsource?.refund_reference}} ({{refundlistsource.amount | currency :'GBP':'symbol':'1.2-2' }})</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Reason for refund</td>\n <td>\t{{refundlistsource?.reason}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Amount to be refunded</td>\n <td>{{refundlistsource?.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Submitted by</td>\n <td>{{refundlistsource?.user_full_name}}</td>\n\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Date submitted</td>\n <td>\t{{refundlistsource?.date_created | date:'d MMMM yyyy' }}</td>\n </tr>\n\n </tbody>\n </table>\n\n <div>\n </div>\n </div>\n <div class=\"process-refund__panel\">\n <form [formGroup]=\"processRefundForm\" novalidate>\n <div class=\"\">\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"sign-in-hint\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <h1 class=\"heading-large\">\n What do you want to do with this refund?\n </h1>\n </legend>\n <div class=\"govuk-radios\" [ngClass]=\"{'form-group-error': refundActionsHasError}\">\n <p class=\"inline-error-message\"\n *ngIf=\"refundActionsHasError\">\n <span *ngIf=\"refundActionsHasError\">Please select an action</span>\n </p>\n <div class=\"govuk-radios__item\" *ngFor=\"let refundAction of refundActionList; let i = index;\">\n <input class=\"govuk-radios__input\" \n id=\"refundAction-{{i}}\" \n name=\"refundActionField\"\n type=\"radio\"\n formControlName=\"refundActionField\"\n (click)=\"checkRefundActions(refundAction.code)\"\n value=\"{{refundAction.code}}\">\n <label class=\"govuk-label govuk-radios__label process-refund-font\" for=\"refundAction-{{i}}\">\n {{refundAction.code}}\n </label>\n <div id=\"sign-in-item-hint\" class=\"govuk-hint govuk-radios__hint process-refund-font\">\n {{refundAction.label}}\n </div>\n </div>\n <div class=\"govuk-radios__conditional\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isSendMeBackClicked}\">\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label process-refund-font\" for=\"contact-by-text\">\n Add a reason\n </label>\n <p class=\"inline-error-message\"\n *ngIf=\"isReasonFieldEmpty || isReasonFieldInvalid || reasonFieldMinHasError || reasonFieldMaxHasError\">\n <span *ngIf=\"isReasonFieldEmpty\">Add a reason</span>\n <span *ngIf=\"isReasonFieldInvalid\">Add a valid reason</span>\n <span *ngIf=\"reasonFieldMinHasError\">Reason should be at least 3 characters.</span>\n <span *ngIf=\"reasonFieldMaxHasError\">Reason should be 255 characters or under.</span>\n </p>\n <textarea class=\"govuk-textarea govuk-!-width-one-third reason-font\"\n [ngClass]=\"{'inline-error-class': isReasonFieldEmpty || isReasonFieldInvalid || reasonFieldMinHasError || reasonFieldMaxHasError}\"\n id=\"sendmeback\"\n name=\"sendMeBackField\" \n formControlName=\"sendMeBackField\"\n rows=\"5\"></textarea>\n \n </div>\n\n </div>\n \n </div>\n \n </fieldset>\n </div>\n\n <div [ngClass]=\"{'govuk-radios__conditional--hidden': !isRejectClicked}\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <h2 class=\"heading-medium\">\n Why are you rejecting this refund?\n </h2>\n </legend>\n <div class=\"govuk-radios\" [ngClass]=\"{'form-group-error': refundRejectReasonHasError}\">\n <p class=\"inline-error-message\"\n *ngIf=\"refundRejectReasonHasError\">\n <span *ngIf=\"refundRejectReasonHasError\">Please select a reject reason</span>\n </p>\n <div class=\"govuk-radios__item\" *ngFor=\"let refundRejectReason of refundRejectReasonList; let j = index;\">\n <input class=\"govuk-radios__input\" \n id=\"refundRejectReason-{{j}}\"\n formControlName=\"refundRejectReasonField\"\n name=\"refundRejectReasonField\"\n (click)=\"checkRefundActions(refundRejectReason.code)\"\n type=\"radio\" value=\"{{refundRejectReason.code}}\">\n <label class=\"govuk-label govuk-radios__label process-refund-font\" for=\"refundRejectReason-{{j}}\">\n {{refundRejectReason.name}}\n </label>\n </div>\n </div>\n <div class=\"govuk-radios__conditional\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isOtherClicked}\" id=\"conditional-contact-3\">\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label process-refund-font \" for=\"contact-by-text\">\n Enter reason\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty || isReasonInvalid\">\n <span *ngIf=\"isReasonEmpty\">Enter reason.</span>\n <span *ngIf=\"isReasonInvalid\">Enter a valid reason</span>\n </p>\n <input class=\"govuk-input govuk-!-width-one-third reason-font\" id=\"otherReason\" \n [ngClass]=\"{'inline-error-class': isReasonEmpty || isReasonInvalid}\"\n formControlName=\"enterReasonField\" name=\"enterReasonField\" type=\"text\"></div>\n \n </div>\n \n </fieldset>\n </div>\n\n <div class=\"govuk-button-group\">\n <button (click)=\"redirecttoRefundListPage()\" class=\"govuk-button govuk-button--secondary marginright\"> Previous</button>\n <button (click)=\"processRefundSubmit()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit \n </button>\n <br/><br/>\n </div>\n \n <div *ngIf=\"!isFromRefundListPage\" class=\"govuk-button-group margin\">\n\n <p><a (click)=\"loadRefundsHomePage()\" class=\"govuk-link pointer\" data-module=\"govuk-button\">Cancel</a></p>\n</div>\n</form>\n </div>\n \n\n </main>\n \n <main class=\"govuk-main-wrapper govuk-main-wrapper--l success-page-padding--top25\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isSuccesspageEnable}\" id=\"main-content\" role=\"main\" >\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-panel govuk-panel-refund--confirmation\">\n <h1 class=\"heading-xlarge\">\n {{successMsg}}\n </h1>\n </div>\n <p class=\"govuk-body process-refund-font\">\n <a
|
|
2644
|
+
template: "<ng-container *ngIf=\"viewStatus === 'RefundProcess'\">\n<div class=\"govuk-width-container\">\n\n <main class=\"govuk-main-wrapper govuk-!-padding-top-0\" [ngClass]=\"{'govuk-radios__conditional--hidden': isSuccesspageEnable}\" id=\"main-content\" role=\"main\">\n <div *ngIf=\"errorMessage.showError\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n {{errorMessage.title}}\n </h2>\n <div class=\"govuk-error-summary__body process-refund-font\">\n {{errorMessage.body}}\n </div>\n </div>\n </div>\n\n <div class=\"payment-view-alignment\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Review refund details</h1>\n </div>\n </div>\n <table>\n <tbody>\n\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment to be refunded</td>\n <td>\t{{refundlistsource?.refund_reference}} ({{refundlistsource.amount | currency :'GBP':'symbol':'1.2-2' }})</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Reason for refund</td>\n <td>\t{{refundlistsource?.reason}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Amount to be refunded</td>\n <td>{{refundlistsource?.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Sent to</td>\n <td>{{cpoDetails?.responsibleParty}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Sent via</td>\n <td>\n <div *ngIf=\"refundlistsource?.contact_details?.notification_type === 'EMAIL'\" class=\"contactDetails-width font-size-19px\">\n <strong>Email</strong>\n <br/>\n {{refundlistsource?.contact_details?.email}}\n </div>\n <div *ngIf=\"refundlistsource?.contact_details?.notification_type === 'LETTER'\" class=\"contactDetails-width font-size-19px\">\n <strong>Post</strong>\n <br/>\n {{refundlistsource?.contact_details?.address_line}} {{refundlistsource?.contact_details?.city}} {{refundlistsource?.contact_details?.county}} {{refundlistsource?.contact_details?.country}} {{refundlistsource?.contact_details?.postal_code}}\n </div> \n </td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Submitted by</td>\n <td>{{refundlistsource?.user_full_name}}</td>\n\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Date submitted</td>\n <td>\t{{refundlistsource?.date_created | date:'d MMMM yyyy' }}</td>\n </tr>\n\n </tbody>\n </table>\n\n <div>\n </div>\n </div>\n <div class=\"process-refund__panel\">\n <form [formGroup]=\"processRefundForm\" novalidate>\n <div class=\"\">\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"sign-in-hint\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <h1 class=\"heading-large\">\n What do you want to do with this refund?\n </h1>\n </legend>\n <div class=\"govuk-radios\" [ngClass]=\"{'form-group-error': refundActionsHasError}\">\n <p class=\"inline-error-message\"\n *ngIf=\"refundActionsHasError\">\n <span *ngIf=\"refundActionsHasError\">Please select an action</span>\n </p>\n <div class=\"govuk-radios__item\" *ngFor=\"let refundAction of refundActionList; let i = index;\">\n <input class=\"govuk-radios__input\" \n id=\"refundAction-{{i}}\" \n name=\"refundActionField\"\n type=\"radio\"\n formControlName=\"refundActionField\"\n (click)=\"checkRefundActions(refundAction.code)\"\n value=\"{{refundAction.code}}\">\n <label class=\"govuk-label govuk-radios__label process-refund-font\" for=\"refundAction-{{i}}\">\n {{refundAction.code}}\n </label>\n <div id=\"sign-in-item-hint\" class=\"govuk-hint govuk-radios__hint process-refund-font\">\n {{refundAction.label}}\n </div>\n </div>\n <div class=\"govuk-radios__conditional\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isSendMeBackClicked}\">\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label process-refund-font\" for=\"contact-by-text\">\n Add a reason\n </label>\n <p class=\"inline-error-message\"\n *ngIf=\"isReasonFieldEmpty || isReasonFieldInvalid || reasonFieldMinHasError || reasonFieldMaxHasError\">\n <span *ngIf=\"isReasonFieldEmpty\">Add a reason</span>\n <span *ngIf=\"isReasonFieldInvalid\">Add a valid reason</span>\n <span *ngIf=\"reasonFieldMinHasError\">Reason should be at least 3 characters.</span>\n <span *ngIf=\"reasonFieldMaxHasError\">Reason should be 255 characters or under.</span>\n </p>\n <textarea class=\"govuk-textarea govuk-!-width-one-third reason-font\"\n [ngClass]=\"{'inline-error-class': isReasonFieldEmpty || isReasonFieldInvalid || reasonFieldMinHasError || reasonFieldMaxHasError}\"\n id=\"sendmeback\"\n name=\"sendMeBackField\" \n formControlName=\"sendMeBackField\"\n rows=\"5\"></textarea>\n \n </div>\n\n </div>\n \n </div>\n \n </fieldset>\n </div>\n\n <div [ngClass]=\"{'govuk-radios__conditional--hidden': !isRejectClicked}\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <h2 class=\"heading-medium\">\n Why are you rejecting this refund?\n </h2>\n </legend>\n <div class=\"govuk-radios\" [ngClass]=\"{'form-group-error': refundRejectReasonHasError}\">\n <p class=\"inline-error-message\"\n *ngIf=\"refundRejectReasonHasError\">\n <span *ngIf=\"refundRejectReasonHasError\">Please select a reject reason</span>\n </p>\n <div class=\"govuk-radios__item\" *ngFor=\"let refundRejectReason of refundRejectReasonList; let j = index;\">\n <input class=\"govuk-radios__input\" \n id=\"refundRejectReason-{{j}}\"\n formControlName=\"refundRejectReasonField\"\n name=\"refundRejectReasonField\"\n (click)=\"checkRefundActions(refundRejectReason.code)\"\n type=\"radio\" value=\"{{refundRejectReason.code}}\">\n <label class=\"govuk-label govuk-radios__label process-refund-font\" for=\"refundRejectReason-{{j}}\">\n {{refundRejectReason.name}}\n </label>\n </div>\n </div>\n <div class=\"govuk-radios__conditional\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isOtherClicked}\" id=\"conditional-contact-3\">\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label process-refund-font \" for=\"contact-by-text\">\n Enter reason\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty || isReasonInvalid\">\n <span *ngIf=\"isReasonEmpty\">Enter reason.</span>\n <span *ngIf=\"isReasonInvalid\">Enter a valid reason</span>\n </p>\n <input class=\"govuk-input govuk-!-width-one-third reason-font\" id=\"otherReason\" \n [ngClass]=\"{'inline-error-class': isReasonEmpty || isReasonInvalid}\"\n formControlName=\"enterReasonField\" name=\"enterReasonField\" type=\"text\"></div>\n \n </div>\n \n </fieldset>\n </div>\n\n <div class=\"govuk-button-group\">\n <button (click)=\"redirecttoRefundListPage()\" class=\"govuk-button govuk-button--secondary marginright\"> Previous</button>\n <button (click)=\"processRefundSubmit()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit \n </button>\n <br/><br/>\n </div>\n \n <div *ngIf=\"!isFromRefundListPage\" class=\"govuk-button-group margin\">\n\n <p><a (click)=\"loadRefundsHomePage()\" class=\"govuk-link pointer\" data-module=\"govuk-button\">Cancel</a></p>\n</div>\n</form>\n </div>\n \n\n </main>\n \n <main class=\"govuk-main-wrapper govuk-main-wrapper--l success-page-padding--top25\" [ngClass]=\"{'govuk-radios__conditional--hidden': !isSuccesspageEnable}\" id=\"main-content\" role=\"main\" >\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-panel govuk-panel-refund--confirmation\">\n <h1 class=\"heading-xlarge\">\n {{successMsg}}\n </h1>\n </div>\n <p class=\"govuk-body process-refund-font\">\n <a href=\"/cases/case-details/{{ccdCaseNumber}}\" class=\"govuk-link pointer\">Return to case</a>\n </p>\n </div>\n </main>\n</div>\n</ng-container>\n\n",
|
|
2511
2645
|
styles: [".tb-col-w{width:330px}.tr-border{border-bottom:2px solid}.payment-view-alignment{margin-left:30px}.govuk-button{float:left!important;font-size:19px;margin-top:2em!important}.remission{margin-bottom:7em}.process-refund-font{font-size:19px!important}.govuk-radios__conditional--hidden{display:none}.inline-error-message{color:#c11717;font-weight:700;margin-top:10px;border-color:#c11717}.inline-error-class{outline:#c11717 solid 3px;outline-offset:0;border-color:#c11717}.form-group-error{border-left:5px solid #c11717;padding-left:15px}.govuk-panel-refund--confirmation{color:#fff;background:#00703c}.process-refund__panel{display:flex;flex-direction:column;margin-left:25px;margin-top:30px}.button-margin--left25{margin-left:25px}.success-page-padding--top25{padding-top:25px}.margin{margin-top:5em}.marginright{margin-right:1.5em}.govuk-textarea{line-height:2.25}.reason-font{font-size:19px!important}.pointer{cursor:pointer}"]
|
|
2512
2646
|
}] }
|
|
2513
2647
|
];
|
|
@@ -2515,6 +2649,7 @@
|
|
|
2515
2649
|
ProcessRefundComponent.ctorParameters = function () {
|
|
2516
2650
|
return [
|
|
2517
2651
|
{ type: RefundsService },
|
|
2652
|
+
{ type: PaymentViewService },
|
|
2518
2653
|
{ type: forms.FormBuilder },
|
|
2519
2654
|
{ type: OrderslistService },
|
|
2520
2655
|
{ type: PaymentLibComponent },
|
|
@@ -2538,10 +2673,10 @@
|
|
|
2538
2673
|
this.refundService = refundService;
|
|
2539
2674
|
this.submittedRefundList = [];
|
|
2540
2675
|
this.rejectedRefundList = [];
|
|
2676
|
+
// approvalStatus = 'Sent for approval';
|
|
2677
|
+
// rejectStatus = 'Update required';
|
|
2541
2678
|
this.approvalStatus = 'Sent for approval';
|
|
2542
2679
|
this.rejectStatus = 'Update required';
|
|
2543
|
-
// approvalStatus = 'sent for approval';
|
|
2544
|
-
// rejectStatus = 'sent back';
|
|
2545
2680
|
this.errorMessage = null;
|
|
2546
2681
|
this.isAuthorized = true;
|
|
2547
2682
|
}
|
|
@@ -2825,13 +2960,456 @@
|
|
|
2825
2960
|
* @fileoverview added by tsickle
|
|
2826
2961
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2827
2962
|
*/
|
|
2828
|
-
var
|
|
2829
|
-
function
|
|
2963
|
+
var NotificationService = /** @class */ (function () {
|
|
2964
|
+
function NotificationService(http, https, errorHandlerService, paymentLibService) {
|
|
2965
|
+
this.http = http;
|
|
2966
|
+
this.https = https;
|
|
2967
|
+
this.errorHandlerService = errorHandlerService;
|
|
2968
|
+
this.paymentLibService = paymentLibService;
|
|
2830
2969
|
}
|
|
2831
2970
|
/**
|
|
2971
|
+
* @param {?} reference
|
|
2832
2972
|
* @return {?}
|
|
2833
2973
|
*/
|
|
2834
|
-
|
|
2974
|
+
NotificationService.prototype.getRefundNotification = /**
|
|
2975
|
+
* @param {?} reference
|
|
2976
|
+
* @return {?}
|
|
2977
|
+
*/
|
|
2978
|
+
function (reference) {
|
|
2979
|
+
return this.http.get(this.paymentLibService.NOTIFICATION_API_ROOT + "/notifications/" + reference, {
|
|
2980
|
+
withCredentials: true
|
|
2981
|
+
})
|
|
2982
|
+
.pipe(operators.catchError(this.errorHandlerService.handleError));
|
|
2983
|
+
};
|
|
2984
|
+
/**
|
|
2985
|
+
* @param {?} postcode
|
|
2986
|
+
* @return {?}
|
|
2987
|
+
*/
|
|
2988
|
+
NotificationService.prototype.getAddressByPostcode = /**
|
|
2989
|
+
* @param {?} postcode
|
|
2990
|
+
* @return {?}
|
|
2991
|
+
*/
|
|
2992
|
+
function (postcode) {
|
|
2993
|
+
return this.http.get(this.paymentLibService.NOTIFICATION_API_ROOT + "/search/places/v1/postcode?postcode=" + postcode, {
|
|
2994
|
+
withCredentials: true
|
|
2995
|
+
})
|
|
2996
|
+
.pipe(operators.catchError(this.errorHandlerService.handleError));
|
|
2997
|
+
};
|
|
2998
|
+
NotificationService.decorators = [
|
|
2999
|
+
{ type: i0.Injectable, args: [{
|
|
3000
|
+
providedIn: 'root'
|
|
3001
|
+
},] }
|
|
3002
|
+
];
|
|
3003
|
+
/** @nocollapse */
|
|
3004
|
+
NotificationService.ctorParameters = function () {
|
|
3005
|
+
return [
|
|
3006
|
+
{ type: i1.HttpClient },
|
|
3007
|
+
{ type: WebComponentHttpClient },
|
|
3008
|
+
{ type: ErrorHandlerService },
|
|
3009
|
+
{ type: PaymentLibService }
|
|
3010
|
+
];
|
|
3011
|
+
};
|
|
3012
|
+
/** @nocollapse */ NotificationService.ngInjectableDef = i0.defineInjectable({ factory: function NotificationService_Factory() { return new NotificationService(i0.inject(i1.HttpClient), i0.inject(WebComponentHttpClient), i0.inject(ErrorHandlerService), i0.inject(PaymentLibService)); }, token: NotificationService, providedIn: "root" });
|
|
3013
|
+
return NotificationService;
|
|
3014
|
+
}());
|
|
3015
|
+
|
|
3016
|
+
/**
|
|
3017
|
+
* @fileoverview added by tsickle
|
|
3018
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3019
|
+
*/
|
|
3020
|
+
var ContactDetailsComponent = /** @class */ (function () {
|
|
3021
|
+
function ContactDetailsComponent(formBuilder, notificationService, paymentLibComponent) {
|
|
3022
|
+
this.formBuilder = formBuilder;
|
|
3023
|
+
this.notificationService = notificationService;
|
|
3024
|
+
this.paymentLibComponent = paymentLibComponent;
|
|
3025
|
+
this.assignContactDetails = new i0.EventEmitter();
|
|
3026
|
+
this.assignContactDetailsInFefundsList = new i0.EventEmitter();
|
|
3027
|
+
this.redirectToIssueRefund = new i0.EventEmitter();
|
|
3028
|
+
this.pageTitle = 'Payment status history';
|
|
3029
|
+
this.isEmailSAddressClicked = true;
|
|
3030
|
+
this.isShowPickAddress = false;
|
|
3031
|
+
this.isPostcodeClicked = false;
|
|
3032
|
+
this.isManualAddressClicked = false;
|
|
3033
|
+
this.addressPostcodeList = [];
|
|
3034
|
+
this.isAddressBoxEmpty = false;
|
|
3035
|
+
this.isEmailEmpty = false;
|
|
3036
|
+
this.emailHasError = false;
|
|
3037
|
+
this.isPostcodeEmpty = false;
|
|
3038
|
+
this.postcodeHasError = false;
|
|
3039
|
+
this.isaddressLine1Empty = false;
|
|
3040
|
+
this.addressLine1HasError = false;
|
|
3041
|
+
this.addressLine2HasError = false;
|
|
3042
|
+
this.isTownOrCityEmpty = false;
|
|
3043
|
+
this.townOrCityHasError = false;
|
|
3044
|
+
this.isCountyEmpty = false;
|
|
3045
|
+
this.countyHasError = false;
|
|
3046
|
+
this.isMPostcodeEmpty = false;
|
|
3047
|
+
this.mpostcodeHasError = false;
|
|
3048
|
+
this.isCountryEmpty = false;
|
|
3049
|
+
}
|
|
3050
|
+
/**
|
|
3051
|
+
* @return {?}
|
|
3052
|
+
*/
|
|
3053
|
+
ContactDetailsComponent.prototype.ngOnInit = /**
|
|
3054
|
+
* @return {?}
|
|
3055
|
+
*/
|
|
3056
|
+
function () {
|
|
3057
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3058
|
+
this.emailAddressForm = this.formBuilder.group({
|
|
3059
|
+
email: new forms.FormControl('', forms.Validators.compose([
|
|
3060
|
+
forms.Validators.required,
|
|
3061
|
+
forms.Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\.[a-z]{2,4}$')
|
|
3062
|
+
]))
|
|
3063
|
+
});
|
|
3064
|
+
this.postCodeForm = this.formBuilder.group({
|
|
3065
|
+
postcode: new forms.FormControl('', forms.Validators.compose([
|
|
3066
|
+
forms.Validators.required,
|
|
3067
|
+
forms.Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')
|
|
3068
|
+
]))
|
|
3069
|
+
});
|
|
3070
|
+
this.manualAddressForm = this.formBuilder.group({
|
|
3071
|
+
addressl1: new forms.FormControl('', forms.Validators.compose([
|
|
3072
|
+
forms.Validators.required,
|
|
3073
|
+
forms.Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3074
|
+
])),
|
|
3075
|
+
addressl2: new forms.FormControl('', forms.Validators.compose([
|
|
3076
|
+
forms.Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3077
|
+
])),
|
|
3078
|
+
townorcity: new forms.FormControl('', forms.Validators.compose([
|
|
3079
|
+
forms.Validators.required,
|
|
3080
|
+
forms.Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3081
|
+
])),
|
|
3082
|
+
county: new forms.FormControl('', forms.Validators.compose([
|
|
3083
|
+
forms.Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3084
|
+
])),
|
|
3085
|
+
mpostcode: new forms.FormControl('', forms.Validators.compose([
|
|
3086
|
+
forms.Validators.required,
|
|
3087
|
+
forms.Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')
|
|
3088
|
+
])),
|
|
3089
|
+
country: new forms.FormControl('', forms.Validators.compose([
|
|
3090
|
+
forms.Validators.required
|
|
3091
|
+
]))
|
|
3092
|
+
});
|
|
3093
|
+
if (this.addressObj !== undefined && this.addressObj !== '') {
|
|
3094
|
+
this.setEditDetails();
|
|
3095
|
+
}
|
|
3096
|
+
if (this.isEditOperationInRefundList === undefined) {
|
|
3097
|
+
this.isEditOperationInRefundList = false;
|
|
3098
|
+
}
|
|
3099
|
+
};
|
|
3100
|
+
/**
|
|
3101
|
+
* @return {?}
|
|
3102
|
+
*/
|
|
3103
|
+
ContactDetailsComponent.prototype.setEditDetails = /**
|
|
3104
|
+
* @return {?}
|
|
3105
|
+
*/
|
|
3106
|
+
function () {
|
|
3107
|
+
if (this.addressObj.notification_type === 'EMAIL') {
|
|
3108
|
+
this.isEmailSAddressClicked = true;
|
|
3109
|
+
this.isPostcodeClicked = false;
|
|
3110
|
+
this.isManualAddressClicked = false;
|
|
3111
|
+
this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });
|
|
3112
|
+
}
|
|
3113
|
+
else if (this.addressObj.notification_type === 'LETTER') {
|
|
3114
|
+
this.isEmailSAddressClicked = false;
|
|
3115
|
+
this.isPostcodeClicked = true;
|
|
3116
|
+
this.isManualAddressClicked = true;
|
|
3117
|
+
this.manualAddressForm.patchValue({
|
|
3118
|
+
addressl1: this.addressObj.contact_details.address_line,
|
|
3119
|
+
townorcity: this.addressObj.contact_details.city,
|
|
3120
|
+
county: this.addressObj.contact_details.county,
|
|
3121
|
+
country: this.addressObj.contact_details.country,
|
|
3122
|
+
mpostcode: this.addressObj.contact_details.postal_code
|
|
3123
|
+
});
|
|
3124
|
+
}
|
|
3125
|
+
};
|
|
3126
|
+
/**
|
|
3127
|
+
* @param {?} type
|
|
3128
|
+
* @param {?} isLinkedClied
|
|
3129
|
+
* @return {?}
|
|
3130
|
+
*/
|
|
3131
|
+
ContactDetailsComponent.prototype.selectContactOption = /**
|
|
3132
|
+
* @param {?} type
|
|
3133
|
+
* @param {?} isLinkedClied
|
|
3134
|
+
* @return {?}
|
|
3135
|
+
*/
|
|
3136
|
+
function (type, isLinkedClied) {
|
|
3137
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3138
|
+
if (type === 'Email' && isLinkedClied === 'false') {
|
|
3139
|
+
this.isEmailSAddressClicked = true;
|
|
3140
|
+
this.isPostcodeClicked = false;
|
|
3141
|
+
this.isManualAddressClicked = false;
|
|
3142
|
+
}
|
|
3143
|
+
else if (type === 'Postcode' && isLinkedClied === 'false') {
|
|
3144
|
+
this.isEmailSAddressClicked = false;
|
|
3145
|
+
this.isPostcodeClicked = true;
|
|
3146
|
+
this.isManualAddressClicked = false;
|
|
3147
|
+
}
|
|
3148
|
+
else if (type === 'Postcode' && isLinkedClied === 'true') {
|
|
3149
|
+
this.isEmailSAddressClicked = false;
|
|
3150
|
+
this.isPostcodeClicked = true;
|
|
3151
|
+
this.isManualAddressClicked = true;
|
|
3152
|
+
}
|
|
3153
|
+
};
|
|
3154
|
+
/**
|
|
3155
|
+
* @return {?}
|
|
3156
|
+
*/
|
|
3157
|
+
ContactDetailsComponent.prototype.finalFormSubmit = /**
|
|
3158
|
+
* @return {?}
|
|
3159
|
+
*/
|
|
3160
|
+
function () {
|
|
3161
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3162
|
+
if (this.isEmailSAddressClicked) {
|
|
3163
|
+
/** @type {?} */
|
|
3164
|
+
var emailField = this.emailAddressForm.controls.email;
|
|
3165
|
+
if (this.emailAddressForm.valid) {
|
|
3166
|
+
if (!this.isEditOperationInRefundList) {
|
|
3167
|
+
this.assignContactDetails.emit({
|
|
3168
|
+
email: emailField.value,
|
|
3169
|
+
notification_type: 'EMAIL'
|
|
3170
|
+
});
|
|
3171
|
+
}
|
|
3172
|
+
else {
|
|
3173
|
+
this.assignContactDetailsInFefundsList.emit({
|
|
3174
|
+
email: emailField.value,
|
|
3175
|
+
notification_type: 'EMAIL'
|
|
3176
|
+
});
|
|
3177
|
+
}
|
|
3178
|
+
}
|
|
3179
|
+
else {
|
|
3180
|
+
if (emailField.value == '') {
|
|
3181
|
+
this.resetForm([true, false, false, false, false, false, false, false, false, false, false, false, false, false], 'email');
|
|
3182
|
+
}
|
|
3183
|
+
if (emailField.value != '' && emailField.invalid) {
|
|
3184
|
+
this.resetForm([false, true, false, false, false, false, false, false, false, false, false, false, false, false], 'email');
|
|
3185
|
+
}
|
|
3186
|
+
}
|
|
3187
|
+
}
|
|
3188
|
+
else if (this.isPostcodeClicked && !this.isManualAddressClicked) {
|
|
3189
|
+
this.postcodeValidation('FS');
|
|
3190
|
+
}
|
|
3191
|
+
else if (this.isPostcodeClicked && this.isManualAddressClicked) {
|
|
3192
|
+
/** @type {?} */
|
|
3193
|
+
var fieldCtrls = this.manualAddressForm.controls;
|
|
3194
|
+
if (this.manualAddressForm.valid) {
|
|
3195
|
+
if (!this.isEditOperationInRefundList) {
|
|
3196
|
+
this.assignContactDetails.emit({
|
|
3197
|
+
address_line: fieldCtrls.addressl1.value + ' ' + fieldCtrls.addressl2.value,
|
|
3198
|
+
city: fieldCtrls.townorcity.value,
|
|
3199
|
+
county: fieldCtrls.county.value,
|
|
3200
|
+
postal_code: fieldCtrls.mpostcode.value,
|
|
3201
|
+
country: fieldCtrls.country.value,
|
|
3202
|
+
notification_type: 'LETTER'
|
|
3203
|
+
});
|
|
3204
|
+
}
|
|
3205
|
+
else {
|
|
3206
|
+
this.assignContactDetailsInFefundsList.emit({
|
|
3207
|
+
address_line: fieldCtrls.addressl1.value + ' ' + fieldCtrls.addressl2.value,
|
|
3208
|
+
city: fieldCtrls.townorcity.value,
|
|
3209
|
+
county: fieldCtrls.county.value,
|
|
3210
|
+
postal_code: fieldCtrls.mpostcode.value,
|
|
3211
|
+
country: fieldCtrls.country.value,
|
|
3212
|
+
notification_type: 'LETTER'
|
|
3213
|
+
});
|
|
3214
|
+
}
|
|
3215
|
+
}
|
|
3216
|
+
else {
|
|
3217
|
+
if (fieldCtrls.addressl1.value == '') {
|
|
3218
|
+
this.resetForm([false, false, false, false, true, false, false, false, false, false, false, false, false, false], 'address1');
|
|
3219
|
+
}
|
|
3220
|
+
if (fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid) {
|
|
3221
|
+
this.resetForm([false, false, false, false, false, true, false, false, false, false, false, false, false, false], 'address1');
|
|
3222
|
+
}
|
|
3223
|
+
if (fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid) {
|
|
3224
|
+
this.resetForm([false, false, false, false, false, false, true, false, false, false, false, false, false, false], 'address2');
|
|
3225
|
+
}
|
|
3226
|
+
if (fieldCtrls.townorcity.value == '') {
|
|
3227
|
+
this.resetForm([false, false, false, false, false, false, false, true, false, false, false, false, false, false], 'town');
|
|
3228
|
+
}
|
|
3229
|
+
if (fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid) {
|
|
3230
|
+
this.resetForm([false, false, false, false, false, false, false, false, true, false, false, false, false, false], 'town');
|
|
3231
|
+
}
|
|
3232
|
+
if (fieldCtrls.county.value == '') {
|
|
3233
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, true, false, false, false, false], 'county');
|
|
3234
|
+
}
|
|
3235
|
+
if (fieldCtrls.county.value != '' && fieldCtrls.county.invalid) {
|
|
3236
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, true, false, false, false], 'county');
|
|
3237
|
+
}
|
|
3238
|
+
if (fieldCtrls.mpostcode.value == '') {
|
|
3239
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, true, false, false], 'mpostcode');
|
|
3240
|
+
}
|
|
3241
|
+
if (fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid) {
|
|
3242
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, true, false], 'mpostcode');
|
|
3243
|
+
}
|
|
3244
|
+
if (fieldCtrls.country.value == '') {
|
|
3245
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, true], 'country');
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
}
|
|
3249
|
+
};
|
|
3250
|
+
/**
|
|
3251
|
+
* @param {?} str
|
|
3252
|
+
* @return {?}
|
|
3253
|
+
*/
|
|
3254
|
+
ContactDetailsComponent.prototype.postcodeValidation = /**
|
|
3255
|
+
* @param {?} str
|
|
3256
|
+
* @return {?}
|
|
3257
|
+
*/
|
|
3258
|
+
function (str) {
|
|
3259
|
+
var _this = this;
|
|
3260
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3261
|
+
/** @type {?} */
|
|
3262
|
+
var postcodeField = this.postCodeForm.controls.postcode;
|
|
3263
|
+
if (this.postCodeForm.valid) {
|
|
3264
|
+
if (str === 'FA') {
|
|
3265
|
+
this.notificationService.getAddressByPostcode(postcodeField.value).subscribe(( /**
|
|
3266
|
+
* @param {?} refundsNotification
|
|
3267
|
+
* @return {?}
|
|
3268
|
+
*/function (refundsNotification) {
|
|
3269
|
+
_this.addressPostcodeList = refundsNotification['data']['results'];
|
|
3270
|
+
_this.isShowPickAddress = refundsNotification['data']['header'].totalresults > 0;
|
|
3271
|
+
if (!_this.isShowPickAddress) {
|
|
3272
|
+
_this.resetForm([false, false, false, true, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3273
|
+
}
|
|
3274
|
+
})),
|
|
3275
|
+
( /**
|
|
3276
|
+
* @param {?} error
|
|
3277
|
+
* @return {?}
|
|
3278
|
+
*/function (error) {
|
|
3279
|
+
_this.isShowPickAddress = false;
|
|
3280
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
3281
|
+
});
|
|
3282
|
+
}
|
|
3283
|
+
else if (str === 'FS') {
|
|
3284
|
+
if (this.postcodeAddress !== undefined && this.postcodeAddress) {
|
|
3285
|
+
this.isAddressBoxEmpty = false;
|
|
3286
|
+
/** @type {?} */
|
|
3287
|
+
var addressLine = "";
|
|
3288
|
+
/** @type {?} */
|
|
3289
|
+
var addressArray = this.postcodeAddress.ADDRESS.split(",");
|
|
3290
|
+
for (var i = 0; i < addressArray.length - 2; i++) {
|
|
3291
|
+
addressLine += addressArray[i];
|
|
3292
|
+
}
|
|
3293
|
+
/** @type {?} */
|
|
3294
|
+
var addressObject = {
|
|
3295
|
+
address_line: addressLine,
|
|
3296
|
+
city: this.postcodeAddress.POST_TOWN,
|
|
3297
|
+
county: this.postcodeAddress.LOCAL_CUSTODIAN_CODE_DESCRIPTION,
|
|
3298
|
+
postal_code: this.postcodeAddress.POSTCODE,
|
|
3299
|
+
country: 'United Kingdom',
|
|
3300
|
+
notification_type: 'LETTER'
|
|
3301
|
+
};
|
|
3302
|
+
if (!this.isEditOperationInRefundList) {
|
|
3303
|
+
this.assignContactDetails.emit(addressObject);
|
|
3304
|
+
}
|
|
3305
|
+
else {
|
|
3306
|
+
this.assignContactDetailsInFefundsList.emit(addressObject);
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
else {
|
|
3310
|
+
this.isAddressBoxEmpty = true;
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
else {
|
|
3315
|
+
if (postcodeField.value == '') {
|
|
3316
|
+
this.resetForm([false, false, true, false, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3317
|
+
}
|
|
3318
|
+
if (postcodeField.value != '' && postcodeField.invalid) {
|
|
3319
|
+
this.resetForm([false, false, false, true, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3320
|
+
}
|
|
3321
|
+
}
|
|
3322
|
+
};
|
|
3323
|
+
/**
|
|
3324
|
+
* @param {?} event
|
|
3325
|
+
* @return {?}
|
|
3326
|
+
*/
|
|
3327
|
+
ContactDetailsComponent.prototype.redirection = /**
|
|
3328
|
+
* @param {?} event
|
|
3329
|
+
* @return {?}
|
|
3330
|
+
*/
|
|
3331
|
+
function (event) {
|
|
3332
|
+
this.redirectToIssueRefund.emit(event);
|
|
3333
|
+
};
|
|
3334
|
+
/**
|
|
3335
|
+
* @param {?} val
|
|
3336
|
+
* @param {?} field
|
|
3337
|
+
* @return {?}
|
|
3338
|
+
*/
|
|
3339
|
+
ContactDetailsComponent.prototype.resetForm = /**
|
|
3340
|
+
* @param {?} val
|
|
3341
|
+
* @param {?} field
|
|
3342
|
+
* @return {?}
|
|
3343
|
+
*/
|
|
3344
|
+
function (val, field) {
|
|
3345
|
+
if (field === 'email' || field === 'all') {
|
|
3346
|
+
this.isEmailEmpty = val[0];
|
|
3347
|
+
this.emailHasError = val[1];
|
|
3348
|
+
}
|
|
3349
|
+
if (field === 'postcode' || field === 'all') {
|
|
3350
|
+
this.isPostcodeEmpty = val[2];
|
|
3351
|
+
this.postcodeHasError = val[3];
|
|
3352
|
+
}
|
|
3353
|
+
if (field === 'address1' || field === 'all') {
|
|
3354
|
+
this.isaddressLine1Empty = val[4];
|
|
3355
|
+
this.addressLine1HasError = val[5];
|
|
3356
|
+
}
|
|
3357
|
+
if (field === 'address2' || field === 'all') {
|
|
3358
|
+
this.addressLine2HasError = val[6];
|
|
3359
|
+
}
|
|
3360
|
+
if (field === 'town' || field === 'all') {
|
|
3361
|
+
this.isTownOrCityEmpty = val[7];
|
|
3362
|
+
this.townOrCityHasError = val[8];
|
|
3363
|
+
}
|
|
3364
|
+
if (field === 'county' || field === 'all') {
|
|
3365
|
+
this.isCountyEmpty = val[9];
|
|
3366
|
+
this.countyHasError = val[10];
|
|
3367
|
+
}
|
|
3368
|
+
if (field === 'mpostcode' || field === 'all') {
|
|
3369
|
+
this.isMPostcodeEmpty = val[11];
|
|
3370
|
+
this.mpostcodeHasError = val[12];
|
|
3371
|
+
}
|
|
3372
|
+
if (field === 'country' || field === 'all') {
|
|
3373
|
+
this.isCountryEmpty = val[13];
|
|
3374
|
+
}
|
|
3375
|
+
};
|
|
3376
|
+
ContactDetailsComponent.decorators = [
|
|
3377
|
+
{ type: i0.Component, args: [{
|
|
3378
|
+
selector: 'ccpay-contact-details',
|
|
3379
|
+
template: "<fieldset class=\"govuk-fieldset contact-details--size\">\n <hr class=\"govuk-section-break govuk-section-break--m govuk-section-break--visible\">\n <div class=\"govuk-form-group\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--s govuk-font19px\">\n {{ isEditOperation ? 'Edit contact information' : 'Contact information' }}\n </legend>\n <div id=\"contact-hint\" class=\"govuk-hint govuk-font19px\">\n Notifications will be sent via email or post when this refund is issued or rejected. You can only choose one option.\n </div>\n <div class=\"govuk-form-group\">\n <fieldset class=\"govuk-fieldset\">\n <div class=\"govuk-radios govuk-radios--conditional\" data-module=\"govuk-radios\">\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"contact\" name=\"contact\" (click)=\"selectContactOption('Email', 'false')\" type=\"radio\" value=\"email\" [checked]=\"isEmailSAddressClicked\" aria-controls=\"conditional-contact\" aria-expanded=\"true\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"contact\">\n Email\n </label>\n </div>\n <div class=\"govuk-radios__conditional\" id=\"conditional-contact-email\" *ngIf=\"isEmailSAddressClicked\">\n <form [formGroup]=\"emailAddressForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label \" for=\"email\">\n <span class=\"govuk-hint govuk-font19px\">Information about this refund will be sent to this email address.</span>\n </label>\n\n <div id=\"email-hint\" class=\"govuk-hint\">\n </div>\n <input class=\"govuk-input govuk-font19px\" id=\"email\" name=\"\" type=\"email\" [ngClass]=\"{ 'inline-error-class': isEmailEmpty || emailHasError }\" value=\"{{addressObj?.contact_details?.email}}\" formControlName=\"email\" aria-describedby=\"email-hint\">\n <p class=\"inline-error-message\" *ngIf=\"isEmailEmpty || emailHasError\">\n <span *ngIf=\"isEmailEmpty\">Enter a email address.</span>\n <span *ngIf=\"emailHasError\">Enter a valid email address.</span>\n </p>\n </div>\n </form>\n </div>\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"contact-2\" name=\"contact\" (click)=\"selectContactOption('Postcode', 'false')\" type=\"radio\" [checked]=\"isPostcodeClicked\" value=\"post\" aria-controls=\"conditional-contact-2\" aria-expanded=\"false\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"contact-2\">\n Post\n </label>\n </div>\n <div class=\"govuk-radios__conditional govuk-radios__conditional--hidden\" id=\"conditional-contact-postcode\" *ngIf=\"isPostcodeClicked && !isManualAddressClicked\">\n <form [formGroup]=\"postCodeForm\" novalidate>\n <label class=\"govuk-label govuk-font19px\" for=\"address-postcode\">\n <span class=\"govuk-hint govuk-font19px\">Information about this refund will be sent to this address.</span>Postcode\n </label>\n <div class=\"postcode-align-css\">\n <div class=\"govuk-form-group govuk-margin-right-10px\">\n <input class=\"govuk-input govuk-input--width-10\" id=\"address-postcode\" name=\"address-postcode\" [ngClass]=\"{ 'inline-error-class': isPostcodeEmpty || postcodeHasError }\" formControlName=\"postcode\" type=\"text\" autocomplete=\"postal-code\">\n <p class=\"inline-error-message\" *ngIf=\"isPostcodeEmpty || postcodeHasError\">\n <span *ngIf=\"isPostcodeEmpty\">Enter a postcode.</span>\n <span *ngIf=\"postcodeHasError\">Enter a valid postcode.</span>\n </p>\n </div>\n <div class=\"govuk-button-group\">\n <button class=\"govuk-button govuk-button--secondary govuk-font19px\" (click)=\"postcodeValidation('FA')\" data-module=\"govuk-button\">\n Find address\n </button>\n </div>\n </div>\n </form>\n <div class=\"govuk-form-group govuk-margin-btm-20px\" *ngIf=\"isShowPickAddress\">\n <label class=\"govuk-label govuk-font19px\" for=\"country\">\n Pick an address\n </label>\n <select class=\"govuk-select govuk-font19px\" [(ngModel)]=\"postcodeAddress\" id=\"postcodeAddress\" [ngClass]=\"{ 'inline-error-class': isAddressBoxEmpty }\" name=\"postcodeAddress\">\n <option *ngFor=\"let address of addressPostcodeList;\" [ngValue]=\"address.DPA\" > {{address.DPA.ADDRESS}}</option>\n </select> \n <p class=\"inline-error-message\" *ngIf=\"isAddressBoxEmpty\">\n <span *ngIf=\"isAddressBoxEmpty\">Please select an address.</span>\n </p>\n </div>\n <details class=\"govuk-details\" data-module=\"govuk-details\">\n <summary class=\"govuk-details__summary\">\n <span class=\"govuk-details__summary-text govuk-font19px\">\n <a href=\"Javascript:void(0);\" (click)=\"selectContactOption('Postcode', 'true')\"> Enter address manually</a>\n </span>\n </summary>\n </details>\n </div>\n <div class=\"govuk-radios__conditional\" id=\"conditional-contact-manual\" *ngIf=\"isPostcodeClicked && isManualAddressClicked\">\n <form [formGroup]=\"manualAddressForm\" novalidate>\n\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-font19px\" for=\"address-line-1\">\n <span class=\"govuk-hint govuk-font19px\">Information about this refund will be sent to this address.</span>Building and street <span class=\"govuk-visually-hidden\">line 1 of 2</span>\n </label>\n <input class=\"govuk-input govuk-font19px\" id=\"address-line-1\" name=\"address-line-1\" [ngClass]=\"{ 'inline-error-class': isaddressLine1Empty || addressLine1HasError }\" value=\"{{addressObj?.contact_details?.address_line}}\" formControlName=\"addressl1\" type=\"text\" autocomplete=\"address-line1\">\n <p class=\"inline-error-message\" *ngIf=\"isaddressLine1Empty || addressLine1HasError\">\n <span *ngIf=\"isaddressLine1Empty\">Enter a Building and street.</span>\n <span *ngIf=\"addressLine1HasError\">Enter a valid Building and street.</span>\n </p> \n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label\" for=\"address-line-2\">\n <span class=\"govuk-visually-hidden govuk-font19px\">Building and street line 2 of 2</span>\n </label>\n <input class=\"govuk-input govuk-font19px\" id=\"address-line-2\" name=\"address-line-2\" [ngClass]=\"{ 'inline-error-class': addressLine2HasError}\" formControlName=\"addressl2\" type=\"text\" autocomplete=\"address-line2\">\n <p class=\"inline-error-message\" *ngIf=\"addressLine2HasError\">\n <span *ngIf=\"addressLine2HasError\">Enter a valid Building and street line 2 of 2.</span>\n </p> \n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-font19px\" for=\"address-town\">\n Town or city\n </label>\n <input class=\"govuk-input govuk-!-width-two-thirds govuk-font19px\" id=\"address-town\" name=\"address-town\" [ngClass]=\"{ 'inline-error-class': isTownOrCityEmpty || townOrCityHasError}\" value=\"{{addressObj?.contact_details?.city}}\" formControlName=\"townorcity\" type=\"text\" autocomplete=\"address-level2\">\n <p class=\"inline-error-message\" *ngIf=\"isTownOrCityEmpty || townOrCityHasError\">\n <span *ngIf=\"isTownOrCityEmpty\">Enter a town or city.</span>\n <span *ngIf=\"townOrCityHasError\">Enter a town or city.</span>\n </p> \n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-font19px\" for=\"address-county\">\n County\n </label>\n <input class=\"govuk-input govuk-!-width-two-thirds govuk-font19px\" id=\"address-county\" [ngClass]=\"{ 'inline-error-class': isCountyEmpty || countyHasError}\" value=\"{{addressObj?.contact_details?.county}}\" formControlName=\"county\" name=\"address-county\" type=\"text\">\n <p class=\"inline-error-message\" *ngIf=\"isCountyEmpty || countyHasError\">\n <span *ngIf=\"isCountyEmpty\">Enter a County.</span>\n <span *ngIf=\"countyHasError\">Enter a valid County.</span>\n </p> \n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-font19px\" for=\"address-postcode\">\n Postcode\n </label>\n <input class=\"govuk-input govuk-input--width-10 govuk-font19px\" id=\"address-postcode\" formControlName=\"mpostcode\" name=\"address-postcode\" [ngClass]=\"{ 'inline-error-class': isMPostcodeEmpty || mpostcodeHasError}\" value=\"{{addressObj?.contact_details?.postal_code}}\" type=\"text\" autocomplete=\"postal-code\">\n <p class=\"inline-error-message\" *ngIf=\"isMPostcodeEmpty || mpostcodeHasError\">\n <span *ngIf=\"isMPostcodeEmpty\">Enter a postcode.</span>\n <span *ngIf=\"mpostcodeHasError\">Enter a valid postcode.</span>\n </p> \n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-font19px\" for=\"country\">\n Country\n </label>\n <select class=\"govuk-select govuk-font19px\" id=\"country\" name=\"country\" [ngClass]=\"{'inline-error-class': isCountryEmpty}\" formControlName=\"country\">\n <option value=\"\" selected=\"selected\">Please select</option>\n <option value=\"United Kingdom\" selected=\"{{ addressObj?.contact_details?.country ? 'selected' : '' }}\">United Kingdom</option>\n </select>\n <p class=\"inline-error-message\" *ngIf=\"isCountryEmpty\">\n <span *ngIf=\"isCountryEmpty\">Select a Country.</span>\n </p> \n </div>\n </form>\n </div>\n </div>\n </fieldset>\n </div>\n <!---FORM--->\n </div>\n\n<hr class=\"govuk-section-break govuk-section-break--m govuk-section-break--visible\">\n</fieldset>\n<div class=\"govuk-button-group\">\n<button type=\"submit\" class=\"button govuk-button--secondary govuk-font19px\" (click)=\"redirection($event)\"> Previous </button>\n \n<button type=\"submit\" class=\"button govuk-button govuk-font19px\" (click)=\"finalFormSubmit()\">\n Continue\n</button>\n</div>",
|
|
3380
|
+
styles: [".govuk-font19px{font-size:19px}.inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.inline-error-message{color:#a71414;font-weight:700;margin-top:10px}.contact-details--size{width:50%}.postcode-align-css{display:flex;flex-direction:row}.govuk-margin-right-10px{margin-right:10px}.govuk-margin-btm-20px{margin-bottom:20px!important}"]
|
|
3381
|
+
}] }
|
|
3382
|
+
];
|
|
3383
|
+
/** @nocollapse */
|
|
3384
|
+
ContactDetailsComponent.ctorParameters = function () {
|
|
3385
|
+
return [
|
|
3386
|
+
{ type: forms.FormBuilder },
|
|
3387
|
+
{ type: NotificationService },
|
|
3388
|
+
{ type: PaymentLibComponent }
|
|
3389
|
+
];
|
|
3390
|
+
};
|
|
3391
|
+
ContactDetailsComponent.propDecorators = {
|
|
3392
|
+
isEditOperation: [{ type: i0.Input, args: ['isEditOperation',] }],
|
|
3393
|
+
isEditOperationInRefundList: [{ type: i0.Input, args: ['isEditOperationInRefundList',] }],
|
|
3394
|
+
addressObj: [{ type: i0.Input, args: ['addressObj',] }],
|
|
3395
|
+
assignContactDetails: [{ type: i0.Output }],
|
|
3396
|
+
assignContactDetailsInFefundsList: [{ type: i0.Output }],
|
|
3397
|
+
redirectToIssueRefund: [{ type: i0.Output }]
|
|
3398
|
+
};
|
|
3399
|
+
return ContactDetailsComponent;
|
|
3400
|
+
}());
|
|
3401
|
+
|
|
3402
|
+
/**
|
|
3403
|
+
* @fileoverview added by tsickle
|
|
3404
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3405
|
+
*/
|
|
3406
|
+
var PbaDetailsComponent = /** @class */ (function () {
|
|
3407
|
+
function PbaDetailsComponent() {
|
|
3408
|
+
}
|
|
3409
|
+
/**
|
|
3410
|
+
* @return {?}
|
|
3411
|
+
*/
|
|
3412
|
+
PbaDetailsComponent.prototype.ngOnInit = /**
|
|
2835
3413
|
* @return {?}
|
|
2836
3414
|
*/
|
|
2837
3415
|
function () {
|
|
@@ -3174,6 +3752,7 @@
|
|
|
3174
3752
|
this.viewStatus = 'main';
|
|
3175
3753
|
this.isRemoveBtnDisabled = false;
|
|
3176
3754
|
this.clAmountDue = 0;
|
|
3755
|
+
this.overPaymentAmount = 0;
|
|
3177
3756
|
this.isFeeRecordsExist = false;
|
|
3178
3757
|
this.isGrpOutstandingAmtPositive = false;
|
|
3179
3758
|
//Order changes
|
|
@@ -3264,17 +3843,27 @@
|
|
|
3264
3843
|
}
|
|
3265
3844
|
this.excReference = this.paymentLibComponent.EXC_REFERENCE;
|
|
3266
3845
|
this.takePayment = this.paymentLibComponent.TAKEPAYMENT;
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
this.
|
|
3846
|
+
if (this.paymentLibComponent.SERVICEREQUEST !== undefined) {
|
|
3847
|
+
this.servicerequest = this.paymentLibComponent.SERVICEREQUEST.toString();
|
|
3848
|
+
if (this.paymentLibComponent.SERVICEREQUEST.toString() === 'true') {
|
|
3849
|
+
this.serviceRequestValue = 'true';
|
|
3850
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
3851
|
+
}
|
|
3852
|
+
else {
|
|
3853
|
+
this.serviceRequestValue = 'false';
|
|
3854
|
+
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
3855
|
+
}
|
|
3270
3856
|
}
|
|
3271
3857
|
else {
|
|
3272
3858
|
this.serviceRequestValue = 'false';
|
|
3859
|
+
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
3273
3860
|
}
|
|
3274
3861
|
this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;
|
|
3275
3862
|
this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;
|
|
3276
3863
|
this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();
|
|
3277
3864
|
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
3865
|
+
this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;
|
|
3866
|
+
this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;
|
|
3278
3867
|
this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
3279
3868
|
if (!this.isTurnOff) {
|
|
3280
3869
|
// if (this.lsCcdNumber !== this.ccdCaseNumber) {
|
|
@@ -3471,6 +4060,7 @@
|
|
|
3471
4060
|
* @return {?}
|
|
3472
4061
|
*/function (fee) {
|
|
3473
4062
|
_this.orderFeesTotal = _this.orderFeesTotal + fee.calculated_amount;
|
|
4063
|
+
_this.overPaymentAmount = _this.overPaymentAmount + fee.over_payment;
|
|
3474
4064
|
}));
|
|
3475
4065
|
}
|
|
3476
4066
|
if (paymentGroup.remissions) {
|
|
@@ -3482,10 +4072,15 @@
|
|
|
3482
4072
|
}));
|
|
3483
4073
|
}
|
|
3484
4074
|
if (paymentGroup.payments) {
|
|
4075
|
+
/** @type {?} */
|
|
4076
|
+
var isFeeOverPaymentExist_1 = _this.overPaymentAmount === 0;
|
|
3485
4077
|
paymentGroup.payments.forEach(( /**
|
|
3486
4078
|
* @param {?} payment
|
|
3487
4079
|
* @return {?}
|
|
3488
4080
|
*/function (payment) {
|
|
4081
|
+
if (isFeeOverPaymentExist_1) {
|
|
4082
|
+
_this.overPaymentAmount = _this.overPaymentAmount + payment.over_payment;
|
|
4083
|
+
}
|
|
3489
4084
|
if (payment.status.toUpperCase() === 'SUCCESS') {
|
|
3490
4085
|
_this.orderTotalPayments = _this.orderTotalPayments + payment.amount;
|
|
3491
4086
|
}
|
|
@@ -3903,6 +4498,8 @@
|
|
|
3903
4498
|
var url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
3904
4499
|
url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
3905
4500
|
url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4501
|
+
url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
4502
|
+
url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
3906
4503
|
url += "&caseType=" + this.caseType;
|
|
3907
4504
|
this.router.navigateByUrl("/fee-search?selectedOption=" + this.selectedOption + "&ccdCaseNumber=" + this.ccdCaseNumber + url);
|
|
3908
4505
|
};
|
|
@@ -3951,23 +4548,22 @@
|
|
|
3951
4548
|
*/
|
|
3952
4549
|
function (payment, remission, fees) {
|
|
3953
4550
|
var _this = this;
|
|
3954
|
-
this.
|
|
3955
|
-
this.payment = payment;
|
|
3956
|
-
this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(( /**
|
|
4551
|
+
this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(( /**
|
|
3957
4552
|
* @param {?} paymentGroup
|
|
3958
4553
|
* @return {?}
|
|
3959
4554
|
*/function (paymentGroup) {
|
|
3960
4555
|
_this.paymentGroup = paymentGroup;
|
|
3961
|
-
_this.paymentGroup.payments =
|
|
4556
|
+
_this.paymentGroup.payments = paymentGroup.payments.filter(( /**
|
|
3962
4557
|
* @param {?} paymentGroupObj
|
|
3963
4558
|
* @return {?}
|
|
3964
|
-
*/function (paymentGroupObj) { return paymentGroupObj
|
|
4559
|
+
*/function (paymentGroupObj) { return paymentGroupObj.reference === payment.reference; }));
|
|
3965
4560
|
_this.payment = _this.paymentGroup.payments[0];
|
|
3966
4561
|
_this.remissions = remission;
|
|
3967
4562
|
_this.remissionFeeAmt = fees.filter(( /**
|
|
3968
4563
|
* @param {?} data
|
|
3969
4564
|
* @return {?}
|
|
3970
4565
|
*/function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
4566
|
+
_this.viewStatus = 'addrefundforremission';
|
|
3971
4567
|
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
3972
4568
|
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
3973
4569
|
}), ( /**
|
|
@@ -4319,7 +4915,7 @@
|
|
|
4319
4915
|
CaseTransactionsComponent.decorators = [
|
|
4320
4916
|
{ type: i0.Component, args: [{
|
|
4321
4917
|
selector: 'ccpay-case-transactions',
|
|
4322
|
-
template: "<div class=\"govuk-width-container\">\n\n <main class=\"govuk-main-wrapper\">\n <ng-container *ngIf=\"viewStatus === 'main1'\">\n <div *ngIf=\"viewStatus === 'main1'&& !isTurnOff && takePayment\">\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n </div>\n\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n <div *ngIf='!isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">CCD reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div *ngIf='isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">Exception reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header govuk-table__header--custom\" scope=\"col\" *ngIf=\"isBulkScanEnable\">Unallocated payments</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell summary-table-font\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ clAmountDue | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"govuk-table__cell case-transaction__color summary-table-font\" *ngIf=\"isBulkScanEnable\">{{unprocessedRecordCount}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n <div class=\"govuk-grid-column-two-thirds\" *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"redirectToFeeSearchPage($event)\"\n [disabled]=\"!isAddFeeBtnEnabled\"\n [ngClass]='!isAddFeeBtnEnabled ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Take telephony payment\n </button>\n </div>\n\n </div>\n <div class=\"govuk-grid-row\">\n\n </div>\n <div *ngIf=\"takePayment\" class=\" govuk-!-margin-top-9\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <h3 class=\"heading-medium\">Fees</h3>\n </div>\n <div class=\"govuk-grid-column-full\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header\" scope=\"col\">Action</td>\n\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let paymentGroup of paymentGroups;\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">\t{{fee.code}} </td>\n <td class=\"govuk-table__cell\">{{fee.description}}</td>\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}}</td>\n <td class=\"govuk-table__cell\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"paymentGroup.old && i==0\"> {{getGroupOutstandingAmount(paymentGroup)| currency:'GBP':'symbol-narrow':'1.2-2'}}* </td>\n <td class=\"govuk-table__cell\" *ngIf=\"!paymentGroup.old\"> {{calculateAmountDue(fee) | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell\" *ngIf=\"!paymentGroup.old\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='!isCheckAmountdueExist(fee.amount_due) || fee.remissions ? \"disable-link\" : \"\"'>Remove</a>\n </td>\n <td class=\"govuk-table__cell\" *ngIf=\"paymentGroup.old\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='paymentGroup.payments?.length > 0 || paymentGroup.remissions?.length > 0 ? \"disable-link\" : \"\"'>Remove</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroups?.length === 0\">\n <tr class=\"govuk-table__row\" >\n <td class=\"govuk-table__cell\" colspan=\"7\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n <div class=\"hmcts-banner\" *ngIf=\"isHistoricGroupAvailable\">\n <svg class=\"hmcts-banner__icon\" fill=\"currentColor\" role=\"presentation\" focusable=\"false\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 25 25\" height=\"25\" width=\"25\">\n <path d=\"M13.7,18.5h-2.4v-2.4h2.4V18.5z M12.5,13.7c-0.7,0-1.2-0.5-1.2-1.2V7.7c0-0.7,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2v4.8\n C13.7,13.2,13.2,13.7,12.5,13.7z M12.5,0.5c-6.6,0-12,5.4-12,12s5.4,12,12,12s12-5.4,12-12S19.1,0.5,12.5,0.5z\"></path>\n </svg>\n <div class=\"hmcts-banner__message\">\n <span class=\"hmcts-banner__assistive\">information</span>\n * These fees have already been processed offline. Check the notes in CCD for more information.\n </div>\n </div>\n <div class=\"panel panel-no--style\" *ngIf=\"allPayments?.length > 0 || remissions?.length > 0\">\n <!-- payments -->\n <h3 class=\"heading-medium\">Payments</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-28\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header col-15\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Payment status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"7\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <h3 class=\"heading-medium\">Remissions</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Remission reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n <div *ngIf=\"takePayment && isTurnOff\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n\n <div class=\"govuk-grid-column-one-third\" align=\"right\" >\n <a [ngClass]=\"{ 'disable': !isAddFeeBtnEnabled} \" (click)=\"redirectToFeeSearchPage($event)\" class=\"button\">Add a new fee</a>\n </div>\n </div>\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6\">\n <h3 class=\"heading-medium\">CCD reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ (totalFees - totalRemissions) - totalPayments | currency :'GBP':'symbol':'1.2-2'}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n\n\n <!-- No fees start -->\n <div *ngIf=\"paymentGroups?.length === 0\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Existing fees</span>\n </div>\n\n <div class=\"govuk-grid-column-full\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n <!-- No fees end -->\n\n <div *ngFor=\"let paymentGroup of paymentGroups\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full govuk-grid-column-full--gr\">\n <span class=\"heading-medium\">Group reference: {{paymentGroup.payment_group_reference}}</span>\n </div>\n </div>\n <div class=\"govuk-grid-row\">\n\n <!--New Code start-->\n\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Exisiting fees</span>\n </div>\n <div class=feeclass>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"groupamount govuk-table__header\" scope=\"col\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell govuk-table__cell--col1\">{{fee.code}}</td>\n <td class=\"govuk-table__cell govuk-table__cell--col2\"> {{fee.description}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col3 align-center\"> {{fee.volume? fee.volume : '-'}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col4\"> {{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col5\"> {{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col6 govuk-table__custom--col6\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"i==0\">\n {{getGroupOutstandingAmount(paymentGroup) | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees.length==0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n </div>\n </div>\n <div class=\"govuk-inset-text govuk-inset-text__no-border\" *ngIf=\"paymentGroup.payments || paymentGroup.remissions\">\n <details>\n <summary class=\"govuk-hidetext\">\n <span class=\"summary\">Allocated payments and remissions</span>\n </summary>\n\n <div class=\"panel panel-border-narrow\">\n <!-- payments -->\n <span class=\"heading-medium\">Payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.payments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of paymentGroup.payments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(paymentGroup.payment_group_reference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.payments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <span class=\"heading-medium\">Remissions</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Remission reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee applied against</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of paymentGroup.remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.date_created | date:'dd MMM' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </details>\n\n\n <div *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"loadFeeSummaryPage(paymentGroup)\"\n [disabled]=\"(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected)\"\n [ngClass]='(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected) ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Add telephone payment\n </button>\n </div>\n </div>\n </div>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"5\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n <div class=\"govuk-grid-row govuk-grid__surplus-payments\" *ngIf=\"totalRefundAmount > 0 && takePayment\">\n <div class=\"govuk-grid-column-full govuk-grid__surplus-payments-col1\">\n <h3 class=\"heading-medium\">Surplus payments</h3>\n </div>\n <div class=\"govuk-grid-column-full\">\n Total surplus payments received: {{totalRefundAmount | currency :'GBP':'symbol':'1.2-2'}}\n </div>\n </div>\n </div>\n\n <div *ngIf=\"takePayment\">\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"1\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </div>\n\n <div *ngIf=\"!takePayment\" class=\"govuk-grid-row govuk-grid__surplus-payments\">\n\n <div class=\"govuk-grid-column-full\">\n\n <span class=\"heading-medium\">Payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-13\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-14\" scope=\"col\">Date allocated</td>\n <td class=\"govuk-table__header col-20\" scope=\"col\">Request reference</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell col-13 whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell col-10 whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell col-17 whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"govuk-table__cell col-24 whitespace-inherit\">{{ payment.paymentGroupReference }}</td>\n <td class=\"govuk-table__cell col-13 whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n\n </table>\n <ccpay-app-unprocessed-payments class=\"govuk-table\"\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"2\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </div>\n </div>\n </ng-container>\n\n<!--Order Case Transactions Page-->\n <ng-container *ngIf=\"viewStatus === 'main' && !isTurnOff && takePayment\">\n <div>\n\n <div>\n <h1 class=\"govuk-grid-column-two-thirds govuk-heading-l govuk-!-margin-top-0\">Case transactions</h1>\n <ng-container *ngIf='!isExceptionRecord' class=\" govuk-!-margin-bottom-6 alignself\">\n <b> Case reference: </b>{{ ccdCaseNumber | ccdHyphens }}\n </ng-container>\n <ng-container *ngIf='isExceptionRecord' class=\"govuk-!-margin-bottom-3 col-55 alignself\" >\n <b> Exception reference:</b>{{ ccdCaseNumber | ccdHyphens }}\n </ng-container>\n <div>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-25\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header govuk-table__header--custom col-25\" scope=\"col\" *ngIf=\"isBulkScanEnable\">Unallocated payments</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Amount due</td>\n\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell summary-table-font\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell case-transaction__color summary-table-font\" *ngIf=\"isBulkScanEnable\">{{unprocessedRecordCount}}</td>\n\n <td class=\"govuk-table__cell summary-table-font\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ clAmountDue | currency :'GBP':'symbol':'1.2-2'}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ORDERIDDETAILS'>\n\n <!--Payment Request-->\n <div class=\"paymentrequest\">\n <span class=\"heading-medium\">Service requests</span>\n <ng-container>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Party</td>\n <td class=\"govuk-table__header col-21\" scope=\"col\">Request reference</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header col\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length > 0\">\n <tr *ngFor=\"let orderRef of orderLevelFees;let i = index;\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderStatus}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ orderRef.orderTotalFees | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td *ngIf=\"cpoDetails !== null\" class=\"govuk-table__cell whitespace-inherit\">{{cpoDetails['responsibleParty']}}</td>\n <td *ngIf=\"cpoDetails === null\" class=\"govuk-table__cell whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderRefId}}</td>\n <td class=\"govuk-table__cell\">\n <a href=\"javascript:void(0)\" (click)=\"goToOrderViewDetailSection(orderRef)\">Review</a>\n </td>\n <td class=\"alignright\">\n\n <button type=\"submit\" (click)=\"redirectToOrderFeeSearchPage($event,orderRef)\"\n [disabled]=\"!orderRef.orderAddBtnEnable\"\n [ngClass]='!orderRef.orderAddBtnEnable ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Take telephony payment\n </button></td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body alignleft\" *ngIf=\"orderLevelFees?.length === 0\">\n <td colspan=\"6\">No service requests on this case.</td>\n </tbody>\n </table>\n </ng-container>\n <!-- <ng-container *ngIf=\"orderLevelFees?.length === 0\">\n <br/>No service requests on this case.<br/>\n </ng-container> -->\n <span>\n <br/>\n <a (click)=\"redirectToFeeSearchPage($event)\"\n [class.disabled]=\"!isAddFeeBtnEnabled\">Create service request and pay</a><br/>\n </span>\n </div>\n <div>\n <span class=\"heading-medium\"><br/>Payments</span>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"3\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [PAYMENTREF]=\"paymentRef\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n\n <ng-container>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell col-14 whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell col-10 whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell col-17 whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell col-24 whitespace-inherit\">{{ payment.paymentGroupReference }}</td>\n <td class=\"govuk-table__cell col-13 whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0 && unprocessedRecordCount <= 0\">\n <td colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n\n </ng-container>\n\n </div>\n <div *ngIf=\"!check4AllowedRoles2AccessPBApayment()\">\n <span class=\"heading-medium\"><br/>Refunds</span>\n <ccpay-refund-status\n [ccdCaseNumber]=\"ccdCaseNumber\"\n [isTurnOff]=\"isTurnOff\"\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n ></ccpay-refund-status>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"!takePayment && viewStatus === 'main'\"> \n <div class=\"govuk-grid-column-full\" [ngClass]='serviceRequestValue!== \"false\" ? \"govuk-margin-btm-20px\" : \"\"'>\n <!-- <span *ngIf=\"serviceRequestValue === 'false'\" class=\"heading-medium\">Service requests</span> -->\n <ng-container *ngIf=\"!(orderLevelFees?.length === 0 && !isAnyFeeGroupAvilable) && serviceRequestValue !== 'false' \">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Party</td>\n <td class=\"govuk-table__header col-24\" scope=\"col\">Request reference\t</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let orderRef of orderLevelFees;let i = index;\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderStatus}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderTotalFees | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td *ngIf=\"cpoDetails !== null\" class=\"govuk-table__cell whitespace-inherit\">{{cpoDetails['responsibleParty']}}</td> \n <td *ngIf=\"cpoDetails === null\" class=\"govuk-table__cell whitespace-inherit\"></td> \n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderRefId}}</td> \n <td class=\"govuk-table__cell of-visible\"> <a href=\"javascript:void(0)\" (click)=\"loadPBAAccountPage(orderRef)\" *ngIf=\"serviceRequestValue !== 'false' && check4AllowedRoles2AccessPBApayment() && orderRef.orderStatus === 'Not paid'\"> Pay now</a></td> \n <td class=\"govuk-table__cell\">\t\n <a href=\"javascript:void(0)\" (click)=\"goToOrderViewDetailSection(orderRef)\">Review</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length === 0 && serviceRequestValue === 'false'\">\n <tr class=\"govuk-table__row\" >\n <td class=\"alignleft\" colspan=\"7\">No service requests on this case.</td>\n </tr>\n </tbody>\n </table>\n </ng-container>\n <ng-container *ngIf=\"orderLevelFees?.length === 0 && serviceRequestValue !== 'false' && !isAnyFeeGroupAvilable\">\n <h1 class=\"govuk-heading-l govuk-heading-lw\">If you are expecting to pay and are not able to see a service request,</h1>\n <p>please refresh and try in some time.</p>\n </ng-container>\n\n <!-- </div> -->\n\n </div>\n\n <div class=\"govuk-grid-column-full\">\n <div *ngIf=\"serviceRequestValue === 'false'\">\n <span class=\"heading-medium\"><br/>Payments</span>\n <ng-container >\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-17\" scope=\"col\">Date</td>\n <td class=\"govuk-table__header col-24\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header col-13\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n <ccpay-app-unprocessed-payments class=\"govuk-table\"\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"4\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [FEE_RECORDS_EXISTS]=\"isAnyFeeGroupAvilable\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </ng-container>\n\n </div>\n </div>\n <div class=\"govuk-grid-column-full\" *ngIf=\"!check4AllowedRoles2AccessPBApayment()\">\n <span class=\"heading-medium\"><br/>Refunds</span>\n <ccpay-refund-status [ccdCaseNumber]=\"ccdCaseNumber\" ></ccpay-refund-status>\n </div>\n\n </ng-container>\n\n\n<input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEEREMOVALCONFIRMATION_2'>\n\n<!-- Order Full View Details-->\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [isServiceRequest] = \"serviceRequestValue\"\n (goToServiceRquestComponent) = \"goToServiceRequestPage()\"\n ></ccpay-service-request>\n\n</ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'addremission' && feeId\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[fee]=\"feeId\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[paymentGroupRef]=\"orderRef\"\n[isFromServiceRequestPage] = \"true\"\n[payment] = \"payment\"\n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'issuerefund' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[isFromServiceRequestPage] = \"true\"\n[payment]=\"payment\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[paymentGroupRef]=\"orderRef\"\n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'addrefundforremission' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[payment]=\"payment\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"true\"\n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n\n<ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemoval()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(feeId)\">\n Remove\n </button>\n </form>\n </div>\n</ng-container>\n\n</main>\n</div>",
|
|
4918
|
+
template: "<div class=\"govuk-width-container\">\n\n <main class=\"govuk-main-wrapper\">\n <ng-container *ngIf=\"viewStatus === 'main1'\">\n <div *ngIf=\"viewStatus === 'main1'&& !isTurnOff && takePayment\">\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n </div>\n\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n <div *ngIf='!isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">CCD reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div *ngIf='isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">Exception reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header govuk-table__header--custom\" scope=\"col\" *ngIf=\"isBulkScanEnable\">Unallocated payments</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell summary-table-font\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ clAmountDue | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"govuk-table__cell case-transaction__color summary-table-font\" *ngIf=\"isBulkScanEnable\">{{unprocessedRecordCount}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n <div class=\"govuk-grid-column-two-thirds\" *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"redirectToFeeSearchPage($event)\"\n [disabled]=\"!isAddFeeBtnEnabled\"\n [ngClass]='!isAddFeeBtnEnabled ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Take telephony payment\n </button>\n </div>\n\n </div>\n <div class=\"govuk-grid-row\">\n \n </div>\n <div *ngIf=\"takePayment\" class=\" govuk-!-margin-top-9\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <h3 class=\"heading-medium\">Fees</h3>\n </div>\n <div class=\"govuk-grid-column-full\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header\" scope=\"col\">Action</td>\n\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let paymentGroup of paymentGroups;\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">\t{{fee.code}} </td>\n <td class=\"govuk-table__cell\">{{fee.description}}</td>\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}}</td>\n <td class=\"govuk-table__cell\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"paymentGroup.old && i==0\"> {{getGroupOutstandingAmount(paymentGroup)| currency:'GBP':'symbol-narrow':'1.2-2'}}* </td>\n <td class=\"govuk-table__cell\" *ngIf=\"!paymentGroup.old\"> {{calculateAmountDue(fee) | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell\" *ngIf=\"!paymentGroup.old\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='!isCheckAmountdueExist(fee.amount_due) || fee.remissions ? \"disable-link\" : \"\"'>Remove</a>\n </td>\n <td class=\"govuk-table__cell\" *ngIf=\"paymentGroup.old\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='paymentGroup.payments?.length > 0 || paymentGroup.remissions?.length > 0 ? \"disable-link\" : \"\"'>Remove</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroups?.length === 0\">\n <tr class=\"govuk-table__row\" >\n <td class=\"govuk-table__cell\" colspan=\"7\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n <div class=\"hmcts-banner\" *ngIf=\"isHistoricGroupAvailable\">\n <svg class=\"hmcts-banner__icon\" fill=\"currentColor\" role=\"presentation\" focusable=\"false\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 25 25\" height=\"25\" width=\"25\">\n <path d=\"M13.7,18.5h-2.4v-2.4h2.4V18.5z M12.5,13.7c-0.7,0-1.2-0.5-1.2-1.2V7.7c0-0.7,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2v4.8\n C13.7,13.2,13.2,13.7,12.5,13.7z M12.5,0.5c-6.6,0-12,5.4-12,12s5.4,12,12,12s12-5.4,12-12S19.1,0.5,12.5,0.5z\"></path>\n </svg>\n <div class=\"hmcts-banner__message\">\n <span class=\"hmcts-banner__assistive\">information</span>\n * These fees have already been processed offline. Check the notes in CCD for more information.\n </div>\n </div>\n <div class=\"panel panel-no--style\" *ngIf=\"allPayments?.length > 0 || remissions?.length > 0\">\n <!-- payments -->\n <h3 class=\"heading-medium\">Payments</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-28\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header col-15\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Payment status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"7\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <h3 class=\"heading-medium\">Remissions</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Remission reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n <div *ngIf=\"takePayment && isTurnOff\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n\n <div class=\"govuk-grid-column-one-third\" align=\"right\" >\n <a [ngClass]=\"{ 'disable': !isAddFeeBtnEnabled} \" (click)=\"redirectToFeeSearchPage($event)\" class=\"button\">Add a new fee</a>\n </div>\n </div> \n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6\">\n <h3 class=\"heading-medium\">CCD reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ (totalFees - totalRemissions) - totalPayments | currency :'GBP':'symbol':'1.2-2'}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n\n\n <!-- No fees start -->\n <div *ngIf=\"paymentGroups?.length === 0\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Existing fees</span>\n </div>\n\n <div class=\"govuk-grid-column-full\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n <!-- No fees end -->\n\n <div *ngFor=\"let paymentGroup of paymentGroups\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full govuk-grid-column-full--gr\">\n <span class=\"heading-medium\">Group reference: {{paymentGroup.payment_group_reference}}</span>\n </div>\n </div>\n <div class=\"govuk-grid-row\">\n\n <!--New Code start-->\n\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Exisiting fees</span>\n </div>\n <div class=feeclass>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"groupamount govuk-table__header\" scope=\"col\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell govuk-table__cell--col1\">{{fee.code}}</td>\n <td class=\"govuk-table__cell govuk-table__cell--col2\"> {{fee.description}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col3 align-center\"> {{fee.volume? fee.volume : '-'}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col4\"> {{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col5\"> {{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col6 govuk-table__custom--col6\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"i==0\">\n {{getGroupOutstandingAmount(paymentGroup) | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees.length==0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n </div>\n </div>\n <div class=\"govuk-inset-text govuk-inset-text__no-border\" *ngIf=\"paymentGroup.payments || paymentGroup.remissions\">\n <details>\n <summary class=\"govuk-hidetext\">\n <span class=\"summary\">Allocated payments and remissions</span>\n </summary>\n\n <div class=\"panel panel-border-narrow\">\n <!-- payments -->\n <span class=\"heading-medium\">Payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.payments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of paymentGroup.payments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(paymentGroup.payment_group_reference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.payments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <span class=\"heading-medium\">Remissions</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Remission reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee applied against</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of paymentGroup.remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.date_created | date:'dd MMM' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </details>\n \n\n <div *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"loadFeeSummaryPage(paymentGroup)\"\n [disabled]=\"(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected)\"\n [ngClass]='(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected) ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Add telephone payment\n </button>\n </div>\n </div>\n </div>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"5\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISNEWPCIPALOFF]=\"isNewPcipalOff\"\n [ISOLDPCIPALOFF]=\"isOldPcipalOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n <div class=\"govuk-grid-row govuk-grid__surplus-payments\" *ngIf=\"totalRefundAmount > 0 && takePayment\">\n <div class=\"govuk-grid-column-full govuk-grid__surplus-payments-col1\">\n <h3 class=\"heading-medium\">Surplus payments</h3>\n </div>\n <div class=\"govuk-grid-column-full\">\n Total surplus payments received: {{totalRefundAmount | currency :'GBP':'symbol':'1.2-2'}}\n </div>\n </div>\n </div>\n\n <div *ngIf=\"takePayment\">\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"1\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </div>\n\n <div *ngIf=\"!takePayment\" class=\"govuk-grid-row govuk-grid__surplus-payments\">\n \n <div class=\"govuk-grid-column-full\">\n \n <span class=\"heading-medium\">Payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-13\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-14\" scope=\"col\">Date allocated</td>\n <td class=\"govuk-table__header col-20\" scope=\"col\">Request reference</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell col-13 whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell col-10 whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell col-17 whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"govuk-table__cell col-24 whitespace-inherit\">{{ payment.paymentGroupReference }}</td>\n <td class=\"govuk-table__cell col-13 whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n \n </table>\n <ccpay-app-unprocessed-payments class=\"govuk-table\"\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"2\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </div>\n </div>\n </ng-container>\n\n<!--Order Case Transactions Page-->\n <ng-container *ngIf=\"viewStatus === 'main' && !isTurnOff && takePayment\">\n <div>\n <div>\n <h1 class=\"govuk-grid-column-two-thirds govuk-heading-l govuk-!-margin-top-0\">Case transactions</h1>\n <ng-container *ngIf='!isExceptionRecord' class=\" govuk-!-margin-bottom-6 alignself\">\n <b> Case reference: </b>{{ ccdCaseNumber | ccdHyphens }}\n </ng-container>\n <ng-container *ngIf='isExceptionRecord' class=\"govuk-!-margin-bottom-3 col-55 alignself\" >\n <b> Exception reference:</b>{{ ccdCaseNumber | ccdHyphens }}\n </ng-container>\n <div>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-25\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header govuk-table__header--custom col-25\" scope=\"col\" *ngIf=\"isBulkScanEnable\">Unallocated payments</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Over payment</td>\n\n \n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell summary-table-font\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell case-transaction__color summary-table-font\" *ngIf=\"isBulkScanEnable\">{{unprocessedRecordCount}}</td>\n \n <td class=\"govuk-table__cell summary-table-font\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ clAmountDue | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"govuk-table__cell summary-table-font\">{{ overPaymentAmount | currency :'GBP':'symbol':'1.2-2'}}</td>\n\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ORDERIDDETAILS'>\n\n <!--Payment Request-->\n <div class=\"paymentrequest\">\n <span class=\"heading-medium\">Service requests</span>\n <ng-container>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Party</td>\n <td class=\"govuk-table__header col-21\" scope=\"col\">Request reference</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header col\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length > 0\">\n <tr *ngFor=\"let orderRef of orderLevelFees;let i = index;\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderStatus}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ orderRef.orderTotalFees | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td *ngIf=\"cpoDetails !== null\" class=\"govuk-table__cell whitespace-inherit\">{{cpoDetails['responsibleParty']}}</td> \n <td *ngIf=\"cpoDetails === null\" class=\"govuk-table__cell whitespace-inherit\"></td> \n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderRefId}}</td>\n <td class=\"govuk-table__cell\">\t\n <a href=\"javascript:void(0)\" (click)=\"goToOrderViewDetailSection(orderRef)\">Review</a>\n </td>\n <td class=\"alignright\">\n \n <button type=\"submit\" (click)=\"redirectToOrderFeeSearchPage($event,orderRef)\"\n [disabled]=\"!orderRef.orderAddBtnEnable\"\n [ngClass]='!orderRef.orderAddBtnEnable ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Take telephony payment\n </button></td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body alignleft\" *ngIf=\"orderLevelFees?.length === 0\">\n <td colspan=\"6\">No service requests on this case.</td>\n </tbody>\n </table>\n </ng-container>\n <!-- <ng-container *ngIf=\"orderLevelFees?.length === 0\">\n <br/>No service requests on this case.<br/>\n </ng-container> -->\n <span>\n <br/>\n <a (click)=\"redirectToFeeSearchPage($event)\"\n [class.disabled]=\"!isAddFeeBtnEnabled\">Create service request and pay</a><br/>\n </span>\n </div>\n <div>\n <span class=\"heading-medium\"><br/>Payments</span>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"3\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [PAYMENTREF]=\"paymentRef\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n\n <ng-container>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell col-14 whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell col-10 whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell col-17 whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell col-24 whitespace-inherit\">{{ payment.paymentGroupReference }}</td>\n <td class=\"govuk-table__cell col-13 whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n \n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0 && unprocessedRecordCount <= 0\">\n <td colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n \n </ng-container>\n \n </div>\n <div *ngIf=\"!check4AllowedRoles2AccessPBApayment() && serviceRequestValue !== 'true'\">\n <span class=\"heading-medium\"><br/>Refunds</span>\n <ccpay-refund-status\n [ccdCaseNumber]=\"ccdCaseNumber\" \n [isTurnOff]=\"isTurnOff\"\n [orderParty]=\"orderParty\"\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" \n [isNewPcipalOff]=\"isNewPcipalOff\"\n [isOldPcipalOff]=\"isOldPcipalOff\"\n ></ccpay-refund-status>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"!takePayment && viewStatus === 'main'\"> \n <div class=\"govuk-grid-column-full\" [ngClass]='serviceRequestValue!== \"false\" ? \"govuk-margin-btm-20px\" : \"\"'>\n <!-- <span *ngIf=\"serviceRequestValue === 'false'\" class=\"heading-medium\">Service requests</span> -->\n <ng-container *ngIf=\"!(orderLevelFees?.length === 0 && !isAnyFeeGroupAvilable) && serviceRequestValue !== 'false' \">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Party</td>\n <td class=\"govuk-table__header col-24\" scope=\"col\">Request reference\t</td>\n <td class=\"govuk-table__header col-9\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let orderRef of orderLevelFees;let i = index;\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderStatus}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderTotalFees | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td *ngIf=\"cpoDetails !== null\" class=\"govuk-table__cell whitespace-inherit\">{{cpoDetails['responsibleParty']}}</td> \n <td *ngIf=\"cpoDetails === null\" class=\"govuk-table__cell whitespace-inherit\"></td> \n <td class=\"govuk-table__cell whitespace-inherit\">{{orderRef.orderRefId}}</td> \n <td class=\"govuk-table__cell of-visible\"> <a href=\"javascript:void(0)\" (click)=\"loadPBAAccountPage(orderRef)\" *ngIf=\"serviceRequestValue !== 'false' && check4AllowedRoles2AccessPBApayment() && orderRef.orderStatus === 'Not paid'\"> Pay now</a></td> \n <td class=\"govuk-table__cell\">\t\n <a href=\"javascript:void(0)\" (click)=\"goToOrderViewDetailSection(orderRef)\">Review</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"orderLevelFees?.length === 0 && serviceRequestValue === 'false'\">\n <tr class=\"govuk-table__row\" >\n <td class=\"alignleft\" colspan=\"7\">No service requests on this case.</td>\n </tr>\n </tbody>\n </table>\n </ng-container>\n <ng-container *ngIf=\"orderLevelFees?.length === 0 && serviceRequestValue !== 'false' && !isAnyFeeGroupAvilable\">\n <h1 class=\"govuk-heading-l govuk-heading-lw\">If you are expecting to pay and are not able to see a service request,</h1>\n <p>please refresh and try in some time.</p>\n </ng-container>\n\n <!-- </div> -->\n\n </div>\n \n <div class=\"govuk-grid-column-full\">\n <div *ngIf=\"serviceRequestValue === 'false'\">\n <span class=\"heading-medium\"><br/>Payments</span>\n <ng-container >\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-14\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-10\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-17\" scope=\"col\">Date</td>\n <td class=\"govuk-table__header col-24\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header col-13\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"></td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n </tr>\n </tbody>\n\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n <ccpay-app-unprocessed-payments class=\"govuk-table\"\n *ngIf=\"isBulkScanEnable && !takePayment\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [LEVEL]=\"4\"\n [ISTURNOFF]=\"isTurnOff\"\n [ISSFENABLE]=\"isStrategicFixEnable\"\n [PAYMENTSLENGTH]=\"allPayments?.length\"\n [PAYMENTREF]=\"paymentRef\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n [FEE_RECORDS_EXISTS]=\"isAnyFeeGroupAvilable\" \n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n </ng-container>\n\n </div>\n </div>\n <div class=\"govuk-grid-column-full\" *ngIf=\"!check4AllowedRoles2AccessPBApayment() && serviceRequestValue !== 'true'\">\n <span class=\"heading-medium\"><br/>Refunds</span>\n <ccpay-refund-status \n [ccdCaseNumber]=\"ccdCaseNumber\"\n [orderParty] =\"orderParty\"\n ></ccpay-refund-status>\n </div>\n\n </ng-container>\n\n\n<input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEEREMOVALCONFIRMATION_2'>\n\n<!-- Order Full View Details-->\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n [isServiceRequest] = \"serviceRequestValue\"\n (goToServiceRquestComponent) = \"goToServiceRequestPage()\"\n ></ccpay-service-request>\n \n</ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'addremission' && feeId\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[fee]=\"feeId\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[paymentGroupRef]=\"orderRef\" \n[isFromServiceRequestPage] = \"true\"\n[payment] = \"payment\"\n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'issuerefund' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[isFromServiceRequestPage] = \"true\"\n[payment]=\"payment\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[paymentGroupRef]=\"orderRef\" \n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n<ccpay-add-remission *ngIf=\"viewStatus === 'addrefundforremission' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[payment]=\"payment\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"true\" \n[ccdCaseNumber]=\"ccdCaseNumber\"></ccpay-add-remission>\n\n<ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemoval()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(feeId)\">\n Remove\n </button>\n </form>\n </div>\n</ng-container>\n</main>\n</div>\n\n\n",
|
|
4323
4919
|
styles: [".govuk-grid-column-full--gr{position:relative;margin-bottom:10px}.disable{text-decoration:none;cursor:default;color:#fff;background-color:grey;pointer-events:none}.govuk-grid__surplus-payments{margin:20px 0}.govuk-grid__surplus-payments>.govuk-grid-column-full{padding:0}.govuk-grid__surplus-payments-col1{margin-bottom:10px}.govuk-inset-text__no-border{border-left:0}.govuk-hidetext{font-size:22px;padding-bottom:10px}.lowercase{text-transform:lowercase}.channel::first-letter{text-transform:uppercase}.govuk-heading-xl{font-size:48px;margin-bottom:1px}.govuk-section-break--visible{border-bottom:2px solid #000}.totalpayments.govuk-table__row{border-bottom:2px solid #000!important}.govuk-inset-text{margin-left:1em}.govuk-button{font-size:19px;margin-bottom:0!important}.govuk-table__cell.govuk-table__cell--col6.govuk-table__custom--col6,.groupamount.govuk-table__header{text-align:right}.feeclass{padding-left:.7em}.align-center{text-align:center}details summary{display:list-item}.case-transaction__color{color:#a71414;font-weight:700;text-align:center}.capitalize::first-letter{text-transform:uppercase}.govuk-inset-text__no-left-margin{margin-left:0;padding-left:0}.whitespace-inherit{white-space:inherit!important}.govuk-section-records-break{margin:10px;border-bottom:2px solid #000!important}.exisitng-fees{margin-left:12px}.add-telephony-payment{margin-top:-2em;margin-left:-2em}.govuk-table__header--custom{text-align:center}.disable-link{cursor:default;pointer-events:none;color:#8e8c8c}.panel-no--style{border-left-style:none}.col-28{width:28%!important}.col-8{width:8%!important}.col-60{width:60%!important}.col-32{width:32%!important}.col-34{width:34%!important}.col-15{width:15%!important;padding-right:0!important;padding-left:0!important}.col-16{width:16%!important}.col-14{width:14%!important}.col-17{width:17%!important}.col-12{width:12%!important}.col-9{width:9%!important}.col-10{width:10%!important}.col-11{width:11%!important}.col-13{width:13%!important}.col-21{width:21%!important}.col-20{width:20%!important}.col-24{width:24%!important}.govuk-table__cell,.govuk-table__header{padding:10px 10px 10px 0}.col-27{width:27%!important}td{white-space:nowrap;overflow:hidden!important}.col-19{width:19%!important;padding-left:0!important}.col-18{width:18%!important;padding-left:0!important;padding-right:0!important}.col-37{width:37%!important}.col-55{width:55%!important}.govuk-table{margin-bottom:1px}.hmcts-banner>.hmcts-banner__message{font-size:19px;line-height:1.25}.summary-table-font{font-size:36px}.order-class{padding-top:3em}.govuk-table__cell:last-child,.govuk-table__header:last-child{text-align:right}.govuk-grid-column-two-thirds{width:64%!important;padding:0!important}.govuk-heading-l{font-size:36px;margin-bottom:10px}.govuk-heading-lw{width:70%}.paymentrequest{margin-top:1em}.mar-17{margin-left:17px}.col-61{width:61px!important;padding:0!important}.error{width:960px;margin:auto}.summarypage{padding-left:36em;margin-top:2em}.summarypagealign{width:100%;text-align:right;margin-top:2em}.govuk-inset-text{font-size:2.1875rem}table{table-layout:fixed;width:100%}td,th{word-wrap:break-word}.totalPay{padding-right:14px;float:right;margin-top:2em}.govuk-back-link{font-size:1.5rem!important}.totalfees{float:right;margin-top:2em}.refundBtn{text-align:right;width:18%}.col-25{width:25%!important}.of-visible{overflow:visible!important}.col-51{width:51%!important}.alignright{text-align:right}.alignleft{text-align:left}.alignself{align-self:flex-end}.maxwidth{width:100%}.govuk-padding-btm{padding-bottom:50px}.govuk-margin-btm-20px{margin-bottom:20px}"]
|
|
4324
4920
|
}] }
|
|
4325
4921
|
];
|
|
@@ -4336,7 +4932,8 @@
|
|
|
4336
4932
|
};
|
|
4337
4933
|
CaseTransactionsComponent.propDecorators = {
|
|
4338
4934
|
LOGGEDINUSERROLES: [{ type: i0.Input, args: ['LOGGEDINUSERROLES',] }],
|
|
4339
|
-
isTakePayment: [{ type: i0.Input }]
|
|
4935
|
+
isTakePayment: [{ type: i0.Input }],
|
|
4936
|
+
isFromServiceRequestPage: [{ type: i0.Input }]
|
|
4340
4937
|
};
|
|
4341
4938
|
return CaseTransactionsComponent;
|
|
4342
4939
|
}());
|
|
@@ -4412,7 +5009,15 @@
|
|
|
4412
5009
|
this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();
|
|
4413
5010
|
this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
4414
5011
|
this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);
|
|
4415
|
-
this.
|
|
5012
|
+
if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {
|
|
5013
|
+
this.platForm = '8x8';
|
|
5014
|
+
}
|
|
5015
|
+
else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {
|
|
5016
|
+
this.platForm = 'Antenna';
|
|
5017
|
+
}
|
|
5018
|
+
else if ((this.isOldPcipalOff && this.isNewPcipalOff)) {
|
|
5019
|
+
this.platForm = '8x8';
|
|
5020
|
+
}
|
|
4416
5021
|
this.paymentViewService.getBSfeature().subscribe(( /**
|
|
4417
5022
|
* @param {?} features
|
|
4418
5023
|
* @return {?}
|
|
@@ -4548,18 +5153,23 @@
|
|
|
4548
5153
|
if (fee.calculated_amount === 0) {
|
|
4549
5154
|
_this.isFeeAmountZero = true;
|
|
4550
5155
|
}
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
5156
|
+
if (paymentGroup.remissions) {
|
|
5157
|
+
_this.isRemissionsMatch = false;
|
|
5158
|
+
paymentGroup.remissions.forEach(( /**
|
|
5159
|
+
* @param {?} rem
|
|
5160
|
+
* @return {?}
|
|
5161
|
+
*/function (rem) {
|
|
5162
|
+
if (rem.fee_code === fee.code) {
|
|
5163
|
+
_this.isRemissionsMatch = true;
|
|
5164
|
+
fee['remissions'] = rem;
|
|
5165
|
+
fees.push(fee);
|
|
5166
|
+
}
|
|
5167
|
+
}));
|
|
5168
|
+
if (!_this.isRemissionsMatch) {
|
|
4559
5169
|
fees.push(fee);
|
|
4560
5170
|
}
|
|
4561
|
-
}
|
|
4562
|
-
|
|
5171
|
+
}
|
|
5172
|
+
else {
|
|
4563
5173
|
fees.push(fee);
|
|
4564
5174
|
}
|
|
4565
5175
|
}));
|
|
@@ -4647,6 +5257,8 @@
|
|
|
4647
5257
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
4648
5258
|
partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4649
5259
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
5260
|
+
partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5261
|
+
partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
4650
5262
|
/** @type {?} */
|
|
4651
5263
|
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=true&" + partUrl;
|
|
4652
5264
|
this.router.navigateByUrl(url);
|
|
@@ -4678,6 +5290,8 @@
|
|
|
4678
5290
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
4679
5291
|
partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4680
5292
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
5293
|
+
partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5294
|
+
partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
4681
5295
|
if (this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {
|
|
4682
5296
|
this.viewStatus = 'main';
|
|
4683
5297
|
return;
|
|
@@ -4699,7 +5313,25 @@
|
|
|
4699
5313
|
var requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);
|
|
4700
5314
|
/** @type {?} */
|
|
4701
5315
|
var antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);
|
|
4702
|
-
if (this.platForm === '
|
|
5316
|
+
if (this.platForm === '8x8') {
|
|
5317
|
+
this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(( /**
|
|
5318
|
+
* @param {?} response
|
|
5319
|
+
* @return {?}
|
|
5320
|
+
*/function (response) {
|
|
5321
|
+
_this.location.go("payment-history?view=fee-summary");
|
|
5322
|
+
_this.payhubHtml = response;
|
|
5323
|
+
_this.viewStatus = 'payhub_view';
|
|
5324
|
+
_this.isBackButtonEnable = false;
|
|
5325
|
+
}), ( /**
|
|
5326
|
+
* @param {?} error
|
|
5327
|
+
* @return {?}
|
|
5328
|
+
*/function (error) {
|
|
5329
|
+
_this.errorMessage = error;
|
|
5330
|
+
_this.isConfirmationBtnDisabled = false;
|
|
5331
|
+
_this.router.navigateByUrl('/pci-pal-failure');
|
|
5332
|
+
}));
|
|
5333
|
+
}
|
|
5334
|
+
else if (this.platForm === 'Antenna') {
|
|
4703
5335
|
this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(( /**
|
|
4704
5336
|
* @param {?} response
|
|
4705
5337
|
* @return {?}
|
|
@@ -4749,7 +5381,7 @@
|
|
|
4749
5381
|
FeeSummaryComponent.decorators = [
|
|
4750
5382
|
{ type: i0.Component, args: [{
|
|
4751
5383
|
selector: 'ccpay-fee-summary',
|
|
4752
|
-
template: "\n<div class=\"govuk-breadcrumbs\" *ngIf=\"isBackButtonEnable\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"!isTurnOff\">\n <a (click)=\"loadCaseTransactionPage()\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isTurnOff\">\n <a (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n</div>\n<div class=\"fee-summary\" *ngIf=\"viewStatus === 'main'\">\n <main class=\"govuk-main-wrapper\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEESUMMARY'>\n <div class=\"summaryheader\">\n <h1 class=\"heading-large govuk-!-margin-top-3 govuk-!-margin-bottom-4\">Summary </h1>\n <p class=\"govuk-!-margin-top-5 caseref\">Case reference:{{ccdCaseNumber | ccdHyphens}}</p>\n </div>\n\n <!-- <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"heading-xlarge\">Fee Summary</h1>\n </div>\n\n\n \u00A0<div\u00A0class=\"govuk-grid-column-one-third\"\u00A0align=\"right\">\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0<button\u00A0 *ngIf=\"!isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\"\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0[disabled]=\"isPaymentExist\"\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0[ngClass]='isPaymentExist ?\u00A0\"button\u00A0button--disabled govuk-!-margin-right-1\"\u00A0:\u00A0\"button govuk-!-margin-right-1\"'>\n Add a new fee\n </button>\n\n <a *ngIf=\"isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"button\">Add a new fee</a>\n </div>\n </div> -->\n\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment Group details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <!-- <table class=\"govuk-table\" *ngIf=\"!errorMessage && paymentGroup\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee Code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee description</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Remission code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\"></th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n <td class=\"govuk-table__cell\">{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</td>\n <td class=\"govuk-table__cell grey-text\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee amount:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"!isTurnOff\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='isPaymentExist || fee.remissions ? \"disable-link\" : \"\"'>remove fee</a>\n </td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"isTurnOff\">\n <a (click)=\"confirmRemoveFee(fee.id)\">remove fee</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"fee.volume && fee.volume > 0\">\n <td class=\"no-border grey-text subcolumn-1\">Volume:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.volume }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee total:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Remission amount:</td>\n <td class=\"no-border subcolumn-2\">{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}</td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"!isTurnOff\">\n <a (click)=\"addRemission(fee)\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && !isPaymentExist\">\n Deduct remission\n </a>\n </td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"isTurnOff\">\n <a (click)=\"addRemission(fee)\" *ngIf=\"getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount\">\n Deduct remission\n </a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Total after remission:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total payment</td>\n <td class=\"no-border subcolumn-2\">{{ totalAfterRemission - outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total outstanding amount</td>\n <td class=\"no-border subcolumn-2\">{{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"!bsPaymentDcnNumber && isOldPcipalOff && isNewPcipalOff\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <div class=\"govuk-form-group govuk-form-group--mg\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <span class=\"govuk-fieldset__heading govuk-fieldset__heading--fz\">\n Which system are you using to take the payment?\n </span>\n </legend>\n <div class=\"govuk-radios govuk-radios--small\">\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"8x8\" value=\"8x8\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name\">\n 8x8\n </label>\n </div>\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name-2\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"Antenna\" value=\"Antenna\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name-2\">\n Antenna\n </label>\n </div>\n </div>\n </fieldset>\n </div>\n </td>\n </tr>\n </tbody>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border subcolumn-2\">\n <button *ngIf=\"!bsPaymentDcnNumber\" type=\"submit\" (click)=\"takePayment()\"\n [disabled]=\"totalFee <= 0 || !platForm || isConfirmationBtnDisabled\"\n [ngClass]='totalFee <= 0 || !platForm || isConfirmationBtnDisabled? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Take payment\n </button>\n <button *ngIf=\"bsPaymentDcnNumber\" type=\"button\" (click)=\"goToAllocatePage(outStandingAmount, isFeeAmountZero)\" class=\"button govuk-!-margin-right-1\">\n <span *ngIf=\"outStandingAmount > 0 || (isFeeAmountZero && outStandingAmount === 0)\">\n Allocate payment\n </span>\n <span *ngIf=\"outStandingAmount < 0 || (!isFeeAmountZero && outStandingAmount === 0)\">\n Continue\n </span>\n </button>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </tbody>\n </table> -->\n\n <div class=\"govuk-!-margin-top-3\">\n <table class=\"govuk-table govuk-!-margin-bottom-2\" *ngIf=\"!errorMessage && paymentGroup\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class600\">Description</th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class60\">Quantity</th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class80\"></th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class100\">Amount</th>\n </tr>\n </thead>\n\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">{{ fee.description }}\n\n <span class=\"no-border\" *ngIf=\"(isPaymentExist || (getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount)) && !isTurnOff\">\n\n\n <a (click)=\"confirmRemoveFee(fee.id)\" *ngIf=\"(!isPaymentExist || !fee.remissions)\" [ngClass]='isPaymentExist || fee.remissions? \"disable-link\" : \"\"'> <br>Remove</a>\n </span>\n\n <span class=\"no-border\" *ngIf=\"(!isPaymentExist || (getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount)) && isTurnOff \">\n <a (click)=\"confirmRemoveFee(fee.id)\">Remove</a>\n </span>\n\n <a (click)=\"addRemission(fee)\" class=\"remissionActive\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && !isPaymentExist && !isTurnOff\">\n Add help with fees or remission\n </a>\n <a (click)=\"addRemission(fee)\" class=\"remissionActive\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && isTurnOff\">\n Add help with fees or remission\n </a>\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">Remission,{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</div>\n </span>\n </td>\n\n <td class=\"govuk-table__cell\" *ngIf=\"fee.volume && fee.volume > 0\">\n {{ fee.volume }}\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\">1</div>\n </span>\n </td>\n\n <td class=\"govuk-table__cell alignright\">\n <br>\n <div *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\" class=\"govuk-table__cell_border\"> <br><br></div>\n </td>\n <td class=\"govuk-table__cell alignright\" >\n {{ fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_rmborder alignright\">\n -{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}\n </div>\n </span>\n </td>\n\n\n </tr>\n <!-- <tr>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">Remission,{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</div>\n </td>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount ===''\">\n <div class=\"govuk-table__cell_border\"></div>\n </td>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount === ''\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount === ''\"></div>\n </td>\n <td>\n <br>\n <div class=\"govuk-table__cell_border\" style=\"text-align: right;\">\n -{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}\n </div>\n </td>\n </tr> -->\n </tbody>\n </table>\n </div>\n <div class=\"addfee\">\n <button *ngIf=\"!isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\"\n [disabled]=\"isPaymentExist\"\n [ngClass]='isPaymentExist ? \"govuk-button govuk-button--secondary button--disabled\" : \"govuk-button govuk-button--secondary\"'>\n Add fee\n </button>\n <a *ngIf=\"isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"govuk-button govuk-button--secondary\">Add a new fee</a>\n <div class=\"feeAddButton\">\n <p class=\"paddigleft govuk-!-margin-top-2\">Total to pay: {{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</p>\n </div>\n </div>\n<!--\n <div class=\"govuk-form-group govuk-form-group--mg\" *ngIf=\"!bsPaymentDcnNumber\">\n <label class=\"govuk-label custom-govuk-label govuk-fieldset__heading--fz\" for=\"responsibleOffice\">\n <strong>What service is this fee for?</strong>\n </label>\n <select class=\"govuk-select govuk-select--custom\" id=\"responsibleOffice\" [(ngModel)]=\"service\" name=\"responsibleOffice\">\n <option value=\"\" selected='selected'>Please select</option>\n <option value=\"AA07\">Divorce</option>\n <option value=\"AA09\">Financial Remedy</option>\n <option value=\"AA08\">Probate</option>\n </select>\n </div> -->\n\n<!-- <div class=\"govuk-form-group govuk-form-group--mg\" *ngIf=\"!bsPaymentDcnNumber\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <span class=\"govuk-fieldset__heading govuk-fieldset__heading--fz\">\n Select payment service\n </span>\n </legend>\n <div class=\"govuk-radios govuk-radios--small\">\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"8x8\" value=\"8x8\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name\">\n 8x8\n </label>\n </div>\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name-2\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"Antenna\" value=\"Antenna\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name-2\">\n Antenna\n </label>\n </div>\n </div>\n </fieldset>\n </div>-->\n\n <div>\n <button *ngIf=\"!bsPaymentDcnNumber\" type=\"submit\" (click)=\"takePayment()\"\n [disabled]=\"totalFee <= 0 || isConfirmationBtnDisabled\"\n [ngClass]='totalFee <= 0 || !platForm || !service || isConfirmationBtnDisabled? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Take payment\n </button>\n <button *ngIf=\"bsPaymentDcnNumber\" type=\"button\" (click)=\"goToAllocatePage(outStandingAmount, isFeeAmountZero)\" class=\"button govuk-!-margin-right-1\">\n <span *ngIf=\"outStandingAmount > 0 || (isFeeAmountZero && outStandingAmount === 0)\">\n Allocate payment\n </span>\n <span *ngIf=\"outStandingAmount < 0 || (!isFeeAmountZero && outStandingAmount === 0)\">\n Continue\n </span>\n </button>\n </div>\n\n</main>\n</div>\n\n <ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEEREMOVALCONFIRMATION_1'>\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n *ngIf =\"!isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(currentFee)\">\n Remove\n </button>\n </form>\n </div>\n </ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'add_remission' && currentFee\"\n [isTurnOff]=\"isTurnOff\"\n [isStrategicFixEnable]=\"isStrategicFixEnable\"\n [fee]=\"currentFee\"\n [caseType]=\"caseType\"\n [ccdCaseNumber]=\"ccdCaseNumber\"\n [paymentGroupRef]=\"paymentGroupRef\"\n (cancelRemission)=\"cancelRemission()\"></ccpay-add-remission>\n <input *ngIf=\"viewStatus === 'payhub_view' && payhubHtml\" #myInput type='hidden' id='iFrameDrivenImageValue' value='PCIPAL'>\n",
|
|
5384
|
+
template: "\n<div class=\"govuk-breadcrumbs\" *ngIf=\"isBackButtonEnable\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"!isTurnOff\">\n <a (click)=\"loadCaseTransactionPage()\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isTurnOff\">\n <a (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n</div>\n<div class=\"fee-summary\" *ngIf=\"viewStatus === 'main'\">\n <main class=\"govuk-main-wrapper\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEESUMMARY'>\n <div class=\"summaryheader\">\n <h1 class=\"heading-large govuk-!-margin-top-3 govuk-!-margin-bottom-4\">Summary </h1>\n <p class=\"govuk-!-margin-top-5 caseref\">Case reference:{{ccdCaseNumber | ccdHyphens}}</p>\n </div>\n\n <!-- <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"heading-xlarge\">Fee Summary</h1>\n </div>\n\n\n \u00A0<div\u00A0class=\"govuk-grid-column-one-third\"\u00A0align=\"right\">\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0<button\u00A0 *ngIf=\"!isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\"\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0[disabled]=\"isPaymentExist\"\n \u00A0\u00A0\u00A0\u00A0\u00A0\u00A0[ngClass]='isPaymentExist ?\u00A0\"button\u00A0button--disabled govuk-!-margin-right-1\"\u00A0:\u00A0\"button govuk-!-margin-right-1\"'>\n Add a new fee\n </button>\n\n <a *ngIf=\"isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"button\">Add a new fee</a>\t\n </div>\n </div> -->\n\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment Group details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <!-- <table class=\"govuk-table\" *ngIf=\"!errorMessage && paymentGroup\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee Code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee description</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Remission code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\"></th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n <td class=\"govuk-table__cell\">{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</td>\n <td class=\"govuk-table__cell grey-text\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee amount:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"!isTurnOff\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='isPaymentExist || fee.remissions ? \"disable-link\" : \"\"'>remove fee</a>\n </td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"isTurnOff\">\n <a (click)=\"confirmRemoveFee(fee.id)\">remove fee</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"fee.volume && fee.volume > 0\">\n <td class=\"no-border grey-text subcolumn-1\">Volume:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.volume }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee total:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Remission amount:</td>\n <td class=\"no-border subcolumn-2\">{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}</td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"!isTurnOff\"> \n <a (click)=\"addRemission(fee)\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && !isPaymentExist\">\n Deduct remission\n </a>\n </td>\n <td class=\"no-border subcolumn-3\" *ngIf=\"isTurnOff\"> \n <a (click)=\"addRemission(fee)\" *ngIf=\"getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount\">\n Deduct remission\n </a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Total after remission:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total payment</td>\n <td class=\"no-border subcolumn-2\">{{ totalAfterRemission - outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total outstanding amount</td>\n <td class=\"no-border subcolumn-2\">{{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"!bsPaymentDcnNumber && isOldPcipalOff && isNewPcipalOff\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <div class=\"govuk-form-group govuk-form-group--mg\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <span class=\"govuk-fieldset__heading govuk-fieldset__heading--fz\">\n Which system are you using to take the payment?\n </span>\n </legend>\n <div class=\"govuk-radios govuk-radios--small\">\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"8x8\" value=\"8x8\">\t\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name\">\t\n 8x8\t\n </label>\t\n </div>\t\n <div class=\"govuk-radios__item\">\t\n <input id=\"changed-name-2\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"Antenna\" value=\"Antenna\">\t\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name-2\">\t\n Antenna\t\n </label>\t\n </div>\t\n </div>\t\n </fieldset>\n </div>\n </td>\n </tr>\n </tbody>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border subcolumn-2\"> \n <button *ngIf=\"!bsPaymentDcnNumber\" type=\"submit\" (click)=\"takePayment()\"\n [disabled]=\"totalFee <= 0 || !platForm || isConfirmationBtnDisabled\"\n [ngClass]='totalFee <= 0 || !platForm || isConfirmationBtnDisabled? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Take payment\n </button>\n <button *ngIf=\"bsPaymentDcnNumber\" type=\"button\" (click)=\"goToAllocatePage(outStandingAmount, isFeeAmountZero)\" class=\"button govuk-!-margin-right-1\">\n <span *ngIf=\"outStandingAmount > 0 || (isFeeAmountZero && outStandingAmount === 0)\">\n Allocate payment\n </span>\n <span *ngIf=\"outStandingAmount < 0 || (!isFeeAmountZero && outStandingAmount === 0)\">\n Continue\n </span>\n </button>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </tbody>\n </table> -->\n\n <div class=\"govuk-!-margin-top-3\">\n <table class=\"govuk-table govuk-!-margin-bottom-2\" *ngIf=\"!errorMessage && paymentGroup\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class600\">Description</th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class60\">Quantity</th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class80\"></th>\n <th class=\"govuk-table__header\" scope=\"col\" class=\"class100\">Amount</th>\n </tr>\n </thead>\n\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">{{ fee.description }}\n \n <span class=\"no-border\" *ngIf=\"(isPaymentExist || (getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount)) && !isTurnOff\">\n \n \n <a (click)=\"confirmRemoveFee(fee.id)\" *ngIf=\"(!isPaymentExist || !fee.remissions)\" [ngClass]='isPaymentExist || fee.remissions? \"disable-link\" : \"\"'> <br>Remove</a>\n </span>\n\n <span class=\"no-border\" *ngIf=\"(!isPaymentExist || (getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount)) && isTurnOff \">\n <a (click)=\"confirmRemoveFee(fee.id)\">Remove</a>\n </span>\n \n <a (click)=\"addRemission(fee)\" class=\"remissionActive\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && !isPaymentExist && !isTurnOff\">\n Add help with fees or remission\n </a>\n <a (click)=\"addRemission(fee)\" class=\"remissionActive\" *ngIf=\"(getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount) && isTurnOff\">\n Add help with fees or remission\n </a>\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">Remission,{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</div>\n </span>\n </td>\n \n <td class=\"govuk-table__cell\" *ngIf=\"fee.volume && fee.volume > 0\">\n {{ fee.volume }}\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\">1</div>\n </span>\n </td>\n \n <td class=\"govuk-table__cell alignright\">\n <br>\n <div *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\" class=\"govuk-table__cell_border\"> <br><br></div>\n </td>\n <td class=\"govuk-table__cell alignright\" >\n {{ fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}\n <span *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_rmborder alignright\">\n -{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}\n </div> \n </span>\n </td>\n \n \n </tr>\n <!-- <tr>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount > 0\">Remission,{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</div>\n </td>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount ===''\">\n <div class=\"govuk-table__cell_border\"></div>\n </td>\n <td *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount === ''\">\n <br>\n <div class=\"govuk-table__cell_border\" *ngIf = \"getRemissionByFeeCode(fee.code)?.hwf_amount === ''\"></div>\n </td>\n <td>\n <br>\n <div class=\"govuk-table__cell_border\" style=\"text-align: right;\">\n -{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}\n </div> \n </td>\n </tr> -->\n </tbody>\n </table>\n </div>\n <div class=\"addfee\">\n <button *ngIf=\"!isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\"\n [disabled]=\"isPaymentExist\"\n [ngClass]='isPaymentExist ? \"govuk-button govuk-button--secondary button--disabled\" : \"govuk-button govuk-button--secondary\"'>\n Add fee\n </button>\n <a *ngIf=\"isTurnOff\" (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"govuk-button govuk-button--secondary\">Add a new fee</a>\t\n <div class=\"feeAddButton\">\n <p class=\"paddigleft govuk-!-margin-top-2\">Total to pay: {{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</p>\n </div>\n </div>\n<!-- \n <div class=\"govuk-form-group govuk-form-group--mg\" *ngIf=\"!bsPaymentDcnNumber\">\n <label class=\"govuk-label custom-govuk-label govuk-fieldset__heading--fz\" for=\"responsibleOffice\">\n <strong>What service is this fee for?</strong>\n </label>\n <select class=\"govuk-select govuk-select--custom\" id=\"responsibleOffice\" [(ngModel)]=\"service\" name=\"responsibleOffice\">\n <option value=\"\" selected='selected'>Please select</option>\n <option value=\"AA07\">Divorce</option>\n <option value=\"AA09\">Financial Remedy</option>\n <option value=\"AA08\">Probate</option>\n </select>\n </div> -->\n\n <div class=\"govuk-form-group govuk-form-group--mg\" *ngIf=\"!bsPaymentDcnNumber && isOldPcipalOff && isNewPcipalOff\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <span class=\"govuk-fieldset__heading govuk-fieldset__heading--fz\">\n Select payment service\n </span>\n </legend>\n <div class=\"govuk-radios govuk-radios--small\">\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"8x8\" value=\"8x8\">\t\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name\">\t\n 8x8\t\n </label>\t\n </div>\t\n <div class=\"govuk-radios__item\">\t\n <input id=\"changed-name-2\" class=\"govuk-radios__input\" [(ngModel)]=\"platForm\" type=\"radio\" aria-label=\"Antenna\" value=\"Antenna\">\t\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name-2\">\t\n Antenna\t\n </label>\t\n </div>\t\n </div>\t\n </fieldset>\n </div>\n\n <div>\n <button *ngIf=\"!bsPaymentDcnNumber\" type=\"submit\" (click)=\"takePayment()\"\n [disabled]=\"totalFee <= 0 || isConfirmationBtnDisabled\"\n [ngClass]='totalFee <= 0 || !platForm || !service || isConfirmationBtnDisabled? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Take payment\n </button>\n <button *ngIf=\"bsPaymentDcnNumber\" type=\"button\" (click)=\"goToAllocatePage(outStandingAmount, isFeeAmountZero)\" class=\"button govuk-!-margin-right-1\">\n <span *ngIf=\"outStandingAmount > 0 || (isFeeAmountZero && outStandingAmount === 0)\">\n Allocate payment\n </span>\n <span *ngIf=\"outStandingAmount < 0 || (!isFeeAmountZero && outStandingAmount === 0)\">\n Continue\n </span>\n </button>\n </div>\n\n</main>\n</div>\n\n <ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEEREMOVALCONFIRMATION_1'>\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\" \n *ngIf =\"!isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(currentFee)\">\n Remove\n </button>\n </form>\n </div>\n </ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'add_remission' && currentFee\"\n [isTurnOff]=\"isTurnOff\"\n [isStrategicFixEnable]=\"isStrategicFixEnable\" \n [isOldPcipalOff]=\"isOldPcipalOff\" \n [isNewPcipalOff]=\"isNewPcipalOff\" \n [fee]=\"currentFee\" \n [caseType]=\"caseType\" \n [ccdCaseNumber]=\"ccdCaseNumber\" \n [paymentGroupRef]=\"paymentGroupRef\" \n (cancelRemission)=\"cancelRemission()\"></ccpay-add-remission>\n <input *ngIf=\"viewStatus === 'payhub_view' && payhubHtml\" #myInput type='hidden' id='iFrameDrivenImageValue' value='PCIPAL'>\n<div *ngIf=\"viewStatus === 'payhub_view' && payhubHtml\" [innerHTML]=\"payhubHtml | sanitizeHtml\" id=\"payhub-html-id\"></div>\n",
|
|
4753
5385
|
styles: [".fee-summary .grey-text{color:#6b7376;font-weight:500}.fee-summary .govuk-table{margin-bottom:0}.fee-summary .no-border{border:none;border-bottom:none}.fee-summary table td,.fee-summary table th{font-size:19px;vertical-align:top}.fee-summary table td .no-padding,.fee-summary table th .no-padding{padding:0}.fee-summary table td .subcolumn-1,.fee-summary table th .subcolumn-1{width:45%}.fee-summary table td .subcolumn-2,.fee-summary table th .subcolumn-2{width:25%;text-align:right}.fee-summary table td .subcolumn-3,.fee-summary table th .subcolumn-3{width:30%;text-align:center}table th{font-weight:700}.govuk-button-grb{padding-bottom:20px}.govuk-button-grb .govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:10px}.govuk-form-group--mg{margin-top:10px!important}.govuk-fieldset__heading--fz{font-size:16px}.remissionDisable{color:grey;cursor:default}.heading-xlarge{margin:0 0 14px -20px}.govuk-select--custom{width:50%}.disable-link{cursor:default;pointer-events:none;color:#8e8c8c}.govuk-table__cell_border,.govuk-table__header{padding:10px 0 0;border-top:1px solid #bfc1c3;text-align:left}.govuk-table__cell,.govuk-table__header{padding:10px 0}.govuk-table__cell_rmborder,.govuk-table__header{padding:10px 0 0;border-top:1px solid #bfc1c3;text-align:left}.govuk-table__fessheader{font-weight:700}.govuk-button{font-size:19px}.feeAddButton{padding-left:65rem}.remissionActive{padding-left:10px}.paddigleft{padding-left:2em}.govuk-back-link{font-size:1.5rem!important}.govuk-warning-text__text{font-size:19px}.summaryheader{display:flex;flex-direction:row;justify-content:space-between;width:960px}.class600{width:600px}.class60{width:60px}.class80{width:80px;text-align:right}.class100{width:100px;text-align:right}.alignright{text-align:right}.caseref{align-self:flex-end}.addfee{display:flex;flex-direction:row}"]
|
|
4754
5386
|
}] }
|
|
4755
5387
|
];
|
|
@@ -4768,7 +5400,9 @@
|
|
|
4768
5400
|
paymentGroupRef: [{ type: i0.Input }],
|
|
4769
5401
|
ccdCaseNumber: [{ type: i0.Input }],
|
|
4770
5402
|
isTurnOff: [{ type: i0.Input }],
|
|
4771
|
-
caseType: [{ type: i0.Input }]
|
|
5403
|
+
caseType: [{ type: i0.Input }],
|
|
5404
|
+
isOldPcipalOff: [{ type: i0.Input }],
|
|
5405
|
+
isNewPcipalOff: [{ type: i0.Input }]
|
|
4772
5406
|
};
|
|
4773
5407
|
return FeeSummaryComponent;
|
|
4774
5408
|
}());
|
|
@@ -5592,6 +6226,8 @@
|
|
|
5592
6226
|
this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;
|
|
5593
6227
|
this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;
|
|
5594
6228
|
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
6229
|
+
this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;
|
|
6230
|
+
this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;
|
|
5595
6231
|
this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
5596
6232
|
this.OrderslistService.getFeeExists().subscribe(( /**
|
|
5597
6233
|
* @param {?} data
|
|
@@ -5717,6 +6353,8 @@
|
|
|
5717
6353
|
url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
5718
6354
|
url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
5719
6355
|
url += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
6356
|
+
url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
6357
|
+
url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5720
6358
|
this.router.navigateByUrl("/fee-search?selectedOption=" + this.selectedOption + "&ccdCaseNumber=" + this.ccdCaseNumber + "&dcn=" + this.recordId + url);
|
|
5721
6359
|
};
|
|
5722
6360
|
/**
|
|
@@ -5771,6 +6409,8 @@
|
|
|
5771
6409
|
this.paymentLibComponent.bspaymentdcn = dcn_reference;
|
|
5772
6410
|
this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId;
|
|
5773
6411
|
this.paymentLibComponent.isTurnOff = this.ISTURNOFF;
|
|
6412
|
+
this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;
|
|
6413
|
+
this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;
|
|
5774
6414
|
this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;
|
|
5775
6415
|
if (this.ISTURNOFF) {
|
|
5776
6416
|
this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;
|
|
@@ -5863,6 +6503,8 @@
|
|
|
5863
6503
|
ISTURNOFF: [{ type: i0.Input, args: ['ISTURNOFF',] }],
|
|
5864
6504
|
IS_BUTTON_ENABLE: [{ type: i0.Input, args: ['IS_BUTTON_ENABLE',] }],
|
|
5865
6505
|
IS_OS_AMT_AVAILABLE: [{ type: i0.Input, args: ['IS_OS_AMT_AVAILABLE',] }],
|
|
6506
|
+
ISNEWPCIPALOFF: [{ type: i0.Input, args: ['ISNEWPCIPALOFF',] }],
|
|
6507
|
+
ISOLDPCIPALOFF: [{ type: i0.Input, args: ['ISOLDPCIPALOFF',] }],
|
|
5866
6508
|
ISSFENABLE: [{ type: i0.Input, args: ['ISSFENABLE',] }],
|
|
5867
6509
|
PAYMENTSLENGTH: [{ type: i0.Input, args: ['PAYMENTSLENGTH',] }],
|
|
5868
6510
|
LEVEL: [{ type: i0.Input, args: ['LEVEL',] }],
|
|
@@ -6571,31 +7213,18 @@
|
|
|
6571
7213
|
* @fileoverview added by tsickle
|
|
6572
7214
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6573
7215
|
*/
|
|
6574
|
-
var
|
|
6575
|
-
function
|
|
6576
|
-
this.
|
|
6577
|
-
this.
|
|
7216
|
+
var PostIssueRefundRetroRemission = /** @class */ (function () {
|
|
7217
|
+
function PostIssueRefundRetroRemission(remissionReference, contactDeatils) {
|
|
7218
|
+
this.remissionReference = remissionReference;
|
|
7219
|
+
this.contact_details = contactDeatils;
|
|
6578
7220
|
}
|
|
6579
|
-
return
|
|
7221
|
+
return PostIssueRefundRetroRemission;
|
|
6580
7222
|
}());
|
|
6581
7223
|
|
|
6582
7224
|
/**
|
|
6583
7225
|
* @fileoverview added by tsickle
|
|
6584
7226
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6585
7227
|
*/
|
|
6586
|
-
var PostIssueRefundRetroRemission = /** @class */ (function () {
|
|
6587
|
-
function PostIssueRefundRetroRemission(remissionReference) {
|
|
6588
|
-
this.remissionReference = remissionReference;
|
|
6589
|
-
}
|
|
6590
|
-
return PostIssueRefundRetroRemission;
|
|
6591
|
-
}());
|
|
6592
|
-
|
|
6593
|
-
/**
|
|
6594
|
-
* @fileoverview added by tsickle
|
|
6595
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6596
|
-
*/
|
|
6597
|
-
/** @type {?} */
|
|
6598
|
-
var BS_ENABLE_FLAG$3 = 'bulk-scan-enabling-fe';
|
|
6599
7228
|
var AddRemissionComponent = /** @class */ (function () {
|
|
6600
7229
|
function AddRemissionComponent(formBuilder, router$$1, paymentViewService, paymentLibComponent, refundService, cd, OrderslistService$$1) {
|
|
6601
7230
|
this.formBuilder = formBuilder;
|
|
@@ -6609,6 +7238,7 @@
|
|
|
6609
7238
|
//@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});
|
|
6610
7239
|
this.refundListReason = new i0.EventEmitter();
|
|
6611
7240
|
this.refundListAmount = new i0.EventEmitter();
|
|
7241
|
+
this.refundFees = new i0.EventEmitter();
|
|
6612
7242
|
this.refund = {
|
|
6613
7243
|
reason: {
|
|
6614
7244
|
duplicate: 'Duplicate payment',
|
|
@@ -6637,6 +7267,8 @@
|
|
|
6637
7267
|
this.isRemissionApplied = false;
|
|
6638
7268
|
// refundReasons: any[] = [];
|
|
6639
7269
|
this.commonRefundReasons = [];
|
|
7270
|
+
this.class = '';
|
|
7271
|
+
this.errorMsg = new Array();
|
|
6640
7272
|
}
|
|
6641
7273
|
/**
|
|
6642
7274
|
* @return {?}
|
|
@@ -6646,6 +7278,9 @@
|
|
|
6646
7278
|
*/
|
|
6647
7279
|
function () {
|
|
6648
7280
|
var _this = this;
|
|
7281
|
+
console.log(this.viewCompStatus);
|
|
7282
|
+
this.errorMessage = '';
|
|
7283
|
+
this.errorMsg = [];
|
|
6649
7284
|
this.default = 'Select a different reason';
|
|
6650
7285
|
this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';
|
|
6651
7286
|
this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';
|
|
@@ -6657,6 +7292,7 @@
|
|
|
6657
7292
|
this.amount = (this.fee.volume * this.fee.calculated_amount);
|
|
6658
7293
|
}
|
|
6659
7294
|
if (this.payment) {
|
|
7295
|
+
this.paymentReference = this.payment.reference;
|
|
6660
7296
|
this.remessionPayment = this.payment;
|
|
6661
7297
|
if (this.payment.status === 'Success') {
|
|
6662
7298
|
this.isPaymentSuccess = true;
|
|
@@ -6675,15 +7311,68 @@
|
|
|
6675
7311
|
])),
|
|
6676
7312
|
refundReason: new forms.FormControl('', forms.Validators.compose([forms.Validators.required])),
|
|
6677
7313
|
refundDDReason: new forms.FormControl('', forms.Validators.compose([forms.Validators.required])),
|
|
6678
|
-
reason: new forms.FormControl()
|
|
7314
|
+
reason: new forms.FormControl(),
|
|
7315
|
+
feeAmount: new forms.FormControl(),
|
|
7316
|
+
feesList: this.formBuilder.array([])
|
|
6679
7317
|
});
|
|
6680
7318
|
/** @type {?} */
|
|
6681
7319
|
var remissionctrls = this.remissionForm.controls;
|
|
6682
7320
|
remissionctrls['refundDDReason'].setValue('Select a different reason', { onlySelf: true });
|
|
7321
|
+
if (this.refundPaymentReference !== undefined && this.refundPaymentReference.length > 0) {
|
|
7322
|
+
this.paymentReference = this.refundPaymentReference;
|
|
7323
|
+
}
|
|
7324
|
+
else {
|
|
7325
|
+
this.paymentReference = this.payment.reference;
|
|
7326
|
+
}
|
|
7327
|
+
if (this.isFromServiceRequestPage) {
|
|
7328
|
+
this.paymentViewService.getApportionPaymentDetails(this.paymentReference).subscribe(( /**
|
|
7329
|
+
* @param {?} paymentGroup
|
|
7330
|
+
* @return {?}
|
|
7331
|
+
*/function (paymentGroup) {
|
|
7332
|
+
/** @type {?} */
|
|
7333
|
+
var fees = [];
|
|
7334
|
+
paymentGroup.fees.forEach(( /**
|
|
7335
|
+
* @param {?} fee
|
|
7336
|
+
* @return {?}
|
|
7337
|
+
*/function (fee) {
|
|
7338
|
+
_this.isRemissionsMatch = false;
|
|
7339
|
+
paymentGroup.remissions.forEach(( /**
|
|
7340
|
+
* @param {?} rem
|
|
7341
|
+
* @return {?}
|
|
7342
|
+
*/function (rem) {
|
|
7343
|
+
if (rem.fee_code === fee.code) {
|
|
7344
|
+
_this.isRemissionsMatch = true;
|
|
7345
|
+
fee['remissions'] = rem;
|
|
7346
|
+
fees.push(fee);
|
|
7347
|
+
}
|
|
7348
|
+
}));
|
|
7349
|
+
if (!_this.isRemissionsMatch) {
|
|
7350
|
+
fees.push(fee);
|
|
7351
|
+
}
|
|
7352
|
+
}));
|
|
7353
|
+
paymentGroup.fees = fees;
|
|
7354
|
+
_this.paymentFees = fees;
|
|
7355
|
+
_this.fees = fees;
|
|
7356
|
+
_this.paymentGroup = paymentGroup;
|
|
7357
|
+
_this.paymentGroup.payments = _this.paymentGroup.payments.filter(( /**
|
|
7358
|
+
* @param {?} paymentGroupObj
|
|
7359
|
+
* @return {?}
|
|
7360
|
+
*/function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.paymentLibComponent.paymentReference); }));
|
|
7361
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
7362
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
7363
|
+
_this.refundFeesList();
|
|
7364
|
+
}), ( /**
|
|
7365
|
+
* @param {?} error
|
|
7366
|
+
* @return {?}
|
|
7367
|
+
*/function (error) { return _this.errorMessage = error; }));
|
|
7368
|
+
}
|
|
7369
|
+
if (this.fees && this.viewCompStatus === 'issuerefund') {
|
|
7370
|
+
this.refundFeesList();
|
|
7371
|
+
}
|
|
6683
7372
|
if (this.viewCompStatus === '') {
|
|
6684
7373
|
this.viewStatus = 'main';
|
|
6685
7374
|
}
|
|
6686
|
-
if (this.viewCompStatus === '
|
|
7375
|
+
if (this.viewCompStatus === 'issuerefundpage1') {
|
|
6687
7376
|
this.refundService.getRefundReasons().subscribe(( /**
|
|
6688
7377
|
* @param {?} refundReasons
|
|
6689
7378
|
* @return {?}
|
|
@@ -6695,7 +7384,7 @@
|
|
|
6695
7384
|
_this.refundReasons = _this.refundReasons.filter(( /**
|
|
6696
7385
|
* @param {?} data
|
|
6697
7386
|
* @return {?}
|
|
6698
|
-
*/function (data) { return data.name !== 'Retrospective remission'; }));
|
|
7387
|
+
*/function (data) { return data.name !== 'Retrospective remission' && data.name !== 'Overpayment'; }));
|
|
6699
7388
|
_this.cd.detectChanges();
|
|
6700
7389
|
_this.commonRefundReasons = refundReasons.filter(( /**
|
|
6701
7390
|
* @param {?} data
|
|
@@ -6708,10 +7397,152 @@
|
|
|
6708
7397
|
*/function (a, b) { return a.toString().localeCompare(b); }));
|
|
6709
7398
|
_this.cd.detectChanges();
|
|
6710
7399
|
}));
|
|
7400
|
+
this.refundReason = this.changeRefundReason;
|
|
6711
7401
|
}
|
|
6712
7402
|
if (this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage) {
|
|
6713
7403
|
this.viewStatus = 'processretroremissonpage';
|
|
6714
7404
|
}
|
|
7405
|
+
if (this.orderDetail !== undefined) {
|
|
7406
|
+
this.fees = this.orderDetail[0].fees;
|
|
7407
|
+
this.paymentReference = this.orderDetail[0].payments[0].reference;
|
|
7408
|
+
}
|
|
7409
|
+
};
|
|
7410
|
+
/**
|
|
7411
|
+
* @return {?}
|
|
7412
|
+
*/
|
|
7413
|
+
AddRemissionComponent.prototype.goToPaymentViewComponent = /**
|
|
7414
|
+
* @return {?}
|
|
7415
|
+
*/
|
|
7416
|
+
function () {
|
|
7417
|
+
this.paymentLibComponent.paymentMethod = this.payment.method;
|
|
7418
|
+
this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;
|
|
7419
|
+
this.paymentLibComponent.paymentReference = this.paymentReference;
|
|
7420
|
+
//this.PaymentViewComponent.viewCompStatus = 'overpayment';
|
|
7421
|
+
this.paymentLibComponent.viewName = 'payment-view';
|
|
7422
|
+
};
|
|
7423
|
+
/**
|
|
7424
|
+
* @return {?}
|
|
7425
|
+
*/
|
|
7426
|
+
AddRemissionComponent.prototype.refundFeesList = /**
|
|
7427
|
+
* @return {?}
|
|
7428
|
+
*/
|
|
7429
|
+
function () {
|
|
7430
|
+
/** @type {?} */
|
|
7431
|
+
var creds = ( /** @type {?} */(this.remissionForm.controls.feesList));
|
|
7432
|
+
// if(creds.controls.length > 0) {
|
|
7433
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
7434
|
+
creds.push(this.formBuilder.group({
|
|
7435
|
+
id: this.fees[i].id,
|
|
7436
|
+
code: this.fees[i].code,
|
|
7437
|
+
volume: this.fees[i].volume,
|
|
7438
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
7439
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
7440
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
7441
|
+
description: this.fees[i].description,
|
|
7442
|
+
net_amount: this.fees[i].net_amount,
|
|
7443
|
+
version: this.fees[i].version,
|
|
7444
|
+
refund_amount: [''],
|
|
7445
|
+
selected: [''],
|
|
7446
|
+
updated_volume: this.fees[i].volume
|
|
7447
|
+
}));
|
|
7448
|
+
}
|
|
7449
|
+
this.cd.detectChanges();
|
|
7450
|
+
//}
|
|
7451
|
+
};
|
|
7452
|
+
Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
|
|
7453
|
+
get: /**
|
|
7454
|
+
* @return {?}
|
|
7455
|
+
*/ function () {
|
|
7456
|
+
/** @type {?} */
|
|
7457
|
+
var dd = ( /** @type {?} */(this.remissionForm.get('feesList')));
|
|
7458
|
+
return ( /** @type {?} */(this.remissionForm.get('feesList')));
|
|
7459
|
+
},
|
|
7460
|
+
enumerable: true,
|
|
7461
|
+
configurable: true
|
|
7462
|
+
});
|
|
7463
|
+
/**
|
|
7464
|
+
* @return {?}
|
|
7465
|
+
*/
|
|
7466
|
+
AddRemissionComponent.prototype.noneSelected = /**
|
|
7467
|
+
* @return {?}
|
|
7468
|
+
*/
|
|
7469
|
+
function () {
|
|
7470
|
+
if (this.isFullyRefund) {
|
|
7471
|
+
return false;
|
|
7472
|
+
}
|
|
7473
|
+
else {
|
|
7474
|
+
if (!this.feesList.controls.some(( /**
|
|
7475
|
+
* @param {?} item
|
|
7476
|
+
* @return {?}
|
|
7477
|
+
*/function (item) { return item.get('selected').value === true; }))) {
|
|
7478
|
+
this.errorMsg = [];
|
|
7479
|
+
[].forEach.call(document.querySelectorAll('input'), ( /**
|
|
7480
|
+
* @param {?} el
|
|
7481
|
+
* @return {?}
|
|
7482
|
+
*/function (el) {
|
|
7483
|
+
el.classList.remove('inline-error-class');
|
|
7484
|
+
}));
|
|
7485
|
+
}
|
|
7486
|
+
return !this.feesList.controls.some(( /**
|
|
7487
|
+
* @param {?} item
|
|
7488
|
+
* @return {?}
|
|
7489
|
+
*/function (item) { return item.get('selected').value === true; }));
|
|
7490
|
+
}
|
|
7491
|
+
};
|
|
7492
|
+
/**
|
|
7493
|
+
* @param {?} i
|
|
7494
|
+
* @param {?} v1
|
|
7495
|
+
* @param {?} AppAmt
|
|
7496
|
+
* @param {?} Volume
|
|
7497
|
+
* @return {?}
|
|
7498
|
+
*/
|
|
7499
|
+
AddRemissionComponent.prototype.check_en = /**
|
|
7500
|
+
* @param {?} i
|
|
7501
|
+
* @param {?} v1
|
|
7502
|
+
* @param {?} AppAmt
|
|
7503
|
+
* @param {?} Volume
|
|
7504
|
+
* @return {?}
|
|
7505
|
+
*/
|
|
7506
|
+
function (i, v1, AppAmt, Volume) {
|
|
7507
|
+
/** @type {?} */
|
|
7508
|
+
var ele = ( /** @type {?} */(document.getElementById(v1)));
|
|
7509
|
+
/** @type {?} */
|
|
7510
|
+
var formArray = ( /** @type {?} */(this.remissionForm.controls.feesList));
|
|
7511
|
+
if (ele.checked) {
|
|
7512
|
+
formArray.at(i).get('refund_amount').setValue(AppAmt);
|
|
7513
|
+
formArray.at(i).get('volume').setValue(Volume);
|
|
7514
|
+
formArray.at(i).get('selected').setValue(true);
|
|
7515
|
+
formArray.at(i).get('updated_volume').setValue(Volume);
|
|
7516
|
+
(( /** @type {?} */(document.getElementById('feeAmount_' + v1)))).value = AppAmt;
|
|
7517
|
+
document.getElementById('feeAmount_' + v1).removeAttribute("disabled");
|
|
7518
|
+
if (Volume === 1) {
|
|
7519
|
+
(( /** @type {?} */(document.getElementById('VolumeUpdated_' + v1)))).value = Volume;
|
|
7520
|
+
}
|
|
7521
|
+
else {
|
|
7522
|
+
(( /** @type {?} */(document.getElementById('feeVolumeUpdated_' + v1)))).value = Volume;
|
|
7523
|
+
}
|
|
7524
|
+
if (document.getElementById('feeVolumeUpdated_' + v1) !== null) {
|
|
7525
|
+
document.getElementById('feeAmount_' + v1).removeAttribute("disabled");
|
|
7526
|
+
document.getElementById('feeVolumeUpdated_' + v1).removeAttribute("disabled");
|
|
7527
|
+
}
|
|
7528
|
+
this.cd.detectChanges();
|
|
7529
|
+
}
|
|
7530
|
+
else {
|
|
7531
|
+
this.errorMsg = [];
|
|
7532
|
+
document.getElementById('feeAmount_' + v1).setAttribute("disabled", "true");
|
|
7533
|
+
this.remissionForm.value.feesList[i]["refund_amount"] = '';
|
|
7534
|
+
this.remissionForm.value.feesList[i]["volume"] = '';
|
|
7535
|
+
this.remissionForm.value.feesList[i]["selected"] = false;
|
|
7536
|
+
(( /** @type {?} */(document.getElementById('feeAmount_' + v1)))).value = '';
|
|
7537
|
+
if (Volume > 1) {
|
|
7538
|
+
this.remissionForm.value.feesList[i]["volume"] = '';
|
|
7539
|
+
(( /** @type {?} */(document.getElementById('feeVolumeUpdated_' + v1)))).value = '';
|
|
7540
|
+
}
|
|
7541
|
+
if (document.getElementById('feeVolumeUpdated_' + v1) !== null) {
|
|
7542
|
+
document.getElementById('feeVolumeUpdated_' + v1).removeAttribute("disabled");
|
|
7543
|
+
}
|
|
7544
|
+
this.cd.detectChanges();
|
|
7545
|
+
}
|
|
6715
7546
|
};
|
|
6716
7547
|
/**
|
|
6717
7548
|
* @return {?}
|
|
@@ -6771,6 +7602,8 @@
|
|
|
6771
7602
|
/** @type {?} */
|
|
6772
7603
|
var LDUrl = _this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
6773
7604
|
LDUrl += "&caseType=" + _this.caseType;
|
|
7605
|
+
LDUrl += _this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
7606
|
+
LDUrl += _this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
6774
7607
|
if (_this.paymentLibComponent.bspaymentdcn) {
|
|
6775
7608
|
_this.router.routeReuseStrategy.shouldReuseRoute = ( /**
|
|
6776
7609
|
* @return {?}
|
|
@@ -6834,18 +7667,26 @@
|
|
|
6834
7667
|
*/
|
|
6835
7668
|
function () {
|
|
6836
7669
|
this.errorMessage = false;
|
|
7670
|
+
// this.isFromCheckAnsPage = true;
|
|
7671
|
+
this.errorMsg = [];
|
|
6837
7672
|
this.viewStatus = '';
|
|
6838
7673
|
this.isRefundRemission = false;
|
|
6839
7674
|
this.resetRemissionForm([false, false, false, false, false, false], 'All');
|
|
6840
7675
|
/** @type {?} */
|
|
6841
7676
|
var remissionctrls = this.remissionForm.controls;
|
|
6842
|
-
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
7677
|
+
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
6843
7678
|
this.remissionForm.controls['refundReason'].setErrors(null);
|
|
6844
7679
|
this.remissionForm.controls['refundDDReason'].setErrors(null);
|
|
6845
7680
|
this.remissionForm.controls['amount'].setErrors(null);
|
|
6846
7681
|
if (this.remissionForm.dirty && this.remissionForm.valid) {
|
|
6847
|
-
this.
|
|
6848
|
-
|
|
7682
|
+
if (!this.isFromCheckAnsPage) {
|
|
7683
|
+
this.viewCompStatus = '';
|
|
7684
|
+
this.viewStatus = "processretroremissonpage";
|
|
7685
|
+
}
|
|
7686
|
+
else {
|
|
7687
|
+
this.viewCompStatus = '';
|
|
7688
|
+
this.viewStatus = 'checkretroremissionpage';
|
|
7689
|
+
}
|
|
6849
7690
|
}
|
|
6850
7691
|
else {
|
|
6851
7692
|
if (remissionctrls['remissionCode'].value == '') {
|
|
@@ -6876,6 +7717,8 @@
|
|
|
6876
7717
|
*/
|
|
6877
7718
|
function () {
|
|
6878
7719
|
this.errorMessage = false;
|
|
7720
|
+
this.isFromCheckAnsPage = false;
|
|
7721
|
+
this.errorMsg = [];
|
|
6879
7722
|
if (this.isRefundRemission) {
|
|
6880
7723
|
this.paymentLibComponent.iscancelClicked = true;
|
|
6881
7724
|
this.refundListAmount.emit();
|
|
@@ -6893,6 +7736,7 @@
|
|
|
6893
7736
|
this.viewCompStatus = "addremission";
|
|
6894
7737
|
this.isRefundRemission = true;
|
|
6895
7738
|
this.errorMessage = '';
|
|
7739
|
+
this.errorMsg = [];
|
|
6896
7740
|
if (this.isFromPaymentDetailPage) {
|
|
6897
7741
|
this.paymentLibComponent.viewName = 'payment-view';
|
|
6898
7742
|
}
|
|
@@ -6948,14 +7792,47 @@
|
|
|
6948
7792
|
/**
|
|
6949
7793
|
* @return {?}
|
|
6950
7794
|
*/
|
|
7795
|
+
AddRemissionComponent.prototype.gotoAmountRetroRemission = /**
|
|
7796
|
+
* @return {?}
|
|
7797
|
+
*/
|
|
7798
|
+
function () {
|
|
7799
|
+
this.isFromCheckAnsPage = false;
|
|
7800
|
+
this.viewStatus = 'processretroremissonpage';
|
|
7801
|
+
this.viewCompStatus = '';
|
|
7802
|
+
// this.isRefundRemission = true;
|
|
7803
|
+
this.errorMessage = '';
|
|
7804
|
+
};
|
|
7805
|
+
/**
|
|
7806
|
+
* @return {?}
|
|
7807
|
+
*/
|
|
6951
7808
|
AddRemissionComponent.prototype.gotoProcessRetroRemissionPage = /**
|
|
6952
7809
|
* @return {?}
|
|
6953
7810
|
*/
|
|
6954
7811
|
function () {
|
|
7812
|
+
this.isFromCheckAnsPage = true;
|
|
6955
7813
|
this.viewStatus = '';
|
|
6956
7814
|
this.viewCompStatus = 'addremission';
|
|
6957
7815
|
this.isRefundRemission = true;
|
|
6958
7816
|
this.errorMessage = '';
|
|
7817
|
+
this.errorMsg = [];
|
|
7818
|
+
};
|
|
7819
|
+
/**
|
|
7820
|
+
* @param {?=} note
|
|
7821
|
+
* @return {?}
|
|
7822
|
+
*/
|
|
7823
|
+
AddRemissionComponent.prototype.gotoProcessRetroRemission = /**
|
|
7824
|
+
* @param {?=} note
|
|
7825
|
+
* @return {?}
|
|
7826
|
+
*/
|
|
7827
|
+
function (note) {
|
|
7828
|
+
if (note) {
|
|
7829
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
7830
|
+
}
|
|
7831
|
+
this.isFromCheckAnsPage = true;
|
|
7832
|
+
this.viewStatus = 'remissionAddressPage';
|
|
7833
|
+
this.viewCompStatus = '';
|
|
7834
|
+
this.isRefundRemission = true;
|
|
7835
|
+
this.errorMessage = '';
|
|
6959
7836
|
};
|
|
6960
7837
|
/**
|
|
6961
7838
|
* @return {?}
|
|
@@ -6999,6 +7876,7 @@
|
|
|
6999
7876
|
function () {
|
|
7000
7877
|
var _this = this;
|
|
7001
7878
|
this.errorMessage = '';
|
|
7879
|
+
this.errorMsg = [];
|
|
7002
7880
|
this.isConfirmationBtnDisabled = true;
|
|
7003
7881
|
if (this.isRefundRemission) {
|
|
7004
7882
|
this.retroRemission = true;
|
|
@@ -7007,7 +7885,7 @@
|
|
|
7007
7885
|
this.remissionReference = this.remission.remission_reference;
|
|
7008
7886
|
}
|
|
7009
7887
|
/** @type {?} */
|
|
7010
|
-
var requestBody = new PostIssueRefundRetroRemission(this.remissionReference);
|
|
7888
|
+
var requestBody = new PostIssueRefundRetroRemission(this.remissionReference, this.contactDetailsObj);
|
|
7011
7889
|
this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(( /**
|
|
7012
7890
|
* @param {?} response
|
|
7013
7891
|
* @return {?}
|
|
@@ -7043,7 +7921,13 @@
|
|
|
7043
7921
|
if (this.paymentLibComponent.REFUNDLIST === "true") {
|
|
7044
7922
|
this.isFromRefundListPage = true;
|
|
7045
7923
|
}
|
|
7924
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
7925
|
+
* @param {?} a
|
|
7926
|
+
* @param {?} c
|
|
7927
|
+
* @return {?}
|
|
7928
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
7046
7929
|
this.errorMessage = '';
|
|
7930
|
+
this.errorMsg = [];
|
|
7047
7931
|
this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;
|
|
7048
7932
|
if (!this.refundReason || this.refundReason === 'Select a different reason') {
|
|
7049
7933
|
this.refundHasError = true;
|
|
@@ -7059,19 +7943,41 @@
|
|
|
7059
7943
|
this.refundListReason.emit({ reason: this.displayRefundReason, code: this.refundReason });
|
|
7060
7944
|
}
|
|
7061
7945
|
else {
|
|
7946
|
+
if (this.isFromCheckAnsPage) {
|
|
7947
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
7948
|
+
* @param {?} a
|
|
7949
|
+
* @param {?} c
|
|
7950
|
+
* @return {?}
|
|
7951
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
7952
|
+
this.isFromCheckAnsPage = false;
|
|
7953
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
7954
|
+
this.viewCompStatus = '';
|
|
7955
|
+
return;
|
|
7956
|
+
}
|
|
7062
7957
|
this.viewCompStatus = '';
|
|
7063
|
-
this.viewStatus = '
|
|
7958
|
+
this.viewStatus = 'contactDetailsPage';
|
|
7064
7959
|
}
|
|
7065
7960
|
}
|
|
7066
7961
|
else {
|
|
7067
7962
|
this.displayRefundReason = this.selectedRefundReason;
|
|
7963
|
+
if (this.isFromCheckAnsPage) {
|
|
7964
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
7965
|
+
* @param {?} a
|
|
7966
|
+
* @param {?} c
|
|
7967
|
+
* @return {?}
|
|
7968
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
7969
|
+
this.isFromCheckAnsPage = false;
|
|
7970
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
7971
|
+
this.viewCompStatus = '';
|
|
7972
|
+
return;
|
|
7973
|
+
}
|
|
7068
7974
|
if (this.isFromRefundListPage) {
|
|
7069
7975
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
7070
7976
|
this.refundListReason.emit({ reason: this.selectedRefundReason, code: this.refundReason });
|
|
7071
7977
|
}
|
|
7072
7978
|
else {
|
|
7073
7979
|
this.viewCompStatus = '';
|
|
7074
|
-
this.viewStatus = '
|
|
7980
|
+
this.viewStatus = 'contactDetailsPage';
|
|
7075
7981
|
}
|
|
7076
7982
|
}
|
|
7077
7983
|
};
|
|
@@ -7087,86 +7993,290 @@
|
|
|
7087
7993
|
this.viewStatus = '';
|
|
7088
7994
|
this.isRefundRemission = true;
|
|
7089
7995
|
this.errorMessage = false;
|
|
7996
|
+
this.errorMsg = [];
|
|
7090
7997
|
this.refundHasError = false;
|
|
7091
7998
|
this.isReasonEmpty = false;
|
|
7092
7999
|
};
|
|
7093
8000
|
/**
|
|
8001
|
+
* @param {?} isFullyRefund
|
|
7094
8002
|
* @return {?}
|
|
7095
8003
|
*/
|
|
7096
|
-
AddRemissionComponent.prototype.
|
|
8004
|
+
AddRemissionComponent.prototype.gotoIssuePage = /**
|
|
8005
|
+
* @param {?} isFullyRefund
|
|
7097
8006
|
* @return {?}
|
|
7098
8007
|
*/
|
|
7099
|
-
function () {
|
|
7100
|
-
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
|
|
8008
|
+
function (isFullyRefund) {
|
|
8009
|
+
if (isFullyRefund) {
|
|
8010
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8011
|
+
this.getRefundReasons();
|
|
8012
|
+
}
|
|
8013
|
+
else {
|
|
8014
|
+
[].forEach.call(document.querySelectorAll('input'), ( /**
|
|
8015
|
+
* @param {?} el
|
|
8016
|
+
* @return {?}
|
|
8017
|
+
*/function (el) {
|
|
8018
|
+
el.classList.remove('inline-error-class');
|
|
8019
|
+
}));
|
|
8020
|
+
/** @type {?} */
|
|
8021
|
+
var checkboxs = document.getElementsByTagName('input');
|
|
8022
|
+
this.errorMessage = '';
|
|
8023
|
+
this.totalRefundAmount = 0;
|
|
8024
|
+
this.errorMsg = [];
|
|
8025
|
+
for (var j = 0; j < checkboxs.length; j++) {
|
|
8026
|
+
if (checkboxs[j].checked) {
|
|
8027
|
+
this.fullRefund = false;
|
|
8028
|
+
/** @type {?} */
|
|
8029
|
+
var quantity = +(( /** @type {?} */(document.getElementById('feeVolume_' + checkboxs[j].value)))).value;
|
|
8030
|
+
/** @type {?} */
|
|
8031
|
+
var amountToRefund = +(( /** @type {?} */(document.getElementById('feeAmount_' + checkboxs[j].value)))).value;
|
|
8032
|
+
/** @type {?} */
|
|
8033
|
+
var apportionAmount = +(( /** @type {?} */(document.getElementById('feeApportionAmount_' + checkboxs[j].value)))).value;
|
|
8034
|
+
/** @type {?} */
|
|
8035
|
+
var calculatedAmount = +(( /** @type {?} */(document.getElementById('calculatedAmount_' + checkboxs[j].value)))).value;
|
|
8036
|
+
if (amountToRefund === apportionAmount) {
|
|
8037
|
+
this.fullRefund = true;
|
|
8038
|
+
}
|
|
8039
|
+
if (amountToRefund === 0) {
|
|
8040
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8041
|
+
this.errorMsg.push('You need to enter a refund amount');
|
|
8042
|
+
this.getErrorClass(this.elementId);
|
|
8043
|
+
}
|
|
8044
|
+
if (quantity === 1) {
|
|
8045
|
+
if (amountToRefund > 0 && amountToRefund > apportionAmount) {
|
|
8046
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8047
|
+
this.errorMsg.push('The amount you want to refund is more than the amount paid');
|
|
8048
|
+
this.getErrorClass(this.elementId);
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8051
|
+
if (quantity > 1) {
|
|
8052
|
+
this.quantityUpdated = +(( /** @type {?} */(document.getElementById('feeVolumeUpdated_' + checkboxs[j].value)))).value;
|
|
8053
|
+
if (this.quantityUpdated === 0) {
|
|
8054
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8055
|
+
this.errorMsg.push('You need to enter quantity');
|
|
8056
|
+
this.getErrorClass(this.elementId);
|
|
8057
|
+
}
|
|
8058
|
+
if (this.fullRefund && quantity !== this.quantityUpdated) {
|
|
8059
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8060
|
+
this.errorMsg.push('The quantity you want to refund should be maximun available quantity');
|
|
8061
|
+
this.getErrorClass(this.elementId);
|
|
8062
|
+
}
|
|
8063
|
+
if (!this.fullRefund && this.quantityUpdated > 0 && amountToRefund > 0) {
|
|
8064
|
+
this.refundAmtForFeeVolumes = +(( /** @type {?} */(document.getElementById('feeVOl_' + checkboxs[j].value)))).innerText;
|
|
8065
|
+
this.allowedRefundAmount = this.quantityUpdated * this.refundAmtForFeeVolumes;
|
|
8066
|
+
if (this.allowedRefundAmount !== amountToRefund) {
|
|
8067
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8068
|
+
this.errorMsg.push('The Amount to Refund should be equal to the product of Fee Amount and quantity');
|
|
8069
|
+
this.getErrorClass(this.elementId);
|
|
8070
|
+
}
|
|
8071
|
+
}
|
|
8072
|
+
if (!this.fullRefund && amountToRefund > apportionAmount) {
|
|
8073
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8074
|
+
this.errorMsg.push('The amount you want to refund is more than the amount paid');
|
|
8075
|
+
this.getErrorClass(this.elementId);
|
|
8076
|
+
}
|
|
8077
|
+
if (!this.fullRefund && this.quantityUpdated > 0 && this.quantityUpdated > quantity) {
|
|
8078
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8079
|
+
this.errorMsg.push('The quantity you want to refund is more than the available quantity');
|
|
8080
|
+
this.getErrorClass(this.elementId);
|
|
8081
|
+
}
|
|
8082
|
+
}
|
|
8083
|
+
//this.remissionForm.value.feesList.find(id=>id=checkboxs[j].value)['refund_amount'] = apportionAmount;
|
|
8084
|
+
}
|
|
8085
|
+
}
|
|
8086
|
+
if (this.errorMsg.length === 0) {
|
|
8087
|
+
if (this.isFromCheckAnsPage) {
|
|
8088
|
+
this.isFromCheckAnsPage = false;
|
|
8089
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
8090
|
+
* @param {?} a
|
|
8091
|
+
* @param {?} c
|
|
8092
|
+
* @return {?}
|
|
8093
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8094
|
+
this.fees = this.remissionForm.value.feesList.filter(( /**
|
|
8095
|
+
* @param {?} value
|
|
8096
|
+
* @return {?}
|
|
8097
|
+
*/function (value) { return value.selected === true; }));
|
|
8098
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
8099
|
+
this.viewCompStatus = '';
|
|
8100
|
+
return;
|
|
8101
|
+
}
|
|
8102
|
+
else if (this.isFromRefundStatusPage) {
|
|
8103
|
+
/** @type {?} */
|
|
8104
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8105
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
8106
|
+
* @param {?} a
|
|
8107
|
+
* @param {?} c
|
|
8108
|
+
* @return {?}
|
|
8109
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8110
|
+
this.refundListAmount.emit(this.totalRefundAmount.toString());
|
|
8111
|
+
this.fees = this.remissionForm.value.feesList.filter(( /**
|
|
8112
|
+
* @param {?} value
|
|
8113
|
+
* @return {?}
|
|
8114
|
+
*/function (value) { return value.selected === true; }));
|
|
8115
|
+
this.refundFees.emit(this.fees);
|
|
8116
|
+
return;
|
|
8117
|
+
}
|
|
8118
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8119
|
+
this.getRefundReasons();
|
|
8120
|
+
}
|
|
8121
|
+
}
|
|
7107
8122
|
};
|
|
7108
8123
|
/**
|
|
8124
|
+
* @param {?} value
|
|
8125
|
+
* @param {?} amount
|
|
8126
|
+
* @param {?} volume
|
|
8127
|
+
* @param {?} i
|
|
7109
8128
|
* @return {?}
|
|
7110
8129
|
*/
|
|
7111
|
-
AddRemissionComponent.prototype.
|
|
8130
|
+
AddRemissionComponent.prototype.calAmtToRefund = /**
|
|
8131
|
+
* @param {?} value
|
|
8132
|
+
* @param {?} amount
|
|
8133
|
+
* @param {?} volume
|
|
8134
|
+
* @param {?} i
|
|
7112
8135
|
* @return {?}
|
|
7113
8136
|
*/
|
|
7114
|
-
function () {
|
|
7115
|
-
var _this = this;
|
|
7116
|
-
this.isConfirmationBtnDisabled = true;
|
|
7117
|
-
this.errorMessage = '';
|
|
7118
|
-
if (this.isRefundRemission) {
|
|
7119
|
-
this.retroRemission = true;
|
|
7120
|
-
}
|
|
8137
|
+
function (value, amount, volume, i) {
|
|
7121
8138
|
/** @type {?} */
|
|
7122
|
-
var
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
|
|
7126
|
-
|
|
7127
|
-
|
|
7128
|
-
|
|
7129
|
-
|
|
7130
|
-
|
|
7131
|
-
|
|
7132
|
-
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
7133
|
-
}
|
|
7134
|
-
}
|
|
7135
|
-
}), ( /**
|
|
7136
|
-
* @param {?} error
|
|
7137
|
-
* @return {?}
|
|
7138
|
-
*/function (error) {
|
|
7139
|
-
_this.errorMessage = error;
|
|
7140
|
-
_this.isConfirmationBtnDisabled = false;
|
|
7141
|
-
_this.cd.detectChanges();
|
|
7142
|
-
}));
|
|
8139
|
+
var volumeFee = amount / volume;
|
|
8140
|
+
/** @type {?} */
|
|
8141
|
+
var amtToRefund = value * volumeFee;
|
|
8142
|
+
/** @type {?} */
|
|
8143
|
+
var formArray = ( /** @type {?} */(this.remissionForm.controls.feesList));
|
|
8144
|
+
formArray.at(i).get('refund_amount').setValue(amtToRefund);
|
|
8145
|
+
// formArray.at(i).get('volume').setValue(value);
|
|
8146
|
+
// (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;
|
|
8147
|
+
// const formControl = this.remissionForm.controls.feesList['volume'].at(i);
|
|
8148
|
+
// formControl.setValue(value);
|
|
7143
8149
|
};
|
|
7144
|
-
// Retro Refund
|
|
7145
|
-
// Retro Refund
|
|
7146
8150
|
/**
|
|
8151
|
+
* @param {?=} note
|
|
8152
|
+
* @return {?}
|
|
8153
|
+
*/
|
|
8154
|
+
AddRemissionComponent.prototype.gotoContactDetailsPage = /**
|
|
8155
|
+
* @param {?=} note
|
|
8156
|
+
* @return {?}
|
|
8157
|
+
*/
|
|
8158
|
+
function (note) {
|
|
8159
|
+
if (note) {
|
|
8160
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
8161
|
+
}
|
|
8162
|
+
this.errorMessage = '';
|
|
8163
|
+
this.viewCompStatus = '';
|
|
8164
|
+
this.viewStatus = 'contactDetailsPage';
|
|
8165
|
+
this.isRefundRemission = true;
|
|
8166
|
+
this.errorMessage = false;
|
|
8167
|
+
};
|
|
8168
|
+
/**
|
|
8169
|
+
* @return {?}
|
|
8170
|
+
*/
|
|
8171
|
+
AddRemissionComponent.prototype.getRefundReasons = /**
|
|
7147
8172
|
* @return {?}
|
|
7148
8173
|
*/
|
|
7149
|
-
AddRemissionComponent.prototype.confirmRetroRefund =
|
|
7150
|
-
// Retro Refund
|
|
7151
|
-
/**
|
|
7152
|
-
* @return {?}
|
|
7153
|
-
*/
|
|
7154
8174
|
function () {
|
|
7155
8175
|
var _this = this;
|
|
7156
|
-
this.
|
|
7157
|
-
|
|
7158
|
-
|
|
7159
|
-
|
|
7160
|
-
|
|
7161
|
-
|
|
7162
|
-
|
|
7163
|
-
|
|
7164
|
-
|
|
8176
|
+
if (this.viewCompStatus === 'issuerefundpage1') {
|
|
8177
|
+
this.refundService.getRefundReasons().subscribe(( /**
|
|
8178
|
+
* @param {?} refundReasons
|
|
8179
|
+
* @return {?}
|
|
8180
|
+
*/function (refundReasons) {
|
|
8181
|
+
_this.refundReasons = refundReasons.filter(( /**
|
|
8182
|
+
* @param {?} data
|
|
8183
|
+
* @return {?}
|
|
8184
|
+
*/function (data) { return data.recently_used === false; }));
|
|
8185
|
+
_this.refundReasons = _this.refundReasons.filter(( /**
|
|
8186
|
+
* @param {?} data
|
|
8187
|
+
* @return {?}
|
|
8188
|
+
*/function (data) { return data.name !== 'Retrospective remission'; }));
|
|
8189
|
+
_this.cd.detectChanges();
|
|
8190
|
+
_this.commonRefundReasons = refundReasons.filter(( /**
|
|
8191
|
+
* @param {?} data
|
|
8192
|
+
* @return {?}
|
|
8193
|
+
*/function (data) { return data.recently_used === true; }));
|
|
8194
|
+
_this.commonRefundReasons.sort(( /**
|
|
8195
|
+
* @param {?} a
|
|
8196
|
+
* @param {?} b
|
|
8197
|
+
* @return {?}
|
|
8198
|
+
*/function (a, b) { return a.toString().localeCompare(b); }));
|
|
8199
|
+
_this.cd.detectChanges();
|
|
8200
|
+
}));
|
|
8201
|
+
}
|
|
8202
|
+
};
|
|
8203
|
+
/**
|
|
8204
|
+
* @param {?} elementId
|
|
8205
|
+
* @return {?}
|
|
8206
|
+
*/
|
|
8207
|
+
AddRemissionComponent.prototype.getErrorClass = /**
|
|
8208
|
+
* @param {?} elementId
|
|
8209
|
+
* @return {?}
|
|
8210
|
+
*/
|
|
8211
|
+
function (elementId) {
|
|
8212
|
+
if (this.errorMsg.length > 0) {
|
|
8213
|
+
/** @type {?} */
|
|
8214
|
+
var ele = document.getElementById(elementId);
|
|
8215
|
+
ele.classList.add('inline-error-class');
|
|
8216
|
+
}
|
|
8217
|
+
};
|
|
8218
|
+
/**
|
|
8219
|
+
* @return {?}
|
|
8220
|
+
*/
|
|
8221
|
+
AddRemissionComponent.prototype.changeIssueRefundReason = /**
|
|
8222
|
+
* @return {?}
|
|
8223
|
+
*/
|
|
8224
|
+
function () {
|
|
8225
|
+
this.isFromCheckAnsPage = true;
|
|
8226
|
+
this.errorMessage = '';
|
|
8227
|
+
this.errorMsg = [];
|
|
8228
|
+
this.refundHasError = false;
|
|
8229
|
+
this.isReasonEmpty = false;
|
|
8230
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8231
|
+
this.viewStatus = '';
|
|
8232
|
+
this.isRefundRemission = true;
|
|
8233
|
+
};
|
|
8234
|
+
/**
|
|
8235
|
+
* @param {?} isFullyRefund
|
|
8236
|
+
* @return {?}
|
|
8237
|
+
*/
|
|
8238
|
+
AddRemissionComponent.prototype.confirmIssueRefund = /**
|
|
8239
|
+
* @param {?} isFullyRefund
|
|
8240
|
+
* @return {?}
|
|
8241
|
+
*/
|
|
8242
|
+
function (isFullyRefund) {
|
|
8243
|
+
var _this = this;
|
|
8244
|
+
this.isConfirmationBtnDisabled = true;
|
|
8245
|
+
this.errorMessage = '';
|
|
8246
|
+
this.errorMsg = [];
|
|
8247
|
+
if (this.isRefundRemission) {
|
|
8248
|
+
this.retroRemission = true;
|
|
8249
|
+
}
|
|
8250
|
+
if (isFullyRefund) {
|
|
8251
|
+
this.totalRefundAmount = this.payment.amount;
|
|
8252
|
+
}
|
|
8253
|
+
if (!isFullyRefund) {
|
|
8254
|
+
this.fees = this.remissionForm.value.feesList.filter(( /**
|
|
8255
|
+
* @param {?} value
|
|
8256
|
+
* @return {?}
|
|
8257
|
+
*/function (value) { return value.selected === true; }));
|
|
8258
|
+
}
|
|
8259
|
+
this.fees = this.fees.map(( /**
|
|
8260
|
+
* @param {?} obj
|
|
8261
|
+
* @return {?}
|
|
8262
|
+
*/function (obj) {
|
|
8263
|
+
return ({ id: obj.id,
|
|
8264
|
+
code: obj.code,
|
|
8265
|
+
version: obj.version,
|
|
8266
|
+
apportion_amount: obj.apportion_amount,
|
|
8267
|
+
calculated_amount: obj.calculated_amount,
|
|
8268
|
+
updated_volume: obj.updated_volume,
|
|
8269
|
+
refund_amount: obj.refund_amount });
|
|
8270
|
+
}));
|
|
8271
|
+
/** @type {?} */
|
|
8272
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.payment.reference, this.refundReason, this.totalRefundAmount);
|
|
8273
|
+
this.paymentViewService.postRefundsReason(requestBody).subscribe(( /**
|
|
8274
|
+
* @param {?} response
|
|
7165
8275
|
* @return {?}
|
|
7166
8276
|
*/function (response) {
|
|
7167
8277
|
if (JSON.parse(response)) {
|
|
7168
8278
|
_this.viewCompStatus = '';
|
|
7169
|
-
_this.viewStatus = '
|
|
8279
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
7170
8280
|
_this.refundReference = JSON.parse(response).refund_reference;
|
|
7171
8281
|
if (JSON.parse(response).refund_amount) {
|
|
7172
8282
|
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
@@ -7178,18 +8288,105 @@
|
|
|
7178
8288
|
*/function (error) {
|
|
7179
8289
|
_this.errorMessage = error;
|
|
7180
8290
|
_this.isConfirmationBtnDisabled = false;
|
|
8291
|
+
_this.cd.detectChanges();
|
|
7181
8292
|
}));
|
|
7182
8293
|
};
|
|
7183
8294
|
/**
|
|
7184
|
-
* @param {?} key
|
|
7185
|
-
* @param {?} value
|
|
7186
8295
|
* @return {?}
|
|
7187
8296
|
*/
|
|
7188
|
-
AddRemissionComponent.prototype.
|
|
8297
|
+
AddRemissionComponent.prototype.gotoRefundReasonPage = /**
|
|
8298
|
+
* @return {?}
|
|
8299
|
+
*/
|
|
8300
|
+
function () {
|
|
8301
|
+
this.viewStatus = '';
|
|
8302
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8303
|
+
};
|
|
8304
|
+
// Retro Refund
|
|
8305
|
+
// confirmRetroRefund() {
|
|
8306
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8307
|
+
// this.errorMessage = '';
|
|
8308
|
+
// this.errorMsg = [];
|
|
8309
|
+
// if( this.isRefundRemission) {
|
|
8310
|
+
// this.retroRemission = true;
|
|
8311
|
+
// }
|
|
8312
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8313
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8314
|
+
// response => {
|
|
8315
|
+
// if (JSON.parse(response)) {
|
|
8316
|
+
// this.viewCompStatus = '';
|
|
8317
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8318
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8319
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8320
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8321
|
+
// }
|
|
8322
|
+
// }
|
|
8323
|
+
// },
|
|
8324
|
+
// (error: any) => {
|
|
8325
|
+
// this.errorMessage = error;
|
|
8326
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8327
|
+
// });
|
|
8328
|
+
// }
|
|
8329
|
+
// Retro Refund
|
|
8330
|
+
// confirmRetroRefund() {
|
|
8331
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8332
|
+
// this.errorMessage = '';
|
|
8333
|
+
// this.errorMsg = [];
|
|
8334
|
+
// if( this.isRefundRemission) {
|
|
8335
|
+
// this.retroRemission = true;
|
|
8336
|
+
// }
|
|
8337
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8338
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8339
|
+
// response => {
|
|
8340
|
+
// if (JSON.parse(response)) {
|
|
8341
|
+
// this.viewCompStatus = '';
|
|
8342
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8343
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8344
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8345
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8346
|
+
// }
|
|
8347
|
+
// }
|
|
8348
|
+
// },
|
|
8349
|
+
// (error: any) => {
|
|
8350
|
+
// this.errorMessage = error;
|
|
8351
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8352
|
+
// });
|
|
8353
|
+
// }
|
|
8354
|
+
/**
|
|
7189
8355
|
* @param {?} key
|
|
7190
8356
|
* @param {?} value
|
|
7191
8357
|
* @return {?}
|
|
7192
8358
|
*/
|
|
8359
|
+
AddRemissionComponent.prototype.selectRadioButton =
|
|
8360
|
+
// Retro Refund
|
|
8361
|
+
// confirmRetroRefund() {
|
|
8362
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8363
|
+
// this.errorMessage = '';
|
|
8364
|
+
// this.errorMsg = [];
|
|
8365
|
+
// if( this.isRefundRemission) {
|
|
8366
|
+
// this.retroRemission = true;
|
|
8367
|
+
// }
|
|
8368
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8369
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8370
|
+
// response => {
|
|
8371
|
+
// if (JSON.parse(response)) {
|
|
8372
|
+
// this.viewCompStatus = '';
|
|
8373
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8374
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8375
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8376
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8377
|
+
// }
|
|
8378
|
+
// }
|
|
8379
|
+
// },
|
|
8380
|
+
// (error: any) => {
|
|
8381
|
+
// this.errorMessage = error;
|
|
8382
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8383
|
+
// });
|
|
8384
|
+
// }
|
|
8385
|
+
/**
|
|
8386
|
+
* @param {?} key
|
|
8387
|
+
* @param {?} value
|
|
8388
|
+
* @return {?}
|
|
8389
|
+
*/
|
|
7193
8390
|
function (key, value) {
|
|
7194
8391
|
localStorage.setItem("myradio", key);
|
|
7195
8392
|
/** @type {?} */
|
|
@@ -7198,6 +8395,7 @@
|
|
|
7198
8395
|
remissionctrls['reason'].reset();
|
|
7199
8396
|
this.isRefundReasonsSelected = true;
|
|
7200
8397
|
this.errorMessage = false;
|
|
8398
|
+
this.errorMsg = [];
|
|
7201
8399
|
this.isReasonEmpty = false;
|
|
7202
8400
|
this.showReasonText = false;
|
|
7203
8401
|
this.refundHasError = false;
|
|
@@ -7232,6 +8430,38 @@
|
|
|
7232
8430
|
this.refundReason = args.target.options[args.target.options.selectedIndex].id;
|
|
7233
8431
|
}
|
|
7234
8432
|
};
|
|
8433
|
+
/**
|
|
8434
|
+
* @param {?} obj
|
|
8435
|
+
* @param {?} type
|
|
8436
|
+
* @return {?}
|
|
8437
|
+
*/
|
|
8438
|
+
AddRemissionComponent.prototype.getContactDetails = /**
|
|
8439
|
+
* @param {?} obj
|
|
8440
|
+
* @param {?} type
|
|
8441
|
+
* @return {?}
|
|
8442
|
+
*/
|
|
8443
|
+
function (obj, type) {
|
|
8444
|
+
this.contactDetailsObj = obj;
|
|
8445
|
+
this.viewCompStatus = '';
|
|
8446
|
+
this.viewStatus = type;
|
|
8447
|
+
};
|
|
8448
|
+
/**
|
|
8449
|
+
* @return {?}
|
|
8450
|
+
*/
|
|
8451
|
+
AddRemissionComponent.prototype.gotoPartialFeeRefundScreen = /**
|
|
8452
|
+
* @return {?}
|
|
8453
|
+
*/
|
|
8454
|
+
function () {
|
|
8455
|
+
if (this.isFromRefundStatusPage) {
|
|
8456
|
+
/** @type {?} */
|
|
8457
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8458
|
+
this.refundListReason.emit({ reason: this.displayRefundReason, code: this.refundReason });
|
|
8459
|
+
return;
|
|
8460
|
+
}
|
|
8461
|
+
this.refundHasError = false;
|
|
8462
|
+
this.viewCompStatus = 'issuerefund';
|
|
8463
|
+
this.viewStatus = '';
|
|
8464
|
+
};
|
|
7235
8465
|
/**
|
|
7236
8466
|
* @param {?} event
|
|
7237
8467
|
* @return {?}
|
|
@@ -7243,7 +8473,20 @@
|
|
|
7243
8473
|
function (event) {
|
|
7244
8474
|
var _this = this;
|
|
7245
8475
|
this.errorMessage = '';
|
|
8476
|
+
this.errorMsg = [];
|
|
8477
|
+
this.isFromCheckAnsPage = false;
|
|
7246
8478
|
event.preventDefault();
|
|
8479
|
+
if (this.isFromRefundStatusPage) {
|
|
8480
|
+
/** @type {?} */
|
|
8481
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8482
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce(( /**
|
|
8483
|
+
* @param {?} a
|
|
8484
|
+
* @param {?} c
|
|
8485
|
+
* @return {?}
|
|
8486
|
+
*/function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8487
|
+
this.refundListAmount.emit(this.totalRefundAmount.toString());
|
|
8488
|
+
return;
|
|
8489
|
+
}
|
|
7247
8490
|
if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {
|
|
7248
8491
|
this.viewStatus = 'order-full-view';
|
|
7249
8492
|
this.viewCompStatus = '';
|
|
@@ -7277,64 +8520,40 @@
|
|
|
7277
8520
|
}
|
|
7278
8521
|
this.viewCompStatus = '';
|
|
7279
8522
|
}
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
|
|
7284
|
-
|
|
7285
|
-
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
|
|
7289
|
-
|
|
7290
|
-
|
|
7291
|
-
|
|
7292
|
-
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
|
-
|
|
7296
|
-
|
|
7297
|
-
|
|
7298
|
-
|
|
7299
|
-
|
|
7300
|
-
|
|
7301
|
-
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7313
|
-
|
|
7314
|
-
// partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7315
|
-
// partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7316
|
-
// partUrl += `&caseType=${this.caseType}`;
|
|
7317
|
-
// if(this.isFromPaymentDetailPage) {
|
|
7318
|
-
// partUrl += this.paymentLibComponent.isFromPaymentDetailPage
|
|
7319
|
-
// }
|
|
7320
|
-
// if(!this.paymentLibComponent.TAKEPAYMENT) {
|
|
7321
|
-
// this.paymentLibComponent.TAKEPAYMENT = undefined;
|
|
7322
|
-
// }
|
|
7323
|
-
// if ( this.paymentLibComponent.SERVICEREQUEST) {
|
|
7324
|
-
// const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;
|
|
7325
|
-
// this.router.routeReuseStrategy.shouldReuseRoute = () => false;
|
|
7326
|
-
// this.router.onSameUrlNavigation = 'reload';
|
|
7327
|
-
// this.router.navigateByUrl(url);
|
|
7328
|
-
// } else {
|
|
7329
|
-
// const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;
|
|
7330
|
-
// this.router.routeReuseStrategy.shouldReuseRoute = () => false;
|
|
7331
|
-
// this.router.onSameUrlNavigation = 'reload';
|
|
7332
|
-
// this.router.navigateByUrl(url);
|
|
7333
|
-
// }
|
|
7334
|
-
// } else {
|
|
7335
|
-
// this.paymentLibComponent.viewName === 'refundstatuslist';
|
|
7336
|
-
// this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
7337
|
-
// }
|
|
8523
|
+
};
|
|
8524
|
+
/**
|
|
8525
|
+
* @param {?=} note
|
|
8526
|
+
* @return {?}
|
|
8527
|
+
*/
|
|
8528
|
+
AddRemissionComponent.prototype.gotoAddressPage = /**
|
|
8529
|
+
* @param {?=} note
|
|
8530
|
+
* @return {?}
|
|
8531
|
+
*/
|
|
8532
|
+
function (note) {
|
|
8533
|
+
if (note) {
|
|
8534
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
8535
|
+
}
|
|
8536
|
+
this.errorMessage = '';
|
|
8537
|
+
this.viewCompStatus = 'addrefundforremission';
|
|
8538
|
+
this.viewStatus = '';
|
|
8539
|
+
this.isRefundRemission = true;
|
|
8540
|
+
this.errorMessage = false;
|
|
8541
|
+
};
|
|
8542
|
+
/**
|
|
8543
|
+
* @param {?} event
|
|
8544
|
+
* @return {?}
|
|
8545
|
+
*/
|
|
8546
|
+
AddRemissionComponent.prototype.gotoRemissionSuccess = /**
|
|
8547
|
+
* @param {?} event
|
|
8548
|
+
* @return {?}
|
|
8549
|
+
*/
|
|
8550
|
+
function (event) {
|
|
8551
|
+
event.preventDefault();
|
|
8552
|
+
this.errorMessage = '';
|
|
8553
|
+
this.viewCompStatus = '';
|
|
8554
|
+
this.viewStatus = 'retroremissionconfirmationpage';
|
|
8555
|
+
this.isRefundRemission = true;
|
|
8556
|
+
this.errorMessage = false;
|
|
7338
8557
|
};
|
|
7339
8558
|
/**
|
|
7340
8559
|
* @return {?}
|
|
@@ -7345,9 +8564,12 @@
|
|
|
7345
8564
|
function () {
|
|
7346
8565
|
this.OrderslistService.setnavigationPage('casetransactions');
|
|
7347
8566
|
this.errorMessage = '';
|
|
8567
|
+
this.errorMsg = [];
|
|
7348
8568
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7349
8569
|
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
7350
8570
|
this.paymentLibComponent.ISTURNOFF = this.isTurnOff;
|
|
8571
|
+
this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;
|
|
8572
|
+
this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;
|
|
7351
8573
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
7352
8574
|
this.resetOrderData();
|
|
7353
8575
|
/** @type {?} */
|
|
@@ -7356,6 +8578,8 @@
|
|
|
7356
8578
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7357
8579
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7358
8580
|
partUrl += "&caseType=" + this.caseType;
|
|
8581
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8582
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
7359
8583
|
/** @type {?} */
|
|
7360
8584
|
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=" + this.paymentLibComponent.TAKEPAYMENT + "&selectedOption=" + this.option + partUrl;
|
|
7361
8585
|
this.router.routeReuseStrategy.shouldReuseRoute = ( /**
|
|
@@ -7373,30 +8597,37 @@
|
|
|
7373
8597
|
* @return {?}
|
|
7374
8598
|
*/
|
|
7375
8599
|
function (event) {
|
|
7376
|
-
var _this = this;
|
|
7377
8600
|
event.preventDefault();
|
|
7378
|
-
|
|
8601
|
+
this.errorMsg = [];
|
|
8602
|
+
if (this.paymentLibComponent.isFromServiceRequestPage !== undefined && !this.paymentLibComponent.isFromServiceRequestPage) {
|
|
8603
|
+
this.OrderslistService.setnavigationPage('casetransactions');
|
|
8604
|
+
this.OrderslistService.setisFromServiceRequestPage(false);
|
|
8605
|
+
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
8606
|
+
this.paymentLibComponent.viewName = 'case-transactions';
|
|
8607
|
+
this.paymentLibComponent.ISBSENABLE = true;
|
|
8608
|
+
this.paymentLibComponent.isRefundStatusView = false;
|
|
7379
8609
|
this.OrderslistService.setnavigationPage('casetransactions');
|
|
7380
8610
|
this.OrderslistService.setisFromServiceRequestPage(false);
|
|
7381
8611
|
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
7382
8612
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7383
8613
|
this.paymentLibComponent.ISBSENABLE = true;
|
|
7384
8614
|
this.paymentLibComponent.isRefundStatusView = false;
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7389
|
-
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
8615
|
+
this.resetOrderData();
|
|
8616
|
+
/** @type {?} */
|
|
8617
|
+
var partUrl = this.bsPaymentDcnNumber ? "&dcn=" + this.bsPaymentDcnNumber : '';
|
|
8618
|
+
partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
8619
|
+
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
8620
|
+
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
8621
|
+
partUrl += "&caseType=" + this.caseType;
|
|
8622
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8623
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
8624
|
+
/** @type {?} */
|
|
8625
|
+
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=" + this.paymentLibComponent.TAKEPAYMENT + "&selectedOption=" + this.option + partUrl;
|
|
8626
|
+
this.router.routeReuseStrategy.shouldReuseRoute = ( /**
|
|
8627
|
+
* @return {?}
|
|
8628
|
+
*/function () { return false; });
|
|
8629
|
+
this.router.onSameUrlNavigation = 'reload';
|
|
8630
|
+
this.router.navigateByUrl(url);
|
|
7400
8631
|
}
|
|
7401
8632
|
else {
|
|
7402
8633
|
if (this.paymentLibComponent.REFUNDLIST) {
|
|
@@ -7412,30 +8643,18 @@
|
|
|
7412
8643
|
this.errorMessage = '';
|
|
7413
8644
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7414
8645
|
this.paymentLibComponent.ISTURNOFF = this.isTurnOff;
|
|
8646
|
+
this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;
|
|
8647
|
+
this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;
|
|
7415
8648
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
7416
8649
|
this.paymentLibComponent.ISBSENABLE = true;
|
|
7417
|
-
this.paymentViewService.getBSfeature().subscribe(( /**
|
|
7418
|
-
* @param {?} features
|
|
7419
|
-
* @return {?}
|
|
7420
|
-
*/function (features) {
|
|
7421
|
-
/** @type {?} */
|
|
7422
|
-
var result = JSON.parse(features).filter(( /**
|
|
7423
|
-
* @param {?} feature
|
|
7424
|
-
* @return {?}
|
|
7425
|
-
*/function (feature) { return feature.uid === BS_ENABLE_FLAG$3; }));
|
|
7426
|
-
_this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;
|
|
7427
|
-
}), ( /**
|
|
7428
|
-
* @param {?} err
|
|
7429
|
-
* @return {?}
|
|
7430
|
-
*/function (err) {
|
|
7431
|
-
_this.paymentLibComponent.ISBSENABLE = false;
|
|
7432
|
-
}));
|
|
7433
8650
|
/** @type {?} */
|
|
7434
8651
|
var partUrl = this.bsPaymentDcnNumber ? "&dcn=" + this.bsPaymentDcnNumber : '';
|
|
7435
8652
|
partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
7436
8653
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7437
8654
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7438
8655
|
partUrl += "&caseType=" + this.caseType;
|
|
8656
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8657
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
7439
8658
|
if (this.isFromPaymentDetailPage) {
|
|
7440
8659
|
partUrl += this.paymentLibComponent.isFromPaymentDetailPage;
|
|
7441
8660
|
}
|
|
@@ -7475,6 +8694,17 @@
|
|
|
7475
8694
|
this.OrderslistService.setorderRemissionTotal(null);
|
|
7476
8695
|
this.OrderslistService.setorderFeesTotal(null);
|
|
7477
8696
|
};
|
|
8697
|
+
/**
|
|
8698
|
+
* @return {?}
|
|
8699
|
+
*/
|
|
8700
|
+
AddRemissionComponent.prototype.changeRefundAmount = /**
|
|
8701
|
+
* @return {?}
|
|
8702
|
+
*/
|
|
8703
|
+
function () {
|
|
8704
|
+
this.isFromCheckAnsPage = true;
|
|
8705
|
+
this.viewCompStatus = 'issuerefund';
|
|
8706
|
+
this.viewStatus = '';
|
|
8707
|
+
};
|
|
7478
8708
|
/**
|
|
7479
8709
|
* @param {?} currency
|
|
7480
8710
|
* @return {?}
|
|
@@ -7492,8 +8722,8 @@
|
|
|
7492
8722
|
AddRemissionComponent.decorators = [
|
|
7493
8723
|
{ type: i0.Component, args: [{
|
|
7494
8724
|
selector: 'ccpay-add-remission',
|
|
7495
|
-
template: "<div class=\"add-remission pagesize\">\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <ng-container *ngIf=\"viewStatus === 'main' && !isRefundRemission \">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSION'>\n <h1 class=\"heading-large\">Add remission </h1>\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"remission-code\">\n Add remission to {{ fee?.code }}: {{ fee?.description }}\n <span class=\"form-hint\">Enter remission for reference. For example: HWF-A1B-23C OR PA21-123456</span>\n </label>\n <input [ngClass]=\"{'inline-error-class': isRemissionCodeEmpty || remissionCodeHasError}\" class=\"govuk-input govuk-input--width-20 govuk-!-margin-right-1\" id=\"remissionCode\" aria-label=\"remissionCode\" name=\"remissionCode\" type=\"text\" formControlName=\"remissionCode\">\n <p class=\"inline-error-message\" *ngIf=\"isRemissionCodeEmpty || remissionCodeHasError\">\n <span *ngIf=\"isRemissionCodeEmpty\">Enter a remission code</span>\n <span *ngIf=\"remissionCodeHasError\">Enter a vaild remission code</span>\n </p>\n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"amount\">\n How much does the applicant need to pay?\n </label>\n\n <div id=\"amount-currency\" class=\"govuk-visually-hidden\">in pounds</div>\n <div class=\"hmcts-currency-input\">\n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isAmountEmpty || amountHasError || isRemissionLessThanFeeError}\" id=\"amount\" aria-label=\"amount\" name=\"amount\" type=\"text\" aria-describedby=\"amount-currency\" formControlName=\"amount\">\n <p class=\"inline-error-message\" *ngIf=\"isAmountEmpty || amountHasError || isRemissionLessThanFeeError\">\n <span *ngIf=\"isAmountEmpty\">Enter a amount</span>\n <span *ngIf=\"amountHasError\">Enter a vaild amount</span>\n <span *ngIf=\"isRemissionLessThanFeeError\">The remission amount must be less than the total fee</span>\n </p>\n </div>\n </div>\n </form>\n <button class=\"button\" type=\"submit\" (click)=\"addRemission()\">\n Submit\n </button>\n </div>\n </form>\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'confirmation'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSIONCONFIRMATION'>\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to add remission to this fee?\n </strong>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission code:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.remissionCode.value }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee code:</td>\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee description:</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Amount the applicant must pay:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission.emit()\">\n Cancel\n </button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"confirmRemission()\">\n Confirm\n </button>\n\n </ng-container>\n\n <!-- Add retro remission changes-->\n\n <ng-container *ngIf=\"viewCompStatus === 'addremission'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PROCESSADDRETROREMISSIONPAGE'>\n <h1 class=\"heading-large\">Process remission</h1>\n <h1 class=\"heading-medium\">#{{ccdCaseNumber | ccdHyphens}}</h1>\n <h1 class=\"heading-large\">Enter help with fees or remission reference</h1>\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"remission-code\">\n <span class=\"form-hint\">For example: HWF-A1B-23C OR PA21-123456</span>\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isRemissionCodeEmpty || remissionCodeHasError\">\n <span *ngIf=\"isRemissionCodeEmpty\">Enter a remission code</span>\n <span *ngIf=\"remissionCodeHasError\">Enter a vaild remission code</span>\n </p>\n <input [ngClass]=\"{'inline-error-class': isRemissionCodeEmpty || remissionCodeHasError}\" class=\"govuk-input govuk-input--width-20 govuk-!-margin-right-1\" id=\"remissionCode\" aria-label=\"remissionCode\" name=\"remissionCode\" type=\"text\" formControlName=\"remissionCode\">\n\n </div>\n\n </form>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoServiceRequestPage($event)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"addRemissionCode()\" class=\"govuk-button\"> Continue</button>\n </div>\n <p><a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">Cancel</a></p>\n </div>\n </form>\n\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'processretroremissonpage'\" >\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PROCESSRETROREMISSIONPAGE'>\n <h1 class=\"heading-large\">Process remission</h1>\n <h1 class=\"heading-medium\">#{{ccdCaseNumber | ccdHyphens }}</h1>\n <div class=\"govuk-form-group\">\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <h1 *ngIf=\"remessionPayment?.status === 'Success' || isFromRefundListPage\" class=\"heading-medium\">\n Enter the amount to be refunded\n </h1>\n <h1 *ngIf=\"remessionPayment?.status !== 'Success' && !isFromRefundListPage\" class=\"heading-medium\">\n Enter the remission amount\n </h1>\n <h1 *ngIf=\"remessionPayment?.status === 'undefined'\" class=\"heading-medium\">\n Enter the amount\n </h1>\n </legend>\n <div id=\"amount-currency\" class=\"govuk-visually-hidden\">in pounds</div>\n <p class=\"inline-error-message\" *ngIf=\"isAmountEmpty || amountHasError || isRemissionLessThanFeeError\">\n <span *ngIf=\"isAmountEmpty\">Enter a amount</span>\n <span *ngIf=\"amountHasError\">Enter a vaild amount</span>\n <span *ngIf=\"isRemissionLessThanFeeError\">You cannot add a remission that's more than the fee amount.</span>\n </p>\n <div class=\"hmcts-currency-input\">\n\n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isAmountEmpty || amountHasError || isRemissionLessThanFeeError}\" id=\"amount\" aria-label=\"amount\" name=\"amount\" type=\"number\" aria-describedby=\"amount-currency\" formControlName=\"amount\">\n\n\n </div>\n </fieldset>\n </form>\n\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoAddRetroRemissionCodePage()\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"gotoCheckRetroRemissionPage(payment)\" class=\"govuk-button\"> Continue</button>\n\n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">Cancel</a>\n </p>\n </div>\n\n </form>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'checkretroremissionpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CHECKRETROREMISSIONCONFIRMATION'>\n <div class=\"govuk-warning-text\">\n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.reference: ' '}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">\u00A3{{ remessionPayment ? getFormattedCurrency(remessionPayment.amount): ' ' | currency :'GBP':'symbol':'1.2-2'}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment status</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.status: ''}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee</td>\n <td class=\"govuk-table__cell\">{{ fee.code }} - {{ fee.description }} ({{ fee.calculated_amount/fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}) </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Help with fees or remission reference</td>\n <td class=\"govuk-table__cell\"> {{ remissionForm.controls.remissionCode.value }}\n <a (click)=\"gotoProcessRetroRemissionPage()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td *ngIf=\"remessionPayment.status === 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td *ngIf=\"remessionPayment.status !== 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission amount</td>\n <td class=\"govuk-table__cell\">{{remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}\n <a (click)=\"addRemissionCode()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"addRemissionCode()\">Previous</button>\n <button type=\"submit\" [disabled]=\"isConfirmationBtnDisabled\" [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"confirmRetroRemission()\"> Add remission </button>\n <p> <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\"> Cancel</a> </p>\n\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'retroremissionconfirmationpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONCONFIRMATIONPAGE'>\n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Remission added\n </h1>\n <div *ngIf=\"remessionPayment.status === 'Success'\" class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>The amount to be refunded should be {{remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}</strong></p>\n\n </div>\n </div>\n <div *ngIf=\"remessionPayment.status === 'Success'\" >\n <button type=\"submit\" [disabled]=\"!isRemissionApplied\" [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"processRefund()\">Submit refund </button>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'refundconfirmationpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONREFUNDCONFIRMATIONPAGE'>\n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n\n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n\n </div>\n <div *ngIf=\"isPaymentSuccess\">\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount | currency:'GBP':'symbol-narrow':'1.2-2' }} has been created and will be passed to a team leader to approve.\n </p>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n\n </ng-container>\n\n <!-- Issue Refund Section -->\n\n <ng-container *ngIf=\"viewCompStatus === 'issuerefund' && isRefundRemission\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ISSUEREFUNDPAGE'>\n <h1 class=\"heading-large\">Process refund</h1>\n <h1 class=\"heading-medium\">#{{ccdCaseNumber | ccdHyphens }}</h1>\n <h1 class=\"heading-large\">Why are you making this refund?\n </h1>\n\n\n <div class=\"govuk-form-group\">\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"how-contacted-conditional-hint\">\n\n <div\n [ngClass]=\"refundHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\"\n data-module=\"govuk-radios\" >\n <p class=\"inline-error-message\" *ngIf=\"refundHasError\">\n <span *ngIf=\"refundHasError\">Select a reason why you\u2019re making this refund</span>\n </p>\n\n\n\n <div class = \"container-fluid\">\n <div class=\"row\">\n <div class=\"govuk-radios__item col-md-4\" *ngFor=\"let refund of commonRefundReasons; let i = index;\">\n <!-- <div *ngIf = \"{{refund.name}} !== 'Retrospective remission'\"> -->\n <input class=\"govuk-radios__input\" id=\"{{refund.name}}\" name=\"refundReason\" type=\"radio\"\n formControlName=\"refundReason\" value={{refund.code}}\n (change)=\"selectRadioButton(refund.name, refund.name)\">\n <label class=\"govuk-label--s govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{refund.name}}\n </label>\n\n <div class=\"govuk-radios__conditional\" *ngIf=\"isRefundReasonsSelected && showReasonText && selectedRefundReason === refund.name \" >\n <label class=\"govuk-label govuk-label--m\" for=\"{{refund.name}}\">\n Enter reason\n </label>\n <div [ngClass]=\"{'form-group-error': isReasonEmpty}\">\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty\">\n <span *ngIf=\"isReasonEmpty\">Enter a reason why you\u2019re making this refund</span>\n </p>\n\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isReasonEmpty}\" id=\"reason\" aria-label=\"reason\" name=\"reason\" type=\"text\" aria-describedby=\"reason\" maxlength=\"30\" formControlName=\"reason\">\n </div>\n </div>\n <!-- </div> -->\n </div>\n </div>\n </div>\n <br/>\n <div>\n <select formControlName=\"refundDDReason\" class=\"govuk-select\" id=\"sort\" (change)=\"selectchange($event)\">\n <option selected='selected' [defaultSelected]=true [value]=\"default\" >{{default}}</option>\n <!-- <option value=\"\" selected='selected'>Select a different reason</option> -->\n <option *ngFor=\"let refund of refundReasons;\" id=\"{{refund.name}}\" value=\"{{refund.code}}\">{{refund.name}}</option>\n </select>\n\n </div>\n <br/>\n <div class=\"govuk-radios__conditional\" *ngIf=\"showReasonText && !isRefundReasonsSelected\" >\n <div [ngClass]=\"{'form-group-error': isReasonEmpty}\">\n <label class=\"govuk-label govuk-label--m\" for=\"amount\">\n Enter reason\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty\">\n <span *ngIf=\"isReasonEmpty\">Enter a reason why you\u2019re making this refund</span>\n </p>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isReasonEmpty}\" id=\"reason\" aria-label=\"reason\" name=\"reason\" type=\"text\" aria-describedby=\"reason\" maxlength=\"{{reasonLength}}\" formControlName=\"reason\">\n </div>\n </div>\n\n\n </div>\n </fieldset>\n </form>\n </div>\n </form>\n </div>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoServiceRequestPage($event)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"gotoIssueRefundConfirmation(payment)\" class=\"govuk-button\"> Continue</button>\n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'checkissuerefundpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CHECKISSUEREFUNDPAGE'>\n <div class=\"govuk-warning-text\">\n\n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> {{ displayRefundReason }}\n <a (click)=\"changeIssueRefundReason()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{this.payment.reference}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">{{this.payment.amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n </table>\n <div class=\"govuk-button-group\">\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoIssueRefundPage()\"> Previous </button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"confirmIssueRefund()\">\n Submit refund\n </button>\n </div>\n <p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n </ng-container>\n\n <!--Retro Refund-->\n <ng-container *ngIf=\"viewCompStatus === 'addrefundforremission'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREFUNDFORREMISSION'>\n <div class=\"govuk-warning-text\">\n\n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> Retrospective remission </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{this.payment.reference}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{this.remission.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee code</td>\n <td class=\"govuk-table__cell\">{{this.remission.fee_code}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee amount</td>\n <td class=\"govuk-table__cell\">{{feeamount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n </table>\n <div class=\"govuk-button-group\">\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoServiceRequestPage($event)\">Previous</button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"processRefund()\">\n Submit refund\n </button>\n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'retrorefundconfirmationpage'\">\n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n\n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n\n </div>\n <div *ngIf=\"isPaymentSuccess\">\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{ refundAmount| currency:'GBP':'symbol-narrow':'1.2-2'}} has been passed to a team leader to approve.\n </p>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [takePayment] = \"takePayment\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\">\n </ccpay-service-request>\n </ng-container>\n\n <ng-container *ngIf=\"viewStatus === 'payment-view'\">\n <ccpay-payment-view\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [isTurnOff] = \"isTurnOff\"\n [isTakePayment] = \"takePayment\"\n [caseType] = \"caseType\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n >\n </ccpay-payment-view>\n </ng-container>\n\n</div>\n\n\n\n",
|
|
7496
|
-
styles: [".add-remission .button{padding:.5em;font-size:19px;font-weight:200;margin:20px 2px}.add-remission td.govuk-table__cell{width:50%}.add-remission .govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:.5em}.add-remission .
|
|
8725
|
+
template: "<div class=\"add-remission pagesize\">\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n <div *ngIf=\"errorMsg.length > 0\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div *ngFor=\"let err of errorMsg; let i = index\" class=\"govuk-error-summary__body\">\n \n <li>{{err}}</li>\n </div>\n </div>\n </div>\n\n<ng-container *ngIf=\"viewStatus === 'main' && !isRefundRemission \">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSION'>\n <h1 class=\"heading-large\">Add remission </h1>\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"remission-code\">\n Add remission to {{ fee?.code }}: {{ fee?.description }}\n <span class=\"form-hint\">Enter remission for reference. For example: HWF-A1B-23C OR PA21-123456</span>\n </label>\n <input [ngClass]=\"{'inline-error-class': isRemissionCodeEmpty || remissionCodeHasError}\" class=\"govuk-input govuk-input--width-20 govuk-!-margin-right-1\" id=\"remissionCode\" aria-label=\"remissionCode\" name=\"remissionCode\" type=\"text\" formControlName=\"remissionCode\">\n <p class=\"inline-error-message\" *ngIf=\"isRemissionCodeEmpty || remissionCodeHasError\">\n <span *ngIf=\"isRemissionCodeEmpty\">Enter a remission code</span>\n <span *ngIf=\"remissionCodeHasError\">Enter a vaild remission code</span>\n </p>\n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"amount\">\n How much does the applicant need to pay?\n </label>\n\n <div id=\"amount-currency\" class=\"govuk-visually-hidden\">in pounds</div>\n <div class=\"hmcts-currency-input\">\n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isAmountEmpty || amountHasError || isRemissionLessThanFeeError}\" id=\"amount\" aria-label=\"amount\" name=\"amount\" type=\"text\" aria-describedby=\"amount-currency\" formControlName=\"amount\">\n <p class=\"inline-error-message\" *ngIf=\"isAmountEmpty || amountHasError || isRemissionLessThanFeeError\">\n <span *ngIf=\"isAmountEmpty\">Enter a amount</span>\n <span *ngIf=\"amountHasError\">Enter a vaild amount</span>\n <span *ngIf=\"isRemissionLessThanFeeError\">The remission amount must be less than the total fee</span>\n </p>\n </div>\n </div>\n </form>\n <button class=\"button\" type=\"submit\" (click)=\"addRemission()\">\n Submit\n </button>\n </div>\n </form>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'confirmation'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSIONCONFIRMATION'> \n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to add remission to this fee?\n </strong>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission code:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.remissionCode.value }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee code:</td>\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee description:</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Amount the applicant must pay:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission.emit()\">\n Cancel\n </button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"confirmRemission()\">\n Confirm\n </button>\n\n</ng-container>\n\n<!-- Add retro remission changes-->\n\n<ng-container *ngIf=\"viewCompStatus === 'addremission'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PROCESSADDRETROREMISSIONPAGE'> \n <h1 class=\"heading-large\">Process remission</h1>\n <h1 class=\"heading-medium\">#{{ccdCaseNumber | ccdHyphens}}</h1>\n <h1 class=\"heading-large\">Enter help with fees or remission reference</h1>\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"remission-code\">\n <span class=\"form-hint\">For example: HWF-A1B-23C OR PA21-123456</span>\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isRemissionCodeEmpty || remissionCodeHasError\">\n <span *ngIf=\"isRemissionCodeEmpty\">Enter a remission code</span>\n <span *ngIf=\"remissionCodeHasError\">Enter a vaild remission code</span>\n </p>\n <input [ngClass]=\"{'inline-error-class': isRemissionCodeEmpty || remissionCodeHasError}\" class=\"govuk-input govuk-input--width-20 govuk-!-margin-right-1\" id=\"remissionCode\" aria-label=\"remissionCode\" name=\"remissionCode\" type=\"text\" formControlName=\"remissionCode\">\n \n </div>\n \n </form>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoServiceRequestPage($event)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"addRemissionCode()\" class=\"govuk-button\"> Continue</button>\n </div>\n <p><a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">Cancel</a></p>\n </div>\n </form>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'processretroremissonpage'\" >\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PROCESSRETROREMISSIONPAGE'> \n <h1 class=\"heading-large\">Process remission</h1>\n <h1 class=\"heading-medium\">#{{ccdCaseNumber | ccdHyphens }}</h1>\n <div class=\"govuk-form-group\">\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\"> \n <h1 *ngIf=\"remessionPayment?.status === 'Success' || isFromRefundListPage\" class=\"heading-medium\">\n Enter the amount to be refunded\n </h1> \n <h1 *ngIf=\"remessionPayment?.status !== 'Success' && !isFromRefundListPage\" class=\"heading-medium\">\n Enter the remission amount\n </h1> \n <h1 *ngIf=\"remessionPayment?.status === 'undefined'\" class=\"heading-medium\">\n Enter the amount\n </h1> \n </legend>\n <div id=\"amount-currency\" class=\"govuk-visually-hidden\">in pounds</div>\n <p class=\"inline-error-message\" *ngIf=\"isAmountEmpty || amountHasError || isRemissionLessThanFeeError\">\n <span *ngIf=\"isAmountEmpty\">Enter a amount</span>\n <span *ngIf=\"amountHasError\">Enter a vaild amount</span>\n <span *ngIf=\"isRemissionLessThanFeeError\">You cannot add a remission that's more than the fee amount.</span>\n </p>\n <div class=\"hmcts-currency-input\">\n \n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isAmountEmpty || amountHasError || isRemissionLessThanFeeError}\" id=\"amount\" aria-label=\"amount\" name=\"amount\" type=\"number\" aria-describedby=\"amount-currency\" formControlName=\"amount\">\n \n \n </div>\n </fieldset>\n </form>\n \n <div class=\"govuk-button-group\">\n <button (click)=\"gotoAddRetroRemissionCodePage()\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"gotoCheckRetroRemissionPage(payment)\" class=\"govuk-button\"> Continue</button>\n \n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">Cancel</a>\n </p>\n </div>\n \n </form>\n </div>\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'checkretroremissionpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CHECKRETROREMISSIONCONFIRMATION'> \n <div class=\"govuk-warning-text\">\n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.reference: ' '}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">\u00A3{{ remessionPayment ? getFormattedCurrency(remessionPayment.amount): ' ' | currency :'GBP':'symbol':'1.2-2'}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment status</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.status: ''}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee</td>\n <td class=\"govuk-table__cell\">{{ fee.code }} - {{ fee.description }} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee amount</td>\n <td class=\"govuk-table__cell\">{{ fee.calculated_amount/fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Help with fees or remission reference</td>\n <td class=\"govuk-table__cell\"> {{ remissionForm.controls.remissionCode.value }}\n <a (click)=\"gotoProcessRetroRemissionPage()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td *ngIf=\"remessionPayment.status === 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td *ngIf=\"remessionPayment.status !== 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission amount</td>\n <td class=\"govuk-table__cell\">{{remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}\n <a (click)=\"gotoAmountRetroRemission()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoAmountRetroRemission()\">Previous</button>\n <button type=\"submit\" [disabled]=\"isConfirmationBtnDisabled\" [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"confirmRetroRemission()\"> Add remission </button>\n <p> <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\"> Cancel</a> </p>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'retroremissionconfirmationpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONCONFIRMATIONPAGE'> \n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel-border--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Remission added\n </h1>\n <div *ngIf=\"remessionPayment.status === 'Success'\" class=\"govuk-panel__body\">\n <p class=\"govuk-body\"><strong>The amount to be refunded should be {{remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}</strong></p>\n \n </div>\n </div>\n <div *ngIf=\"remessionPayment.status === 'Success'\" >\n <button type=\"submit\" [disabled]=\"!isRemissionApplied\" [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"gotoProcessRetroRemission()\">Continue </button>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n</ng-container>\n\n\n<ng-container *ngIf=\"viewStatus === 'remissionAddressPage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDRESSDETAILSRETROREMISSIONPAGE'> \n <h1 class=\"govuk-heading-l\">Process refund</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <ccpay-contact-details\n [addressObj] = notification\n (assignContactDetails)=\"getContactDetails($event, 'checkaddRefundpage')\"\n (redirectToIssueRefund)=\"gotoRemissionSuccess($event)\" ></ccpay-contact-details>\n <p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'checkaddRefundpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CHECKRETROREMISSIONCONFIRMATION'> \n <div class=\"govuk-warning-text\">\n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.reference: ' '}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">\u00A3{{ remessionPayment ? getFormattedCurrency(remessionPayment.amount): ' ' | currency :'GBP':'symbol':'1.2-2'}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment status</td>\n <td class=\"govuk-table__cell\">{{remessionPayment ? remessionPayment.status: ''}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee</td>\n <td class=\"govuk-table__cell\">{{ fee.code }} - {{ fee.description }} ({{ fee.calculated_amount/fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}) </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Help with fees or remission reference</td>\n <td class=\"govuk-table__cell\"> {{ remissionForm.controls.remissionCode.value }}\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td *ngIf=\"remessionPayment.status === 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td *ngIf=\"remessionPayment.status !== 'Success'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission amount</td>\n <td class=\"govuk-table__cell\">{{remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"contactDetailsObj?.notification_type === 'EMAIL'\" class=\"contactDetails-width\">\n <strong>Email</strong>\n <br/>\n {{contactDetailsObj?.email}}\n </div>\n <div *ngIf=\"contactDetailsObj?.notification_type === 'LETTER'\" class=\"contactDetails-width\">\n <strong>Post</strong>\n <br/>\n {{contactDetailsObj?.address_line}} {{contactDetailsObj?.city}} {{contactDetailsObj?.county}} {{contactDetailsObj?.country}} {{contactDetailsObj?.postal_code}}\n </div>\n <a (click)=\"gotoProcessRetroRemission(contactDetailsObj)\" class=\"govuk-link right margin-top--size\" >Change</a>\n </td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoProcessRetroRemission(contactDetailsObj)\">Previous</button>\n <button type=\"submit\" [disabled]=\"isConfirmationBtnDisabled\" [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"processRefund()\"> Submit refund </button>\n <p> <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\"> Cancel</a> </p>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'refundconfirmationpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONREFUNDCONFIRMATIONPAGE'> \n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n \n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n \n </div>\n <div *ngIf=\"isPaymentSuccess\">\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount | currency:'GBP':'symbol-narrow':'1.2-2' }} has been created and will be passed to a team leader to approve.\n </p>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n \n</ng-container>\n\n<!-- Issue Refund Section -->\n<ng-container *ngIf=\"viewCompStatus === 'issuerefund' && isRefundRemission\">\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <h1 class=\"heading-large\">Issue refund</h1>\n <h2 class=\"heading-medium\">Case reference:#{{ccdCaseNumber | ccdHyphens }}</h2>\n <span id=\"how-contacted-conditional-hint\" class=\"form-hint govuk-font19px\">\n Payment reference: {{paymentReference}}\n </span>\n <h3 class=\"heading-small\">Select fees to be refunded</h3>\n <!--TABLE-->\n <div>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-1\" scope=\"col\">Select</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Fee description</td>\n <td class=\"govuk-table__header col-6\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header col-6\" scope=\"col\">Total paid</td>\n <td class=\"govuk-table__header col-6\" scope=\"col\">Quantity</td>\n <td class=\"govuk-table__header col-8\" scope=\"col\">Amount to refund</td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"!isFullyRefund\">\n <tr class=\"govuk-table__row\" formArrayName=\"feesList\" *ngFor=\"let fee of feesList?.controls; let i = index\">\n <td class=\"govuk-table__cell\">\n <div [formGroupName]=\"i\" class=\"govuk-checkboxes govuk-checkboxes--large\" data-module=\"govuk-checkboxes\">\n <div class=\"govuk-checkboxes__item\">\n\n <input\n class=\"govuk-checkboxes__input\" \n (click)=\"check_en(i,fee.controls['id'].value,fee.controls['apportion_amount'].value,fee.controls['volume'].value)\" \n id=\"{{fee.controls['id'].value}}\" \n name=\"organisation\" \n type=\"checkbox\" \n value=\"{{fee.controls['id'].value}}\" \n formControlName=\"selected\" >\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"{{fee.controls['id'].value}}\">\n <span style=\"display:none\">Select</span>\n </label>\n </div>\n </div>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{fee.controls['description'].value}} </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" >\n <div type=\"hidden\" style=\"display:none;background-color:white;\" id=\"feeVOl_{{fee.controls['id'].value}}\">{{ fee.controls['calculated_amount'].value / fee.controls['volume'].value }}</div>\n {{ fee.controls['calculated_amount'].value / fee.controls['volume'].value | currency:'GBP':'symbol-narrow':'1.2-2' }}\n </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" >{{ fee.controls['apportion_amount'].value | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" *ngIf=\"fee.controls['volume'].value >1\">\n <div [formGroupName]=\"i\">\n <input disabled=\"disabled\" class=\"govuk-input govuk-input--width-4 center\" id=\"feeVolumeUpdated_{{fee.controls['id'].value}}\" (keyup)=\"calAmtToRefund($event.target.value,fee.controls['calculated_amount'].value,fee.controls['volume'].value,i)\" value=\"{{fee.controls['updated_volume'].value}}\" name=\"feeVolumeUpdated_{{fee.controls['id'].value}}\" formControlName=\"updated_volume\" type=\"text\" >\n </div>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" *ngIf=\"fee.controls['volume'].value ===1\">\n <input disabled=\"disabled\" class=\"govuk-input govuk-input--width-4 center\" id=\"VolumeUpdated_{{fee.controls['id'].value}}\" name=\"VolumeUpdated_{{fee.controls['id'].value}}\" type=\"text\" value=\"{{fee.controls['volume'].value}}\">\n </td>\n <td class=\"govuk-table__cell whitespace-inherit center\" scope=\"row\">\n \n <div [formGroupName]=\"i\" class=\"hmcts-currency-input\">\n \n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input disabled=\"disabled\" class=\"govuk-input govuk-input--width-10\" id=\"feeAmount_{{fee.controls['id'].value}}\" name=\"feeAmount_{{fee.controls['id'].value}}\" type=\"text\" aria-describedby=\"amount-currency \" pattern=\"[0-9]*\" formControlName=\"refund_amount\">\n <input id=\"feeVolume_{{fee.controls['id'].value}}\" name=\"feeVolume_{{fee.controls['id'].value}}\" value= \"{{fee.controls['volume'].value}}\" type=\"hidden\" formControlName=\"volume\">\n <input id=\"feeApportionAmount_{{fee.controls['id'].value}}\" name=\"feeApportionAmount_{{fee.controls['id'].value}}\" value= \"{{fee.controls['apportion_amount'].value}}\" type=\"hidden\" formControlName=\"apportion_amount\">\n <input id=\"calculatedAmount_{{fee.controls['id'].value}}\" name=\"calculatedAmount_{{fee.controls['id'].value}}\" value= \"{{fee.controls['calculated_amount'].value}}\" type=\"hidden\" formControlName=\"calculated_amount\">\n </div> \n \n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"isFullyRefund\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of fees; let i = index\">\n <td class=\"govuk-table__cell\">\n <div class=\"govuk-checkboxes govuk-checkboxes--large\" data-module=\"govuk-checkboxes\">\n <div class=\"govuk-checkboxes__item\">\n <input \n class=\"govuk-checkboxes__input\" \n \n id=\"{{fee.id}}\" \n name=\"organisation\" \n type=\"checkbox\" \n value=\"{{fee.id}}\"\n disabled=\"disabled\"\n [checked]=\"true\" >\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"{{fee.id}}\">\n <span style=\"display:none\">Select</span>\n </label>\n </div>\n </div>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{fee.description}} </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" >\n <div type=\"hidden\" style=\"display:none;background-color:white;\" id=\"feeVOl_{{fee.id}}\">{{ fee.calculated_amount / fee.volume }}</div>\n {{ fee.calculated_amount / fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}\n </td>\n <td class=\"govuk-table__cell whitespace-inherit left\" >{{ payment.amount | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell whitespace-inherit left\">\n <div >\n <input disabled=\"disabled\" class=\"govuk-input govuk-input--width-4 center\" id=\"feeVolumeUpdated_{{fee.id}}\" value=\"{{fee.volume}}\" name=\"feeVolumeUpdated_{{fee.id}}\" type=\"text\" >\n </div>\n </td>\n \n <td class=\"govuk-table__cell whitespace-inherit center\" scope=\"row\">\n \n <div class=\"hmcts-currency-input\">\n \n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">\u00A3</div>\n <input disabled=\"disabled\" class=\"govuk-input govuk-input--width-10\" id=\"feeAmount_{{fee.id}}\" name=\"feeAmount_{{fee.id}}\" type=\"text\" aria-describedby=\"amount-currency \" value=\"{{ payment.amount | currency:'GBP':'symbol-narrow':'1.2-2'}}\" pattern=\"[0-9]*\" >\n </div> \n \n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"fees?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No fees recorded</td>\n </tbody>\n </table>\n </div>\n <div class=\"govuk-button-group\">\n\n \n <a (click)=\"gotoServiceRequestPage($event)\" *ngIf=\"!isFullyRefund\" draggable=\"false\" class=\"govuk-button govuk-button--secondary\" data-module=\"govuk-button\">\n Previous\n </a>\n <a (click)=\"goToPaymentViewComponent()\" *ngIf=\"isFullyRefund\" draggable=\"false\" class=\"govuk-button govuk-button--secondary\" data-module=\"govuk-button\">\n Previous\n </a>\n \n <button [disabled] = \"noneSelected()\" (click)=\"gotoIssuePage(isFullyRefund)\" class=\"govuk-button\">\n Continue\n </button>\n \n </div>\n <p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">Cancel</a>\n </p>\n </form>\n </div>\n</ng-container>\n\n<ng-container *ngIf=\"viewCompStatus === 'issuerefundpage1' && isRefundRemission\">\n\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ISSUEREFUNDPAGE'> \n <h1 class=\"heading-large\">Process refund</h1>\n <h1 class=\"heading-medium\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h1>\n <span id=\"how-contacted-conditional-hint govuk-font19px\" *ngIf=\"payment\" class=\"form-hint\">\n Payment reference: {{paymentReference}}\n </span>\n <span id=\"how-contacted-conditional-hint govuk-font19px\" *ngIf=\"refundPaymentReference\" class=\"form-hint\">\n Payment reference: {{refundPaymentReference}}\n </span>\n <h1 class=\"heading-large\">Why are you making this refund?\n </h1>\n \n\n <div class=\"govuk-form-group\">\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"how-contacted-conditional-hint\">\n \n <div\n [ngClass]=\"refundHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\"\n data-module=\"govuk-radios\" >\n <p class=\"inline-error-message\" *ngIf=\"refundHasError\">\n <span *ngIf=\"refundHasError\">Select a reason why you\u2019re making this refund</span>\n </p>\n\n \n\n <div class = \"container-fluid\">\n <div class=\"row\">\n <div class=\"govuk-radios__item col-md-4\" *ngFor=\"let refund of commonRefundReasons; let i = index;\">\n <!-- <div *ngIf = \"{{refund.name}} !== 'Retrospective remission'\"> -->\n <input class=\"govuk-radios__input\" id=\"{{refund.name}}\" name=\"refundReason\" type=\"radio\"\n formControlName=\"refundReason\" value={{refund.code}}\n (change)=\"selectRadioButton(refund.name, refund.name)\">\n <label class=\"govuk-label--s govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{refund.name}}\n </label>\n\n <div class=\"govuk-radios__conditional\" *ngIf=\"isRefundReasonsSelected && showReasonText && selectedRefundReason === refund.name \" >\n <label class=\"govuk-label govuk-label--m\" for=\"{{refund.name}}\">\n Enter reason\n </label>\n <div [ngClass]=\"{'form-group-error': isReasonEmpty}\">\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty\">\n <span *ngIf=\"isReasonEmpty\">Enter a reason why you\u2019re making this refund</span>\n </p>\n \n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isReasonEmpty}\" id=\"reason\" aria-label=\"reason\" name=\"reason\" type=\"text\" aria-describedby=\"reason\" maxlength=\"30\" formControlName=\"reason\">\n </div>\n </div>\n <!-- </div> -->\n </div>\n </div>\n </div>\n <br/>\n <div>\n <select formControlName=\"refundDDReason\" class=\"govuk-select\" id=\"sort\" (change)=\"selectchange($event)\">\n <option selected='selected' [defaultSelected]=true [value]=\"default\" >{{default}}</option> \n <!-- <option value=\"\" selected='selected'>Select a different reason</option> -->\n <option *ngFor=\"let refund of refundReasons;\" id=\"{{refund.name}}\" value=\"{{refund.code}}\">{{refund.name}}</option>\n </select>\n \n </div>\n <br/>\n <div class=\"govuk-radios__conditional\" *ngIf=\"showReasonText && !isRefundReasonsSelected\" >\n <div [ngClass]=\"{'form-group-error': isReasonEmpty}\">\n <label class=\"govuk-label govuk-label--m\" for=\"amount\">\n Enter reason\n </label>\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty\">\n <span *ngIf=\"isReasonEmpty\">Enter a reason why you\u2019re making this refund</span>\n </p>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isReasonEmpty}\" id=\"reason\" aria-label=\"reason\" name=\"reason\" type=\"text\" aria-describedby=\"reason\" maxlength=\"{{reasonLength}}\" formControlName=\"reason\">\n </div>\n </div>\n\n \n </div>\n </fieldset>\n </form>\n </div>\n </form>\n </div>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoPartialFeeRefundScreen()\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"gotoIssueRefundConfirmation(payment)\" class=\"govuk-button\"> Continue</button>\n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n \n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'contactDetailsPage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CAPTUREADDRESSDETAILSPAGE'> \n <h1 class=\"govuk-heading-l\">Process refund</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint govuk-font19px\">\n Payment reference: {{paymentReference}}\n </span>\n <ccpay-contact-details\n [addressObj] = notification\n (assignContactDetails)=\"getContactDetails($event, 'checkissuerefundpage')\"\n (redirectToIssueRefund)=\"gotoRefundReasonPage()\" ></ccpay-contact-details>\n <p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'checkissuerefundpage'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CHECKISSUEREFUNDPAGE'> \n <div class=\"govuk-warning-text\">\n \n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n \n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{paymentReference}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">{{payment.amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr>\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> {{ displayRefundReason }} \n <a (click)=\"changeIssueRefundReason()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"!isFullyRefund\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{totalRefundAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}\n <a (click)=\"changeRefundAmount()\" class=\"govuk-link right\" >Change</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"isFullyRefund\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{payment.amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"contactDetailsObj?.notification_type === 'EMAIL'\" class=\"contactDetails-width\">\n <strong>Email</strong>\n <br/>\n {{contactDetailsObj?.email}}\n </div>\n <div *ngIf=\"contactDetailsObj?.notification_type === 'LETTER'\" class=\"contactDetails-width\">\n <strong>Post</strong>\n <br/>\n {{contactDetailsObj?.address_line}} {{contactDetailsObj?.city}} {{contactDetailsObj?.county}} {{contactDetailsObj?.country}} {{contactDetailsObj?.postal_code}}\n </div>\n <a (click)=\"gotoContactDetailsPage(contactDetailsObj)\" class=\"govuk-link right margin-top--size\" >Change</a>\n </td>\n </tr>\n </table>\n <div class=\"govuk-button-group\">\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoContactDetailsPage(contactDetailsObj)\"> Previous </button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"confirmIssueRefund(isFullyRefund)\">\n Submit refund\n </button>\n </div>\n <p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n\n<!--Retro Refund-->\n<ng-container *ngIf=\"viewCompStatus === 'addrefundforremission'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDRESSDETAILSRETROREMISSIONPAGE'> \n <h1 class=\"govuk-heading-l\">Process refund</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint govuk-font19px\">\n Payment reference: {{paymentReference}}\n </span>\n<ccpay-contact-details \n[addressObj] = notification\n(assignContactDetails)=\"getContactDetails($event, 'addrefundcheckandanswer')\"\n(redirectToIssueRefund)=\"gotoServiceRequestPage($event)\" ></ccpay-contact-details>\n<p>\n <a (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n</p>\n</ng-container>\n<ng-container *ngIf=\"viewStatus === 'addrefundcheckandanswer'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREFUNDFORREMISSION'> \n <div class=\"govuk-warning-text\">\n \n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> Retrospective remission </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{paymentReference}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{remission.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee code</td>\n <td class=\"govuk-table__cell\">{{remission.fee_code}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee amount</td>\n <td class=\"govuk-table__cell\">{{feeamount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"contactDetailsObj?.notification_type === 'EMAIL'\" class=\"contactDetails-width\">\n <strong>Email</strong>\n <br/>\n {{contactDetailsObj?.email}}\n </div>\n <div *ngIf=\"contactDetailsObj?.notification_type === 'LETTER'\" class=\"contactDetails-width\">\n <strong>Post</strong>\n <br/>\n {{contactDetailsObj?.address_line}} {{contactDetailsObj?.city}} {{contactDetailsObj?.county}} {{contactDetailsObj?.country}} {{contactDetailsObj?.postal_code}}\n </div>\n <a (click)=\"gotoAddressPage(contactDetailsObj)\" class=\"govuk-link right margin-top--size\" >Change</a>\n </td>\n </table>\n <div class=\"govuk-button-group\">\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"gotoAddressPage(contactDetailsObj)\">Previous</button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"processRefund()\">\n Submit refund\n </button>\n </div>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'retrorefundconfirmationpage'\">\n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n \n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n \n </div>\n <div *ngIf=\"isPaymentSuccess\">\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{ refundAmount| currency:'GBP':'symbol-narrow':'1.2-2'}} has been passed to a team leader to approve.\n </p>\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"gotoCasetransationPageCancelBtnClicked($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <ccpay-service-request\n [viewStatus] = \"viewStatus\"\n [orderRef] = \"orderRef\"\n [isServiceRequest]=\"isServiceRequest\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [takePayment] = \"takePayment\"\n [ccdCaseNumber] = \"ccdCaseNumber\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\">\n</ccpay-service-request>\n</ng-container>\n\n<ng-container *ngIf=\"viewStatus === 'payment-view'\">\n <ccpay-payment-view \n [LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n [isTurnOff] = \"isTurnOff\" \n [isTakePayment] = \"takePayment\" \n [caseType] = \"caseType\"\n [isOldPcipalOff] = \"isOldPcipalOff\"\n [isNewPcipalOff] = \"isNewPcipalOff\"\n [isServiceRequest]=\"isServiceRequest\"\n [orderRef] = \"orderRef\"\n [orderStatus] = \"orderStatus\"\n [orderCreated] = \"orderCreated\"\n [orderParty] = \"orderParty\"\n [orderCCDEvent] = \"orderCCDEvent\"\n [orderDetail] = \"orderDetail\"\n [orderFeesTotal] = \"orderFeesTotal\"\n [orderTotalPayments] = \"orderTotalPayments\"\n [orderRemissionTotal] = \"orderRemissionTotal\"\n >\n</ccpay-payment-view>\n</ng-container>\n\n</div>",
|
|
8726
|
+
styles: [".add-remission .button{padding:.5em;font-size:19px;font-weight:200;margin:20px 2px}.add-remission td.govuk-table__cell{width:50%}.add-remission .govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:.5em}.add-remission .govuk-label--s,.add-remission .govuk-warning-text__text,.add-remission .hmcts-currency-input__symbol{font-size:19px;font-weight:400}.add-remission .inline-error-class{outline:#a71414 solid 3px;outline-offset:0;border-color:#a71414}.add-remission .inline-error-message{color:#a71414;border-color:#a71414;font-weight:700;margin-top:10px;font-size:20px}.add-remission .govuk-button,.add-remission .govuk-link{margin-right:1em;font-size:19px;font-weight:200}.add-remission .govuk-button-group{padding-top:2em}.add-remission .heading-medium{margin-top:.875em}.add-remission .heading-large{margin-top:.25em}.add-remission .govuk-panel--confirmation{color:#fff;background:#00703c}.add-remission .govuk-panel__title{font-size:5rem}.add-remission .govuk-body,.add-remission .govuk-body-m{font-size:2.1875rem}.add-remission .govuk-radios__item{clear:initial!important;display:inline-block;width:45%!important}.add-remission .govuk-radios__conditional{padding-top:12px!important}.add-remission .right{float:right;cursor:pointer}.add-remission .radio{float:right}.govuk-font19px,.govuk-input{font-size:19px}.govuk-select{font-size:19px;font-weight:400}.govuk-input--width-10{max-width:50ex}.govuk-label--m{font-size:19px;font-weight:400}.govuk-error-summary__body{font-size:19px!important}.govuk-error-summary__title{font-size:24px!important}.white{color:#fff}.pagesize{margin:2em;width:97%}.pointer{cursor:pointer}.col-18{min-width:18em}.col-6{min-width:6em}.col-8{min-width:8em}.col-1{min-width:1em}.col-25{width:25%!important}.col-24{width:24%!important}.left{text-align:left}.center{text-align:center}.col-60{width:60%;text-align:left}.margin-top--size{margin-top:-30px}.contactDetails-width{width:70%}.right{cursor:pointer}.form-hint{font-size:19px!important}.govuk-panel-border--confirmation{color:#0b0c0c;border:5px solid #00703c}"]
|
|
7497
8727
|
}] }
|
|
7498
8728
|
];
|
|
7499
8729
|
/** @nocollapse */
|
|
@@ -7510,6 +8740,7 @@
|
|
|
7510
8740
|
};
|
|
7511
8741
|
AddRemissionComponent.propDecorators = {
|
|
7512
8742
|
fee: [{ type: i0.Input }],
|
|
8743
|
+
fees: [{ type: i0.Input }],
|
|
7513
8744
|
payment: [{ type: i0.Input }],
|
|
7514
8745
|
remission: [{ type: i0.Input }],
|
|
7515
8746
|
ccdCaseNumber: [{ type: i0.Input }],
|
|
@@ -7518,12 +8749,19 @@
|
|
|
7518
8749
|
paymentGroupRef: [{ type: i0.Input }],
|
|
7519
8750
|
isTurnOff: [{ type: i0.Input }],
|
|
7520
8751
|
isRefundRemission: [{ type: i0.Input }],
|
|
8752
|
+
isOldPcipalOff: [{ type: i0.Input }],
|
|
8753
|
+
isNewPcipalOff: [{ type: i0.Input }],
|
|
7521
8754
|
isStrategicFixEnable: [{ type: i0.Input }],
|
|
7522
8755
|
paidAmount: [{ type: i0.Input }],
|
|
7523
8756
|
isFromRefundListPage: [{ type: i0.Input }],
|
|
7524
8757
|
isFromPaymentDetailPage: [{ type: i0.Input }],
|
|
7525
8758
|
isFromServiceRequestPage: [{ type: i0.Input }],
|
|
8759
|
+
isFullyRefund: [{ type: i0.Input, args: ['isFullyRefund',] }],
|
|
7526
8760
|
feeamount: [{ type: i0.Input }],
|
|
8761
|
+
refundPaymentReference: [{ type: i0.Input }],
|
|
8762
|
+
isFromRefundStatusPage: [{ type: i0.Input }],
|
|
8763
|
+
changeRefundReason: [{ type: i0.Input }],
|
|
8764
|
+
isServiceRequest: [{ type: i0.Input, args: ["isServiceRequest",] }],
|
|
7527
8765
|
LOGGEDINUSERROLES: [{ type: i0.Input, args: ['LOGGEDINUSERROLES',] }],
|
|
7528
8766
|
orderDetail: [{ type: i0.Input, args: ['orderDetail',] }],
|
|
7529
8767
|
orderRef: [{ type: i0.Input, args: ['orderRef',] }],
|
|
@@ -7537,7 +8775,8 @@
|
|
|
7537
8775
|
orderRemissionTotal: [{ type: i0.Input, args: ['orderRemissionTotal',] }],
|
|
7538
8776
|
cancelRemission: [{ type: i0.Output }],
|
|
7539
8777
|
refundListReason: [{ type: i0.Output }],
|
|
7540
|
-
refundListAmount: [{ type: i0.Output }]
|
|
8778
|
+
refundListAmount: [{ type: i0.Output }],
|
|
8779
|
+
refundFees: [{ type: i0.Output }]
|
|
7541
8780
|
};
|
|
7542
8781
|
return AddRemissionComponent;
|
|
7543
8782
|
}());
|
|
@@ -8273,12 +9512,26 @@
|
|
|
8273
9512
|
return (r[user_full_name] = '', r);
|
|
8274
9513
|
}), {});
|
|
8275
9514
|
this.userLst = Object.keys(this.userLst);
|
|
9515
|
+
this.userLst.sort(( /**
|
|
9516
|
+
* @param {?} a
|
|
9517
|
+
* @param {?} b
|
|
9518
|
+
* @return {?}
|
|
9519
|
+
*/function (a, b) { return a.toString().localeCompare(b); }));
|
|
9520
|
+
this.serviceLst = this.refundList.reduce(( /**
|
|
9521
|
+
* @param {?} r
|
|
9522
|
+
* @param {?} __1
|
|
9523
|
+
* @return {?}
|
|
9524
|
+
*/function (r, _a) {
|
|
9525
|
+
var service_type = _a.service_type;
|
|
9526
|
+
return (r[service_type] = '', r);
|
|
9527
|
+
}), {});
|
|
9528
|
+
this.serviceLst = Object.keys(this.serviceLst);
|
|
9529
|
+
this.serviceLst.sort(( /**
|
|
9530
|
+
* @param {?} a
|
|
9531
|
+
* @param {?} b
|
|
9532
|
+
* @return {?}
|
|
9533
|
+
*/function (a, b) { return a.toString().localeCompare(b); }));
|
|
8276
9534
|
}
|
|
8277
|
-
this.userLst.sort(( /**
|
|
8278
|
-
* @param {?} a
|
|
8279
|
-
* @param {?} b
|
|
8280
|
-
* @return {?}
|
|
8281
|
-
*/function (a, b) { return a.toString().localeCompare(b); }));
|
|
8282
9535
|
};
|
|
8283
9536
|
/**
|
|
8284
9537
|
* Set the paginator and sort after the view init since this component will
|
|
@@ -8378,8 +9631,8 @@
|
|
|
8378
9631
|
TableComponent.decorators = [
|
|
8379
9632
|
{ type: i0.Component, args: [{
|
|
8380
9633
|
selector: 'ccpay-table',
|
|
8381
|
-
template: "<div class=\"add-remission\">\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n<div *ngIf=\"dataSource.data.length > 0\" class=\"govuk-form-group\"
|
|
8382
|
-
styles: [".mat-header-row{min-height:27px}.mat-cell{padding:0 10px 0 0;text-align:left;word-wrap:break-word;white-space:inherit!important;font-size:19px;line-height:25px;font-family:nta,Arial,sans-serif;font-weight:400}.mat-table{color:#0b0c0c;display:table;font-family:nta,Arial,sans-serif;-webkit-font-smoothing:antialiased;margin-bottom:1px;box-sizing:border-box;text-indent:initial;border-spacing:0;border-collapse:collapse;font-size:1.1875rem;line-height:1.31578947;table-layout:fixed;width:102%}.mat-header-cell{text-align:left;font-weight:700;padding:10px 10px 10px 0;word-wrap:break-word;font-size:19px;line-height:25px;color:#0b0c0c;cursor:pointer;font-family:inherit}.dropdpwn{display:inline-block;margin-right:10px;font-size:19px}.mat-column-ccdCaseNumber{flex:3em}.mat-column-refundReference{flex:6em}.mat-column-reason{flex:2em}.govuk-select{font-size:19px;font-weight:400}.govuk-error-summary__title{font-size:24px!important}"]
|
|
9634
|
+
template: "<div class=\"add-remission\">\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n \n\n<div *ngIf=\"dataSource.data.length > 0\" class=\"govuk-form-group float-right\">\n <label class=\"govuk-label dropdpwn\" for=\"sort\" >\n Filter by caseworker:\n </label>\n <select class=\"govuk-select\" id=\"sort\" name=\"sort\" (change)=\"selectchange($event)\">\n <option value=\"\" selected='selected'>All caseworkers</option>\n <option *ngFor=\"let name of userLst;\" value=\"{{name}}\">{{name}}</option>\n </select>\n</div>\n\n <div *ngIf=\"dataSource.data.length > 0\" class=\"govuk-form-group float-right-padding\">\n <label class=\"govuk-label dropdpwn\" for=\"sort\" >\n Filter by service:\n </label>\n <select class=\"govuk-select\" id=\"sort\" name=\"sort\" (change)=\"selectchange($event)\">\n <option value=\"\" selected='selected'>All services</option>\n <option *ngFor=\"let name of serviceLst;\" value=\"{{name}}\">{{name}}</option>\n </select>\n </div>\n\n <div *ngIf=\"dataSource.data.length > 0\" class=\"govuk-form-group float-left-padding\">\n <label class=\"govuk-label dropdpwn\" for=\"sort\" >\n Filter by service:\n </label>\n <select class=\"govuk-select\" id=\"sort\" name=\"sort\" (change)=\"selectchange($event)\">\n <option value=\"\" selected='selected'>All services</option>\n <option *ngFor=\"let name of serviceLst;\" value=\"{{name}}\">{{name}}</option>\n </select>\n </div>\n \n<div *ngIf=\"dataSource.data.length > 0\" class=\"example-container\">\n\n <mat-table [dataSource]=\"dataSource\" matSort>\n\n <ng-container matColumnDef=\"ccd_case_number\">\n <mat-header-cell *matHeaderCellDef >Case reference </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" class=\"whitespace-inherit\"> {{row.ccd_case_number | ccdHyphens }} </mat-cell>\n </ng-container>\n\n <ng-container matColumnDef=\"refund_reference\">\n <mat-header-cell *matHeaderCellDef > Refund reference </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" class=\"whitespace-inherit\"> {{row.refund_reference}} </mat-cell>\n </ng-container>\n\n <ng-container matColumnDef=\"user_full_name\">\n <mat-header-cell *matHeaderCellDef > Submitted by </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" [style.color]=\"row.color\" class=\"whitespace-inherit\"> {{row.user_full_name }} </mat-cell>\n </ng-container>\n\n <ng-container matColumnDef=\"date_created\">\n <mat-header-cell *matHeaderCellDef mat-sort-header> Date created </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" class=\"whitespace-inherit\"> {{row.date_created | date:'d MMMM yyyy'}} </mat-cell>\n </ng-container>\n\n <ng-container matColumnDef=\"date_updated\">\n <mat-header-cell *matHeaderCellDef mat-sort-header> Last updated</mat-header-cell>\n <mat-cell *matCellDef=\"let row\" [style.color]=\"row.color\" class=\"whitespace-inherit\"> {{row.date_updated | date:'d MMMM yyyy'}} </mat-cell>\n </ng-container>\n\n <ng-container *ngIf=\"isApprovalFlow\" matColumnDef=\"Action\">\n <mat-header-cell *matHeaderCellDef> Action </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" [style.color]=\"row.color\" > <a href=\"javascript:void(0)\" (click)=\"goToCaseReview(row.ccd_case_number, row)\">Review case</a> <a href=\"javascript:void(0)\" (click)=\"goToRefundProcessComponent(row.refund_reference, row)\">Process refund</a></mat-cell>\n </ng-container>\n \n <ng-container *ngIf=\"!isApprovalFlow\" matColumnDef=\"Action\">\n <mat-header-cell *matHeaderCellDef > Action </mat-header-cell>\n <mat-cell *matCellDef=\"let row\" [style.color]=\"row.color\"> <a href=\"javascript:void(0)\" (click)=\"goToRefundViewComponent(row.refund_reference, row)\">Review refund</a></mat-cell>\n </ng-container>\n\n <mat-header-row *matHeaderRowDef=\"displayedColumns\"></mat-header-row>\n <mat-row *matRowDef=\"let row; columns: displayedColumns;\">\n </mat-row>\n </mat-table>\n <mat-paginator [pageSizeOptions]=\"[5, 10, 25, 100]\"></mat-paginator>\n</div>\n\n<div class=\"govuk-label dropdpwn\" *ngIf=\"dataSource.data.length === 0\">No records to display</div>\n",
|
|
9635
|
+
styles: [".mat-header-row{min-height:27px}.mat-cell{padding:0 10px 0 0;text-align:left;word-wrap:break-word;white-space:inherit!important;font-size:19px;line-height:25px;font-family:nta,Arial,sans-serif;font-weight:400}.mat-table{color:#0b0c0c;display:table;font-family:nta,Arial,sans-serif;-webkit-font-smoothing:antialiased;margin-bottom:1px;box-sizing:border-box;text-indent:initial;border-spacing:0;border-collapse:collapse;font-size:1.1875rem;line-height:1.31578947;table-layout:fixed;width:102%}.mat-header-cell{text-align:left;font-weight:700;padding:10px 10px 10px 0;word-wrap:break-word;font-size:19px;line-height:25px;color:#0b0c0c;cursor:pointer;font-family:inherit}.dropdpwn{display:inline-block;margin-right:10px;font-size:19px}.mat-column-ccdCaseNumber{flex:3em}.mat-column-refundReference{flex:6em}.mat-column-reason{flex:2em}.govuk-select{font-size:19px;font-weight:400}.govuk-error-summary__title{font-size:24px!important}.float-right{float:right}.float-right-padding{float:right;padding-right:2em}.float-left-padding{padding-left:12em}"]
|
|
8383
9636
|
}] }
|
|
8384
9637
|
];
|
|
8385
9638
|
/** @nocollapse */
|
|
@@ -8402,14 +9655,32 @@
|
|
|
8402
9655
|
return TableComponent;
|
|
8403
9656
|
}());
|
|
8404
9657
|
|
|
9658
|
+
/**
|
|
9659
|
+
* @fileoverview added by tsickle
|
|
9660
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
9661
|
+
*/
|
|
9662
|
+
var IPutNotificationRequest = /** @class */ (function () {
|
|
9663
|
+
function IPutNotificationRequest(contactDetails, notificationType) {
|
|
9664
|
+
if (notificationType === 'EMAIL') {
|
|
9665
|
+
this.recipient_email_address = contactDetails;
|
|
9666
|
+
}
|
|
9667
|
+
else if (notificationType === 'LETTER') {
|
|
9668
|
+
this.recipient_postal_address = contactDetails;
|
|
9669
|
+
}
|
|
9670
|
+
}
|
|
9671
|
+
return IPutNotificationRequest;
|
|
9672
|
+
}());
|
|
9673
|
+
|
|
8405
9674
|
/**
|
|
8406
9675
|
* @fileoverview added by tsickle
|
|
8407
9676
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8408
9677
|
*/
|
|
8409
9678
|
var IResubmitRefundRequest = /** @class */ (function () {
|
|
8410
|
-
function IResubmitRefundRequest(refund_reason, amount) {
|
|
9679
|
+
function IResubmitRefundRequest(refund_reason, amount, contact_details, refund_fees) {
|
|
8411
9680
|
this.refund_reason = refund_reason;
|
|
8412
9681
|
this.amount = amount;
|
|
9682
|
+
this.contact_details = contact_details;
|
|
9683
|
+
this.refund_fees = refund_fees;
|
|
8413
9684
|
}
|
|
8414
9685
|
return IResubmitRefundRequest;
|
|
8415
9686
|
}());
|
|
@@ -8419,20 +9690,18 @@
|
|
|
8419
9690
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8420
9691
|
*/
|
|
8421
9692
|
var RefundStatusComponent = /** @class */ (function () {
|
|
8422
|
-
function RefundStatusComponent(formBuilder, refundService,
|
|
9693
|
+
function RefundStatusComponent(formBuilder, refundService, notificationService, paymentLibComponent, OrderslistService$$1, paymentViewService) {
|
|
8423
9694
|
var _this = this;
|
|
8424
9695
|
this.formBuilder = formBuilder;
|
|
8425
9696
|
this.refundService = refundService;
|
|
9697
|
+
this.notificationService = notificationService;
|
|
8426
9698
|
this.paymentLibComponent = paymentLibComponent;
|
|
8427
|
-
this.paymentViewService = paymentViewService;
|
|
8428
|
-
this.router = router$$1;
|
|
8429
9699
|
this.OrderslistService = OrderslistService$$1;
|
|
9700
|
+
this.paymentViewService = paymentViewService;
|
|
8430
9701
|
this.LOGGEDINUSERROLES = [];
|
|
8431
9702
|
this.rejectedRefundList = [];
|
|
8432
9703
|
this.approvalStatus = 'Sent for approval';
|
|
8433
9704
|
this.rejectStatus = 'Update required';
|
|
8434
|
-
// approvalStatus = 'sent for approval';
|
|
8435
|
-
// rejectStatus = 'sent back';
|
|
8436
9705
|
this.errorMessage = null;
|
|
8437
9706
|
this.refundButtonState = '';
|
|
8438
9707
|
this.isAmountEmpty = false;
|
|
@@ -8441,6 +9710,9 @@
|
|
|
8441
9710
|
this.isRemissionLessThanFeeError = false;
|
|
8442
9711
|
this.refundHasError = false;
|
|
8443
9712
|
this.refundReasons = [];
|
|
9713
|
+
this.isResendOperationSuccess = false;
|
|
9714
|
+
this.isEditDetailsClicked = false;
|
|
9715
|
+
this.isEditAddressDeatilsClicked = false;
|
|
8444
9716
|
this.isRefundBtnDisabled = true;
|
|
8445
9717
|
this.isLastUpdatedByCurrentUser = true;
|
|
8446
9718
|
this.isProcessRefund = false;
|
|
@@ -8464,13 +9736,9 @@
|
|
|
8464
9736
|
*/
|
|
8465
9737
|
function () {
|
|
8466
9738
|
var _this = this;
|
|
8467
|
-
// if (this.check4AllowedRoles2AccessRefund()) {
|
|
8468
9739
|
this.resetRemissionForm([false, false, false, false], 'All');
|
|
8469
9740
|
this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;
|
|
8470
9741
|
this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;
|
|
8471
|
-
// if(this.paymentLibComponent.isFromRefundStatusPage) {
|
|
8472
|
-
// this.viewName = 'reviewandsubmitview';
|
|
8473
|
-
// }
|
|
8474
9742
|
if (this.paymentLibComponent.isRefundStatusView) {
|
|
8475
9743
|
this.viewName = 'refundview';
|
|
8476
9744
|
this.OrderslistService.getRefundView().subscribe(( /**
|
|
@@ -8489,6 +9757,7 @@
|
|
|
8489
9757
|
* @return {?}
|
|
8490
9758
|
*/function (refundList) {
|
|
8491
9759
|
_this.rejectedRefundList = refundList['refund_list'];
|
|
9760
|
+
//this.refundFees = this.rejectedRefundList['refund_fees'];
|
|
8492
9761
|
})),
|
|
8493
9762
|
( /**
|
|
8494
9763
|
* @param {?} error
|
|
@@ -8506,6 +9775,7 @@
|
|
|
8506
9775
|
reason: new forms.FormControl()
|
|
8507
9776
|
});
|
|
8508
9777
|
if (this.refundlist !== undefined) {
|
|
9778
|
+
this.getRefundsNotification();
|
|
8509
9779
|
this.getRefundsStatusHistoryList();
|
|
8510
9780
|
if (this.LOGGEDINUSERROLES.some(( /**
|
|
8511
9781
|
* @param {?} i
|
|
@@ -8523,7 +9793,6 @@
|
|
|
8523
9793
|
this.refundButtonState = this.refundlist.refund_status.name;
|
|
8524
9794
|
}
|
|
8525
9795
|
}
|
|
8526
|
-
//}
|
|
8527
9796
|
};
|
|
8528
9797
|
/**
|
|
8529
9798
|
* @return {?}
|
|
@@ -8549,6 +9818,27 @@
|
|
|
8549
9818
|
});
|
|
8550
9819
|
}
|
|
8551
9820
|
};
|
|
9821
|
+
/**
|
|
9822
|
+
* @return {?}
|
|
9823
|
+
*/
|
|
9824
|
+
RefundStatusComponent.prototype.getRefundsNotification = /**
|
|
9825
|
+
* @return {?}
|
|
9826
|
+
*/
|
|
9827
|
+
function () {
|
|
9828
|
+
var _this = this;
|
|
9829
|
+
this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe(( /**
|
|
9830
|
+
* @param {?} refundsNotification
|
|
9831
|
+
* @return {?}
|
|
9832
|
+
*/function (refundsNotification) {
|
|
9833
|
+
_this.notificationList = refundsNotification['notifications'];
|
|
9834
|
+
})),
|
|
9835
|
+
( /**
|
|
9836
|
+
* @param {?} error
|
|
9837
|
+
* @return {?}
|
|
9838
|
+
*/function (error) {
|
|
9839
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
9840
|
+
});
|
|
9841
|
+
};
|
|
8552
9842
|
/**
|
|
8553
9843
|
* @param {?} refundlist
|
|
8554
9844
|
* @param {?} navigationpage
|
|
@@ -8636,18 +9926,21 @@
|
|
|
8636
9926
|
}));
|
|
8637
9927
|
};
|
|
8638
9928
|
/**
|
|
9929
|
+
* @param {?} refundReason
|
|
8639
9930
|
* @return {?}
|
|
8640
9931
|
*/
|
|
8641
9932
|
RefundStatusComponent.prototype.gotoRefundReasonPage = /**
|
|
9933
|
+
* @param {?} refundReason
|
|
8642
9934
|
* @return {?}
|
|
8643
9935
|
*/
|
|
8644
|
-
function () {
|
|
9936
|
+
function (refundReason) {
|
|
8645
9937
|
this.isRefundBtnDisabled = false;
|
|
8646
9938
|
this.paymentLibComponent.REFUNDLIST = "true";
|
|
8647
9939
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
8648
9940
|
this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;
|
|
8649
9941
|
this.errorMessage = false;
|
|
8650
|
-
this.
|
|
9942
|
+
this.changeRefundReason = refundReason;
|
|
9943
|
+
this.viewName = 'issuerefundpage1';
|
|
8651
9944
|
};
|
|
8652
9945
|
/**
|
|
8653
9946
|
* @return {?}
|
|
@@ -8661,7 +9954,12 @@
|
|
|
8661
9954
|
this.isRefundBtnDisabled = false;
|
|
8662
9955
|
this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;
|
|
8663
9956
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
8664
|
-
this.
|
|
9957
|
+
if (this.refundlist.reason == 'Retrospective remission') {
|
|
9958
|
+
this.viewName = 'processretroremissonpage';
|
|
9959
|
+
}
|
|
9960
|
+
else {
|
|
9961
|
+
this.viewName = 'issuerefund';
|
|
9962
|
+
}
|
|
8665
9963
|
};
|
|
8666
9964
|
/**
|
|
8667
9965
|
* @return {?}
|
|
@@ -8743,6 +10041,7 @@
|
|
|
8743
10041
|
function (refundListReason) {
|
|
8744
10042
|
if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {
|
|
8745
10043
|
this.refundlist.reason = refundListReason.reason;
|
|
10044
|
+
this.refundlist.code = refundListReason.code;
|
|
8746
10045
|
this.refundCode = refundListReason.code;
|
|
8747
10046
|
}
|
|
8748
10047
|
else {
|
|
@@ -8772,6 +10071,21 @@
|
|
|
8772
10071
|
this.viewName = 'reviewandsubmitview';
|
|
8773
10072
|
this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;
|
|
8774
10073
|
};
|
|
10074
|
+
/**
|
|
10075
|
+
* @param {?} fees
|
|
10076
|
+
* @return {?}
|
|
10077
|
+
*/
|
|
10078
|
+
RefundStatusComponent.prototype.getRefundFees = /**
|
|
10079
|
+
* @param {?} fees
|
|
10080
|
+
* @return {?}
|
|
10081
|
+
*/
|
|
10082
|
+
function (fees) {
|
|
10083
|
+
this.fees = fees;
|
|
10084
|
+
this.refundFees = this.fees.map(( /**
|
|
10085
|
+
* @param {?} obj
|
|
10086
|
+
* @return {?}
|
|
10087
|
+
*/function (obj) { return ({ fee_id: obj.id, code: obj.code, version: obj.version, volume: obj.volume, refund_amount: obj.refund_amount }); }));
|
|
10088
|
+
};
|
|
8775
10089
|
/**
|
|
8776
10090
|
* @return {?}
|
|
8777
10091
|
*/
|
|
@@ -8780,11 +10094,15 @@
|
|
|
8780
10094
|
*/
|
|
8781
10095
|
function () {
|
|
8782
10096
|
var _this = this;
|
|
8783
|
-
if (this.oldRefundReason === this.refundlist.reason) {
|
|
8784
|
-
|
|
10097
|
+
// if (this.oldRefundReason === this.refundlist.reason) {
|
|
10098
|
+
// this.refundCode = '';
|
|
10099
|
+
// }
|
|
10100
|
+
if (this.refundFees === undefined) {
|
|
10101
|
+
this.refundFees = this.refundlist['refund_fees'];
|
|
8785
10102
|
}
|
|
10103
|
+
this.refundCode = this.refundlist.code;
|
|
8786
10104
|
/** @type {?} */
|
|
8787
|
-
var resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);
|
|
10105
|
+
var resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount, this.refundlist.contact_details, this.refundFees);
|
|
8788
10106
|
this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(( /**
|
|
8789
10107
|
* @param {?} response
|
|
8790
10108
|
* @return {?}
|
|
@@ -8802,42 +10120,179 @@
|
|
|
8802
10120
|
}));
|
|
8803
10121
|
};
|
|
8804
10122
|
/**
|
|
8805
|
-
* @param {?}
|
|
8806
|
-
* @param {?} refundList
|
|
10123
|
+
* @param {?} note
|
|
8807
10124
|
* @return {?}
|
|
8808
10125
|
*/
|
|
8809
|
-
RefundStatusComponent.prototype.
|
|
8810
|
-
* @param {?}
|
|
8811
|
-
* @param {?} refundList
|
|
10126
|
+
RefundStatusComponent.prototype.gotoEditAddressDetails = /**
|
|
10127
|
+
* @param {?} note
|
|
8812
10128
|
* @return {?}
|
|
8813
10129
|
*/
|
|
8814
|
-
function (
|
|
8815
|
-
this.
|
|
8816
|
-
this.
|
|
8817
|
-
this.
|
|
10130
|
+
function (note) {
|
|
10131
|
+
this.notification = note;
|
|
10132
|
+
this.isEditDetailsClicked = true;
|
|
10133
|
+
this.viewName = 'refundEditView';
|
|
8818
10134
|
};
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
template: "\n<div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n</div>\n<ng-container *ngIf=\"viewName==='refundstatuslist' && rejectedRefundList\">\n <!-- payments -->\n\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-16\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-11\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Date</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Refund reference</td>\n <td class=\"govuk-table__header col-24 \" scope=\"col\">Reason</td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"rejectedRefundList?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let refundList of rejectedRefundList\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.refund_status['name'] }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">\u00A3{{ refundList?.amount | number:'.2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.date_updated | date:'dd MMM yyyy'}}\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.refund_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{refundList?.reason}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToRefundView(refundList,'casetransactions')\">Review</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"rejectedRefundList?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No refunds recorded</td>\n </tbody>\n </table>\n</ng-container>\n\n<ng-container *ngIf=\"viewName==='refundview'\">\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n </div>\n <h2 class=\"govuk-heading-l\">Refund details</h2>\n <table>\n \n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Refund reference</td>\n <td>{{ refundlist?.refund_reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment to be refunded</td>\n <td>{{refundlist?.payment_reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Reason for refund</td>\n <td>{{ refundlist?.reason }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Amount refunded</td>\n <td>\u00A3{{refundlist?.amount | number:'.2' }}</td>\n </tr>\n\n </tbody>\n </table>\n\n <!-- Status history -->\n <div>\n <br />\n <h2 class=\"govuk-heading-m\">Refund status history</h2>\n <div *ngIf=\"refundStatusHistories\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Date and time</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Users</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Notes</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let refundStatusHistory of refundStatusHistories;\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.status}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.date_created | date:'d MMMM yyyy\n hh:mm:ss'}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.created_by}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.notes}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n </div>\n\n <ng-container *ngIf=\"viewName==='refundview'\">\n <div *ngIf=\"refundButtonState==='Update required'\">\n <!-- <div *ngIf=\"refundButtonState==='sent back'\"> -->\n <br />\n <button type=\"submit\" class=\"button govuk-button--secondary btnmargin\"\n (click)=\"gotoReviewAndReSubmitPage()\">Resubmit\n refund</button>\n </div>\n <div *ngIf=\"isProcessRefund && !isLastUpdatedByCurrentUser && refundButtonState==='Sent for approval'\" >\n <!-- <div *ngIf=\"isProcessRefund && !isLastUpdatedByCurrentUser && refundButtonState==='sent for approval'\"> -->\n <br />\n <button type=\"submit\" class=\"button govuk-button--secondary\"\n (click)=\"goToRefundProcessComponent(refundlist.refund_reference,refundlist)\">Process refund</button>\n </div>\n </ng-container>\n\n\n</ng-container>\n\n<ng-container *ngIf=\"viewName==='reviewandsubmitview'\">\n <!-- <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a (click)=\"gotoReviewDetailsPage($event)\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n </div> -->\n <div class=\"govuk-warning-text\">\n <h1 class=\"heading-large\">Review and resubmit refund</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for rejection</td>\n <td class=\"govuk-table__cell\">{{refundreason}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund reference</td>\n <td class=\"govuk-table__cell\">{{ refundlist?.refund_reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> {{ refundlist?.reason}}\n <a (click)=\"gotoRefundReasonPage()\" *ngIf=\"refundlist?.reason !== 'Retrospective remission'\"\n class=\"govuk-link right\">Change</a>\n </td>\n\n <!-- <td class=\"govuk-table__cell\">{{ refundlist?.reason }}</td>\n <a (click)=\"gotoRefundReasonPage()\" class=\"govuk-link right\">Change</a> -->\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{ refundlist?.payment_reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td *ngIf=\"refundlist?.reason === 'Retrospective remission'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td *ngIf=\"refundlist?.reason !== 'Retrospective remission'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\"> \u00A3{{ changedAmount | number:'.2' }}\n <a (click)=\"gotoAmountPage()\" *ngIf=\"refundlist?.reason === 'Retrospective remission'\"\n class=\"govuk-link right\">Change</a>\n </td>\n\n </tr>\n </table>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoReviewDetailsPage($event)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button [disabled]=\"isRefundBtnDisabled\" (click)=\"gotoReviewRefundConfirmationPage()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit refund\n </button>\n</div>\n<p><a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-link\" data-module=\"govuk-button\">Cancel</a></p>\n <!-- <div class=\"govuk-button-group\">\n <button [disabled]=\"isRefundBtnDisabled\" (click)=\"gotoReviewRefundConfirmationPage()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit refund\n </button>\n </div> -->\n <!-- <p>\n <a (click)=\"loadRefundListPage()\" href=\"\" class=\"cancelbtn\">Cancel</a>\n </p> -->\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'issuerefund'\">\n <ccpay-add-remission [isFromRefundListPage]=\"true\" [viewCompStatus]=\"viewName\" [isRefundRemission]=\"true\"\n [ccdCaseNumber]=\"ccdCaseNumber\" (refundListReason)=\"getRefundListReason($event)\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'processretroremissonpage'\">\n <ccpay-add-remission [isFromRefundListPage]=\"true\" [viewCompStatus]=\"viewName\" [isRefundRemission]=\"true\"\n [ccdCaseNumber]=\"ccdCaseNumber\" (refundListAmount)=\"getRefundAmount($event)\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'reviewrefundconfirmationpage'\">\n <div class=\"govuk-grid-row pagesize\">\n <div>\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n\n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference:{{refundReference}} </strong></p>\n </div>\n\n </div>\n\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount| currency:'GBP':'symbol-narrow':'1.2-2'}} has been created and will be passed to a team leader to approve.\n </p>\n\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-link\">Return to case</a>\n </p>\n </div>\n </div>\n</ng-container>\n",
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
|
|
10135
|
+
/**
|
|
10136
|
+
* @param {?} obj
|
|
10137
|
+
* @return {?}
|
|
10138
|
+
*/
|
|
10139
|
+
RefundStatusComponent.prototype.getContactDetails = /**
|
|
10140
|
+
* @param {?} obj
|
|
10141
|
+
* @return {?}
|
|
10142
|
+
*/
|
|
10143
|
+
function (obj) {
|
|
10144
|
+
this.addressDetails = obj;
|
|
10145
|
+
this.viewName = 'revieweditdetailsconfirmationpage';
|
|
10146
|
+
};
|
|
10147
|
+
/**
|
|
10148
|
+
* @param {?} obj
|
|
10149
|
+
* @return {?}
|
|
10150
|
+
*/
|
|
10151
|
+
RefundStatusComponent.prototype.getContactDetailsForRefundList = /**
|
|
10152
|
+
* @param {?} obj
|
|
10153
|
+
* @return {?}
|
|
10154
|
+
*/
|
|
10155
|
+
function (obj) {
|
|
10156
|
+
this.refundlist.contact_details = obj;
|
|
10157
|
+
this.isEditDetailsClicked = false;
|
|
10158
|
+
this.isRefundBtnDisabled = false;
|
|
10159
|
+
this.viewName = 'reviewandsubmitview';
|
|
10160
|
+
};
|
|
10161
|
+
/**
|
|
10162
|
+
* @param {?=} note
|
|
10163
|
+
* @return {?}
|
|
10164
|
+
*/
|
|
10165
|
+
RefundStatusComponent.prototype.gotoEditDetailsPage = /**
|
|
10166
|
+
* @param {?=} note
|
|
10167
|
+
* @return {?}
|
|
10168
|
+
*/
|
|
10169
|
+
function (note) {
|
|
10170
|
+
if (note) {
|
|
10171
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
10172
|
+
}
|
|
10173
|
+
this.isEditDetailsClicked = true;
|
|
10174
|
+
this.viewName = 'refundEditView';
|
|
10175
|
+
};
|
|
10176
|
+
/**
|
|
10177
|
+
* @return {?}
|
|
10178
|
+
*/
|
|
10179
|
+
RefundStatusComponent.prototype.submitEditDetail = /**
|
|
10180
|
+
* @return {?}
|
|
10181
|
+
*/
|
|
10182
|
+
function () {
|
|
10183
|
+
var _this = this;
|
|
10184
|
+
this.isResendOperationSuccess = false;
|
|
10185
|
+
/** @type {?} */
|
|
10186
|
+
var contactDetails = this.addressDetails.notification_type === 'EMAIL' ? this.addressDetails.email :
|
|
10187
|
+
{
|
|
10188
|
+
address_line: this.addressDetails.address_line,
|
|
10189
|
+
city: this.addressDetails.city,
|
|
10190
|
+
county: this.addressDetails.county,
|
|
10191
|
+
country: this.addressDetails.country,
|
|
10192
|
+
postal_code: this.addressDetails.postal_code,
|
|
10193
|
+
};
|
|
10194
|
+
/** @type {?} */
|
|
10195
|
+
var resendRequest = new IPutNotificationRequest(contactDetails, this.addressDetails.notification_type);
|
|
10196
|
+
this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, this.addressDetails.notification_type).subscribe(( /**
|
|
10197
|
+
* @param {?} response
|
|
10198
|
+
* @return {?}
|
|
10199
|
+
*/function (response) {
|
|
10200
|
+
_this.isResendOperationSuccess = response;
|
|
10201
|
+
}), ( /**
|
|
10202
|
+
* @param {?} error
|
|
10203
|
+
* @return {?}
|
|
10204
|
+
*/function (error) {
|
|
10205
|
+
_this.isResendOperationSuccess = false;
|
|
10206
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
10207
|
+
}));
|
|
10208
|
+
};
|
|
10209
|
+
/**
|
|
10210
|
+
* @param {?} notification
|
|
10211
|
+
* @return {?}
|
|
10212
|
+
*/
|
|
10213
|
+
RefundStatusComponent.prototype.putResend = /**
|
|
10214
|
+
* @param {?} notification
|
|
10215
|
+
* @return {?}
|
|
10216
|
+
*/
|
|
10217
|
+
function (notification) {
|
|
10218
|
+
var _this = this;
|
|
10219
|
+
this.isResendOperationSuccess = false;
|
|
10220
|
+
/** @type {?} */
|
|
10221
|
+
var contactDetails = notification.notification_type === 'EMAIL' ? notification.contact_details.email :
|
|
10222
|
+
{
|
|
10223
|
+
address_line: notification.contact_details.address_line,
|
|
10224
|
+
city: notification.contact_details.city,
|
|
10225
|
+
county: notification.contact_details.county,
|
|
10226
|
+
country: notification.contact_details.country,
|
|
10227
|
+
postal_code: notification.contact_details.postal_code,
|
|
10228
|
+
};
|
|
10229
|
+
/** @type {?} */
|
|
10230
|
+
var resendRequest = new IPutNotificationRequest(contactDetails, notification.notification_type);
|
|
10231
|
+
this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, notification.notification_type).subscribe(( /**
|
|
10232
|
+
* @param {?} response
|
|
10233
|
+
* @return {?}
|
|
10234
|
+
*/function (response) {
|
|
10235
|
+
_this.isResendOperationSuccess = response;
|
|
10236
|
+
}), ( /**
|
|
10237
|
+
* @param {?} error
|
|
10238
|
+
* @return {?}
|
|
10239
|
+
*/function (error) {
|
|
10240
|
+
_this.isResendOperationSuccess = false;
|
|
10241
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
10242
|
+
}));
|
|
10243
|
+
};
|
|
10244
|
+
/**
|
|
10245
|
+
* @param {?} Event
|
|
10246
|
+
* @return {?}
|
|
10247
|
+
*/
|
|
10248
|
+
RefundStatusComponent.prototype.gotoCasetransationPageCancelBtnClicked = /**
|
|
10249
|
+
* @param {?} Event
|
|
10250
|
+
* @return {?}
|
|
10251
|
+
*/
|
|
10252
|
+
function (Event) {
|
|
10253
|
+
event.preventDefault();
|
|
10254
|
+
this.viewName = 'refundstatuslist';
|
|
10255
|
+
};
|
|
10256
|
+
/**
|
|
10257
|
+
* @param {?} refundReference
|
|
10258
|
+
* @param {?} refundList
|
|
10259
|
+
* @return {?}
|
|
10260
|
+
*/
|
|
10261
|
+
RefundStatusComponent.prototype.goToRefundProcessComponent = /**
|
|
10262
|
+
* @param {?} refundReference
|
|
10263
|
+
* @param {?} refundList
|
|
10264
|
+
* @return {?}
|
|
10265
|
+
*/
|
|
10266
|
+
function (refundReference, refundList) {
|
|
10267
|
+
this.paymentLibComponent.refundlistsource = refundList;
|
|
10268
|
+
this.paymentLibComponent.refundReference = refundReference;
|
|
10269
|
+
this.paymentLibComponent.viewName = 'process-refund';
|
|
10270
|
+
};
|
|
10271
|
+
RefundStatusComponent.decorators = [
|
|
10272
|
+
{ type: i0.Component, args: [{
|
|
10273
|
+
selector: 'ccpay-refund-status',
|
|
10274
|
+
template: "\n<div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n</div>\n\n<ng-container *ngIf=\"viewName==='refundstatuslist' && rejectedRefundList && !isResendOperationSuccess && !isEditDetailsClicked\">\n <!-- payments -->\n\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-16\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-11\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header col-18\" scope=\"col\">Date</td>\n <td class=\"govuk-table__header col-25\" scope=\"col\">Refund reference</td>\n <td class=\"govuk-table__header col-24 \" scope=\"col\">Reason</td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"rejectedRefundList?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let refundList of rejectedRefundList\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.refund_status['name'] }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">\u00A3{{ refundList?.amount | number:'.2' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.date_updated | date:'dd MMM yyyy'}}\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ refundList?.refund_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{refundList?.reason}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToRefundView(refundList,'casetransactions')\">Review</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"rejectedRefundList?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No refunds recorded</td>\n </tbody>\n </table>\n</ng-container>\n\n<ng-container *ngIf=\"viewName==='refundview' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n </div>\n <h2 class=\"govuk-heading-l\">Refund details</h2>\n <table>\n \n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Refund reference</td>\n <td>{{ refundlist?.refund_reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Payment to be refunded</td>\n <td>{{refundlist?.payment_reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Reason for refund</td>\n <td>{{ refundlist?.reason }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Amount refunded</td>\n <td>\u00A3{{refundlist?.amount | number:'.2' }}</td>\n </tr>\n\n </tbody>\n </table>\n\n\n <!-- Notification sent details -->\n <div>\n <br />\n <h2 class=\"govuk-heading-m\">Notifications sent</h2>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Date and time</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Sent to</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Sent via</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Actions</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"notificationList\">\n <tr class=\"govuk-table__row\" *ngFor=\"let notification of notificationList; let i = index;\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{notification.date_created | date:'dd MMMM yyyy hh:mm:ss'}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{orderParty}}</td>\n <td class=\"govuk-table__cell whitespace-inherit col-40\">\n <div *ngIf=\"notification?.notification_type === 'EMAIL'\">\n <strong>Email</strong><br>\n {{notification?.contact_details?.email}}\n </div>\n <div *ngIf=\"notification?.notification_type === 'LETTER'\">\n <strong>Post</strong><br>\n {{notification?.contact_details?.address_line}} {{notification?.contact_details?.city}} {{notification?.contact_details?.county}} {{notification?.contact_details?.country}} {{notification?.contact_details?.postal_code}}\n </div>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\" *ngIf=\"i === 0\"><a href=\"Javascript:void(0);\" (click)=\"putResend(notification)\">Resend</a> | <a href=\"Javascript:void(0);\" (click)=\"gotoEditAddressDetails(notification)\">Edit details</a></td>\n <td class=\"govuk-table__cell whitespace-inherit\" *ngIf=\"i > 0\"> </td>\n\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"!notificationList\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell whitespace-inherit\" colspan=\"4\">No record found ... </td>\n </tr>\n </tbody>\n </table> \n </div>\n <!-- Status history -->\n <div>\n <br />\n <h2 class=\"govuk-heading-m\">Refund status history</h2>\n <div *ngIf=\"refundStatusHistories\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Status</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Date and time</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Users</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Notes</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let refundStatusHistory of refundStatusHistories;\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.status}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.date_created | date:'d MMMM yyyy\n hh:mm:ss'}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.created_by}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{refundStatusHistory.notes}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n </div>\n\n <ng-container *ngIf=\"viewName==='refundview' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <div *ngIf=\"refundButtonState==='Update required'\" >\n <!-- <div *ngIf=\"refundButtonState==='sent back'\"> -->\n <br />\n <button type=\"submit\" class=\"button govuk-button--secondary btnmargin\"\n (click)=\"gotoReviewAndReSubmitPage()\">Change refund details</button>\n </div>\n <div *ngIf=\"isProcessRefund && !isLastUpdatedByCurrentUser && refundButtonState==='Sent for approval'\" >\n <!-- <div *ngIf=\"isProcessRefund && !isLastUpdatedByCurrentUser && refundButtonState==='sent for approval'\"> -->\n <br />\n <button type=\"submit\" class=\"button govuk-button--secondary\"\n (click)=\"goToRefundProcessComponent(refundlist.refund_reference,refundlist)\">Process refund</button>\n </div>\n </ng-container>\n\n\n</ng-container>\n\n<ng-container *ngIf=\"viewName==='reviewandsubmitview' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <!-- <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a (click)=\"gotoReviewDetailsPage($event)\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n </div> -->\n <div class=\"govuk-warning-text\">\n <h1 class=\"heading-large\">Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for return</td>\n <td class=\"govuk-table__cell\">{{refundreason}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund reference</td>\n <td class=\"govuk-table__cell\">{{ refundlist?.refund_reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Reason for refund</td>\n <td class=\"govuk-table__cell\"> {{ refundlist?.reason}}\n <a (click)=\"gotoRefundReasonPage(refundlist?.reason)\" *ngIf=\"refundlist?.reason !== 'Retrospective remission' && refundlist?.reason !== 'Overpayment'\"\n class=\"govuk-link right\">Change</a>\n </td>\n\n <!-- <td class=\"govuk-table__cell\">{{ refundlist?.reason }}</td>\n <a (click)=\"gotoRefundReasonPage()\" class=\"govuk-link right\">Change</a> -->\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\">{{ refundlist?.payment_reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td *ngIf=\"refundlist?.reason === 'Retrospective remission'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td *ngIf=\"refundlist?.reason !== 'Retrospective remission'\" class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\"> \u00A3{{ changedAmount ? changedAmount : refundlist?.amount | number:'.2' }}\n <a (click)=\"gotoAmountPage()\" *ngIf=\"refundlist?.reason !== 'Overpayment'\"\n class=\"govuk-link right\">Change</a>\n </td>\n\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"refundlist?.contact_details?.notification_type === 'EMAIL'\" class=\"contactDetails-width font-size-19px\">\n <strong>Email</strong>\n <br/>\n {{refundlist?.contact_details?.email}}\n </div>\n <div *ngIf=\"refundlist?.contact_details?.notification_type === 'LETTER'\" class=\"contactDetails-width font-size-19px\">\n <strong>Post</strong>\n <br/>\n {{refundlist?.contact_details?.address_line}} {{refundlist?.contact_details?.city}} {{refundlist?.contact_details?.county}} {{refundlist?.contact_details?.country}} {{refundlist?.contact_details?.postal_code}}\n </div> \n <a class=\"govuk-link\" href=\"Javascript:void(0)\" *ngIf=\"refundlist?.contact_details !=null\" class=\"govuk-link right\" (click)=\"gotoEditDetailsPage(refundlist?.contact_details)\">\n Change\n </a>\n </td>\n </tr> \n </table>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoReviewDetailsPage($event)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button [disabled]=\"isRefundBtnDisabled\" (click)=\"gotoReviewRefundConfirmationPage()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit refund\n </button>\n</div>\n<p><a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-link\" data-module=\"govuk-button\">Cancel</a></p>\n <!-- <div class=\"govuk-button-group\">\n <button [disabled]=\"isRefundBtnDisabled\" (click)=\"gotoReviewRefundConfirmationPage()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Submit refund\n </button>\n </div> -->\n <!-- <p>\n <a (click)=\"loadRefundListPage()\" href=\"\" class=\"cancelbtn\">Cancel</a>\n </p> -->\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'issuerefundpage1' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <ccpay-add-remission [isFromRefundListPage]=\"true\" [viewCompStatus]=\"viewName\" [isRefundRemission]=\"true\" [isFromRefundStatusPage] = \"true\"\n [changeRefundReason]= \"changeRefundReason\" [ccdCaseNumber]=\"ccdCaseNumber\" (refundListReason)=\"getRefundListReason($event)\" [refundPaymentReference]= \"refundlist?.payment_reference\" ></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'processretroremissonpage' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <ccpay-add-remission [isFromRefundListPage]=\"true\" [viewCompStatus]=\"viewName\" [isRefundRemission]=\"true\"\n [ccdCaseNumber]=\"ccdCaseNumber\" [refundPaymentReference]= \"refundlist?.payment_reference\" (refundListAmount)=\"getRefundAmount($event)\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'issuerefund' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <ccpay-add-remission [isFromRefundListPage]=\"true\" [viewCompStatus]=\"viewName\" [isRefundRemission]=\"true\" [isFromServiceRequestPage] = \"true\"\n [ccdCaseNumber]=\"ccdCaseNumber\" [refundPaymentReference]= \"refundlist?.payment_reference\" [isFromRefundStatusPage]=\"true\" (refundListAmount)=\"getRefundAmount($event)\" (refundFees)=\"getRefundFees($event)\"></ccpay-add-remission>\n</ng-container>\n\n<ng-container *ngIf=\"viewName === 'reviewrefundconfirmationpage' && !isResendOperationSuccess && !isEditDetailsClicked\">\n <div class=\"govuk-grid-row\">\n <div>\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n\n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference:{{refundReference}} </strong></p>\n </div>\n\n </div>\n\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount| currency:'GBP':'symbol-narrow':'1.2-2'}} has been created and will be passed to a team leader to approve.\n </p>\n\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-link\">Return to case</a>\n </p>\n </div>\n </div>\n</ng-container>\n\n<ng-container *ngIf=\"isResendOperationSuccess\">\n <div class=\"govuk-grid-row\">\n <div>\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Notification sent\n </h1>\n\n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{ refundlist?.refund_reference}} </strong></p>\n </div>\n\n </div>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"loadRefundListPage()\" class=\"govuk-link\">Return to case</a>\n </p>\n </div>\n </div>\n</ng-container>\n<ng-container *ngIf=\"viewName === 'refundEditView' && isEditDetailsClicked\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='EDITDETAILSPAGE'> \n <h1 class=\"govuk-heading-l\">Edit contact details</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <span class=\"govuk-hint font-size-19px\">\n Refund reference: {{ refundlist?.refund_reference}}\n </span>\n <ccpay-contact-details\n [isEditOperationInRefundList] = isEditDetailsClicked\n [addressObj] = notification\n (assignContactDetailsInFefundsList)=\"getContactDetails($event)\"\n (redirectToIssueRefund)=\"gotoCasetransationPageCancelBtnClicked($event)\" ></ccpay-contact-details>\n <p>\n <a (click)=\"loadRefundListPage()\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n<ng-container *ngIf=\"viewName === 'revieweditdetailsconfirmationpage' && !isResendOperationSuccess && isEditDetailsClicked\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='EDITDETAILSCHECKANDANSWERPAGE'> \n <h1 class=\"govuk-heading-l\">Check your answers</h1>\n <dl class=\"govuk-summary-list\">\n <div class=\"govuk-summary-list__row font-size-19px\">\n <dt class=\"govuk-summary-list__key\">\n Refund reference\n </dt>\n <dd class=\"govuk-summary-list__value\">\n {{ refundlist?.refund_reference}}\n </dd>\n <span class=\"govuk-summary-list__actions\"></span> \n </div>\n <div class=\"govuk-summary-list__row font-size-19px\">\n <dt class=\"govuk-summary-list__key\">\n Send via\n <br/>\n </dt>\n <dd class=\"govuk-summary-list__value\">\n <div *ngIf=\"addressDetails?.notification_type === 'EMAIL'\" class=\"contactDetails-width font-size-19px\">\n <strong>Email</strong>\n <br/>\n {{addressDetails?.email}}\n </div>\n <div *ngIf=\"addressDetails?.notification_type === 'LETTER'\" class=\"contactDetails-width font-size-19px\">\n <strong>Post</strong>\n <br/>\n {{addressDetails?.address_line}} {{addressDetails?.city}} {{addressDetails?.county}} {{addressDetails?.country}} {{addressDetails?.postal_code}}\n </div> \n </dd>\n <dd class=\"govuk-summary-list__actions\">\n <a class=\"govuk-link\" href=\"Javascript:void(0)\" (click)=\"gotoEditDetailsPage(addressDetails)\">\n Change\n </a>\n </dd>\n </div>\n </dl>\n <div class=\"govuk-button-group\">\n <button (click)=\"gotoEditDetailsPage(addressDetails)\" class=\"govuk-button govuk-button--secondary\"> Previous</button>\n <button (click)=\"submitEditDetail()\" class=\"govuk-button button\"\n data-module=\"govuk-button\">\n Send notification\n </button>\n </div>\n <p>\n <a (click)=\"loadRefundListPage()\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n\n</ng-container>\n",
|
|
10275
|
+
styles: [".right{float:right!important}.button{margin-bottom:3em;font-size:19px}.cancelbtn{font-size:19px;font-weight:400}.btnmargin{margin-bottom:2em}.govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:.5em}.govuk-label--s,.govuk-warning-text__text,.hmcts-currency-input__symbol{font-size:19px;font-weight:400}.inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.inline-error-message{color:#a71414;font-weight:700;margin-top:10px;font-size:20px}.govuk-button,.govuk-link{margin-right:1em;font-size:19px;font-weight:200}.govuk-button-group{padding-top:2em}.heading-medium{margin-top:.875em}.heading-large{margin-top:.25em}.govuk-panel--confirmation{color:#fff;background:#00703c}.govuk-heading-l{font-size:36px}.govuk-heading-m{font-size:24px}.govuk-panel__title{font-size:5rem}.govuk-body,.govuk-body-m{font-size:2.1875rem}.govuk-input--width-10{max-width:36ex}.col-14{width:14%!important}.col-10{width:10%!important}.col-11{width:11%!important}.col-18{width:18%!important}.col-21{width:21%!important}.col-9{width:9%!important}.col-40{width:40%!important}.col-15{width:15%!important}.col-16{width:16%!important}.col-25{width:25%!important}.col-24{width:24%!important}.govuk-error-summary__title{font-size:24px!important}.govuk-error-summary__body{font-size:19px!important}.font-size-19px{font-size:19px}.white{color:#fff}.pagesize{margin:2em;width:97%}.govuk-link{cursor:pointer}.contactDetails-width{width:70%}"]
|
|
10276
|
+
}] }
|
|
10277
|
+
];
|
|
10278
|
+
/** @nocollapse */
|
|
10279
|
+
RefundStatusComponent.ctorParameters = function () {
|
|
10280
|
+
return [
|
|
10281
|
+
{ type: forms.FormBuilder },
|
|
10282
|
+
{ type: RefundsService },
|
|
10283
|
+
{ type: NotificationService },
|
|
10284
|
+
{ type: PaymentLibComponent },
|
|
10285
|
+
{ type: OrderslistService },
|
|
10286
|
+
{ type: PaymentViewService }
|
|
8835
10287
|
];
|
|
8836
10288
|
};
|
|
8837
10289
|
RefundStatusComponent.propDecorators = {
|
|
8838
10290
|
LOGGEDINUSERROLES: [{ type: i0.Input, args: ['LOGGEDINUSERROLES',] }],
|
|
10291
|
+
isOldPcipalOff: [{ type: i0.Input }],
|
|
10292
|
+
isNewPcipalOff: [{ type: i0.Input }],
|
|
8839
10293
|
ccdCaseNumber: [{ type: i0.Input }],
|
|
8840
|
-
isTurnOff: [{ type: i0.Input }]
|
|
10294
|
+
isTurnOff: [{ type: i0.Input }],
|
|
10295
|
+
orderParty: [{ type: i0.Input }]
|
|
8841
10296
|
};
|
|
8842
10297
|
return RefundStatusComponent;
|
|
8843
10298
|
}());
|
|
@@ -8847,11 +10302,11 @@
|
|
|
8847
10302
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8848
10303
|
*/
|
|
8849
10304
|
var ServiceRequestComponent = /** @class */ (function () {
|
|
8850
|
-
function ServiceRequestComponent(paymentLibComponent, paymentViewService, OrderslistService$$1, router$$1) {
|
|
8851
|
-
var _this = this;
|
|
10305
|
+
function ServiceRequestComponent(paymentLibComponent, paymentViewService, OrderslistService$$1, cd, router$$1) {
|
|
8852
10306
|
this.paymentLibComponent = paymentLibComponent;
|
|
8853
10307
|
this.paymentViewService = paymentViewService;
|
|
8854
10308
|
this.OrderslistService = OrderslistService$$1;
|
|
10309
|
+
this.cd = cd;
|
|
8855
10310
|
this.router = router$$1;
|
|
8856
10311
|
this.goToServiceRquestComponent = new i0.EventEmitter();
|
|
8857
10312
|
this.paymentGroups = [];
|
|
@@ -8859,7 +10314,6 @@
|
|
|
8859
10314
|
this.nonPayments = [];
|
|
8860
10315
|
this.allPayments = [];
|
|
8861
10316
|
this.remissions = [];
|
|
8862
|
-
this.fees = [];
|
|
8863
10317
|
this.isRefundRemission = true;
|
|
8864
10318
|
this.isAddFeeBtnEnabled = true;
|
|
8865
10319
|
this.isExceptionRecord = false;
|
|
@@ -8879,27 +10333,7 @@
|
|
|
8879
10333
|
this.isAddRemissionBtnEnabled = false;
|
|
8880
10334
|
this.isRefundRemissionBtnEnable = false;
|
|
8881
10335
|
this.allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];
|
|
8882
|
-
this.
|
|
8883
|
-
* @return {?}
|
|
8884
|
-
*/function () {
|
|
8885
|
-
return _this.allowedRolesToAccessRefund.some(( /**
|
|
8886
|
-
* @param {?} role
|
|
8887
|
-
* @return {?}
|
|
8888
|
-
*/function (role) {
|
|
8889
|
-
return _this.LOGGEDINUSERROLES.indexOf(role) !== -1;
|
|
8890
|
-
}));
|
|
8891
|
-
});
|
|
8892
|
-
this.allowFurtherAccessAfter4Days = ( /**
|
|
8893
|
-
* @param {?} payment
|
|
8894
|
-
* @return {?}
|
|
8895
|
-
*/function (payment) {
|
|
8896
|
-
if (payment !== null && payment !== undefined) {
|
|
8897
|
-
/** @type {?} */
|
|
8898
|
-
var tmp4DayAgo = new Date();
|
|
8899
|
-
tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);
|
|
8900
|
-
return tmp4DayAgo >= new Date(payment.date_created);
|
|
8901
|
-
}
|
|
8902
|
-
});
|
|
10336
|
+
this.isContinueBtnDisabled = true;
|
|
8903
10337
|
}
|
|
8904
10338
|
/**
|
|
8905
10339
|
* @return {?}
|
|
@@ -8909,6 +10343,8 @@
|
|
|
8909
10343
|
*/
|
|
8910
10344
|
function () {
|
|
8911
10345
|
var _this = this;
|
|
10346
|
+
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
10347
|
+
this.isServiceRequest = 'false';
|
|
8912
10348
|
if (this.viewStatus === undefined) {
|
|
8913
10349
|
this.viewStatus = this.paymentLibComponent.viewName;
|
|
8914
10350
|
}
|
|
@@ -8948,9 +10384,22 @@
|
|
|
8948
10384
|
*/function (data) { return _this.orderTotalPayments = data; }));
|
|
8949
10385
|
}
|
|
8950
10386
|
}
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
10387
|
+
if (this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.TAKEPAYMENT) {
|
|
10388
|
+
this.isServiceRequest = 'false';
|
|
10389
|
+
}
|
|
10390
|
+
this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(( /**
|
|
10391
|
+
* @param {?} paymentGroup
|
|
10392
|
+
* @return {?}
|
|
10393
|
+
*/function (paymentGroup) {
|
|
10394
|
+
_this.paymentGroup = paymentGroup;
|
|
10395
|
+
_this.paymentGroup.payments = _this.paymentGroup.payments.filter(( /**
|
|
10396
|
+
* @param {?} paymentGroupObj
|
|
10397
|
+
* @return {?}
|
|
10398
|
+
*/function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.paymentLibComponent.paymentReference); }));
|
|
10399
|
+
}), ( /**
|
|
10400
|
+
* @param {?} error
|
|
10401
|
+
* @return {?}
|
|
10402
|
+
*/function (error) { return _this.errorMessage = error; }));
|
|
8954
10403
|
};
|
|
8955
10404
|
/**
|
|
8956
10405
|
* @return {?}
|
|
@@ -8979,7 +10428,7 @@
|
|
|
8979
10428
|
if (this.takePayment) {
|
|
8980
10429
|
this.paymentLibComponent.isTakePayment = this.takePayment;
|
|
8981
10430
|
}
|
|
8982
|
-
this.paymentLibComponent.SERVICEREQUEST = "true";
|
|
10431
|
+
//this.paymentLibComponent.SERVICEREQUEST = "true";
|
|
8983
10432
|
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
8984
10433
|
if (this.isServiceRequest !== 'false') {
|
|
8985
10434
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
@@ -8996,6 +10445,8 @@
|
|
|
8996
10445
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
8997
10446
|
partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';
|
|
8998
10447
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
10448
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
10449
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
8999
10450
|
/** @type {?} */
|
|
9000
10451
|
var url = "/payment-history/" + this.paymentLibComponent.CCD_CASE_NUMBER + "?view=case-transactions&selectedOption=" + this.paymentLibComponent.SELECTED_OPTION + partUrl;
|
|
9001
10452
|
this.router.routeReuseStrategy.shouldReuseRoute = ( /**
|
|
@@ -9004,79 +10455,6 @@
|
|
|
9004
10455
|
this.router.onSameUrlNavigation = 'reload';
|
|
9005
10456
|
this.router.navigateByUrl(url);
|
|
9006
10457
|
};
|
|
9007
|
-
/**
|
|
9008
|
-
* @param {?} feeCode
|
|
9009
|
-
* @return {?}
|
|
9010
|
-
*/
|
|
9011
|
-
ServiceRequestComponent.prototype.chkForAddRemission = /**
|
|
9012
|
-
* @param {?} feeCode
|
|
9013
|
-
* @return {?}
|
|
9014
|
-
*/
|
|
9015
|
-
function (feeCode) {
|
|
9016
|
-
var e_1, _a;
|
|
9017
|
-
if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {
|
|
9018
|
-
if (this.orderDetail[0]['remissions'].length > 0) {
|
|
9019
|
-
try {
|
|
9020
|
-
for (var _b = __values(this.orderDetail[0]['remissions']), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
9021
|
-
var remission = _c.value;
|
|
9022
|
-
if (remission.fee_code === feeCode) {
|
|
9023
|
-
return false;
|
|
9024
|
-
}
|
|
9025
|
-
}
|
|
9026
|
-
}
|
|
9027
|
-
catch (e_1_1) {
|
|
9028
|
-
e_1 = { error: e_1_1 };
|
|
9029
|
-
}
|
|
9030
|
-
finally {
|
|
9031
|
-
try {
|
|
9032
|
-
if (_c && !_c.done && (_a = _b.return))
|
|
9033
|
-
_a.call(_b);
|
|
9034
|
-
}
|
|
9035
|
-
finally {
|
|
9036
|
-
if (e_1)
|
|
9037
|
-
throw e_1.error;
|
|
9038
|
-
}
|
|
9039
|
-
}
|
|
9040
|
-
}
|
|
9041
|
-
return true;
|
|
9042
|
-
}
|
|
9043
|
-
else {
|
|
9044
|
-
return false;
|
|
9045
|
-
}
|
|
9046
|
-
};
|
|
9047
|
-
/**
|
|
9048
|
-
* @return {?}
|
|
9049
|
-
*/
|
|
9050
|
-
ServiceRequestComponent.prototype.chkForPBAPayment = /**
|
|
9051
|
-
* @return {?}
|
|
9052
|
-
*/
|
|
9053
|
-
function () {
|
|
9054
|
-
var _this = this;
|
|
9055
|
-
if (this.orderDetail !== null && this.orderDetail !== undefined) {
|
|
9056
|
-
this.orderDetail.forEach(( /**
|
|
9057
|
-
* @param {?} orderDetail
|
|
9058
|
-
* @return {?}
|
|
9059
|
-
*/function (orderDetail) {
|
|
9060
|
-
if (orderDetail.payments) {
|
|
9061
|
-
orderDetail.payments.forEach(( /**
|
|
9062
|
-
* @param {?} payment
|
|
9063
|
-
* @return {?}
|
|
9064
|
-
*/function (payment) {
|
|
9065
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
9066
|
-
_this.paymentLibComponent.paymentReference = payment.reference;
|
|
9067
|
-
_this.isPBA = true;
|
|
9068
|
-
}
|
|
9069
|
-
}));
|
|
9070
|
-
}
|
|
9071
|
-
}));
|
|
9072
|
-
if (this.isPBA) {
|
|
9073
|
-
return true;
|
|
9074
|
-
}
|
|
9075
|
-
else {
|
|
9076
|
-
return false;
|
|
9077
|
-
}
|
|
9078
|
-
}
|
|
9079
|
-
};
|
|
9080
10458
|
/**
|
|
9081
10459
|
* @param {?} fee
|
|
9082
10460
|
* @return {?}
|
|
@@ -9087,7 +10465,7 @@
|
|
|
9087
10465
|
*/
|
|
9088
10466
|
function (fee) {
|
|
9089
10467
|
var _this = this;
|
|
9090
|
-
if (this.
|
|
10468
|
+
if (this.chkIsAddRemissionBtnEnable(fee)) {
|
|
9091
10469
|
this.feeId = fee;
|
|
9092
10470
|
this.viewStatus = 'addremission';
|
|
9093
10471
|
this.payment = this.orderDetail[0].payments[0];
|
|
@@ -9101,8 +10479,8 @@
|
|
|
9101
10479
|
* @return {?}
|
|
9102
10480
|
*/function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.paymentLibComponent.paymentReference); }));
|
|
9103
10481
|
_this.payment = _this.paymentGroup.payments[0];
|
|
9104
|
-
//
|
|
9105
|
-
//
|
|
10482
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
10483
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
9106
10484
|
}), ( /**
|
|
9107
10485
|
* @param {?} error
|
|
9108
10486
|
* @return {?}
|
|
@@ -9123,9 +10501,8 @@
|
|
|
9123
10501
|
*/
|
|
9124
10502
|
function (payment, remission, fees) {
|
|
9125
10503
|
var _this = this;
|
|
9126
|
-
this.
|
|
9127
|
-
this.payment
|
|
9128
|
-
this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(( /**
|
|
10504
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
10505
|
+
this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(( /**
|
|
9129
10506
|
* @param {?} paymentGroup
|
|
9130
10507
|
* @return {?}
|
|
9131
10508
|
*/function (paymentGroup) {
|
|
@@ -9133,13 +10510,14 @@
|
|
|
9133
10510
|
_this.paymentGroup.payments = _this.paymentGroup.payments.filter(( /**
|
|
9134
10511
|
* @param {?} paymentGroupObj
|
|
9135
10512
|
* @return {?}
|
|
9136
|
-
*/function (paymentGroupObj) { return paymentGroupObj
|
|
10513
|
+
*/function (paymentGroupObj) { return paymentGroupObj.reference === payment.reference; }));
|
|
9137
10514
|
_this.payment = _this.paymentGroup.payments[0];
|
|
9138
10515
|
_this.remissions = remission;
|
|
9139
10516
|
_this.remissionFeeAmt = fees.filter(( /**
|
|
9140
10517
|
* @param {?} data
|
|
9141
10518
|
* @return {?}
|
|
9142
10519
|
*/function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
10520
|
+
_this.viewStatus = 'addrefundforremission';
|
|
9143
10521
|
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
9144
10522
|
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
9145
10523
|
}), ( /**
|
|
@@ -9184,70 +10562,24 @@
|
|
|
9184
10562
|
* @param {?} payment
|
|
9185
10563
|
* @return {?}
|
|
9186
10564
|
*/
|
|
9187
|
-
ServiceRequestComponent.prototype.chkIssueRefundBtnEnable = /**
|
|
9188
|
-
* @param {?} payment
|
|
9189
|
-
* @return {?}
|
|
9190
|
-
*/
|
|
9191
|
-
function (payment) {
|
|
9192
|
-
if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&
|
|
9193
|
-
payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {
|
|
9194
|
-
this.isIssueRefunfBtnEnable = true;
|
|
9195
|
-
}
|
|
9196
|
-
if (this.isIssueRefunfBtnEnable) {
|
|
9197
|
-
return true;
|
|
9198
|
-
}
|
|
9199
|
-
else {
|
|
9200
|
-
return false;
|
|
9201
|
-
}
|
|
9202
|
-
};
|
|
9203
|
-
/**
|
|
9204
|
-
* @return {?}
|
|
9205
|
-
*/
|
|
9206
|
-
ServiceRequestComponent.prototype.chkIsRefundRemissionBtnEnable = /**
|
|
9207
|
-
* @return {?}
|
|
9208
|
-
*/
|
|
9209
|
-
function () {
|
|
9210
|
-
var _this = this;
|
|
9211
|
-
if (this.orderDetail !== null && this.orderDetail !== undefined) {
|
|
9212
|
-
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
9213
|
-
this.orderDetail.forEach(( /**
|
|
9214
|
-
* @param {?} orderDetail
|
|
9215
|
-
* @return {?}
|
|
9216
|
-
*/function (orderDetail) {
|
|
9217
|
-
if (orderDetail.payments) {
|
|
9218
|
-
orderDetail.payments.forEach(( /**
|
|
9219
|
-
* @param {?} payment
|
|
9220
|
-
* @return {?}
|
|
9221
|
-
*/function (payment) {
|
|
9222
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
9223
|
-
_this.isRefundRemissionBtnEnable = true;
|
|
9224
|
-
}
|
|
9225
|
-
}));
|
|
9226
|
-
}
|
|
9227
|
-
}));
|
|
9228
|
-
if (this.isRefundRemissionBtnEnable) {
|
|
9229
|
-
return true;
|
|
9230
|
-
}
|
|
9231
|
-
else {
|
|
9232
|
-
return false;
|
|
9233
|
-
}
|
|
9234
|
-
}
|
|
9235
|
-
};
|
|
9236
|
-
/**
|
|
9237
|
-
* @param {?} payment
|
|
9238
|
-
* @return {?}
|
|
9239
|
-
*/
|
|
9240
10565
|
ServiceRequestComponent.prototype.issueRefund = /**
|
|
9241
10566
|
* @param {?} payment
|
|
9242
10567
|
* @return {?}
|
|
9243
10568
|
*/
|
|
9244
10569
|
function (payment) {
|
|
9245
10570
|
if (payment !== null && payment !== undefined) {
|
|
9246
|
-
if (this.
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
10571
|
+
if (this.chkIsIssueRefundBtnEnable(payment)) {
|
|
10572
|
+
if (payment.over_payment > 0) {
|
|
10573
|
+
this.viewStatus = '';
|
|
10574
|
+
this.viewCompStatus = 'overpayment';
|
|
10575
|
+
}
|
|
10576
|
+
else {
|
|
10577
|
+
this.viewStatus = 'issuerefund';
|
|
10578
|
+
this.viewCompStatus = '';
|
|
10579
|
+
this.payment = payment;
|
|
10580
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
10581
|
+
this.isRefundRemission = true;
|
|
10582
|
+
}
|
|
9251
10583
|
}
|
|
9252
10584
|
}
|
|
9253
10585
|
};
|
|
@@ -9289,6 +10621,54 @@
|
|
|
9289
10621
|
this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);
|
|
9290
10622
|
this.viewStatus = 'payment-view';
|
|
9291
10623
|
};
|
|
10624
|
+
/**
|
|
10625
|
+
* @param {?} payment
|
|
10626
|
+
* @return {?}
|
|
10627
|
+
*/
|
|
10628
|
+
ServiceRequestComponent.prototype.chkIsIssueRefundBtnEnable = /**
|
|
10629
|
+
* @param {?} payment
|
|
10630
|
+
* @return {?}
|
|
10631
|
+
*/
|
|
10632
|
+
function (payment) {
|
|
10633
|
+
if (payment !== null && payment !== undefined) {
|
|
10634
|
+
return payment.issue_refund && payment.refund_enable;
|
|
10635
|
+
}
|
|
10636
|
+
else {
|
|
10637
|
+
return false;
|
|
10638
|
+
}
|
|
10639
|
+
};
|
|
10640
|
+
/**
|
|
10641
|
+
* @param {?} remission
|
|
10642
|
+
* @return {?}
|
|
10643
|
+
*/
|
|
10644
|
+
ServiceRequestComponent.prototype.chkIsAddRefundBtnEnable = /**
|
|
10645
|
+
* @param {?} remission
|
|
10646
|
+
* @return {?}
|
|
10647
|
+
*/
|
|
10648
|
+
function (remission) {
|
|
10649
|
+
if (remission !== null && remission !== undefined) {
|
|
10650
|
+
return remission.add_refund;
|
|
10651
|
+
}
|
|
10652
|
+
else {
|
|
10653
|
+
return false;
|
|
10654
|
+
}
|
|
10655
|
+
};
|
|
10656
|
+
/**
|
|
10657
|
+
* @param {?} fee
|
|
10658
|
+
* @return {?}
|
|
10659
|
+
*/
|
|
10660
|
+
ServiceRequestComponent.prototype.chkIsAddRemissionBtnEnable = /**
|
|
10661
|
+
* @param {?} fee
|
|
10662
|
+
* @return {?}
|
|
10663
|
+
*/
|
|
10664
|
+
function (fee) {
|
|
10665
|
+
if (fee !== null && fee !== undefined) {
|
|
10666
|
+
return fee.add_remission && fee.remission_enable;
|
|
10667
|
+
}
|
|
10668
|
+
else {
|
|
10669
|
+
return false;
|
|
10670
|
+
}
|
|
10671
|
+
};
|
|
9292
10672
|
/**
|
|
9293
10673
|
* @return {?}
|
|
9294
10674
|
*/
|
|
@@ -9305,10 +10685,157 @@
|
|
|
9305
10685
|
this.OrderslistService.setorderRemissionTotal(null);
|
|
9306
10686
|
this.OrderslistService.setorderFeesTotal(null);
|
|
9307
10687
|
};
|
|
10688
|
+
/**
|
|
10689
|
+
* @param {?} paymentType
|
|
10690
|
+
* @return {?}
|
|
10691
|
+
*/
|
|
10692
|
+
ServiceRequestComponent.prototype.selectPymentOption = /**
|
|
10693
|
+
* @param {?} paymentType
|
|
10694
|
+
* @return {?}
|
|
10695
|
+
*/
|
|
10696
|
+
function (paymentType) {
|
|
10697
|
+
this.paymentType = paymentType;
|
|
10698
|
+
this.isContinueBtnDisabled = false;
|
|
10699
|
+
};
|
|
10700
|
+
/**
|
|
10701
|
+
* @return {?}
|
|
10702
|
+
*/
|
|
10703
|
+
ServiceRequestComponent.prototype.goToPaymentViewComp = /**
|
|
10704
|
+
* @return {?}
|
|
10705
|
+
*/
|
|
10706
|
+
function () {
|
|
10707
|
+
this.viewCompStatus = '';
|
|
10708
|
+
this.viewStatus = 'paymentview';
|
|
10709
|
+
};
|
|
10710
|
+
/**
|
|
10711
|
+
* @param {?} paymentgrp
|
|
10712
|
+
* @return {?}
|
|
10713
|
+
*/
|
|
10714
|
+
ServiceRequestComponent.prototype.continuePayment = /**
|
|
10715
|
+
* @param {?} paymentgrp
|
|
10716
|
+
* @return {?}
|
|
10717
|
+
*/
|
|
10718
|
+
function (paymentgrp) {
|
|
10719
|
+
if (this.paymentType === 'op') {
|
|
10720
|
+
this.isFullyRefund = false;
|
|
10721
|
+
this.viewStatus = '';
|
|
10722
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
10723
|
+
}
|
|
10724
|
+
else if (this.paymentType === 'fp') {
|
|
10725
|
+
this.isFullyRefund = true;
|
|
10726
|
+
this.paymentGroup = paymentgrp;
|
|
10727
|
+
this.viewStatus = 'issuerefund';
|
|
10728
|
+
this.viewCompStatus = "";
|
|
10729
|
+
this.isRefundRemission = true;
|
|
10730
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
10731
|
+
this.isFromPaymentDetailPage = true;
|
|
10732
|
+
this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;
|
|
10733
|
+
}
|
|
10734
|
+
};
|
|
10735
|
+
/**
|
|
10736
|
+
* @param {?} obj
|
|
10737
|
+
* @return {?}
|
|
10738
|
+
*/
|
|
10739
|
+
ServiceRequestComponent.prototype.getContactDetails = /**
|
|
10740
|
+
* @param {?} obj
|
|
10741
|
+
* @return {?}
|
|
10742
|
+
*/
|
|
10743
|
+
function (obj) {
|
|
10744
|
+
this.contactDetailsObj = obj;
|
|
10745
|
+
this.viewStatus = '';
|
|
10746
|
+
this.viewCompStatus = 'overpaymentcheckandanswer';
|
|
10747
|
+
};
|
|
10748
|
+
/**
|
|
10749
|
+
* @param {?} event
|
|
10750
|
+
* @return {?}
|
|
10751
|
+
*/
|
|
10752
|
+
ServiceRequestComponent.prototype.gotoPaymentSelectPage = /**
|
|
10753
|
+
* @param {?} event
|
|
10754
|
+
* @return {?}
|
|
10755
|
+
*/
|
|
10756
|
+
function (event) {
|
|
10757
|
+
event.preventDefault();
|
|
10758
|
+
this.viewStatus = '';
|
|
10759
|
+
this.viewCompStatus = 'overpayment';
|
|
10760
|
+
};
|
|
10761
|
+
/**
|
|
10762
|
+
* @param {?=} note
|
|
10763
|
+
* @return {?}
|
|
10764
|
+
*/
|
|
10765
|
+
ServiceRequestComponent.prototype.gotoAddressPage = /**
|
|
10766
|
+
* @param {?=} note
|
|
10767
|
+
* @return {?}
|
|
10768
|
+
*/
|
|
10769
|
+
function (note) {
|
|
10770
|
+
if (note) {
|
|
10771
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
10772
|
+
}
|
|
10773
|
+
this.errorMessage = '';
|
|
10774
|
+
this.viewStatus = '';
|
|
10775
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
10776
|
+
};
|
|
10777
|
+
/**
|
|
10778
|
+
* @return {?}
|
|
10779
|
+
*/
|
|
10780
|
+
ServiceRequestComponent.prototype.processRefund = /**
|
|
10781
|
+
* @return {?}
|
|
10782
|
+
*/
|
|
10783
|
+
function () {
|
|
10784
|
+
var _this = this;
|
|
10785
|
+
this.isConfirmationBtnDisabled = true;
|
|
10786
|
+
this.errorMessage = '';
|
|
10787
|
+
/** @type {?} */
|
|
10788
|
+
var obj = this.paymentGroup.fees[0];
|
|
10789
|
+
this.fees = [{ id: obj.id,
|
|
10790
|
+
code: obj.code,
|
|
10791
|
+
version: obj.version,
|
|
10792
|
+
apportion_amount: obj.apportion_amount,
|
|
10793
|
+
calculated_amount: obj.calculated_amount,
|
|
10794
|
+
updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,
|
|
10795
|
+
volume: obj.volume,
|
|
10796
|
+
refund_amount: this.getOverPaymentValue() }];
|
|
10797
|
+
/** @type {?} */
|
|
10798
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.paymentGroup.payments[0].reference, 'RR037', this.getOverPaymentValue());
|
|
10799
|
+
this.paymentViewService.postRefundsReason(requestBody).subscribe(( /**
|
|
10800
|
+
* @param {?} response
|
|
10801
|
+
* @return {?}
|
|
10802
|
+
*/function (response) {
|
|
10803
|
+
if (JSON.parse(response)) {
|
|
10804
|
+
_this.viewCompStatus = '';
|
|
10805
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
10806
|
+
_this.refundReference = JSON.parse(response).refund_reference;
|
|
10807
|
+
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
10808
|
+
}
|
|
10809
|
+
}), ( /**
|
|
10810
|
+
* @param {?} error
|
|
10811
|
+
* @return {?}
|
|
10812
|
+
*/function (error) {
|
|
10813
|
+
_this.errorMessage = error;
|
|
10814
|
+
_this.isConfirmationBtnDisabled = false;
|
|
10815
|
+
_this.cd.detectChanges();
|
|
10816
|
+
}));
|
|
10817
|
+
};
|
|
10818
|
+
/**
|
|
10819
|
+
* @return {?}
|
|
10820
|
+
*/
|
|
10821
|
+
ServiceRequestComponent.prototype.getOverPaymentValue = /**
|
|
10822
|
+
* @return {?}
|
|
10823
|
+
*/
|
|
10824
|
+
function () {
|
|
10825
|
+
/** @type {?} */
|
|
10826
|
+
var feesOverPayment = 0;
|
|
10827
|
+
this.paymentGroup.fees.forEach(( /**
|
|
10828
|
+
* @param {?} fee
|
|
10829
|
+
* @return {?}
|
|
10830
|
+
*/function (fee) {
|
|
10831
|
+
feesOverPayment += fee.over_payment;
|
|
10832
|
+
}));
|
|
10833
|
+
return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;
|
|
10834
|
+
};
|
|
9308
10835
|
ServiceRequestComponent.decorators = [
|
|
9309
10836
|
{ type: i0.Component, args: [{
|
|
9310
10837
|
selector: 'ccpay-service-request',
|
|
9311
|
-
template: "<!-- Order Full View Details-->\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isServiceRequest === 'false'\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isServiceRequest !== 'false'\">\n <a href=\"javascript:void(0)\" (click)=\"goToServiceRequestPage()\" id=\"bckLnksize\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n <div class=\"govuk-grid-column-full\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Service request</h1>\n </div>\n <table >\n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Service request reference</td>\n <td>{{orderRef}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Status</td>\n <td>{{orderStatus}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Date created</td>\n <td>{{orderCreated | date:'dd MMMM yyyy'}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Party</td>\n <td>{{orderParty}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">CCD event</td>\n <td>{{orderCCDEvent}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n <div class=\"govuk-grid-column-full order-class\">\n <div class=\"column\">\n <table class=\"govuk-table \">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-51\" scope=\"col\" *ngIf=\"isServiceRequest === 'false'\">Fee</td>\n <td class=\"govuk-table__header col-51\" scope=\"col\" colspan=\"2\" *ngIf=\"isServiceRequest !== 'false'\">Fee</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total</td>\n <td class=\"govuk-table__header\" scope=\"col\" *ngIf=\"isServiceRequest === 'false'\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let order of orderDetail;\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of order.fees; let i = index;\">\n <td class=\"govuk-table__cell col-60 whitespace-inherit\" *ngIf=\"isServiceRequest === 'false'\">{{fee.description}}</td>\n <td class=\"govuk-table__cell col-60 whitespace-inherit\" colspan=\"2\" *ngIf=\"isServiceRequest !== 'false'\">{{fee.description}}</td>\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}} X {{ fee.calculated_amount/fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ fee?.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell alignright\" *ngIf=\"isServiceRequest === 'false'\">\n <button [disabled]=\"!chkForAddRemission(fee.code)\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n </td>\n\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngFor=\"let order of orderDetail;\">\n <tr class=\"govuk-table__row\" *ngIf=\"order.fees?.length === 0\" >\n <td class=\"govuk-table__cell alignleft\" colspan=\"7\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n\n </div>\n <div class=\"maxwidth\">\n <p class=\"totalfees\">Total fees: {{orderFeesTotal | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n </div>\n <!-- remissions -->\n<ng-container *ngFor=\"let order of orderDetail;\" >\n <div class=\"govuk-grid-column-full order-class\" *ngIf=\"order.remissions\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Help with fees or remission code</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Reference</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Fee</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header whitespace-inherit refundBtn\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody *ngIf=\"order.remissions?.length > 0\" class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of order.remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n <button [disabled]=\"!chkIsRefundRemissionBtnEnable()\" (click)=\"addRefundForRemission(order.payments[0],remission,order.fees)\" class=\"govuk-button govuk-button--secondary\"> Add refund</button>\n </td>\n <!-- <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n\n </td> -->\n </tr>\n </tbody>\n\n\n </table>\n <div *ngIf=\"order.remissions?.length === 0\">\n <span >No help with fees or remissions.</span>\n </div>\n <div class=\"summarypagealign\">\n <p>Total reductions: {{orderRemissionTotal | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n <div class=\"summarypagealign\">\n <p class=\"summarypage\">Total fees to pay: {{(orderFeesTotal - orderRemissionTotal) | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n </div>\n\n\n</ng-container>\n\n\n <!--Payments-->\n <ng-container *ngFor=\"let order of orderDetail;\" >\n <div class=\"govuk-grid-column-full\" *ngIf=\"order.payments\">\n <h3 class=\"heading-medium\">Payments</h3>\n <table class=\"govuk-table \">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-25\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody *ngIf=\"order.payments?.length > 0\" class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of order.payments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell alignright\">\n <button [disabled] = \"!chkIssueRefundBtnEnable(payment)\" (click)=\"issueRefund(payment)\" class=\"govuk-button govuk-button--secondary\">Issue refund</button>\n </td>\n <!-- <td *ngIf=\"!chkIssueRefundBtnEnable(payment)\" class=\"govuk-table__cell\" style=\"text-align: right;\">\n </td> -->\n </tr>\n </tbody>\n </table>\n\n <div *ngIf=\"order.payments === undefined || order.payments === null\">\n <!-- <h3 class=\"heading-medium mar-17\">Payments</h3> -->\n <span class=\"mar-17\" >No Payments recorded</span>\n </div>\n</div>\n</ng-container>\n<div *ngIf=\"isServiceRequest === 'false'\">\n <div *ngIf=\"((orderFeesTotal - orderRemissionTotal)- orderTotalPayments) > 0\" >\n <p class=\"totalPay\">Total left to pay: <b>{{((orderFeesTotal - orderRemissionTotal)- orderTotalPayments )| currency:'GBP':'symbol-narrow':'1.2-2' }}</b> </p>\n </div>\n <div *ngIf=\"((orderFeesTotal - orderRemissionTotal)- orderTotalPayments) < 0\" >\n <p class=\"totalPay\">Total left to pay: <b>0</b> </p>\n </div>\n</div>\n</ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'addremission' && feeId\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[fee]=\"feeId\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[paymentGroupRef]=\"orderRef\"\n[isFromServiceRequestPage] = \"true\"\n[payment] = \"payment\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'issuerefund' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[isFromServiceRequestPage] = \"true\"\n[payment]=\"payment\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[paymentGroupRef]=\"orderRef\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'addrefundforremission' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\"\n[viewCompStatus]= \"viewStatus\"\n[payment]=\"payment\"\n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\"\n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"true\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"></ccpay-add-remission>\n\n<ccpay-payment-view *ngIf=\"viewStatus === 'payment-view'\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[isTurnOff] = \"isTurnOff\"\n[isTakePayment] = \"takePayment\"\n[caseType] = \"caseType\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[isServiceRequest] = \"isServiceRequest\">\n</ccpay-payment-view>\n\n<ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n<div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n</div>\n<div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemoval()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(feeId)\">\n Remove\n </button>\n </form>\n</div>\n</ng-container>\n",
|
|
10838
|
+
template: "<!-- Order Full View Details-->\n<ng-container *ngIf=\"viewStatus === 'order-full-view'\">\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isServiceRequest === 'false'\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n <li class=\"govuk-breadcrumbs__list-item\" *ngIf=\"isServiceRequest !== 'false'\">\n <a href=\"javascript:void(0)\" (click)=\"goToServiceRequestPage()\" id=\"bckLnksize\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n <div class=\"govuk-grid-column-full\">\n <div class=\"column\">\n <h1 class=\"heading-large govuk-!-margin-top-0\">Service request</h1>\n </div>\n <table >\n <tbody>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Service request reference</td>\n <td>{{orderRef}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Status</td>\n <td>{{orderStatus}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Date created</td>\n <td>{{orderCreated | date:'dd MMMM yyyy'}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">Party</td>\n <td>{{orderParty}}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold tb-col-w\">CCD event</td>\n <td>{{orderCCDEvent}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n <div class=\"govuk-grid-column-full order-class\">\n <div class=\"column\">\n <table class=\"govuk-table \">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-51\" scope=\"col\" *ngIf=\"isServiceRequest === 'false'\">Fee</td>\n <td class=\"govuk-table__header col-51\" scope=\"col\" colspan=\"2\" *ngIf=\"isServiceRequest !== 'false'\">Fee</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total</td>\n <td class=\"govuk-table__header\" scope=\"col\" *ngIf=\"isServiceRequest === 'false'\"></td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngFor=\"let order of orderDetail;\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of order.fees; let i = index;\">\n <td class=\"govuk-table__cell col-60 whitespace-inherit\" *ngIf=\"isServiceRequest === 'false'\">{{fee.description}}</td>\n <td class=\"govuk-table__cell col-60 whitespace-inherit\" colspan=\"2\" *ngIf=\"isServiceRequest !== 'false'\">{{fee.description}}</td>\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}} X {{ fee.calculated_amount/fee.volume| currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ fee?.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell alignright\" *ngIf=\"isServiceRequest === 'false'\">\n <button [disabled]=\"!chkIsAddRemissionBtnEnable(fee)\" (click)=\"addRemission(fee)\" class=\"govuk-button govuk-button--secondary\"> Add remission</button>\n </td>\n \n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngFor=\"let order of orderDetail;\">\n <tr class=\"govuk-table__row\" *ngIf=\"order.fees?.length === 0\" >\n <td class=\"govuk-table__cell alignleft\" colspan=\"7\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n\n </div>\n <div class=\"maxwidth\"> \n <p class=\"totalfees\">Total fees: {{orderFeesTotal | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n </div>\n <!-- remissions -->\n<ng-container *ngFor=\"let order of orderDetail;\" >\n <div class=\"govuk-grid-column-full order-class\" *ngIf=\"order.remissions\"> \n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-24 whitespace-inherit\" scope=\"col\">Help with fees or remission code</td>\n <td class=\"govuk-table__header col-27 whitespace-inherit\" scope=\"col\">Reference</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Fee</td>\n <td class=\"govuk-table__header whitespace-inherit\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header whitespace-inherit refundBtn\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody *ngIf=\"order.remissions?.length > 0\" class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of order.remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n <button [disabled]=\"!chkIsAddRefundBtnEnable(remission)\" (click)=\"addRefundForRemission(order.payments[0],remission,order.fees)\" class=\"govuk-button govuk-button--secondary\"> Add refund</button>\n </td>\n <!-- <td class=\"govuk-table__cell refundBtn whitespace-inherit\" >\n \n </td> -->\n </tr>\n </tbody>\n \n\n </table>\n <div *ngIf=\"order.remissions?.length === 0\">\n <span >No help with fees or remissions.</span>\n </div>\n <div class=\"summarypagealign\">\n <p>Total reductions: {{orderRemissionTotal | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n <div class=\"summarypagealign\">\n <p class=\"summarypage\">Total fees to pay: {{(orderFeesTotal - orderRemissionTotal) | currency:'GBP':'symbol-narrow':'1.2-2' }}</p>\n </div>\n </div>\n \n \n</ng-container>\n \n \n <!--Payments-->\n <ng-container *ngFor=\"let order of orderDetail;\" >\n <div class=\"govuk-grid-column-full\" *ngIf=\"order.payments\"> \n <h3 class=\"heading-medium\">Payments</h3>\n <table class=\"govuk-table \">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header col-25\" scope=\"col\"></td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\"></td>\n </tr>\n </thead>\n <tbody *ngIf=\"order.payments?.length > 0\" class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of order.payments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">Review</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.date_created | date:'dd MMM yyyy' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment?.amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell alignright\">\n <button [disabled]=\"!chkIsIssueRefundBtnEnable(payment)\" (click)=\"issueRefund(payment)\" class=\"govuk-button govuk-button--secondary\">Issue refund</button>\n </td>\n <!-- <td *ngIf=\"!chkIssueRefundBtnEnable(payment)\" class=\"govuk-table__cell\" style=\"text-align: right;\">\n </td> -->\n </tr>\n </tbody>\n </table>\n \n <div *ngIf=\"order.payments === undefined || order.payments === null\">\n <!-- <h3 class=\"heading-medium mar-17\">Payments</h3> -->\n <span class=\"mar-17\" >No Payments recorded</span>\n </div>\n</div>\n</ng-container>\n<div *ngIf=\"isServiceRequest === 'false'\">\n <div *ngIf=\"((orderFeesTotal - orderRemissionTotal)- orderTotalPayments) > 0\" >\n <p class=\"totalPay\">Total left to pay: <b>{{((orderFeesTotal - orderRemissionTotal)- orderTotalPayments )| currency:'GBP':'symbol-narrow':'1.2-2' }}</b> </p>\n </div>\n <div *ngIf=\"((orderFeesTotal - orderRemissionTotal)- orderTotalPayments) < 0\" >\n <p class=\"totalPay\">Total left to pay: <b>0</b> </p>\n </div>\n</div>\n \n</ng-container>\n<ccpay-add-remission *ngIf=\"viewStatus === 'addremission' && feeId\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[fee]=\"feeId\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[isServiceRequest] = \"isServiceRequest\"\n[paymentGroupRef]=\"orderRef\" \n[isFromServiceRequestPage] = \"true\"\n[payment] = \"payment\"\n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'issuerefund' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[isFromServiceRequestPage]=\"isFromServiceRequestPage\"\n[isFromPaymentDetailPage] = \"isFromPaymentDetailPage\"\n[payment]=\"payment\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[paymentGroupRef]=\"orderRef\" \n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[isFullyRefund] = \"isFullyRefund\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[isFromRefundListPage] = \"false\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"></ccpay-add-remission>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'addrefundforremission' && payment\"\n[isTurnOff]=\"isTurnOff\"\n[isStrategicFixEnable]=\"isStrategicFixEnable\" \n[isOldPcipalOff]=\"isOldPcipalOff\" \n[viewCompStatus]= \"viewStatus\"\n[isNewPcipalOff]=\"isNewPcipalOff\" \n[payment]=\"payment\" \n[orderStatus] =\"orderStatus\"\n[paidAmount]= \"orderTotalPayments\"\n[isRefundRemission]=\"isRefundRemission\"\n[caseType]=\"caseType\" \n[feeamount]=\"remissionFeeAmt\"\n[remission] = \"remissions\"\n[isFromServiceRequestPage]=\"isServiceRequest\" \n[ccdCaseNumber]=\"ccdCaseNumber\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[takepayment] = \"takePayment\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"></ccpay-add-remission>\n\n<ccpay-payment-view *ngIf=\"viewStatus === 'payment-view'\"\n[LOGGEDINUSERROLES] = \"LOGGEDINUSERROLES\"\n[isTurnOff] = \"isTurnOff\" \n[isTakePayment] = \"takePayment\" \n[caseType] = \"caseType\"\n[orderRef] = \"orderRef\"\n[orderStatus] = \"orderStatus\"\n[orderCreated] = \"orderCreated\"\n[orderParty] = \"orderParty\"\n[orderCCDEvent] = \"orderCCDEvent\"\n[orderDetail] = \"orderDetail\"\n[isOldPcipalOff] = \"isOldPcipalOff\"\n[isNewPcipalOff] = \"isNewPcipalOff\"\n[orderFeesTotal] = \"orderFeesTotal\"\n[orderTotalPayments] = \"orderTotalPayments\"\n[orderRemissionTotal] = \"orderRemissionTotal\"\n[isServiceRequest] = \"isServiceRequest\">\n</ccpay-payment-view>\n\n<ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n<div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n</div>\n<div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemoval()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(feeId)\">\n Remove\n </button>\n </form>\n</div>\n</ng-container>\n\n<div class=\"over-payment\">\n <ng-container *ngIf=\"viewCompStatus === 'overpayment'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='OVERPAYMENTPAGE'> \n <h1 class=\"heading-large\">Issue refund</h1>\n <h1 class=\"heading-medium\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h1>\n <span id=\"how-contacted-conditional-hint govuk-font19px\" class=\"form-hint\">\n Payment reference: {{paymentGroup?.payments[0]?.reference}}\n </span>\n <div class=\"govuk-form-group\">\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--l\">\n <b>\n Select payment to refund\n </b>\n </legend>\n <div class=\"govuk-radios\" data-module=\"govuk-radios\">\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"over-payment\" name=\"over-payment\" type=\"radio\" (click)=\"selectPymentOption('op')\" value=\"op\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"where-do-you-live\">\n Over payment \u00A3{{getOverPaymentValue() | number:'.2'}}\n </label>\n </div>\n <div class=\"govuk-radios__item\">\n <input class=\"govuk-radios__input\" id=\"full-payment\" name=\"over-payment\" type=\"radio\" (click)=\"selectPymentOption('fp')\" value=\"fp\">\n <label class=\"govuk-label govuk-radios__label govuk-font19px\" for=\"where-do-you-live-2\">\n Full payment \u00A3{{paymentGroup?.payments[0]?.amount | number:'.2'}}\n </label>\n </div>\n </div>\n <button class=\"govuk-button govuk-button--secondary over-payment-alignment govuk-font19px\"\n (click)=\"goToPaymentViewComp()\"> Previous</button>\n <button \n (click)=\"continuePayment(paymentGroup)\"\n [disabled]=\"isContinueBtnDisabled\"\n [ngClass]='isContinueBtnDisabled ? \"button button--disabled govuk-!-margin-right-1 govuk-font19px\" : \"button govuk-!-margin-right-1 govuk-font19px\"'\n class=\"govuk-button\"> Continue</button>\n </fieldset>\n </div>\n </ng-container>\n \n <ng-container *ngIf=\"viewCompStatus === 'overPaymentAddressCapture'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='OVERPAYMENTADDRESSCAPTUREPAGE'> \n <h1 class=\"govuk-heading-l\">Issue refund</h1>\n <h2 class=\"govuk-heading-m govuk-font19px\">Case reference: {{ccdCaseNumber | ccdHyphens }}</h2>\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint govuk-font19px\">\n Payment reference: {{paymentGroup?.payments[0]?.reference}}\n </span>\n <ccpay-contact-details \n [addressObj] = notification\n (assignContactDetails)=\"getContactDetails($event)\"\n (redirectToIssueRefund)=\"gotoPaymentSelectPage($event)\" ></ccpay-contact-details>\n <p>\n <a (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n </ng-container>\n \n <ng-container *ngIf=\"viewCompStatus === 'overpaymentcheckandanswer'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREFUNDFORREMISSION'> \n <div class=\"govuk-warning-text\">\n \n <h1 class=\"heading-large\"> Check your answers</h1>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment reference</td>\n <td class=\"govuk-table__cell\"> {{paymentGroup.payments[0].reference}} </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Payment amount</td>\n <td class=\"govuk-table__cell\">{{paymentGroup.payments[0].amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee amount</td>\n <td class=\"govuk-table__cell\">{{paymentGroup?.fees[0]?.net_amount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund amount</td>\n <td class=\"govuk-table__cell\">{{getOverPaymentValue() | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Refund reason</td>\n <td class=\"govuk-table__cell\">Over payment</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send to</td>\n <td class=\"govuk-table__cell\">{{orderParty}}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Send via</td>\n <td class=\"govuk-table__cell\">\n <div *ngIf=\"contactDetailsObj?.notification_type === 'EMAIL'\" class=\"contactDetails-width\">\n <strong>Email</strong>\n <br/>\n {{contactDetailsObj?.email}}\n </div>\n <div *ngIf=\"contactDetailsObj?.notification_type === 'LETTER'\" class=\"contactDetails-width\">\n <strong>Post</strong>\n <br/>\n {{contactDetailsObj?.address_line}} {{contactDetailsObj?.city}} {{contactDetailsObj?.county}} {{contactDetailsObj?.country}} {{contactDetailsObj?.postal_code}}\n </div>\n <a (click)=\"gotoAddressPage(contactDetailsObj)\" class=\"govuk-link right margin-top--size\" >Change</a>\n </td>\n </table>\n <button type=\"submit\" class=\"button govuk-button--secondary over-payment-alignment govuk-font19px\" (click)=\"gotoAddressPage(contactDetailsObj)\">Previous</button>\n <button type=\"submit\"\n [ngClass]='isContinueBtnDisabled ? \"button button--disabled govuk-!-margin-right-1 govuk-font19px\" : \"button govuk-!-margin-right-1 govuk-font19px\"'\n (click)=\"processRefund()\">\n Submit refund\n </button>\n <p>\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link govuk-font19px\" data-module=\"govuk-button\">\n Cancel\n </a>\n </p>\n \n </ng-container>\n <ng-container *ngIf=\"viewStatus === 'refundconfirmationpage' && viewCompStatus !== 'overpayment' && viewCompStatus !== 'overPaymentAddressCapture' && viewCompStatus !== 'overpaymentcheckandanswer'\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='RETROREMISSIONREFUNDCONFIRMATIONPAGE'> \n <div class=\"govuk-grid-row\">\n <div >\n <div class=\"govuk-panel govuk-panel--confirmation\">\n <h1 class=\"govuk-panel__title\">\n Refund submitted\n </h1>\n \n <div class=\"govuk-panel__body\">\n <p class=\"govuk-body white\"><strong>Refund reference: {{refundReference}}</strong></p>\n </div>\n \n </div>\n <h2 class=\"govuk-heading-l\">What happens next</h2>\n <p class=\"govuk-body\">\n A refund request for {{refundAmount | currency:'GBP':'symbol-narrow':'1.2-2' }} has been created and will be passed to a team leader to approve.\n </p>\n <p class=\"govuk-body\">\n <a href=\"javascript:void(0)\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-link pointer\" data-module=\"govuk-button\">\n Return to case\n </a>\n </p>\n </div>\n </div>\n \n </ng-container>\n </div>",
|
|
9312
10839
|
styles: [".govuk-grid-column-full--gr{position:relative;margin-bottom:10px}.disable{text-decoration:none;cursor:default;color:#fff;background-color:grey;pointer-events:none}.govuk-grid__surplus-payments{margin:20px 0}.govuk-grid__surplus-payments>.govuk-grid-column-full{padding:0}.govuk-grid__surplus-payments-col1{margin-bottom:10px}.govuk-inset-text__no-border{border-left:0}.govuk-hidetext{font-size:22px;padding-bottom:10px}.lowercase{text-transform:lowercase}.channel::first-letter{text-transform:uppercase}.govuk-heading-xl{font-size:48px;margin-bottom:1px}.govuk-section-break--visible{border-bottom:2px solid #000}.totalpayments.govuk-table__row{border-bottom:2px solid #000!important}.govuk-inset-text{margin-left:1em}.govuk-button{font-size:19px;margin-bottom:0!important}.govuk-table__cell.govuk-table__cell--col6.govuk-table__custom--col6,.groupamount.govuk-table__header{text-align:right}.feeclass{padding-left:.7em}.align-center{text-align:center}details summary{display:list-item}.case-transaction__color{color:#a71414;font-weight:700;text-align:center}.capitalize::first-letter{text-transform:uppercase}.govuk-inset-text__no-left-margin{margin-left:0;padding-left:0}.whitespace-inherit{white-space:inherit!important}.govuk-section-records-break{margin:10px;border-bottom:2px solid #000!important}.exisitng-fees{margin-left:12px}.add-telephony-payment{margin-top:-2em;margin-left:-2em}.govuk-table__header--custom{text-align:center}.disable-link{cursor:default;pointer-events:none;color:#8e8c8c}.panel-no--style{border-left-style:none}.col-28{width:28%!important}.col-8{width:8%!important}.col-60{width:60%!important}.col-32{width:32%!important}.col-34{width:34%!important}#bckLnksize{font-size:16px!important}.col-15{width:15%!important;padding-right:0!important;padding-left:0!important}.col-16{width:16%!important}.col-14{width:14%!important}.col-17{width:17%!important}.col-12{width:12%!important}.col-9{width:9%!important}.col-10{width:10%!important}.col-11{width:11%!important}.col-13{width:13%!important}.col-21{width:21%!important}.col-20{width:20%!important}.col-24{width:24%!important}.govuk-table__cell,.govuk-table__header{padding:10px 10px 10px 0}.col-27{width:27%!important}td{white-space:nowrap;overflow:hidden!important}.col-19{width:19%!important;padding-left:0!important}.col-18{width:18%!important;padding-left:0!important;padding-right:0!important}.col-37{width:37%!important}.col-55{width:55%!important}.govuk-table{margin-bottom:1px}.hmcts-banner>.hmcts-banner__message{font-size:19px;line-height:1.25}.summary-table-font{font-size:36px}.order-class{padding-top:3em}.govuk-table__cell:last-child,.govuk-table__header:last-child{text-align:right}.govuk-grid-column-two-thirds{width:64%!important;padding:0!important}.govuk-heading-l{font-size:36px;margin-bottom:10px}.paymentrequest{margin-top:1em}.mar-17{margin-left:17px}.col-61{width:61px!important;padding:0!important}.error{width:960px;margin:auto}.summarypage{padding-left:36em;margin-top:2em}.summarypagealign{width:100%;text-align:right;margin-top:2em}.govuk-inset-text{font-size:2.1875rem}table{table-layout:fixed;width:100%}td,th{word-wrap:break-word}.totalPay{padding-right:14px;float:right;margin-top:2em}.govuk-back-link{font-size:1.5rem!important}.totalfees{float:right;margin-top:2em}.refundBtn{text-align:right;width:18%}.col-25{width:25%!important}.col-51{width:51%!important}.alignright{text-align:right}.alignleft{text-align:left}.alignself{align-self:flex-end}.maxwidth{width:100%}"]
|
|
9313
10840
|
}] }
|
|
9314
10841
|
];
|
|
@@ -9318,6 +10845,7 @@
|
|
|
9318
10845
|
{ type: PaymentLibComponent },
|
|
9319
10846
|
{ type: PaymentViewService },
|
|
9320
10847
|
{ type: OrderslistService },
|
|
10848
|
+
{ type: i0.ChangeDetectorRef },
|
|
9321
10849
|
{ type: router.Router }
|
|
9322
10850
|
];
|
|
9323
10851
|
};
|
|
@@ -9601,6 +11129,7 @@
|
|
|
9601
11129
|
PaymentListComponent,
|
|
9602
11130
|
PaymentViewComponent,
|
|
9603
11131
|
PbaPaymentComponent,
|
|
11132
|
+
ContactDetailsComponent,
|
|
9604
11133
|
ProcessRefundComponent,
|
|
9605
11134
|
RefundListComponent,
|
|
9606
11135
|
CardDetailsComponent,
|
|
@@ -9649,45 +11178,47 @@
|
|
|
9649
11178
|
exports.PaymentLibService = PaymentLibService;
|
|
9650
11179
|
exports.PaymentLibComponent = PaymentLibComponent;
|
|
9651
11180
|
exports.PaymentLibModule = PaymentLibModule;
|
|
9652
|
-
exports.ɵ
|
|
9653
|
-
exports.ɵ
|
|
9654
|
-
exports.ɵ
|
|
9655
|
-
exports.ɵ
|
|
9656
|
-
exports.ɵ
|
|
9657
|
-
exports.ɵ
|
|
9658
|
-
exports.ɵ
|
|
9659
|
-
exports.ɵt =
|
|
9660
|
-
exports.ɵ
|
|
11181
|
+
exports.ɵbd = AddRemissionComponent;
|
|
11182
|
+
exports.ɵy = AllocatePaymentsComponent;
|
|
11183
|
+
exports.ɵo = CardDetailsComponent;
|
|
11184
|
+
exports.ɵbb = CaseTransactionsComponent;
|
|
11185
|
+
exports.ɵj = ContactDetailsComponent;
|
|
11186
|
+
exports.ɵbk = ErrorBannerComponent;
|
|
11187
|
+
exports.ɵbc = FeeSummaryComponent;
|
|
11188
|
+
exports.ɵt = MarkUnidentifiedPaymentComponent;
|
|
11189
|
+
exports.ɵv = MarkUnsolicitedPaymentComponent;
|
|
11190
|
+
exports.ɵq = PageNotFoundComponent;
|
|
9661
11191
|
exports.ɵb = PaymentListComponent;
|
|
9662
11192
|
exports.ɵf = PaymentViewComponent;
|
|
9663
|
-
exports.ɵ
|
|
11193
|
+
exports.ɵba = PbaDetailsComponent;
|
|
9664
11194
|
exports.ɵi = PbaPaymentComponent;
|
|
9665
|
-
exports.ɵ
|
|
9666
|
-
exports.ɵ
|
|
9667
|
-
exports.ɵ
|
|
9668
|
-
exports.ɵ
|
|
9669
|
-
exports.ɵ
|
|
9670
|
-
exports.ɵ
|
|
9671
|
-
exports.ɵ
|
|
9672
|
-
exports.ɵ
|
|
9673
|
-
exports.ɵ
|
|
9674
|
-
exports.ɵ
|
|
9675
|
-
exports.ɵ
|
|
9676
|
-
exports.ɵ
|
|
9677
|
-
exports.ɵ
|
|
9678
|
-
exports.ɵ
|
|
9679
|
-
exports.ɵ
|
|
9680
|
-
exports.ɵ
|
|
11195
|
+
exports.ɵl = ProcessRefundComponent;
|
|
11196
|
+
exports.ɵx = ProcessedPaymentsComponent;
|
|
11197
|
+
exports.ɵn = RefundListComponent;
|
|
11198
|
+
exports.ɵbm = RefundStatusComponent;
|
|
11199
|
+
exports.ɵbi = ReportsComponent;
|
|
11200
|
+
exports.ɵbn = ServiceRequestComponent;
|
|
11201
|
+
exports.ɵr = StatusHistoryComponent;
|
|
11202
|
+
exports.ɵbl = TableComponent;
|
|
11203
|
+
exports.ɵw = UnprocessedPaymentsComponent;
|
|
11204
|
+
exports.ɵbf = CapitalizePipe;
|
|
11205
|
+
exports.ɵbe = CcdHyphensPipe;
|
|
11206
|
+
exports.ɵbg = keyValuePipe;
|
|
11207
|
+
exports.ɵbh = SanitizeHtmlPipe;
|
|
11208
|
+
exports.ɵu = BulkScaningPaymentService;
|
|
11209
|
+
exports.ɵp = CardDetailsService;
|
|
11210
|
+
exports.ɵz = CaseTransactionsService;
|
|
11211
|
+
exports.ɵk = NotificationService;
|
|
9681
11212
|
exports.ɵa = OrderslistService;
|
|
9682
11213
|
exports.ɵc = PaymentListService;
|
|
9683
11214
|
exports.ɵg = PaymentViewService;
|
|
9684
|
-
exports.ɵ
|
|
11215
|
+
exports.ɵm = RefundsService;
|
|
9685
11216
|
exports.ɵe = ErrorHandlerService;
|
|
9686
11217
|
exports.ɵh = WebComponentHttpClient;
|
|
9687
|
-
exports.ɵ
|
|
11218
|
+
exports.ɵbo = ConsoleLoggerService;
|
|
9688
11219
|
exports.ɵd = LoggerService;
|
|
9689
|
-
exports.ɵ
|
|
9690
|
-
exports.ɵ
|
|
11220
|
+
exports.ɵs = StatusHistoryService;
|
|
11221
|
+
exports.ɵbj = XlFileService;
|
|
9691
11222
|
|
|
9692
11223
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
9693
11224
|
|