@hmcts/ccpay-web-component 5.0.2-beta102 → 5.0.2-beta103
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 +2098 -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 +213 -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 +254 -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 +1839 -497
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2080 -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
|
@@ -2,6 +2,7 @@ import { _throw } from 'rxjs/observable/throw';
|
|
|
2
2
|
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { HttpClient, HttpHeaders, HttpClientModule } from '@angular/common/http';
|
|
4
4
|
import { catchError } from 'rxjs/operators';
|
|
5
|
+
import { __values } from 'tslib';
|
|
5
6
|
import { Meta, DomSanitizer } from '@angular/platform-browser';
|
|
6
7
|
import { Location, formatDate, CommonModule } from '@angular/common';
|
|
7
8
|
import { saveAs } from 'file-saver';
|
|
@@ -12,9 +13,8 @@ import { MatSort, MatSortModule } from '@angular/material/sort';
|
|
|
12
13
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
13
14
|
import { MatInputModule } from '@angular/material/input';
|
|
14
15
|
import { FormBuilder, Validators, FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
15
|
-
import { __values } from 'tslib';
|
|
16
16
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
17
|
-
import { Injectable, Component, Input, Output, EventEmitter,
|
|
17
|
+
import { Injectable, Component, Input, Output, EventEmitter, ChangeDetectorRef, ViewChild, Pipe, NgModule, defineInjectable, inject } from '@angular/core';
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* @fileoverview added by tsickle
|
|
@@ -83,6 +83,26 @@ var PaymentLibService = /** @class */ (function () {
|
|
|
83
83
|
function () {
|
|
84
84
|
return this.REFUNDS_API_ROOT;
|
|
85
85
|
};
|
|
86
|
+
/**
|
|
87
|
+
* @param {?} notificationapiRoot
|
|
88
|
+
* @return {?}
|
|
89
|
+
*/
|
|
90
|
+
PaymentLibService.prototype.setNoticationApiRootUrl = /**
|
|
91
|
+
* @param {?} notificationapiRoot
|
|
92
|
+
* @return {?}
|
|
93
|
+
*/
|
|
94
|
+
function (notificationapiRoot) {
|
|
95
|
+
this.NOTIFICATION_API_ROOT = notificationapiRoot;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* @return {?}
|
|
99
|
+
*/
|
|
100
|
+
PaymentLibService.prototype.getNoticationApiRootUrl = /**
|
|
101
|
+
* @return {?}
|
|
102
|
+
*/
|
|
103
|
+
function () {
|
|
104
|
+
return this.NOTIFICATION_API_ROOT;
|
|
105
|
+
};
|
|
86
106
|
/**
|
|
87
107
|
* @param {?} cardPaymentReturnUrl
|
|
88
108
|
* @return {?}
|
|
@@ -558,6 +578,7 @@ var PaymentLibComponent = /** @class */ (function () {
|
|
|
558
578
|
this.paymentLibService.setApiRootUrl(this.API_ROOT);
|
|
559
579
|
this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);
|
|
560
580
|
this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);
|
|
581
|
+
this.paymentLibService.setNoticationApiRootUrl(this.NOTIFICATION_API_ROOT);
|
|
561
582
|
this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);
|
|
562
583
|
if (this.LOGGEDINUSERROLES.length > 0) {
|
|
563
584
|
this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);
|
|
@@ -588,7 +609,7 @@ var PaymentLibComponent = /** @class */ (function () {
|
|
|
588
609
|
PaymentLibComponent.decorators = [
|
|
589
610
|
{ type: Component, args: [{
|
|
590
611
|
selector: 'ccpay-payment-lib',
|
|
591
|
-
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 "
|
|
612
|
+
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 "
|
|
592
613
|
}] }
|
|
593
614
|
];
|
|
594
615
|
/** @nocollapse */
|
|
@@ -601,6 +622,7 @@ var PaymentLibComponent = /** @class */ (function () {
|
|
|
601
622
|
API_ROOT: [{ type: Input, args: ['API_ROOT',] }],
|
|
602
623
|
BULKSCAN_API_ROOT: [{ type: Input, args: ['BULKSCAN_API_ROOT',] }],
|
|
603
624
|
REFUNDS_API_ROOT: [{ type: Input, args: ['REFUNDS_API_ROOT',] }],
|
|
625
|
+
NOTIFICATION_API_ROOT: [{ type: Input, args: ['NOTIFICATION_API_ROOT',] }],
|
|
604
626
|
CARDPAYMENTRETURNURL: [{ type: Input, args: ['CARDPAYMENTRETURNURL',] }],
|
|
605
627
|
CCD_CASE_NUMBER: [{ type: Input, args: ['CCD_CASE_NUMBER',] }],
|
|
606
628
|
EXC_REFERENCE: [{ type: Input, args: ['EXC_REFERENCE',] }],
|
|
@@ -616,6 +638,8 @@ var PaymentLibComponent = /** @class */ (function () {
|
|
|
616
638
|
ISSFENABLE: [{ type: Input, args: ['ISSFENABLE',] }],
|
|
617
639
|
ISTURNOFF: [{ type: Input, args: ['ISTURNOFF',] }],
|
|
618
640
|
CASETYPE: [{ type: Input, args: ['CASETYPE',] }],
|
|
641
|
+
ISOLDPCIPALOFF: [{ type: Input, args: ['ISOLDPCIPALOFF',] }],
|
|
642
|
+
ISNEWPCIPALOFF: [{ type: Input, args: ['ISNEWPCIPALOFF',] }],
|
|
619
643
|
rootUrl: [{ type: Input, args: ['rootUrl',] }],
|
|
620
644
|
REFUNDLIST: [{ type: Input, args: ['REFUNDLIST',] }],
|
|
621
645
|
USERID: [{ type: Input, args: ['USERID',] }],
|
|
@@ -1360,13 +1384,27 @@ var PaymentViewService = /** @class */ (function () {
|
|
|
1360
1384
|
return PaymentViewService;
|
|
1361
1385
|
}());
|
|
1362
1386
|
|
|
1387
|
+
/**
|
|
1388
|
+
* @fileoverview added by tsickle
|
|
1389
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1390
|
+
*/
|
|
1391
|
+
var PostRefundRetroRemission = /** @class */ (function () {
|
|
1392
|
+
function PostRefundRetroRemission(contact_details, fees, payment_reference, refund_reason, total_refund_amount) {
|
|
1393
|
+
this.contact_details = contact_details;
|
|
1394
|
+
this.fees = fees;
|
|
1395
|
+
this.payment_reference = payment_reference;
|
|
1396
|
+
this.refund_reason = refund_reason;
|
|
1397
|
+
this.total_refund_amount = total_refund_amount;
|
|
1398
|
+
}
|
|
1399
|
+
return PostRefundRetroRemission;
|
|
1400
|
+
}());
|
|
1401
|
+
|
|
1363
1402
|
/**
|
|
1364
1403
|
* @fileoverview added by tsickle
|
|
1365
1404
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1366
1405
|
*/
|
|
1367
1406
|
var PaymentViewComponent = /** @class */ (function () {
|
|
1368
1407
|
function PaymentViewComponent(paymentViewService, paymentLibComponent, cd, OrderslistService$$1) {
|
|
1369
|
-
var _this = this;
|
|
1370
1408
|
this.paymentViewService = paymentViewService;
|
|
1371
1409
|
this.paymentLibComponent = paymentLibComponent;
|
|
1372
1410
|
this.cd = cd;
|
|
@@ -1376,30 +1414,7 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1376
1414
|
this.isIssueRefunfBtnEnable = false;
|
|
1377
1415
|
this.allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];
|
|
1378
1416
|
this.remissions = [];
|
|
1379
|
-
this.
|
|
1380
|
-
* @return {?}
|
|
1381
|
-
*/
|
|
1382
|
-
function () {
|
|
1383
|
-
return _this.allowedRolesToAccessRefund.some((/**
|
|
1384
|
-
* @param {?} role
|
|
1385
|
-
* @return {?}
|
|
1386
|
-
*/
|
|
1387
|
-
function (role) {
|
|
1388
|
-
return _this.LOGGEDINUSERROLES.indexOf(role) !== -1;
|
|
1389
|
-
}));
|
|
1390
|
-
});
|
|
1391
|
-
this.allowFurtherAccessAfter4Days = (/**
|
|
1392
|
-
* @param {?} payment
|
|
1393
|
-
* @return {?}
|
|
1394
|
-
*/
|
|
1395
|
-
function (payment) {
|
|
1396
|
-
if (payment !== null && payment !== undefined) {
|
|
1397
|
-
/** @type {?} */
|
|
1398
|
-
var tmp4DayAgo = new Date();
|
|
1399
|
-
tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);
|
|
1400
|
-
return tmp4DayAgo >= new Date(payment.date_created);
|
|
1401
|
-
}
|
|
1402
|
-
});
|
|
1417
|
+
this.isContinueBtnDisabled = true;
|
|
1403
1418
|
}
|
|
1404
1419
|
/**
|
|
1405
1420
|
* @return {?}
|
|
@@ -1453,6 +1468,7 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1453
1468
|
}
|
|
1454
1469
|
}));
|
|
1455
1470
|
paymentGroup.fees = fees;
|
|
1471
|
+
_this.paymentFees = fees;
|
|
1456
1472
|
_this.paymentGroup = paymentGroup;
|
|
1457
1473
|
_this.paymentGroup.payments = _this.paymentGroup.payments.filter((/**
|
|
1458
1474
|
* @param {?} paymentGroupObj
|
|
@@ -1497,6 +1513,24 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1497
1513
|
function () {
|
|
1498
1514
|
this.paymentLibComponent.viewName = 'payment-list';
|
|
1499
1515
|
};
|
|
1516
|
+
/**
|
|
1517
|
+
* @return {?}
|
|
1518
|
+
*/
|
|
1519
|
+
PaymentViewComponent.prototype.getOverPaymentValue = /**
|
|
1520
|
+
* @return {?}
|
|
1521
|
+
*/
|
|
1522
|
+
function () {
|
|
1523
|
+
/** @type {?} */
|
|
1524
|
+
var feesOverPayment = 0;
|
|
1525
|
+
this.paymentGroup.fees.forEach((/**
|
|
1526
|
+
* @param {?} fee
|
|
1527
|
+
* @return {?}
|
|
1528
|
+
*/
|
|
1529
|
+
function (fee) {
|
|
1530
|
+
feesOverPayment += fee.over_payment;
|
|
1531
|
+
}));
|
|
1532
|
+
return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;
|
|
1533
|
+
};
|
|
1500
1534
|
/**
|
|
1501
1535
|
* @return {?}
|
|
1502
1536
|
*/
|
|
@@ -1582,7 +1616,7 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1582
1616
|
*/
|
|
1583
1617
|
function (fee) {
|
|
1584
1618
|
var _this = this;
|
|
1585
|
-
if (this.
|
|
1619
|
+
if (this.chkIsAddRemissionBtnEnable(fee)) {
|
|
1586
1620
|
this.feeId = fee;
|
|
1587
1621
|
this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe((/**
|
|
1588
1622
|
* @param {?} paymentGroup
|
|
@@ -1623,6 +1657,64 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1623
1657
|
}
|
|
1624
1658
|
return false;
|
|
1625
1659
|
};
|
|
1660
|
+
/**
|
|
1661
|
+
* @return {?}
|
|
1662
|
+
*/
|
|
1663
|
+
PaymentViewComponent.prototype.processRefund = /**
|
|
1664
|
+
* @return {?}
|
|
1665
|
+
*/
|
|
1666
|
+
function () {
|
|
1667
|
+
var _this = this;
|
|
1668
|
+
this.isConfirmationBtnDisabled = true;
|
|
1669
|
+
this.errorMessage = '';
|
|
1670
|
+
/** @type {?} */
|
|
1671
|
+
var obj = this.paymentGroup.fees[0];
|
|
1672
|
+
this.fees = [{ id: obj.id,
|
|
1673
|
+
code: obj.code,
|
|
1674
|
+
version: obj.version,
|
|
1675
|
+
apportion_amount: obj.apportion_amount,
|
|
1676
|
+
calculated_amount: obj.calculated_amount,
|
|
1677
|
+
updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,
|
|
1678
|
+
volume: obj.volume,
|
|
1679
|
+
refund_amount: this.getOverPaymentValue() }];
|
|
1680
|
+
/** @type {?} */
|
|
1681
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.paymentGroup.payments[0].reference, 'RR037', this.getOverPaymentValue());
|
|
1682
|
+
this.paymentViewService.postRefundsReason(requestBody).subscribe((/**
|
|
1683
|
+
* @param {?} response
|
|
1684
|
+
* @return {?}
|
|
1685
|
+
*/
|
|
1686
|
+
function (response) {
|
|
1687
|
+
if (JSON.parse(response)) {
|
|
1688
|
+
_this.viewCompStatus = '';
|
|
1689
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
1690
|
+
_this.refundReference = JSON.parse(response).refund_reference;
|
|
1691
|
+
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
1692
|
+
}
|
|
1693
|
+
}), (/**
|
|
1694
|
+
* @param {?} error
|
|
1695
|
+
* @return {?}
|
|
1696
|
+
*/
|
|
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,61 +1729,44 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
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
|
+
*/
|
|
1737
|
+
function (paymentGroup) {
|
|
1738
|
+
_this.paymentGroup = paymentGroup;
|
|
1739
|
+
_this.paymentGroup.payments = _this.paymentGroup.payments.filter((/**
|
|
1740
|
+
* @param {?} paymentGroupObj
|
|
1644
1741
|
* @return {?}
|
|
1645
1742
|
*/
|
|
1646
|
-
function (
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
*/
|
|
1652
|
-
function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.payment.reference); }));
|
|
1653
|
-
_this.payment = _this.paymentGroup.payments[0];
|
|
1654
|
-
_this.remissions = remission;
|
|
1655
|
-
_this.remissionFeeAmt = fees.filter((/**
|
|
1656
|
-
* @param {?} data
|
|
1657
|
-
* @return {?}
|
|
1658
|
-
*/
|
|
1659
|
-
function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
1660
|
-
_this.viewStatus = 'addrefundforremission';
|
|
1661
|
-
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
1662
|
-
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
1663
|
-
}), (/**
|
|
1664
|
-
* @param {?} error
|
|
1743
|
+
function (paymentGroupObj) { return paymentGroupObj['reference'].includes(payment.reference); }));
|
|
1744
|
+
_this.payment = _this.paymentGroup.payments[0];
|
|
1745
|
+
_this.remissions = remission;
|
|
1746
|
+
_this.remissionFeeAmt = fees.filter((/**
|
|
1747
|
+
* @param {?} data
|
|
1665
1748
|
* @return {?}
|
|
1666
1749
|
*/
|
|
1667
|
-
function (
|
|
1668
|
-
|
|
1750
|
+
function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
1751
|
+
_this.viewStatus = 'addrefundforremission';
|
|
1752
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
1753
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
1754
|
+
}), (/**
|
|
1755
|
+
* @param {?} error
|
|
1756
|
+
* @return {?}
|
|
1757
|
+
*/
|
|
1758
|
+
function (error) { return _this.errorMessage = error; }));
|
|
1759
|
+
//}
|
|
1669
1760
|
};
|
|
1670
1761
|
/**
|
|
1671
1762
|
* @return {?}
|
|
1672
1763
|
*/
|
|
1673
|
-
PaymentViewComponent.prototype.
|
|
1764
|
+
PaymentViewComponent.prototype.goToPaymentViewComponent = /**
|
|
1674
1765
|
* @return {?}
|
|
1675
1766
|
*/
|
|
1676
1767
|
function () {
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
this.paymentGroup.payments.forEach((/**
|
|
1680
|
-
* @param {?} payment
|
|
1681
|
-
* @return {?}
|
|
1682
|
-
*/
|
|
1683
|
-
function (payment) {
|
|
1684
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
1685
|
-
_this.isRefundRemissionBtnEnable = true;
|
|
1686
|
-
}
|
|
1687
|
-
}));
|
|
1688
|
-
if (this.isRefundRemissionBtnEnable) {
|
|
1689
|
-
return true;
|
|
1690
|
-
}
|
|
1691
|
-
else {
|
|
1692
|
-
return false;
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1768
|
+
this.viewCompStatus = '';
|
|
1769
|
+
this.viewStatus = 'paymentview';
|
|
1695
1770
|
};
|
|
1696
1771
|
/**
|
|
1697
1772
|
* @param {?} paymentgrp
|
|
@@ -1703,13 +1778,18 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1703
1778
|
*/
|
|
1704
1779
|
function (paymentgrp) {
|
|
1705
1780
|
if (paymentgrp !== null && paymentgrp !== undefined) {
|
|
1706
|
-
if (this.
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1781
|
+
if (this.chkIsIssueRefundBtnEnable(paymentgrp.payments[0])) {
|
|
1782
|
+
if (paymentgrp.payments[0].over_payment > 0) {
|
|
1783
|
+
this.viewCompStatus = 'overpayment';
|
|
1784
|
+
}
|
|
1785
|
+
else {
|
|
1786
|
+
this.paymentGroup = paymentgrp;
|
|
1787
|
+
this.viewStatus = 'issuerefund';
|
|
1788
|
+
this.isRefundRemission = true;
|
|
1789
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
1790
|
+
this.isFromPaymentDetailPage = true;
|
|
1791
|
+
this.isFromServiceRequestPage = false;
|
|
1792
|
+
}
|
|
1713
1793
|
}
|
|
1714
1794
|
}
|
|
1715
1795
|
};
|
|
@@ -1748,73 +1828,110 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1748
1828
|
* @param {?} payment
|
|
1749
1829
|
* @return {?}
|
|
1750
1830
|
*/
|
|
1751
|
-
PaymentViewComponent.prototype.
|
|
1831
|
+
PaymentViewComponent.prototype.chkIsIssueRefundBtnEnable = /**
|
|
1752
1832
|
* @param {?} payment
|
|
1753
1833
|
* @return {?}
|
|
1754
1834
|
*/
|
|
1755
1835
|
function (payment) {
|
|
1756
|
-
if (
|
|
1757
|
-
payment.
|
|
1758
|
-
this.isIssueRefunfBtnEnable = true;
|
|
1759
|
-
}
|
|
1760
|
-
if (this.isIssueRefunfBtnEnable) {
|
|
1761
|
-
return true;
|
|
1836
|
+
if (payment !== null && payment !== undefined) {
|
|
1837
|
+
return payment.issue_refund && payment.refund_enable;
|
|
1762
1838
|
}
|
|
1763
1839
|
else {
|
|
1764
1840
|
return false;
|
|
1765
1841
|
}
|
|
1766
1842
|
};
|
|
1767
1843
|
/**
|
|
1844
|
+
* @param {?} remission
|
|
1768
1845
|
* @return {?}
|
|
1769
1846
|
*/
|
|
1770
|
-
PaymentViewComponent.prototype.
|
|
1847
|
+
PaymentViewComponent.prototype.chkIsAddRefundBtnEnable = /**
|
|
1848
|
+
* @param {?} remission
|
|
1771
1849
|
* @return {?}
|
|
1772
1850
|
*/
|
|
1773
|
-
function () {
|
|
1774
|
-
if (
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
return true;
|
|
1779
|
-
}
|
|
1851
|
+
function (remission) {
|
|
1852
|
+
if (remission !== null && remission !== undefined) {
|
|
1853
|
+
return remission.add_refund;
|
|
1854
|
+
}
|
|
1855
|
+
else {
|
|
1780
1856
|
return false;
|
|
1781
1857
|
}
|
|
1782
1858
|
};
|
|
1783
1859
|
/**
|
|
1784
|
-
* @param {?}
|
|
1860
|
+
* @param {?} fee
|
|
1785
1861
|
* @return {?}
|
|
1786
1862
|
*/
|
|
1787
|
-
PaymentViewComponent.prototype.
|
|
1788
|
-
* @param {?}
|
|
1863
|
+
PaymentViewComponent.prototype.chkIsAddRemissionBtnEnable = /**
|
|
1864
|
+
* @param {?} fee
|
|
1789
1865
|
* @return {?}
|
|
1790
1866
|
*/
|
|
1791
|
-
function (
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {
|
|
1795
|
-
try {
|
|
1796
|
-
for (var _b = __values(this.paymentGroup.remissions), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1797
|
-
var remission = _c.value;
|
|
1798
|
-
if (remission.fee_code === feeCode) {
|
|
1799
|
-
return false;
|
|
1800
|
-
}
|
|
1801
|
-
}
|
|
1802
|
-
}
|
|
1803
|
-
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
1804
|
-
finally {
|
|
1805
|
-
try {
|
|
1806
|
-
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
1807
|
-
}
|
|
1808
|
-
finally { if (e_2) throw e_2.error; }
|
|
1809
|
-
}
|
|
1810
|
-
return true;
|
|
1811
|
-
}
|
|
1812
|
-
return true;
|
|
1867
|
+
function (fee) {
|
|
1868
|
+
if (fee !== null && fee !== undefined) {
|
|
1869
|
+
return fee.add_remission && fee.remission_enable;
|
|
1813
1870
|
}
|
|
1814
1871
|
else {
|
|
1815
1872
|
return false;
|
|
1816
1873
|
}
|
|
1817
1874
|
};
|
|
1875
|
+
/**
|
|
1876
|
+
* @param {?} paymentType
|
|
1877
|
+
* @return {?}
|
|
1878
|
+
*/
|
|
1879
|
+
PaymentViewComponent.prototype.selectPymentOption = /**
|
|
1880
|
+
* @param {?} paymentType
|
|
1881
|
+
* @return {?}
|
|
1882
|
+
*/
|
|
1883
|
+
function (paymentType) {
|
|
1884
|
+
this.paymentType = paymentType;
|
|
1885
|
+
this.isContinueBtnDisabled = false;
|
|
1886
|
+
};
|
|
1887
|
+
/**
|
|
1888
|
+
* @param {?} paymentgrp
|
|
1889
|
+
* @return {?}
|
|
1890
|
+
*/
|
|
1891
|
+
PaymentViewComponent.prototype.continuePayment = /**
|
|
1892
|
+
* @param {?} paymentgrp
|
|
1893
|
+
* @return {?}
|
|
1894
|
+
*/
|
|
1895
|
+
function (paymentgrp) {
|
|
1896
|
+
if (this.paymentType === 'op') {
|
|
1897
|
+
this.isFullyRefund = false;
|
|
1898
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
1899
|
+
}
|
|
1900
|
+
else if (this.paymentType === 'fp') {
|
|
1901
|
+
this.isFullyRefund = true;
|
|
1902
|
+
this.paymentGroup = paymentgrp;
|
|
1903
|
+
this.viewStatus = 'issuerefund';
|
|
1904
|
+
this.viewCompStatus = "";
|
|
1905
|
+
this.isRefundRemission = true;
|
|
1906
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
1907
|
+
this.isFromPaymentDetailPage = true;
|
|
1908
|
+
this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;
|
|
1909
|
+
}
|
|
1910
|
+
};
|
|
1911
|
+
/**
|
|
1912
|
+
* @param {?} event
|
|
1913
|
+
* @return {?}
|
|
1914
|
+
*/
|
|
1915
|
+
PaymentViewComponent.prototype.gotoPaymentSelectPage = /**
|
|
1916
|
+
* @param {?} event
|
|
1917
|
+
* @return {?}
|
|
1918
|
+
*/
|
|
1919
|
+
function (event) {
|
|
1920
|
+
event.preventDefault();
|
|
1921
|
+
this.viewCompStatus = 'overpayment';
|
|
1922
|
+
};
|
|
1923
|
+
/**
|
|
1924
|
+
* @param {?} obj
|
|
1925
|
+
* @return {?}
|
|
1926
|
+
*/
|
|
1927
|
+
PaymentViewComponent.prototype.getContactDetails = /**
|
|
1928
|
+
* @param {?} obj
|
|
1929
|
+
* @return {?}
|
|
1930
|
+
*/
|
|
1931
|
+
function (obj) {
|
|
1932
|
+
this.contactDetailsObj = obj;
|
|
1933
|
+
this.viewCompStatus = 'overpaymentcheckandanswer';
|
|
1934
|
+
};
|
|
1818
1935
|
/**
|
|
1819
1936
|
* @return {?}
|
|
1820
1937
|
*/
|
|
@@ -1834,8 +1951,8 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1834
1951
|
PaymentViewComponent.decorators = [
|
|
1835
1952
|
{ type: Component, args: [{
|
|
1836
1953
|
selector: 'ccpay-payment-view',
|
|
1837
|
-
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",
|
|
1838
|
-
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}"]
|
|
1954
|
+
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>",
|
|
1955
|
+
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}"]
|
|
1839
1956
|
}] }
|
|
1840
1957
|
];
|
|
1841
1958
|
/** @nocollapse */
|
|
@@ -1849,6 +1966,8 @@ var PaymentViewComponent = /** @class */ (function () {
|
|
|
1849
1966
|
isTurnOff: [{ type: Input }],
|
|
1850
1967
|
isTakePayment: [{ type: Input }],
|
|
1851
1968
|
caseType: [{ type: Input }],
|
|
1969
|
+
isNewPcipalOff: [{ type: Input }],
|
|
1970
|
+
isOldPcipalOff: [{ type: Input }],
|
|
1852
1971
|
orderRef: [{ type: Input }],
|
|
1853
1972
|
orderStatus: [{ type: Input }],
|
|
1854
1973
|
orderTotalPayments: [{ type: Input }],
|
|
@@ -1999,6 +2118,21 @@ var RefundsService = /** @class */ (function () {
|
|
|
1999
2118
|
function (body) {
|
|
2000
2119
|
return this.https.post(this.paymentLibService.REFUNDS_API_ROOT + "/refund", body).pipe(catchError(this.errorHandlerService.handleError));
|
|
2001
2120
|
};
|
|
2121
|
+
/**
|
|
2122
|
+
* @param {?} body
|
|
2123
|
+
* @param {?} refundRef
|
|
2124
|
+
* @param {?} notificationType
|
|
2125
|
+
* @return {?}
|
|
2126
|
+
*/
|
|
2127
|
+
RefundsService.prototype.putResendOrEdit = /**
|
|
2128
|
+
* @param {?} body
|
|
2129
|
+
* @param {?} refundRef
|
|
2130
|
+
* @param {?} notificationType
|
|
2131
|
+
* @return {?}
|
|
2132
|
+
*/
|
|
2133
|
+
function (body, refundRef, notificationType) {
|
|
2134
|
+
return this.https.put(this.paymentLibService.REFUNDS_API_ROOT + "/resend/notification/" + refundRef + "?notificationType=" + notificationType, body).pipe(catchError(this.errorHandlerService.handleError));
|
|
2135
|
+
};
|
|
2002
2136
|
/**
|
|
2003
2137
|
* @param {?} body
|
|
2004
2138
|
* @param {?} refund_reference
|
|
@@ -2085,8 +2219,9 @@ var RefundsService = /** @class */ (function () {
|
|
|
2085
2219
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2086
2220
|
*/
|
|
2087
2221
|
var ProcessRefundComponent = /** @class */ (function () {
|
|
2088
|
-
function ProcessRefundComponent(RefundsService$$1, formBuilder, OrderslistService$$1, paymentLibComponent, router, activeRoute) {
|
|
2222
|
+
function ProcessRefundComponent(RefundsService$$1, paymentViewService, formBuilder, OrderslistService$$1, paymentLibComponent, router, activeRoute) {
|
|
2089
2223
|
this.RefundsService = RefundsService$$1;
|
|
2224
|
+
this.paymentViewService = paymentViewService;
|
|
2090
2225
|
this.formBuilder = formBuilder;
|
|
2091
2226
|
this.OrderslistService = OrderslistService$$1;
|
|
2092
2227
|
this.paymentLibComponent = paymentLibComponent;
|
|
@@ -2109,6 +2244,7 @@ var ProcessRefundComponent = /** @class */ (function () {
|
|
|
2109
2244
|
this.isReasonEmpty = false;
|
|
2110
2245
|
this.isReasonInvalid = false;
|
|
2111
2246
|
this.successMsg = null;
|
|
2247
|
+
this.cpoDetails = null;
|
|
2112
2248
|
this.isConfirmButtondisabled = true;
|
|
2113
2249
|
}
|
|
2114
2250
|
/**
|
|
@@ -2156,6 +2292,20 @@ var ProcessRefundComponent = /** @class */ (function () {
|
|
|
2156
2292
|
if ((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT)) {
|
|
2157
2293
|
this.isFromRefundListPage = true;
|
|
2158
2294
|
}
|
|
2295
|
+
this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe((/**
|
|
2296
|
+
* @param {?} response
|
|
2297
|
+
* @return {?}
|
|
2298
|
+
*/
|
|
2299
|
+
function (response) {
|
|
2300
|
+
_this.cpoDetails = JSON.parse(response).content[0];
|
|
2301
|
+
}), (/**
|
|
2302
|
+
* @param {?} error
|
|
2303
|
+
* @return {?}
|
|
2304
|
+
*/
|
|
2305
|
+
function (error) {
|
|
2306
|
+
_this.errorMessage = (/** @type {?} */ (error.replace(/"/g, "")));
|
|
2307
|
+
_this.isCPODown = true;
|
|
2308
|
+
}));
|
|
2159
2309
|
};
|
|
2160
2310
|
/**
|
|
2161
2311
|
* @param {?} code
|
|
@@ -2495,25 +2645,17 @@ var ProcessRefundComponent = /** @class */ (function () {
|
|
|
2495
2645
|
this.isReasonInvalid = vals[7];
|
|
2496
2646
|
}
|
|
2497
2647
|
};
|
|
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
2648
|
ProcessRefundComponent.decorators = [
|
|
2508
2649
|
{ type: Component, args: [{
|
|
2509
2650
|
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
|
|
2651
|
+
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
2652
|
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
2653
|
}] }
|
|
2513
2654
|
];
|
|
2514
2655
|
/** @nocollapse */
|
|
2515
2656
|
ProcessRefundComponent.ctorParameters = function () { return [
|
|
2516
2657
|
{ type: RefundsService },
|
|
2658
|
+
{ type: PaymentViewService },
|
|
2517
2659
|
{ type: FormBuilder },
|
|
2518
2660
|
{ type: OrderslistService },
|
|
2519
2661
|
{ type: PaymentLibComponent },
|
|
@@ -2536,10 +2678,10 @@ var RefundListComponent = /** @class */ (function () {
|
|
|
2536
2678
|
this.refundService = refundService;
|
|
2537
2679
|
this.submittedRefundList = [];
|
|
2538
2680
|
this.rejectedRefundList = [];
|
|
2681
|
+
// approvalStatus = 'Sent for approval';
|
|
2682
|
+
// rejectStatus = 'Update required';
|
|
2539
2683
|
this.approvalStatus = 'Sent for approval';
|
|
2540
2684
|
this.rejectStatus = 'Update required';
|
|
2541
|
-
// approvalStatus = 'sent for approval';
|
|
2542
|
-
// rejectStatus = 'sent back';
|
|
2543
2685
|
this.errorMessage = null;
|
|
2544
2686
|
this.isAuthorized = true;
|
|
2545
2687
|
}
|
|
@@ -2819,6 +2961,447 @@ var StatusHistoryComponent = /** @class */ (function () {
|
|
|
2819
2961
|
return StatusHistoryComponent;
|
|
2820
2962
|
}());
|
|
2821
2963
|
|
|
2964
|
+
/**
|
|
2965
|
+
* @fileoverview added by tsickle
|
|
2966
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2967
|
+
*/
|
|
2968
|
+
var NotificationService = /** @class */ (function () {
|
|
2969
|
+
function NotificationService(http, https, errorHandlerService, paymentLibService) {
|
|
2970
|
+
this.http = http;
|
|
2971
|
+
this.https = https;
|
|
2972
|
+
this.errorHandlerService = errorHandlerService;
|
|
2973
|
+
this.paymentLibService = paymentLibService;
|
|
2974
|
+
}
|
|
2975
|
+
/**
|
|
2976
|
+
* @param {?} reference
|
|
2977
|
+
* @return {?}
|
|
2978
|
+
*/
|
|
2979
|
+
NotificationService.prototype.getRefundNotification = /**
|
|
2980
|
+
* @param {?} reference
|
|
2981
|
+
* @return {?}
|
|
2982
|
+
*/
|
|
2983
|
+
function (reference) {
|
|
2984
|
+
return this.http.get(this.paymentLibService.NOTIFICATION_API_ROOT + "/notifications/" + reference, {
|
|
2985
|
+
withCredentials: true
|
|
2986
|
+
})
|
|
2987
|
+
.pipe(catchError(this.errorHandlerService.handleError));
|
|
2988
|
+
};
|
|
2989
|
+
/**
|
|
2990
|
+
* @param {?} postcode
|
|
2991
|
+
* @return {?}
|
|
2992
|
+
*/
|
|
2993
|
+
NotificationService.prototype.getAddressByPostcode = /**
|
|
2994
|
+
* @param {?} postcode
|
|
2995
|
+
* @return {?}
|
|
2996
|
+
*/
|
|
2997
|
+
function (postcode) {
|
|
2998
|
+
return this.http.get(this.paymentLibService.NOTIFICATION_API_ROOT + "/search/places/v1/postcode?postcode=" + postcode, {
|
|
2999
|
+
withCredentials: true
|
|
3000
|
+
})
|
|
3001
|
+
.pipe(catchError(this.errorHandlerService.handleError));
|
|
3002
|
+
};
|
|
3003
|
+
NotificationService.decorators = [
|
|
3004
|
+
{ type: Injectable, args: [{
|
|
3005
|
+
providedIn: 'root'
|
|
3006
|
+
},] }
|
|
3007
|
+
];
|
|
3008
|
+
/** @nocollapse */
|
|
3009
|
+
NotificationService.ctorParameters = function () { return [
|
|
3010
|
+
{ type: HttpClient },
|
|
3011
|
+
{ type: WebComponentHttpClient },
|
|
3012
|
+
{ type: ErrorHandlerService },
|
|
3013
|
+
{ type: PaymentLibService }
|
|
3014
|
+
]; };
|
|
3015
|
+
/** @nocollapse */ NotificationService.ngInjectableDef = defineInjectable({ factory: function NotificationService_Factory() { return new NotificationService(inject(HttpClient), inject(WebComponentHttpClient), inject(ErrorHandlerService), inject(PaymentLibService)); }, token: NotificationService, providedIn: "root" });
|
|
3016
|
+
return NotificationService;
|
|
3017
|
+
}());
|
|
3018
|
+
|
|
3019
|
+
/**
|
|
3020
|
+
* @fileoverview added by tsickle
|
|
3021
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
3022
|
+
*/
|
|
3023
|
+
var ContactDetailsComponent = /** @class */ (function () {
|
|
3024
|
+
function ContactDetailsComponent(formBuilder, notificationService, paymentLibComponent) {
|
|
3025
|
+
this.formBuilder = formBuilder;
|
|
3026
|
+
this.notificationService = notificationService;
|
|
3027
|
+
this.paymentLibComponent = paymentLibComponent;
|
|
3028
|
+
this.assignContactDetails = new EventEmitter();
|
|
3029
|
+
this.assignContactDetailsInFefundsList = new EventEmitter();
|
|
3030
|
+
this.redirectToIssueRefund = new EventEmitter();
|
|
3031
|
+
this.pageTitle = 'Payment status history';
|
|
3032
|
+
this.isEmailSAddressClicked = true;
|
|
3033
|
+
this.isShowPickAddress = false;
|
|
3034
|
+
this.isPostcodeClicked = false;
|
|
3035
|
+
this.isManualAddressClicked = false;
|
|
3036
|
+
this.addressPostcodeList = [];
|
|
3037
|
+
this.isAddressBoxEmpty = false;
|
|
3038
|
+
this.isEmailEmpty = false;
|
|
3039
|
+
this.emailHasError = false;
|
|
3040
|
+
this.isPostcodeEmpty = false;
|
|
3041
|
+
this.postcodeHasError = false;
|
|
3042
|
+
this.isaddressLine1Empty = false;
|
|
3043
|
+
this.addressLine1HasError = false;
|
|
3044
|
+
this.addressLine2HasError = false;
|
|
3045
|
+
this.isTownOrCityEmpty = false;
|
|
3046
|
+
this.townOrCityHasError = false;
|
|
3047
|
+
this.isCountyEmpty = false;
|
|
3048
|
+
this.countyHasError = false;
|
|
3049
|
+
this.isMPostcodeEmpty = false;
|
|
3050
|
+
this.mpostcodeHasError = false;
|
|
3051
|
+
this.isCountryEmpty = false;
|
|
3052
|
+
}
|
|
3053
|
+
/**
|
|
3054
|
+
* @return {?}
|
|
3055
|
+
*/
|
|
3056
|
+
ContactDetailsComponent.prototype.ngOnInit = /**
|
|
3057
|
+
* @return {?}
|
|
3058
|
+
*/
|
|
3059
|
+
function () {
|
|
3060
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3061
|
+
this.emailAddressForm = this.formBuilder.group({
|
|
3062
|
+
email: new FormControl('', Validators.compose([
|
|
3063
|
+
Validators.required,
|
|
3064
|
+
Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\.[a-z]{2,4}$')
|
|
3065
|
+
]))
|
|
3066
|
+
});
|
|
3067
|
+
this.postCodeForm = this.formBuilder.group({
|
|
3068
|
+
postcode: new FormControl('', Validators.compose([
|
|
3069
|
+
Validators.required,
|
|
3070
|
+
Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')
|
|
3071
|
+
]))
|
|
3072
|
+
});
|
|
3073
|
+
this.manualAddressForm = this.formBuilder.group({
|
|
3074
|
+
addressl1: new FormControl('', Validators.compose([
|
|
3075
|
+
Validators.required,
|
|
3076
|
+
Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3077
|
+
])),
|
|
3078
|
+
addressl2: new FormControl('', Validators.compose([
|
|
3079
|
+
Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3080
|
+
])),
|
|
3081
|
+
townorcity: new FormControl('', Validators.compose([
|
|
3082
|
+
Validators.required,
|
|
3083
|
+
Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3084
|
+
])),
|
|
3085
|
+
county: new FormControl('', Validators.compose([
|
|
3086
|
+
Validators.pattern('^[a-zA-Z0-9\\s,\'-]*$')
|
|
3087
|
+
])),
|
|
3088
|
+
mpostcode: new FormControl('', Validators.compose([
|
|
3089
|
+
Validators.required,
|
|
3090
|
+
Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')
|
|
3091
|
+
])),
|
|
3092
|
+
country: new FormControl('', Validators.compose([
|
|
3093
|
+
Validators.required
|
|
3094
|
+
]))
|
|
3095
|
+
});
|
|
3096
|
+
if (this.addressObj !== undefined && this.addressObj !== '') {
|
|
3097
|
+
this.setEditDetails();
|
|
3098
|
+
}
|
|
3099
|
+
if (this.isEditOperationInRefundList === undefined) {
|
|
3100
|
+
this.isEditOperationInRefundList = false;
|
|
3101
|
+
}
|
|
3102
|
+
};
|
|
3103
|
+
/**
|
|
3104
|
+
* @return {?}
|
|
3105
|
+
*/
|
|
3106
|
+
ContactDetailsComponent.prototype.setEditDetails = /**
|
|
3107
|
+
* @return {?}
|
|
3108
|
+
*/
|
|
3109
|
+
function () {
|
|
3110
|
+
if (this.addressObj.notification_type === 'EMAIL') {
|
|
3111
|
+
this.isEmailSAddressClicked = true;
|
|
3112
|
+
this.isPostcodeClicked = false;
|
|
3113
|
+
this.isManualAddressClicked = false;
|
|
3114
|
+
this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });
|
|
3115
|
+
}
|
|
3116
|
+
else if (this.addressObj.notification_type === 'LETTER') {
|
|
3117
|
+
this.isEmailSAddressClicked = false;
|
|
3118
|
+
this.isPostcodeClicked = true;
|
|
3119
|
+
this.isManualAddressClicked = true;
|
|
3120
|
+
this.manualAddressForm.patchValue({
|
|
3121
|
+
addressl1: this.addressObj.contact_details.address_line,
|
|
3122
|
+
townorcity: this.addressObj.contact_details.city,
|
|
3123
|
+
county: this.addressObj.contact_details.county,
|
|
3124
|
+
country: this.addressObj.contact_details.country,
|
|
3125
|
+
mpostcode: this.addressObj.contact_details.postal_code
|
|
3126
|
+
});
|
|
3127
|
+
}
|
|
3128
|
+
};
|
|
3129
|
+
/**
|
|
3130
|
+
* @param {?} type
|
|
3131
|
+
* @param {?} isLinkedClied
|
|
3132
|
+
* @return {?}
|
|
3133
|
+
*/
|
|
3134
|
+
ContactDetailsComponent.prototype.selectContactOption = /**
|
|
3135
|
+
* @param {?} type
|
|
3136
|
+
* @param {?} isLinkedClied
|
|
3137
|
+
* @return {?}
|
|
3138
|
+
*/
|
|
3139
|
+
function (type, isLinkedClied) {
|
|
3140
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3141
|
+
if (type === 'Email' && isLinkedClied === 'false') {
|
|
3142
|
+
this.isEmailSAddressClicked = true;
|
|
3143
|
+
this.isPostcodeClicked = false;
|
|
3144
|
+
this.isManualAddressClicked = false;
|
|
3145
|
+
}
|
|
3146
|
+
else if (type === 'Postcode' && isLinkedClied === 'false') {
|
|
3147
|
+
this.isEmailSAddressClicked = false;
|
|
3148
|
+
this.isPostcodeClicked = true;
|
|
3149
|
+
this.isManualAddressClicked = false;
|
|
3150
|
+
}
|
|
3151
|
+
else if (type === 'Postcode' && isLinkedClied === 'true') {
|
|
3152
|
+
this.isEmailSAddressClicked = false;
|
|
3153
|
+
this.isPostcodeClicked = true;
|
|
3154
|
+
this.isManualAddressClicked = true;
|
|
3155
|
+
}
|
|
3156
|
+
};
|
|
3157
|
+
/**
|
|
3158
|
+
* @return {?}
|
|
3159
|
+
*/
|
|
3160
|
+
ContactDetailsComponent.prototype.finalFormSubmit = /**
|
|
3161
|
+
* @return {?}
|
|
3162
|
+
*/
|
|
3163
|
+
function () {
|
|
3164
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3165
|
+
if (this.isEmailSAddressClicked) {
|
|
3166
|
+
/** @type {?} */
|
|
3167
|
+
var emailField = this.emailAddressForm.controls.email;
|
|
3168
|
+
if (this.emailAddressForm.valid) {
|
|
3169
|
+
if (!this.isEditOperationInRefundList) {
|
|
3170
|
+
this.assignContactDetails.emit({
|
|
3171
|
+
email: emailField.value,
|
|
3172
|
+
notification_type: 'EMAIL'
|
|
3173
|
+
});
|
|
3174
|
+
}
|
|
3175
|
+
else {
|
|
3176
|
+
this.assignContactDetailsInFefundsList.emit({
|
|
3177
|
+
email: emailField.value,
|
|
3178
|
+
notification_type: 'EMAIL'
|
|
3179
|
+
});
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
else {
|
|
3183
|
+
if (emailField.value == '') {
|
|
3184
|
+
this.resetForm([true, false, false, false, false, false, false, false, false, false, false, false, false, false], 'email');
|
|
3185
|
+
}
|
|
3186
|
+
if (emailField.value != '' && emailField.invalid) {
|
|
3187
|
+
this.resetForm([false, true, false, false, false, false, false, false, false, false, false, false, false, false], 'email');
|
|
3188
|
+
}
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
else if (this.isPostcodeClicked && !this.isManualAddressClicked) {
|
|
3192
|
+
this.postcodeValidation('FS');
|
|
3193
|
+
}
|
|
3194
|
+
else if (this.isPostcodeClicked && this.isManualAddressClicked) {
|
|
3195
|
+
/** @type {?} */
|
|
3196
|
+
var fieldCtrls = this.manualAddressForm.controls;
|
|
3197
|
+
if (this.manualAddressForm.valid) {
|
|
3198
|
+
if (!this.isEditOperationInRefundList) {
|
|
3199
|
+
this.assignContactDetails.emit({
|
|
3200
|
+
address_line: fieldCtrls.addressl1.value + ' ' + fieldCtrls.addressl2.value,
|
|
3201
|
+
city: fieldCtrls.townorcity.value,
|
|
3202
|
+
county: fieldCtrls.county.value,
|
|
3203
|
+
postal_code: fieldCtrls.mpostcode.value,
|
|
3204
|
+
country: fieldCtrls.country.value,
|
|
3205
|
+
notification_type: 'LETTER'
|
|
3206
|
+
});
|
|
3207
|
+
}
|
|
3208
|
+
else {
|
|
3209
|
+
this.assignContactDetailsInFefundsList.emit({
|
|
3210
|
+
address_line: fieldCtrls.addressl1.value + ' ' + fieldCtrls.addressl2.value,
|
|
3211
|
+
city: fieldCtrls.townorcity.value,
|
|
3212
|
+
county: fieldCtrls.county.value,
|
|
3213
|
+
postal_code: fieldCtrls.mpostcode.value,
|
|
3214
|
+
country: fieldCtrls.country.value,
|
|
3215
|
+
notification_type: 'LETTER'
|
|
3216
|
+
});
|
|
3217
|
+
}
|
|
3218
|
+
}
|
|
3219
|
+
else {
|
|
3220
|
+
if (fieldCtrls.addressl1.value == '') {
|
|
3221
|
+
this.resetForm([false, false, false, false, true, false, false, false, false, false, false, false, false, false], 'address1');
|
|
3222
|
+
}
|
|
3223
|
+
if (fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid) {
|
|
3224
|
+
this.resetForm([false, false, false, false, false, true, false, false, false, false, false, false, false, false], 'address1');
|
|
3225
|
+
}
|
|
3226
|
+
if (fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid) {
|
|
3227
|
+
this.resetForm([false, false, false, false, false, false, true, false, false, false, false, false, false, false], 'address2');
|
|
3228
|
+
}
|
|
3229
|
+
if (fieldCtrls.townorcity.value == '') {
|
|
3230
|
+
this.resetForm([false, false, false, false, false, false, false, true, false, false, false, false, false, false], 'town');
|
|
3231
|
+
}
|
|
3232
|
+
if (fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid) {
|
|
3233
|
+
this.resetForm([false, false, false, false, false, false, false, false, true, false, false, false, false, false], 'town');
|
|
3234
|
+
}
|
|
3235
|
+
if (fieldCtrls.county.value == '') {
|
|
3236
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, true, false, false, false, false], 'county');
|
|
3237
|
+
}
|
|
3238
|
+
if (fieldCtrls.county.value != '' && fieldCtrls.county.invalid) {
|
|
3239
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, true, false, false, false], 'county');
|
|
3240
|
+
}
|
|
3241
|
+
if (fieldCtrls.mpostcode.value == '') {
|
|
3242
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, true, false, false], 'mpostcode');
|
|
3243
|
+
}
|
|
3244
|
+
if (fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid) {
|
|
3245
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, true, false], 'mpostcode');
|
|
3246
|
+
}
|
|
3247
|
+
if (fieldCtrls.country.value == '') {
|
|
3248
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, true], 'country');
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
};
|
|
3253
|
+
/**
|
|
3254
|
+
* @param {?} str
|
|
3255
|
+
* @return {?}
|
|
3256
|
+
*/
|
|
3257
|
+
ContactDetailsComponent.prototype.postcodeValidation = /**
|
|
3258
|
+
* @param {?} str
|
|
3259
|
+
* @return {?}
|
|
3260
|
+
*/
|
|
3261
|
+
function (str) {
|
|
3262
|
+
var _this = this;
|
|
3263
|
+
this.resetForm([false, false, false, false, false, false, false, false, false, false, false, false, false, false, false], 'all');
|
|
3264
|
+
/** @type {?} */
|
|
3265
|
+
var postcodeField = this.postCodeForm.controls.postcode;
|
|
3266
|
+
if (this.postCodeForm.valid) {
|
|
3267
|
+
if (str === 'FA') {
|
|
3268
|
+
this.notificationService.getAddressByPostcode(postcodeField.value).subscribe((/**
|
|
3269
|
+
* @param {?} refundsNotification
|
|
3270
|
+
* @return {?}
|
|
3271
|
+
*/
|
|
3272
|
+
function (refundsNotification) {
|
|
3273
|
+
_this.addressPostcodeList = refundsNotification['data']['results'];
|
|
3274
|
+
_this.isShowPickAddress = refundsNotification['data']['header'].totalresults > 0;
|
|
3275
|
+
if (!_this.isShowPickAddress) {
|
|
3276
|
+
_this.resetForm([false, false, false, true, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3277
|
+
}
|
|
3278
|
+
})),
|
|
3279
|
+
(/**
|
|
3280
|
+
* @param {?} error
|
|
3281
|
+
* @return {?}
|
|
3282
|
+
*/
|
|
3283
|
+
function (error) {
|
|
3284
|
+
_this.isShowPickAddress = false;
|
|
3285
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
3286
|
+
});
|
|
3287
|
+
}
|
|
3288
|
+
else if (str === 'FS') {
|
|
3289
|
+
if (this.postcodeAddress !== undefined && this.postcodeAddress) {
|
|
3290
|
+
this.isAddressBoxEmpty = false;
|
|
3291
|
+
/** @type {?} */
|
|
3292
|
+
var addressLine = "";
|
|
3293
|
+
/** @type {?} */
|
|
3294
|
+
var addressArray = this.postcodeAddress.ADDRESS.split(",");
|
|
3295
|
+
for (var i = 0; i < addressArray.length - 2; i++) {
|
|
3296
|
+
addressLine += addressArray[i];
|
|
3297
|
+
}
|
|
3298
|
+
/** @type {?} */
|
|
3299
|
+
var addressObject = {
|
|
3300
|
+
address_line: addressLine,
|
|
3301
|
+
city: this.postcodeAddress.POST_TOWN,
|
|
3302
|
+
county: this.postcodeAddress.LOCAL_CUSTODIAN_CODE_DESCRIPTION,
|
|
3303
|
+
postal_code: this.postcodeAddress.POSTCODE,
|
|
3304
|
+
country: 'United Kingdom',
|
|
3305
|
+
notification_type: 'LETTER'
|
|
3306
|
+
};
|
|
3307
|
+
if (!this.isEditOperationInRefundList) {
|
|
3308
|
+
this.assignContactDetails.emit(addressObject);
|
|
3309
|
+
}
|
|
3310
|
+
else {
|
|
3311
|
+
this.assignContactDetailsInFefundsList.emit(addressObject);
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
else {
|
|
3315
|
+
this.isAddressBoxEmpty = true;
|
|
3316
|
+
}
|
|
3317
|
+
}
|
|
3318
|
+
}
|
|
3319
|
+
else {
|
|
3320
|
+
if (postcodeField.value == '') {
|
|
3321
|
+
this.resetForm([false, false, true, false, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3322
|
+
}
|
|
3323
|
+
if (postcodeField.value != '' && postcodeField.invalid) {
|
|
3324
|
+
this.resetForm([false, false, false, true, false, false, false, false, false, false, false, false, false], 'postcode');
|
|
3325
|
+
}
|
|
3326
|
+
}
|
|
3327
|
+
};
|
|
3328
|
+
/**
|
|
3329
|
+
* @param {?} event
|
|
3330
|
+
* @return {?}
|
|
3331
|
+
*/
|
|
3332
|
+
ContactDetailsComponent.prototype.redirection = /**
|
|
3333
|
+
* @param {?} event
|
|
3334
|
+
* @return {?}
|
|
3335
|
+
*/
|
|
3336
|
+
function (event) {
|
|
3337
|
+
this.redirectToIssueRefund.emit(event);
|
|
3338
|
+
};
|
|
3339
|
+
/**
|
|
3340
|
+
* @param {?} val
|
|
3341
|
+
* @param {?} field
|
|
3342
|
+
* @return {?}
|
|
3343
|
+
*/
|
|
3344
|
+
ContactDetailsComponent.prototype.resetForm = /**
|
|
3345
|
+
* @param {?} val
|
|
3346
|
+
* @param {?} field
|
|
3347
|
+
* @return {?}
|
|
3348
|
+
*/
|
|
3349
|
+
function (val, field) {
|
|
3350
|
+
if (field === 'email' || field === 'all') {
|
|
3351
|
+
this.isEmailEmpty = val[0];
|
|
3352
|
+
this.emailHasError = val[1];
|
|
3353
|
+
}
|
|
3354
|
+
if (field === 'postcode' || field === 'all') {
|
|
3355
|
+
this.isPostcodeEmpty = val[2];
|
|
3356
|
+
this.postcodeHasError = val[3];
|
|
3357
|
+
}
|
|
3358
|
+
if (field === 'address1' || field === 'all') {
|
|
3359
|
+
this.isaddressLine1Empty = val[4];
|
|
3360
|
+
this.addressLine1HasError = val[5];
|
|
3361
|
+
}
|
|
3362
|
+
if (field === 'address2' || field === 'all') {
|
|
3363
|
+
this.addressLine2HasError = val[6];
|
|
3364
|
+
}
|
|
3365
|
+
if (field === 'town' || field === 'all') {
|
|
3366
|
+
this.isTownOrCityEmpty = val[7];
|
|
3367
|
+
this.townOrCityHasError = val[8];
|
|
3368
|
+
}
|
|
3369
|
+
if (field === 'county' || field === 'all') {
|
|
3370
|
+
this.isCountyEmpty = val[9];
|
|
3371
|
+
this.countyHasError = val[10];
|
|
3372
|
+
}
|
|
3373
|
+
if (field === 'mpostcode' || field === 'all') {
|
|
3374
|
+
this.isMPostcodeEmpty = val[11];
|
|
3375
|
+
this.mpostcodeHasError = val[12];
|
|
3376
|
+
}
|
|
3377
|
+
if (field === 'country' || field === 'all') {
|
|
3378
|
+
this.isCountryEmpty = val[13];
|
|
3379
|
+
}
|
|
3380
|
+
};
|
|
3381
|
+
ContactDetailsComponent.decorators = [
|
|
3382
|
+
{ type: Component, args: [{
|
|
3383
|
+
selector: 'ccpay-contact-details',
|
|
3384
|
+
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>",
|
|
3385
|
+
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}"]
|
|
3386
|
+
}] }
|
|
3387
|
+
];
|
|
3388
|
+
/** @nocollapse */
|
|
3389
|
+
ContactDetailsComponent.ctorParameters = function () { return [
|
|
3390
|
+
{ type: FormBuilder },
|
|
3391
|
+
{ type: NotificationService },
|
|
3392
|
+
{ type: PaymentLibComponent }
|
|
3393
|
+
]; };
|
|
3394
|
+
ContactDetailsComponent.propDecorators = {
|
|
3395
|
+
isEditOperation: [{ type: Input, args: ['isEditOperation',] }],
|
|
3396
|
+
isEditOperationInRefundList: [{ type: Input, args: ['isEditOperationInRefundList',] }],
|
|
3397
|
+
addressObj: [{ type: Input, args: ['addressObj',] }],
|
|
3398
|
+
assignContactDetails: [{ type: Output }],
|
|
3399
|
+
assignContactDetailsInFefundsList: [{ type: Output }],
|
|
3400
|
+
redirectToIssueRefund: [{ type: Output }]
|
|
3401
|
+
};
|
|
3402
|
+
return ContactDetailsComponent;
|
|
3403
|
+
}());
|
|
3404
|
+
|
|
2822
3405
|
/**
|
|
2823
3406
|
* @fileoverview added by tsickle
|
|
2824
3407
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
@@ -3175,6 +3758,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3175
3758
|
this.viewStatus = 'main';
|
|
3176
3759
|
this.isRemoveBtnDisabled = false;
|
|
3177
3760
|
this.clAmountDue = 0;
|
|
3761
|
+
this.overPaymentAmount = 0;
|
|
3178
3762
|
this.isFeeRecordsExist = false;
|
|
3179
3763
|
this.isGrpOutstandingAmtPositive = false;
|
|
3180
3764
|
//Order changes
|
|
@@ -3273,17 +3857,27 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3273
3857
|
}
|
|
3274
3858
|
this.excReference = this.paymentLibComponent.EXC_REFERENCE;
|
|
3275
3859
|
this.takePayment = this.paymentLibComponent.TAKEPAYMENT;
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
this.
|
|
3860
|
+
if (this.paymentLibComponent.SERVICEREQUEST !== undefined) {
|
|
3861
|
+
this.servicerequest = this.paymentLibComponent.SERVICEREQUEST.toString();
|
|
3862
|
+
if (this.paymentLibComponent.SERVICEREQUEST.toString() === 'true') {
|
|
3863
|
+
this.serviceRequestValue = 'true';
|
|
3864
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
3865
|
+
}
|
|
3866
|
+
else {
|
|
3867
|
+
this.serviceRequestValue = 'false';
|
|
3868
|
+
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
3869
|
+
}
|
|
3279
3870
|
}
|
|
3280
3871
|
else {
|
|
3281
3872
|
this.serviceRequestValue = 'false';
|
|
3873
|
+
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
3282
3874
|
}
|
|
3283
3875
|
this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;
|
|
3284
3876
|
this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;
|
|
3285
3877
|
this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();
|
|
3286
3878
|
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
3879
|
+
this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;
|
|
3880
|
+
this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;
|
|
3287
3881
|
this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
3288
3882
|
if (!this.isTurnOff) {
|
|
3289
3883
|
// if (this.lsCcdNumber !== this.ccdCaseNumber) {
|
|
@@ -3495,6 +4089,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3495
4089
|
*/
|
|
3496
4090
|
function (fee) {
|
|
3497
4091
|
_this.orderFeesTotal = _this.orderFeesTotal + fee.calculated_amount;
|
|
4092
|
+
_this.overPaymentAmount = _this.overPaymentAmount + fee.over_payment;
|
|
3498
4093
|
}));
|
|
3499
4094
|
}
|
|
3500
4095
|
if (paymentGroup.remissions) {
|
|
@@ -3507,11 +4102,16 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3507
4102
|
}));
|
|
3508
4103
|
}
|
|
3509
4104
|
if (paymentGroup.payments) {
|
|
4105
|
+
/** @type {?} */
|
|
4106
|
+
var isFeeOverPaymentExist_1 = _this.overPaymentAmount === 0;
|
|
3510
4107
|
paymentGroup.payments.forEach((/**
|
|
3511
4108
|
* @param {?} payment
|
|
3512
4109
|
* @return {?}
|
|
3513
4110
|
*/
|
|
3514
4111
|
function (payment) {
|
|
4112
|
+
if (isFeeOverPaymentExist_1) {
|
|
4113
|
+
_this.overPaymentAmount = _this.overPaymentAmount + payment.over_payment;
|
|
4114
|
+
}
|
|
3515
4115
|
if (payment.status.toUpperCase() === 'SUCCESS') {
|
|
3516
4116
|
_this.orderTotalPayments = _this.orderTotalPayments + payment.amount;
|
|
3517
4117
|
}
|
|
@@ -3947,6 +4547,8 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3947
4547
|
var url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
3948
4548
|
url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
3949
4549
|
url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4550
|
+
url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
4551
|
+
url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
3950
4552
|
url += "&caseType=" + this.caseType;
|
|
3951
4553
|
this.router.navigateByUrl("/fee-search?selectedOption=" + this.selectedOption + "&ccdCaseNumber=" + this.ccdCaseNumber + url);
|
|
3952
4554
|
};
|
|
@@ -3998,19 +4600,17 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3998
4600
|
*/
|
|
3999
4601
|
function (payment, remission, fees) {
|
|
4000
4602
|
var _this = this;
|
|
4001
|
-
this.
|
|
4002
|
-
this.payment = payment;
|
|
4003
|
-
this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe((/**
|
|
4603
|
+
this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe((/**
|
|
4004
4604
|
* @param {?} paymentGroup
|
|
4005
4605
|
* @return {?}
|
|
4006
4606
|
*/
|
|
4007
4607
|
function (paymentGroup) {
|
|
4008
4608
|
_this.paymentGroup = paymentGroup;
|
|
4009
|
-
_this.paymentGroup.payments =
|
|
4609
|
+
_this.paymentGroup.payments = paymentGroup.payments.filter((/**
|
|
4010
4610
|
* @param {?} paymentGroupObj
|
|
4011
4611
|
* @return {?}
|
|
4012
4612
|
*/
|
|
4013
|
-
function (paymentGroupObj) { return paymentGroupObj
|
|
4613
|
+
function (paymentGroupObj) { return paymentGroupObj.reference === payment.reference; }));
|
|
4014
4614
|
_this.payment = _this.paymentGroup.payments[0];
|
|
4015
4615
|
_this.remissions = remission;
|
|
4016
4616
|
_this.remissionFeeAmt = fees.filter((/**
|
|
@@ -4018,6 +4618,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
4018
4618
|
* @return {?}
|
|
4019
4619
|
*/
|
|
4020
4620
|
function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
4621
|
+
_this.viewStatus = 'addrefundforremission';
|
|
4021
4622
|
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
4022
4623
|
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
4023
4624
|
}), (/**
|
|
@@ -4370,7 +4971,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
4370
4971
|
CaseTransactionsComponent.decorators = [
|
|
4371
4972
|
{ type: Component, args: [{
|
|
4372
4973
|
selector: 'ccpay-case-transactions',
|
|
4373
|
-
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>",
|
|
4974
|
+
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",
|
|
4374
4975
|
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}"]
|
|
4375
4976
|
}] }
|
|
4376
4977
|
];
|
|
@@ -4385,7 +4986,8 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
4385
4986
|
]; };
|
|
4386
4987
|
CaseTransactionsComponent.propDecorators = {
|
|
4387
4988
|
LOGGEDINUSERROLES: [{ type: Input, args: ['LOGGEDINUSERROLES',] }],
|
|
4388
|
-
isTakePayment: [{ type: Input }]
|
|
4989
|
+
isTakePayment: [{ type: Input }],
|
|
4990
|
+
isFromServiceRequestPage: [{ type: Input }]
|
|
4389
4991
|
};
|
|
4390
4992
|
return CaseTransactionsComponent;
|
|
4391
4993
|
}());
|
|
@@ -4461,7 +5063,15 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4461
5063
|
this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();
|
|
4462
5064
|
this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
4463
5065
|
this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);
|
|
4464
|
-
this.
|
|
5066
|
+
if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {
|
|
5067
|
+
this.platForm = '8x8';
|
|
5068
|
+
}
|
|
5069
|
+
else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {
|
|
5070
|
+
this.platForm = 'Antenna';
|
|
5071
|
+
}
|
|
5072
|
+
else if ((this.isOldPcipalOff && this.isNewPcipalOff)) {
|
|
5073
|
+
this.platForm = '8x8';
|
|
5074
|
+
}
|
|
4465
5075
|
this.paymentViewService.getBSfeature().subscribe((/**
|
|
4466
5076
|
* @param {?} features
|
|
4467
5077
|
* @return {?}
|
|
@@ -4600,19 +5210,24 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4600
5210
|
if (fee.calculated_amount === 0) {
|
|
4601
5211
|
_this.isFeeAmountZero = true;
|
|
4602
5212
|
}
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
5213
|
+
if (paymentGroup.remissions) {
|
|
5214
|
+
_this.isRemissionsMatch = false;
|
|
5215
|
+
paymentGroup.remissions.forEach((/**
|
|
5216
|
+
* @param {?} rem
|
|
5217
|
+
* @return {?}
|
|
5218
|
+
*/
|
|
5219
|
+
function (rem) {
|
|
5220
|
+
if (rem.fee_code === fee.code) {
|
|
5221
|
+
_this.isRemissionsMatch = true;
|
|
5222
|
+
fee['remissions'] = rem;
|
|
5223
|
+
fees.push(fee);
|
|
5224
|
+
}
|
|
5225
|
+
}));
|
|
5226
|
+
if (!_this.isRemissionsMatch) {
|
|
4612
5227
|
fees.push(fee);
|
|
4613
5228
|
}
|
|
4614
|
-
}
|
|
4615
|
-
|
|
5229
|
+
}
|
|
5230
|
+
else {
|
|
4616
5231
|
fees.push(fee);
|
|
4617
5232
|
}
|
|
4618
5233
|
}));
|
|
@@ -4706,6 +5321,8 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4706
5321
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
4707
5322
|
partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4708
5323
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
5324
|
+
partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5325
|
+
partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
4709
5326
|
/** @type {?} */
|
|
4710
5327
|
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=true&" + partUrl;
|
|
4711
5328
|
this.router.navigateByUrl(url);
|
|
@@ -4737,6 +5354,8 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4737
5354
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
4738
5355
|
partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
4739
5356
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
5357
|
+
partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5358
|
+
partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
4740
5359
|
if (this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {
|
|
4741
5360
|
this.viewStatus = 'main';
|
|
4742
5361
|
return;
|
|
@@ -4758,7 +5377,27 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4758
5377
|
var requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);
|
|
4759
5378
|
/** @type {?} */
|
|
4760
5379
|
var antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);
|
|
4761
|
-
if (this.platForm === '
|
|
5380
|
+
if (this.platForm === '8x8') {
|
|
5381
|
+
this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe((/**
|
|
5382
|
+
* @param {?} response
|
|
5383
|
+
* @return {?}
|
|
5384
|
+
*/
|
|
5385
|
+
function (response) {
|
|
5386
|
+
_this.location.go("payment-history?view=fee-summary");
|
|
5387
|
+
_this.payhubHtml = response;
|
|
5388
|
+
_this.viewStatus = 'payhub_view';
|
|
5389
|
+
_this.isBackButtonEnable = false;
|
|
5390
|
+
}), (/**
|
|
5391
|
+
* @param {?} error
|
|
5392
|
+
* @return {?}
|
|
5393
|
+
*/
|
|
5394
|
+
function (error) {
|
|
5395
|
+
_this.errorMessage = error;
|
|
5396
|
+
_this.isConfirmationBtnDisabled = false;
|
|
5397
|
+
_this.router.navigateByUrl('/pci-pal-failure');
|
|
5398
|
+
}));
|
|
5399
|
+
}
|
|
5400
|
+
else if (this.platForm === 'Antenna') {
|
|
4762
5401
|
this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe((/**
|
|
4763
5402
|
* @param {?} response
|
|
4764
5403
|
* @return {?}
|
|
@@ -4810,7 +5449,7 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4810
5449
|
FeeSummaryComponent.decorators = [
|
|
4811
5450
|
{ type: Component, args: [{
|
|
4812
5451
|
selector: 'ccpay-fee-summary',
|
|
4813
|
-
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",
|
|
5452
|
+
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",
|
|
4814
5453
|
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}"]
|
|
4815
5454
|
}] }
|
|
4816
5455
|
];
|
|
@@ -4827,7 +5466,9 @@ var FeeSummaryComponent = /** @class */ (function () {
|
|
|
4827
5466
|
paymentGroupRef: [{ type: Input }],
|
|
4828
5467
|
ccdCaseNumber: [{ type: Input }],
|
|
4829
5468
|
isTurnOff: [{ type: Input }],
|
|
4830
|
-
caseType: [{ type: Input }]
|
|
5469
|
+
caseType: [{ type: Input }],
|
|
5470
|
+
isOldPcipalOff: [{ type: Input }],
|
|
5471
|
+
isNewPcipalOff: [{ type: Input }]
|
|
4831
5472
|
};
|
|
4832
5473
|
return FeeSummaryComponent;
|
|
4833
5474
|
}());
|
|
@@ -5671,6 +6312,8 @@ var UnprocessedPaymentsComponent = /** @class */ (function () {
|
|
|
5671
6312
|
this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;
|
|
5672
6313
|
this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;
|
|
5673
6314
|
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
6315
|
+
this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;
|
|
6316
|
+
this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;
|
|
5674
6317
|
this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;
|
|
5675
6318
|
this.OrderslistService.getFeeExists().subscribe((/**
|
|
5676
6319
|
* @param {?} data
|
|
@@ -5801,6 +6444,8 @@ var UnprocessedPaymentsComponent = /** @class */ (function () {
|
|
|
5801
6444
|
url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
5802
6445
|
url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
5803
6446
|
url += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
6447
|
+
url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
6448
|
+
url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
5804
6449
|
this.router.navigateByUrl("/fee-search?selectedOption=" + this.selectedOption + "&ccdCaseNumber=" + this.ccdCaseNumber + "&dcn=" + this.recordId + url);
|
|
5805
6450
|
};
|
|
5806
6451
|
/**
|
|
@@ -5855,6 +6500,8 @@ var UnprocessedPaymentsComponent = /** @class */ (function () {
|
|
|
5855
6500
|
this.paymentLibComponent.bspaymentdcn = dcn_reference;
|
|
5856
6501
|
this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId;
|
|
5857
6502
|
this.paymentLibComponent.isTurnOff = this.ISTURNOFF;
|
|
6503
|
+
this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;
|
|
6504
|
+
this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;
|
|
5858
6505
|
this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;
|
|
5859
6506
|
if (this.ISTURNOFF) {
|
|
5860
6507
|
this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;
|
|
@@ -5945,6 +6592,8 @@ var UnprocessedPaymentsComponent = /** @class */ (function () {
|
|
|
5945
6592
|
ISTURNOFF: [{ type: Input, args: ['ISTURNOFF',] }],
|
|
5946
6593
|
IS_BUTTON_ENABLE: [{ type: Input, args: ['IS_BUTTON_ENABLE',] }],
|
|
5947
6594
|
IS_OS_AMT_AVAILABLE: [{ type: Input, args: ['IS_OS_AMT_AVAILABLE',] }],
|
|
6595
|
+
ISNEWPCIPALOFF: [{ type: Input, args: ['ISNEWPCIPALOFF',] }],
|
|
6596
|
+
ISOLDPCIPALOFF: [{ type: Input, args: ['ISOLDPCIPALOFF',] }],
|
|
5948
6597
|
ISSFENABLE: [{ type: Input, args: ['ISSFENABLE',] }],
|
|
5949
6598
|
PAYMENTSLENGTH: [{ type: Input, args: ['PAYMENTSLENGTH',] }],
|
|
5950
6599
|
LEVEL: [{ type: Input, args: ['LEVEL',] }],
|
|
@@ -6666,25 +7315,14 @@ var AddRetroRemissionRequest = /** @class */ (function () {
|
|
|
6666
7315
|
return AddRetroRemissionRequest;
|
|
6667
7316
|
}());
|
|
6668
7317
|
|
|
6669
|
-
/**
|
|
6670
|
-
* @fileoverview added by tsickle
|
|
6671
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6672
|
-
*/
|
|
6673
|
-
var PostRefundRetroRemission = /** @class */ (function () {
|
|
6674
|
-
function PostRefundRetroRemission(payment_reference, refund_reason) {
|
|
6675
|
-
this.payment_reference = payment_reference;
|
|
6676
|
-
this.refund_reason = refund_reason;
|
|
6677
|
-
}
|
|
6678
|
-
return PostRefundRetroRemission;
|
|
6679
|
-
}());
|
|
6680
|
-
|
|
6681
7318
|
/**
|
|
6682
7319
|
* @fileoverview added by tsickle
|
|
6683
7320
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6684
7321
|
*/
|
|
6685
7322
|
var PostIssueRefundRetroRemission = /** @class */ (function () {
|
|
6686
|
-
function PostIssueRefundRetroRemission(remissionReference) {
|
|
7323
|
+
function PostIssueRefundRetroRemission(remissionReference, contactDeatils) {
|
|
6687
7324
|
this.remissionReference = remissionReference;
|
|
7325
|
+
this.contact_details = contactDeatils;
|
|
6688
7326
|
}
|
|
6689
7327
|
return PostIssueRefundRetroRemission;
|
|
6690
7328
|
}());
|
|
@@ -6693,8 +7331,6 @@ var PostIssueRefundRetroRemission = /** @class */ (function () {
|
|
|
6693
7331
|
* @fileoverview added by tsickle
|
|
6694
7332
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
6695
7333
|
*/
|
|
6696
|
-
/** @type {?} */
|
|
6697
|
-
var BS_ENABLE_FLAG$3 = 'bulk-scan-enabling-fe';
|
|
6698
7334
|
var AddRemissionComponent = /** @class */ (function () {
|
|
6699
7335
|
function AddRemissionComponent(formBuilder, router, paymentViewService, paymentLibComponent, refundService, cd, OrderslistService$$1) {
|
|
6700
7336
|
this.formBuilder = formBuilder;
|
|
@@ -6708,6 +7344,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6708
7344
|
//@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});
|
|
6709
7345
|
this.refundListReason = new EventEmitter();
|
|
6710
7346
|
this.refundListAmount = new EventEmitter();
|
|
7347
|
+
this.refundFees = new EventEmitter();
|
|
6711
7348
|
this.refund = {
|
|
6712
7349
|
reason: {
|
|
6713
7350
|
duplicate: 'Duplicate payment',
|
|
@@ -6736,6 +7373,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6736
7373
|
this.isRemissionApplied = false;
|
|
6737
7374
|
// refundReasons: any[] = [];
|
|
6738
7375
|
this.commonRefundReasons = [];
|
|
7376
|
+
this.class = '';
|
|
7377
|
+
this.errorMsg = new Array();
|
|
6739
7378
|
}
|
|
6740
7379
|
/**
|
|
6741
7380
|
* @return {?}
|
|
@@ -6745,6 +7384,9 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6745
7384
|
*/
|
|
6746
7385
|
function () {
|
|
6747
7386
|
var _this = this;
|
|
7387
|
+
console.log(this.viewCompStatus);
|
|
7388
|
+
this.errorMessage = '';
|
|
7389
|
+
this.errorMsg = [];
|
|
6748
7390
|
this.default = 'Select a different reason';
|
|
6749
7391
|
this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';
|
|
6750
7392
|
this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';
|
|
@@ -6756,6 +7398,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6756
7398
|
this.amount = (this.fee.volume * this.fee.calculated_amount);
|
|
6757
7399
|
}
|
|
6758
7400
|
if (this.payment) {
|
|
7401
|
+
this.paymentReference = this.payment.reference;
|
|
6759
7402
|
this.remessionPayment = this.payment;
|
|
6760
7403
|
if (this.payment.status === 'Success') {
|
|
6761
7404
|
this.isPaymentSuccess = true;
|
|
@@ -6774,15 +7417,73 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6774
7417
|
])),
|
|
6775
7418
|
refundReason: new FormControl('', Validators.compose([Validators.required])),
|
|
6776
7419
|
refundDDReason: new FormControl('', Validators.compose([Validators.required])),
|
|
6777
|
-
reason: new FormControl()
|
|
7420
|
+
reason: new FormControl(),
|
|
7421
|
+
feeAmount: new FormControl(),
|
|
7422
|
+
feesList: this.formBuilder.array([])
|
|
6778
7423
|
});
|
|
6779
7424
|
/** @type {?} */
|
|
6780
7425
|
var remissionctrls = this.remissionForm.controls;
|
|
6781
7426
|
remissionctrls['refundDDReason'].setValue('Select a different reason', { onlySelf: true });
|
|
7427
|
+
if (this.refundPaymentReference !== undefined && this.refundPaymentReference.length > 0) {
|
|
7428
|
+
this.paymentReference = this.refundPaymentReference;
|
|
7429
|
+
}
|
|
7430
|
+
else {
|
|
7431
|
+
this.paymentReference = this.payment.reference;
|
|
7432
|
+
}
|
|
7433
|
+
if (this.isFromServiceRequestPage) {
|
|
7434
|
+
this.paymentViewService.getApportionPaymentDetails(this.paymentReference).subscribe((/**
|
|
7435
|
+
* @param {?} paymentGroup
|
|
7436
|
+
* @return {?}
|
|
7437
|
+
*/
|
|
7438
|
+
function (paymentGroup) {
|
|
7439
|
+
/** @type {?} */
|
|
7440
|
+
var fees = [];
|
|
7441
|
+
paymentGroup.fees.forEach((/**
|
|
7442
|
+
* @param {?} fee
|
|
7443
|
+
* @return {?}
|
|
7444
|
+
*/
|
|
7445
|
+
function (fee) {
|
|
7446
|
+
_this.isRemissionsMatch = false;
|
|
7447
|
+
paymentGroup.remissions.forEach((/**
|
|
7448
|
+
* @param {?} rem
|
|
7449
|
+
* @return {?}
|
|
7450
|
+
*/
|
|
7451
|
+
function (rem) {
|
|
7452
|
+
if (rem.fee_code === fee.code) {
|
|
7453
|
+
_this.isRemissionsMatch = true;
|
|
7454
|
+
fee['remissions'] = rem;
|
|
7455
|
+
fees.push(fee);
|
|
7456
|
+
}
|
|
7457
|
+
}));
|
|
7458
|
+
if (!_this.isRemissionsMatch) {
|
|
7459
|
+
fees.push(fee);
|
|
7460
|
+
}
|
|
7461
|
+
}));
|
|
7462
|
+
paymentGroup.fees = fees;
|
|
7463
|
+
_this.paymentFees = fees;
|
|
7464
|
+
_this.fees = fees;
|
|
7465
|
+
_this.paymentGroup = paymentGroup;
|
|
7466
|
+
_this.paymentGroup.payments = _this.paymentGroup.payments.filter((/**
|
|
7467
|
+
* @param {?} paymentGroupObj
|
|
7468
|
+
* @return {?}
|
|
7469
|
+
*/
|
|
7470
|
+
function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.paymentLibComponent.paymentReference); }));
|
|
7471
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
7472
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
7473
|
+
_this.refundFeesList();
|
|
7474
|
+
}), (/**
|
|
7475
|
+
* @param {?} error
|
|
7476
|
+
* @return {?}
|
|
7477
|
+
*/
|
|
7478
|
+
function (error) { return _this.errorMessage = error; }));
|
|
7479
|
+
}
|
|
7480
|
+
if (this.fees && this.viewCompStatus === 'issuerefund') {
|
|
7481
|
+
this.refundFeesList();
|
|
7482
|
+
}
|
|
6782
7483
|
if (this.viewCompStatus === '') {
|
|
6783
7484
|
this.viewStatus = 'main';
|
|
6784
7485
|
}
|
|
6785
|
-
if (this.viewCompStatus === '
|
|
7486
|
+
if (this.viewCompStatus === 'issuerefundpage1') {
|
|
6786
7487
|
this.refundService.getRefundReasons().subscribe((/**
|
|
6787
7488
|
* @param {?} refundReasons
|
|
6788
7489
|
* @return {?}
|
|
@@ -6797,7 +7498,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6797
7498
|
* @param {?} data
|
|
6798
7499
|
* @return {?}
|
|
6799
7500
|
*/
|
|
6800
|
-
function (data) { return data.name !== 'Retrospective remission'; }));
|
|
7501
|
+
function (data) { return data.name !== 'Retrospective remission' && data.name !== 'Overpayment'; }));
|
|
6801
7502
|
_this.cd.detectChanges();
|
|
6802
7503
|
_this.commonRefundReasons = refundReasons.filter((/**
|
|
6803
7504
|
* @param {?} data
|
|
@@ -6812,10 +7513,156 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6812
7513
|
function (a, b) { return a.toString().localeCompare(b); }));
|
|
6813
7514
|
_this.cd.detectChanges();
|
|
6814
7515
|
}));
|
|
7516
|
+
this.refundReason = this.changeRefundReason;
|
|
6815
7517
|
}
|
|
6816
7518
|
if (this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage) {
|
|
6817
7519
|
this.viewStatus = 'processretroremissonpage';
|
|
6818
7520
|
}
|
|
7521
|
+
if (this.orderDetail !== undefined) {
|
|
7522
|
+
this.fees = this.orderDetail[0].fees;
|
|
7523
|
+
this.paymentReference = this.orderDetail[0].payments[0].reference;
|
|
7524
|
+
}
|
|
7525
|
+
};
|
|
7526
|
+
/**
|
|
7527
|
+
* @return {?}
|
|
7528
|
+
*/
|
|
7529
|
+
AddRemissionComponent.prototype.goToPaymentViewComponent = /**
|
|
7530
|
+
* @return {?}
|
|
7531
|
+
*/
|
|
7532
|
+
function () {
|
|
7533
|
+
this.paymentLibComponent.paymentMethod = this.payment.method;
|
|
7534
|
+
this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;
|
|
7535
|
+
this.paymentLibComponent.paymentReference = this.paymentReference;
|
|
7536
|
+
//this.PaymentViewComponent.viewCompStatus = 'overpayment';
|
|
7537
|
+
this.paymentLibComponent.viewName = 'payment-view';
|
|
7538
|
+
};
|
|
7539
|
+
/**
|
|
7540
|
+
* @return {?}
|
|
7541
|
+
*/
|
|
7542
|
+
AddRemissionComponent.prototype.refundFeesList = /**
|
|
7543
|
+
* @return {?}
|
|
7544
|
+
*/
|
|
7545
|
+
function () {
|
|
7546
|
+
/** @type {?} */
|
|
7547
|
+
var creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
7548
|
+
// if(creds.controls.length > 0) {
|
|
7549
|
+
for (var i = 0; i < this.fees.length; i++) {
|
|
7550
|
+
creds.push(this.formBuilder.group({
|
|
7551
|
+
id: this.fees[i].id,
|
|
7552
|
+
code: this.fees[i].code,
|
|
7553
|
+
volume: this.fees[i].volume,
|
|
7554
|
+
calculated_amount: this.fees[i].calculated_amount,
|
|
7555
|
+
apportion_amount: this.fees[i].apportion_amount,
|
|
7556
|
+
ccd_case_number: this.fees[i].ccd_case_number,
|
|
7557
|
+
description: this.fees[i].description,
|
|
7558
|
+
net_amount: this.fees[i].net_amount,
|
|
7559
|
+
version: this.fees[i].version,
|
|
7560
|
+
refund_amount: [''],
|
|
7561
|
+
selected: [''],
|
|
7562
|
+
updated_volume: this.fees[i].volume
|
|
7563
|
+
}));
|
|
7564
|
+
}
|
|
7565
|
+
this.cd.detectChanges();
|
|
7566
|
+
//}
|
|
7567
|
+
};
|
|
7568
|
+
Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
|
|
7569
|
+
get: /**
|
|
7570
|
+
* @return {?}
|
|
7571
|
+
*/
|
|
7572
|
+
function () {
|
|
7573
|
+
/** @type {?} */
|
|
7574
|
+
var dd = (/** @type {?} */ (this.remissionForm.get('feesList')));
|
|
7575
|
+
return (/** @type {?} */ (this.remissionForm.get('feesList')));
|
|
7576
|
+
},
|
|
7577
|
+
enumerable: true,
|
|
7578
|
+
configurable: true
|
|
7579
|
+
});
|
|
7580
|
+
/**
|
|
7581
|
+
* @return {?}
|
|
7582
|
+
*/
|
|
7583
|
+
AddRemissionComponent.prototype.noneSelected = /**
|
|
7584
|
+
* @return {?}
|
|
7585
|
+
*/
|
|
7586
|
+
function () {
|
|
7587
|
+
if (this.isFullyRefund) {
|
|
7588
|
+
return false;
|
|
7589
|
+
}
|
|
7590
|
+
else {
|
|
7591
|
+
if (!this.feesList.controls.some((/**
|
|
7592
|
+
* @param {?} item
|
|
7593
|
+
* @return {?}
|
|
7594
|
+
*/
|
|
7595
|
+
function (item) { return item.get('selected').value === true; }))) {
|
|
7596
|
+
this.errorMsg = [];
|
|
7597
|
+
[].forEach.call(document.querySelectorAll('input'), (/**
|
|
7598
|
+
* @param {?} el
|
|
7599
|
+
* @return {?}
|
|
7600
|
+
*/
|
|
7601
|
+
function (el) {
|
|
7602
|
+
el.classList.remove('inline-error-class');
|
|
7603
|
+
}));
|
|
7604
|
+
}
|
|
7605
|
+
return !this.feesList.controls.some((/**
|
|
7606
|
+
* @param {?} item
|
|
7607
|
+
* @return {?}
|
|
7608
|
+
*/
|
|
7609
|
+
function (item) { return item.get('selected').value === true; }));
|
|
7610
|
+
}
|
|
7611
|
+
};
|
|
7612
|
+
/**
|
|
7613
|
+
* @param {?} i
|
|
7614
|
+
* @param {?} v1
|
|
7615
|
+
* @param {?} AppAmt
|
|
7616
|
+
* @param {?} Volume
|
|
7617
|
+
* @return {?}
|
|
7618
|
+
*/
|
|
7619
|
+
AddRemissionComponent.prototype.check_en = /**
|
|
7620
|
+
* @param {?} i
|
|
7621
|
+
* @param {?} v1
|
|
7622
|
+
* @param {?} AppAmt
|
|
7623
|
+
* @param {?} Volume
|
|
7624
|
+
* @return {?}
|
|
7625
|
+
*/
|
|
7626
|
+
function (i, v1, AppAmt, Volume) {
|
|
7627
|
+
/** @type {?} */
|
|
7628
|
+
var ele = (/** @type {?} */ (document.getElementById(v1)));
|
|
7629
|
+
/** @type {?} */
|
|
7630
|
+
var formArray = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
7631
|
+
if (ele.checked) {
|
|
7632
|
+
formArray.at(i).get('refund_amount').setValue(AppAmt);
|
|
7633
|
+
formArray.at(i).get('volume').setValue(Volume);
|
|
7634
|
+
formArray.at(i).get('selected').setValue(true);
|
|
7635
|
+
formArray.at(i).get('updated_volume').setValue(Volume);
|
|
7636
|
+
((/** @type {?} */ (document.getElementById('feeAmount_' + v1)))).value = AppAmt;
|
|
7637
|
+
document.getElementById('feeAmount_' + v1).removeAttribute("disabled");
|
|
7638
|
+
if (Volume === 1) {
|
|
7639
|
+
((/** @type {?} */ (document.getElementById('VolumeUpdated_' + v1)))).value = Volume;
|
|
7640
|
+
}
|
|
7641
|
+
else {
|
|
7642
|
+
((/** @type {?} */ (document.getElementById('feeVolumeUpdated_' + v1)))).value = Volume;
|
|
7643
|
+
}
|
|
7644
|
+
if (document.getElementById('feeVolumeUpdated_' + v1) !== null) {
|
|
7645
|
+
document.getElementById('feeAmount_' + v1).removeAttribute("disabled");
|
|
7646
|
+
document.getElementById('feeVolumeUpdated_' + v1).removeAttribute("disabled");
|
|
7647
|
+
}
|
|
7648
|
+
this.cd.detectChanges();
|
|
7649
|
+
}
|
|
7650
|
+
else {
|
|
7651
|
+
this.errorMsg = [];
|
|
7652
|
+
document.getElementById('feeAmount_' + v1).setAttribute("disabled", "true");
|
|
7653
|
+
this.remissionForm.value.feesList[i]["refund_amount"] = '';
|
|
7654
|
+
this.remissionForm.value.feesList[i]["volume"] = '';
|
|
7655
|
+
this.remissionForm.value.feesList[i]["selected"] = false;
|
|
7656
|
+
((/** @type {?} */ (document.getElementById('feeAmount_' + v1)))).value = '';
|
|
7657
|
+
if (Volume > 1) {
|
|
7658
|
+
this.remissionForm.value.feesList[i]["volume"] = '';
|
|
7659
|
+
((/** @type {?} */ (document.getElementById('feeVolumeUpdated_' + v1)))).value = '';
|
|
7660
|
+
}
|
|
7661
|
+
if (document.getElementById('feeVolumeUpdated_' + v1) !== null) {
|
|
7662
|
+
document.getElementById('feeVolumeUpdated_' + v1).removeAttribute("disabled");
|
|
7663
|
+
}
|
|
7664
|
+
this.cd.detectChanges();
|
|
7665
|
+
}
|
|
6819
7666
|
};
|
|
6820
7667
|
/**
|
|
6821
7668
|
* @return {?}
|
|
@@ -6876,6 +7723,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6876
7723
|
/** @type {?} */
|
|
6877
7724
|
var LDUrl = _this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
6878
7725
|
LDUrl += "&caseType=" + _this.caseType;
|
|
7726
|
+
LDUrl += _this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
7727
|
+
LDUrl += _this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
6879
7728
|
if (_this.paymentLibComponent.bspaymentdcn) {
|
|
6880
7729
|
_this.router.routeReuseStrategy.shouldReuseRoute = (/**
|
|
6881
7730
|
* @return {?}
|
|
@@ -6941,20 +7790,28 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6941
7790
|
*/
|
|
6942
7791
|
function () {
|
|
6943
7792
|
this.errorMessage = false;
|
|
7793
|
+
// this.isFromCheckAnsPage = true;
|
|
7794
|
+
this.errorMsg = [];
|
|
6944
7795
|
this.viewStatus = '';
|
|
6945
7796
|
this.isRefundRemission = false;
|
|
6946
7797
|
this.resetRemissionForm([false, false, false, false, false, false], 'All');
|
|
6947
7798
|
/** @type {?} */
|
|
6948
7799
|
var remissionctrls = this.remissionForm.controls
|
|
6949
|
-
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
7800
|
+
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
6950
7801
|
;
|
|
6951
|
-
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
7802
|
+
// isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;
|
|
6952
7803
|
this.remissionForm.controls['refundReason'].setErrors(null);
|
|
6953
7804
|
this.remissionForm.controls['refundDDReason'].setErrors(null);
|
|
6954
7805
|
this.remissionForm.controls['amount'].setErrors(null);
|
|
6955
7806
|
if (this.remissionForm.dirty && this.remissionForm.valid) {
|
|
6956
|
-
this.
|
|
6957
|
-
|
|
7807
|
+
if (!this.isFromCheckAnsPage) {
|
|
7808
|
+
this.viewCompStatus = '';
|
|
7809
|
+
this.viewStatus = "processretroremissonpage";
|
|
7810
|
+
}
|
|
7811
|
+
else {
|
|
7812
|
+
this.viewCompStatus = '';
|
|
7813
|
+
this.viewStatus = 'checkretroremissionpage';
|
|
7814
|
+
}
|
|
6958
7815
|
}
|
|
6959
7816
|
else {
|
|
6960
7817
|
if (remissionctrls['remissionCode'].value == '') {
|
|
@@ -6985,6 +7842,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
6985
7842
|
*/
|
|
6986
7843
|
function () {
|
|
6987
7844
|
this.errorMessage = false;
|
|
7845
|
+
this.isFromCheckAnsPage = false;
|
|
7846
|
+
this.errorMsg = [];
|
|
6988
7847
|
if (this.isRefundRemission) {
|
|
6989
7848
|
this.paymentLibComponent.iscancelClicked = true;
|
|
6990
7849
|
this.refundListAmount.emit();
|
|
@@ -7002,6 +7861,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7002
7861
|
this.viewCompStatus = "addremission";
|
|
7003
7862
|
this.isRefundRemission = true;
|
|
7004
7863
|
this.errorMessage = '';
|
|
7864
|
+
this.errorMsg = [];
|
|
7005
7865
|
if (this.isFromPaymentDetailPage) {
|
|
7006
7866
|
this.paymentLibComponent.viewName = 'payment-view';
|
|
7007
7867
|
}
|
|
@@ -7054,6 +7914,19 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7054
7914
|
//}
|
|
7055
7915
|
}
|
|
7056
7916
|
};
|
|
7917
|
+
/**
|
|
7918
|
+
* @return {?}
|
|
7919
|
+
*/
|
|
7920
|
+
AddRemissionComponent.prototype.gotoAmountRetroRemission = /**
|
|
7921
|
+
* @return {?}
|
|
7922
|
+
*/
|
|
7923
|
+
function () {
|
|
7924
|
+
this.isFromCheckAnsPage = false;
|
|
7925
|
+
this.viewStatus = 'processretroremissonpage';
|
|
7926
|
+
this.viewCompStatus = '';
|
|
7927
|
+
// this.isRefundRemission = true;
|
|
7928
|
+
this.errorMessage = '';
|
|
7929
|
+
};
|
|
7057
7930
|
/**
|
|
7058
7931
|
* @return {?}
|
|
7059
7932
|
*/
|
|
@@ -7061,10 +7934,30 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7061
7934
|
* @return {?}
|
|
7062
7935
|
*/
|
|
7063
7936
|
function () {
|
|
7937
|
+
this.isFromCheckAnsPage = true;
|
|
7064
7938
|
this.viewStatus = '';
|
|
7065
7939
|
this.viewCompStatus = 'addremission';
|
|
7066
7940
|
this.isRefundRemission = true;
|
|
7067
7941
|
this.errorMessage = '';
|
|
7942
|
+
this.errorMsg = [];
|
|
7943
|
+
};
|
|
7944
|
+
/**
|
|
7945
|
+
* @param {?=} note
|
|
7946
|
+
* @return {?}
|
|
7947
|
+
*/
|
|
7948
|
+
AddRemissionComponent.prototype.gotoProcessRetroRemission = /**
|
|
7949
|
+
* @param {?=} note
|
|
7950
|
+
* @return {?}
|
|
7951
|
+
*/
|
|
7952
|
+
function (note) {
|
|
7953
|
+
if (note) {
|
|
7954
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
7955
|
+
}
|
|
7956
|
+
this.isFromCheckAnsPage = true;
|
|
7957
|
+
this.viewStatus = 'remissionAddressPage';
|
|
7958
|
+
this.viewCompStatus = '';
|
|
7959
|
+
this.isRefundRemission = true;
|
|
7960
|
+
this.errorMessage = '';
|
|
7068
7961
|
};
|
|
7069
7962
|
/**
|
|
7070
7963
|
* @return {?}
|
|
@@ -7110,6 +8003,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7110
8003
|
function () {
|
|
7111
8004
|
var _this = this;
|
|
7112
8005
|
this.errorMessage = '';
|
|
8006
|
+
this.errorMsg = [];
|
|
7113
8007
|
this.isConfirmationBtnDisabled = true;
|
|
7114
8008
|
if (this.isRefundRemission) {
|
|
7115
8009
|
this.retroRemission = true;
|
|
@@ -7118,7 +8012,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7118
8012
|
this.remissionReference = this.remission.remission_reference;
|
|
7119
8013
|
}
|
|
7120
8014
|
/** @type {?} */
|
|
7121
|
-
var requestBody = new PostIssueRefundRetroRemission(this.remissionReference);
|
|
8015
|
+
var requestBody = new PostIssueRefundRetroRemission(this.remissionReference, this.contactDetailsObj);
|
|
7122
8016
|
this.paymentViewService.postRefundRetroRemission(requestBody).subscribe((/**
|
|
7123
8017
|
* @param {?} response
|
|
7124
8018
|
* @return {?}
|
|
@@ -7156,7 +8050,14 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7156
8050
|
if (this.paymentLibComponent.REFUNDLIST === "true") {
|
|
7157
8051
|
this.isFromRefundListPage = true;
|
|
7158
8052
|
}
|
|
8053
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8054
|
+
* @param {?} a
|
|
8055
|
+
* @param {?} c
|
|
8056
|
+
* @return {?}
|
|
8057
|
+
*/
|
|
8058
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
7159
8059
|
this.errorMessage = '';
|
|
8060
|
+
this.errorMsg = [];
|
|
7160
8061
|
this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;
|
|
7161
8062
|
if (!this.refundReason || this.refundReason === 'Select a different reason') {
|
|
7162
8063
|
this.refundHasError = true;
|
|
@@ -7172,19 +8073,43 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7172
8073
|
this.refundListReason.emit({ reason: this.displayRefundReason, code: this.refundReason });
|
|
7173
8074
|
}
|
|
7174
8075
|
else {
|
|
8076
|
+
if (this.isFromCheckAnsPage) {
|
|
8077
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8078
|
+
* @param {?} a
|
|
8079
|
+
* @param {?} c
|
|
8080
|
+
* @return {?}
|
|
8081
|
+
*/
|
|
8082
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8083
|
+
this.isFromCheckAnsPage = false;
|
|
8084
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
8085
|
+
this.viewCompStatus = '';
|
|
8086
|
+
return;
|
|
8087
|
+
}
|
|
7175
8088
|
this.viewCompStatus = '';
|
|
7176
|
-
this.viewStatus = '
|
|
8089
|
+
this.viewStatus = 'contactDetailsPage';
|
|
7177
8090
|
}
|
|
7178
8091
|
}
|
|
7179
8092
|
else {
|
|
7180
8093
|
this.displayRefundReason = this.selectedRefundReason;
|
|
8094
|
+
if (this.isFromCheckAnsPage) {
|
|
8095
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8096
|
+
* @param {?} a
|
|
8097
|
+
* @param {?} c
|
|
8098
|
+
* @return {?}
|
|
8099
|
+
*/
|
|
8100
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8101
|
+
this.isFromCheckAnsPage = false;
|
|
8102
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
8103
|
+
this.viewCompStatus = '';
|
|
8104
|
+
return;
|
|
8105
|
+
}
|
|
7181
8106
|
if (this.isFromRefundListPage) {
|
|
7182
8107
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
7183
8108
|
this.refundListReason.emit({ reason: this.selectedRefundReason, code: this.refundReason });
|
|
7184
8109
|
}
|
|
7185
8110
|
else {
|
|
7186
8111
|
this.viewCompStatus = '';
|
|
7187
|
-
this.viewStatus = '
|
|
8112
|
+
this.viewStatus = 'contactDetailsPage';
|
|
7188
8113
|
}
|
|
7189
8114
|
}
|
|
7190
8115
|
};
|
|
@@ -7200,81 +8125,293 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7200
8125
|
this.viewStatus = '';
|
|
7201
8126
|
this.isRefundRemission = true;
|
|
7202
8127
|
this.errorMessage = false;
|
|
8128
|
+
this.errorMsg = [];
|
|
7203
8129
|
this.refundHasError = false;
|
|
7204
8130
|
this.isReasonEmpty = false;
|
|
7205
8131
|
};
|
|
7206
8132
|
/**
|
|
8133
|
+
* @param {?} isFullyRefund
|
|
7207
8134
|
* @return {?}
|
|
7208
8135
|
*/
|
|
7209
|
-
AddRemissionComponent.prototype.
|
|
8136
|
+
AddRemissionComponent.prototype.gotoIssuePage = /**
|
|
8137
|
+
* @param {?} isFullyRefund
|
|
7210
8138
|
* @return {?}
|
|
7211
8139
|
*/
|
|
7212
|
-
function () {
|
|
7213
|
-
|
|
7214
|
-
|
|
7215
|
-
|
|
7216
|
-
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
8140
|
+
function (isFullyRefund) {
|
|
8141
|
+
if (isFullyRefund) {
|
|
8142
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8143
|
+
this.getRefundReasons();
|
|
8144
|
+
}
|
|
8145
|
+
else {
|
|
8146
|
+
[].forEach.call(document.querySelectorAll('input'), (/**
|
|
8147
|
+
* @param {?} el
|
|
8148
|
+
* @return {?}
|
|
8149
|
+
*/
|
|
8150
|
+
function (el) {
|
|
8151
|
+
el.classList.remove('inline-error-class');
|
|
8152
|
+
}));
|
|
8153
|
+
/** @type {?} */
|
|
8154
|
+
var checkboxs = document.getElementsByTagName('input');
|
|
8155
|
+
this.errorMessage = '';
|
|
8156
|
+
this.totalRefundAmount = 0;
|
|
8157
|
+
this.errorMsg = [];
|
|
8158
|
+
for (var j = 0; j < checkboxs.length; j++) {
|
|
8159
|
+
if (checkboxs[j].checked) {
|
|
8160
|
+
this.fullRefund = false;
|
|
8161
|
+
/** @type {?} */
|
|
8162
|
+
var quantity = +((/** @type {?} */ (document.getElementById('feeVolume_' + checkboxs[j].value)))).value;
|
|
8163
|
+
/** @type {?} */
|
|
8164
|
+
var amountToRefund = +((/** @type {?} */ (document.getElementById('feeAmount_' + checkboxs[j].value)))).value;
|
|
8165
|
+
/** @type {?} */
|
|
8166
|
+
var apportionAmount = +((/** @type {?} */ (document.getElementById('feeApportionAmount_' + checkboxs[j].value)))).value;
|
|
8167
|
+
/** @type {?} */
|
|
8168
|
+
var calculatedAmount = +((/** @type {?} */ (document.getElementById('calculatedAmount_' + checkboxs[j].value)))).value;
|
|
8169
|
+
if (amountToRefund === apportionAmount) {
|
|
8170
|
+
this.fullRefund = true;
|
|
8171
|
+
}
|
|
8172
|
+
if (amountToRefund === 0) {
|
|
8173
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8174
|
+
this.errorMsg.push('You need to enter a refund amount');
|
|
8175
|
+
this.getErrorClass(this.elementId);
|
|
8176
|
+
}
|
|
8177
|
+
if (quantity === 1) {
|
|
8178
|
+
if (amountToRefund > 0 && amountToRefund > apportionAmount) {
|
|
8179
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8180
|
+
this.errorMsg.push('The amount you want to refund is more than the amount paid');
|
|
8181
|
+
this.getErrorClass(this.elementId);
|
|
8182
|
+
}
|
|
8183
|
+
}
|
|
8184
|
+
if (quantity > 1) {
|
|
8185
|
+
this.quantityUpdated = +((/** @type {?} */ (document.getElementById('feeVolumeUpdated_' + checkboxs[j].value)))).value;
|
|
8186
|
+
if (this.quantityUpdated === 0) {
|
|
8187
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8188
|
+
this.errorMsg.push('You need to enter quantity');
|
|
8189
|
+
this.getErrorClass(this.elementId);
|
|
8190
|
+
}
|
|
8191
|
+
if (this.fullRefund && quantity !== this.quantityUpdated) {
|
|
8192
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8193
|
+
this.errorMsg.push('The quantity you want to refund should be maximun available quantity');
|
|
8194
|
+
this.getErrorClass(this.elementId);
|
|
8195
|
+
}
|
|
8196
|
+
if (!this.fullRefund && this.quantityUpdated > 0 && amountToRefund > 0) {
|
|
8197
|
+
this.refundAmtForFeeVolumes = +((/** @type {?} */ (document.getElementById('feeVOl_' + checkboxs[j].value)))).innerText;
|
|
8198
|
+
this.allowedRefundAmount = this.quantityUpdated * this.refundAmtForFeeVolumes;
|
|
8199
|
+
if (this.allowedRefundAmount !== amountToRefund) {
|
|
8200
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8201
|
+
this.errorMsg.push('The Amount to Refund should be equal to the product of Fee Amount and quantity');
|
|
8202
|
+
this.getErrorClass(this.elementId);
|
|
8203
|
+
}
|
|
8204
|
+
}
|
|
8205
|
+
if (!this.fullRefund && amountToRefund > apportionAmount) {
|
|
8206
|
+
this.elementId = 'feeAmount_' + checkboxs[j].value;
|
|
8207
|
+
this.errorMsg.push('The amount you want to refund is more than the amount paid');
|
|
8208
|
+
this.getErrorClass(this.elementId);
|
|
8209
|
+
}
|
|
8210
|
+
if (!this.fullRefund && this.quantityUpdated > 0 && this.quantityUpdated > quantity) {
|
|
8211
|
+
this.elementId = 'feeVolumeUpdated_' + checkboxs[j].value;
|
|
8212
|
+
this.errorMsg.push('The quantity you want to refund is more than the available quantity');
|
|
8213
|
+
this.getErrorClass(this.elementId);
|
|
8214
|
+
}
|
|
8215
|
+
}
|
|
8216
|
+
//this.remissionForm.value.feesList.find(id=>id=checkboxs[j].value)['refund_amount'] = apportionAmount;
|
|
8217
|
+
}
|
|
8218
|
+
}
|
|
8219
|
+
if (this.errorMsg.length === 0) {
|
|
8220
|
+
if (this.isFromCheckAnsPage) {
|
|
8221
|
+
this.isFromCheckAnsPage = false;
|
|
8222
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8223
|
+
* @param {?} a
|
|
8224
|
+
* @param {?} c
|
|
8225
|
+
* @return {?}
|
|
8226
|
+
*/
|
|
8227
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8228
|
+
this.fees = this.remissionForm.value.feesList.filter((/**
|
|
8229
|
+
* @param {?} value
|
|
8230
|
+
* @return {?}
|
|
8231
|
+
*/
|
|
8232
|
+
function (value) { return value.selected === true; }));
|
|
8233
|
+
this.viewStatus = 'checkissuerefundpage';
|
|
8234
|
+
this.viewCompStatus = '';
|
|
8235
|
+
return;
|
|
8236
|
+
}
|
|
8237
|
+
else if (this.isFromRefundStatusPage) {
|
|
8238
|
+
/** @type {?} */
|
|
8239
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8240
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8241
|
+
* @param {?} a
|
|
8242
|
+
* @param {?} c
|
|
8243
|
+
* @return {?}
|
|
8244
|
+
*/
|
|
8245
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8246
|
+
this.refundListAmount.emit(this.totalRefundAmount.toString());
|
|
8247
|
+
this.fees = this.remissionForm.value.feesList.filter((/**
|
|
8248
|
+
* @param {?} value
|
|
8249
|
+
* @return {?}
|
|
8250
|
+
*/
|
|
8251
|
+
function (value) { return value.selected === true; }));
|
|
8252
|
+
this.refundFees.emit(this.fees);
|
|
8253
|
+
return;
|
|
8254
|
+
}
|
|
8255
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8256
|
+
this.getRefundReasons();
|
|
8257
|
+
}
|
|
8258
|
+
}
|
|
7220
8259
|
};
|
|
7221
8260
|
/**
|
|
8261
|
+
* @param {?} value
|
|
8262
|
+
* @param {?} amount
|
|
8263
|
+
* @param {?} volume
|
|
8264
|
+
* @param {?} i
|
|
7222
8265
|
* @return {?}
|
|
7223
8266
|
*/
|
|
7224
|
-
AddRemissionComponent.prototype.
|
|
8267
|
+
AddRemissionComponent.prototype.calAmtToRefund = /**
|
|
8268
|
+
* @param {?} value
|
|
8269
|
+
* @param {?} amount
|
|
8270
|
+
* @param {?} volume
|
|
8271
|
+
* @param {?} i
|
|
7225
8272
|
* @return {?}
|
|
7226
8273
|
*/
|
|
7227
|
-
function () {
|
|
7228
|
-
var _this = this;
|
|
7229
|
-
this.isConfirmationBtnDisabled = true;
|
|
7230
|
-
this.errorMessage = '';
|
|
7231
|
-
if (this.isRefundRemission) {
|
|
7232
|
-
this.retroRemission = true;
|
|
7233
|
-
}
|
|
8274
|
+
function (value, amount, volume, i) {
|
|
7234
8275
|
/** @type {?} */
|
|
7235
|
-
var
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
if (JSON.parse(response).refund_amount) {
|
|
7246
|
-
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
7247
|
-
}
|
|
7248
|
-
}
|
|
7249
|
-
}), (/**
|
|
7250
|
-
* @param {?} error
|
|
7251
|
-
* @return {?}
|
|
7252
|
-
*/
|
|
7253
|
-
function (error) {
|
|
7254
|
-
_this.errorMessage = error;
|
|
7255
|
-
_this.isConfirmationBtnDisabled = false;
|
|
7256
|
-
_this.cd.detectChanges();
|
|
7257
|
-
}));
|
|
8276
|
+
var volumeFee = amount / volume;
|
|
8277
|
+
/** @type {?} */
|
|
8278
|
+
var amtToRefund = value * volumeFee;
|
|
8279
|
+
/** @type {?} */
|
|
8280
|
+
var formArray = (/** @type {?} */ (this.remissionForm.controls.feesList));
|
|
8281
|
+
formArray.at(i).get('refund_amount').setValue(amtToRefund);
|
|
8282
|
+
// formArray.at(i).get('volume').setValue(value);
|
|
8283
|
+
// (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;
|
|
8284
|
+
// const formControl = this.remissionForm.controls.feesList['volume'].at(i);
|
|
8285
|
+
// formControl.setValue(value);
|
|
7258
8286
|
};
|
|
7259
|
-
// Retro Refund
|
|
7260
|
-
// Retro Refund
|
|
7261
8287
|
/**
|
|
8288
|
+
* @param {?=} note
|
|
7262
8289
|
* @return {?}
|
|
7263
8290
|
*/
|
|
7264
|
-
AddRemissionComponent.prototype.
|
|
7265
|
-
|
|
7266
|
-
/**
|
|
8291
|
+
AddRemissionComponent.prototype.gotoContactDetailsPage = /**
|
|
8292
|
+
* @param {?=} note
|
|
7267
8293
|
* @return {?}
|
|
7268
8294
|
*/
|
|
7269
|
-
function () {
|
|
7270
|
-
|
|
7271
|
-
|
|
8295
|
+
function (note) {
|
|
8296
|
+
if (note) {
|
|
8297
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
8298
|
+
}
|
|
8299
|
+
this.errorMessage = '';
|
|
8300
|
+
this.viewCompStatus = '';
|
|
8301
|
+
this.viewStatus = 'contactDetailsPage';
|
|
8302
|
+
this.isRefundRemission = true;
|
|
8303
|
+
this.errorMessage = false;
|
|
8304
|
+
};
|
|
8305
|
+
/**
|
|
8306
|
+
* @return {?}
|
|
8307
|
+
*/
|
|
8308
|
+
AddRemissionComponent.prototype.getRefundReasons = /**
|
|
8309
|
+
* @return {?}
|
|
8310
|
+
*/
|
|
8311
|
+
function () {
|
|
8312
|
+
var _this = this;
|
|
8313
|
+
if (this.viewCompStatus === 'issuerefundpage1') {
|
|
8314
|
+
this.refundService.getRefundReasons().subscribe((/**
|
|
8315
|
+
* @param {?} refundReasons
|
|
8316
|
+
* @return {?}
|
|
8317
|
+
*/
|
|
8318
|
+
function (refundReasons) {
|
|
8319
|
+
_this.refundReasons = refundReasons.filter((/**
|
|
8320
|
+
* @param {?} data
|
|
8321
|
+
* @return {?}
|
|
8322
|
+
*/
|
|
8323
|
+
function (data) { return data.recently_used === false; }));
|
|
8324
|
+
_this.refundReasons = _this.refundReasons.filter((/**
|
|
8325
|
+
* @param {?} data
|
|
8326
|
+
* @return {?}
|
|
8327
|
+
*/
|
|
8328
|
+
function (data) { return data.name !== 'Retrospective remission'; }));
|
|
8329
|
+
_this.cd.detectChanges();
|
|
8330
|
+
_this.commonRefundReasons = refundReasons.filter((/**
|
|
8331
|
+
* @param {?} data
|
|
8332
|
+
* @return {?}
|
|
8333
|
+
*/
|
|
8334
|
+
function (data) { return data.recently_used === true; }));
|
|
8335
|
+
_this.commonRefundReasons.sort((/**
|
|
8336
|
+
* @param {?} a
|
|
8337
|
+
* @param {?} b
|
|
8338
|
+
* @return {?}
|
|
8339
|
+
*/
|
|
8340
|
+
function (a, b) { return a.toString().localeCompare(b); }));
|
|
8341
|
+
_this.cd.detectChanges();
|
|
8342
|
+
}));
|
|
8343
|
+
}
|
|
8344
|
+
};
|
|
8345
|
+
/**
|
|
8346
|
+
* @param {?} elementId
|
|
8347
|
+
* @return {?}
|
|
8348
|
+
*/
|
|
8349
|
+
AddRemissionComponent.prototype.getErrorClass = /**
|
|
8350
|
+
* @param {?} elementId
|
|
8351
|
+
* @return {?}
|
|
8352
|
+
*/
|
|
8353
|
+
function (elementId) {
|
|
8354
|
+
if (this.errorMsg.length > 0) {
|
|
8355
|
+
/** @type {?} */
|
|
8356
|
+
var ele = document.getElementById(elementId);
|
|
8357
|
+
ele.classList.add('inline-error-class');
|
|
8358
|
+
}
|
|
8359
|
+
};
|
|
8360
|
+
/**
|
|
8361
|
+
* @return {?}
|
|
8362
|
+
*/
|
|
8363
|
+
AddRemissionComponent.prototype.changeIssueRefundReason = /**
|
|
8364
|
+
* @return {?}
|
|
8365
|
+
*/
|
|
8366
|
+
function () {
|
|
8367
|
+
this.isFromCheckAnsPage = true;
|
|
8368
|
+
this.errorMessage = '';
|
|
8369
|
+
this.errorMsg = [];
|
|
8370
|
+
this.refundHasError = false;
|
|
8371
|
+
this.isReasonEmpty = false;
|
|
8372
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8373
|
+
this.viewStatus = '';
|
|
8374
|
+
this.isRefundRemission = true;
|
|
8375
|
+
};
|
|
8376
|
+
/**
|
|
8377
|
+
* @param {?} isFullyRefund
|
|
8378
|
+
* @return {?}
|
|
8379
|
+
*/
|
|
8380
|
+
AddRemissionComponent.prototype.confirmIssueRefund = /**
|
|
8381
|
+
* @param {?} isFullyRefund
|
|
8382
|
+
* @return {?}
|
|
8383
|
+
*/
|
|
8384
|
+
function (isFullyRefund) {
|
|
8385
|
+
var _this = this;
|
|
8386
|
+
this.isConfirmationBtnDisabled = true;
|
|
7272
8387
|
this.errorMessage = '';
|
|
8388
|
+
this.errorMsg = [];
|
|
7273
8389
|
if (this.isRefundRemission) {
|
|
7274
8390
|
this.retroRemission = true;
|
|
7275
8391
|
}
|
|
8392
|
+
if (isFullyRefund) {
|
|
8393
|
+
this.totalRefundAmount = this.payment.amount;
|
|
8394
|
+
}
|
|
8395
|
+
if (!isFullyRefund) {
|
|
8396
|
+
this.fees = this.remissionForm.value.feesList.filter((/**
|
|
8397
|
+
* @param {?} value
|
|
8398
|
+
* @return {?}
|
|
8399
|
+
*/
|
|
8400
|
+
function (value) { return value.selected === true; }));
|
|
8401
|
+
}
|
|
8402
|
+
this.fees = this.fees.map((/**
|
|
8403
|
+
* @param {?} obj
|
|
8404
|
+
* @return {?}
|
|
8405
|
+
*/
|
|
8406
|
+
function (obj) { return ({ id: obj.id,
|
|
8407
|
+
code: obj.code,
|
|
8408
|
+
version: obj.version,
|
|
8409
|
+
apportion_amount: obj.apportion_amount,
|
|
8410
|
+
calculated_amount: obj.calculated_amount,
|
|
8411
|
+
updated_volume: obj.updated_volume,
|
|
8412
|
+
refund_amount: obj.refund_amount }); }));
|
|
7276
8413
|
/** @type {?} */
|
|
7277
|
-
var requestBody = new PostRefundRetroRemission(this.payment.reference,
|
|
8414
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.payment.reference, this.refundReason, this.totalRefundAmount);
|
|
7278
8415
|
this.paymentViewService.postRefundsReason(requestBody).subscribe((/**
|
|
7279
8416
|
* @param {?} response
|
|
7280
8417
|
* @return {?}
|
|
@@ -7282,7 +8419,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7282
8419
|
function (response) {
|
|
7283
8420
|
if (JSON.parse(response)) {
|
|
7284
8421
|
_this.viewCompStatus = '';
|
|
7285
|
-
_this.viewStatus = '
|
|
8422
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
7286
8423
|
_this.refundReference = JSON.parse(response).refund_reference;
|
|
7287
8424
|
if (JSON.parse(response).refund_amount) {
|
|
7288
8425
|
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
@@ -7295,14 +8432,101 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7295
8432
|
function (error) {
|
|
7296
8433
|
_this.errorMessage = error;
|
|
7297
8434
|
_this.isConfirmationBtnDisabled = false;
|
|
8435
|
+
_this.cd.detectChanges();
|
|
7298
8436
|
}));
|
|
7299
8437
|
};
|
|
8438
|
+
/**
|
|
8439
|
+
* @return {?}
|
|
8440
|
+
*/
|
|
8441
|
+
AddRemissionComponent.prototype.gotoRefundReasonPage = /**
|
|
8442
|
+
* @return {?}
|
|
8443
|
+
*/
|
|
8444
|
+
function () {
|
|
8445
|
+
this.viewStatus = '';
|
|
8446
|
+
this.viewCompStatus = 'issuerefundpage1';
|
|
8447
|
+
};
|
|
8448
|
+
// Retro Refund
|
|
8449
|
+
// confirmRetroRefund() {
|
|
8450
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8451
|
+
// this.errorMessage = '';
|
|
8452
|
+
// this.errorMsg = [];
|
|
8453
|
+
// if( this.isRefundRemission) {
|
|
8454
|
+
// this.retroRemission = true;
|
|
8455
|
+
// }
|
|
8456
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8457
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8458
|
+
// response => {
|
|
8459
|
+
// if (JSON.parse(response)) {
|
|
8460
|
+
// this.viewCompStatus = '';
|
|
8461
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8462
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8463
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8464
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8465
|
+
// }
|
|
8466
|
+
// }
|
|
8467
|
+
// },
|
|
8468
|
+
// (error: any) => {
|
|
8469
|
+
// this.errorMessage = error;
|
|
8470
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8471
|
+
// });
|
|
8472
|
+
// }
|
|
8473
|
+
// Retro Refund
|
|
8474
|
+
// confirmRetroRefund() {
|
|
8475
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8476
|
+
// this.errorMessage = '';
|
|
8477
|
+
// this.errorMsg = [];
|
|
8478
|
+
// if( this.isRefundRemission) {
|
|
8479
|
+
// this.retroRemission = true;
|
|
8480
|
+
// }
|
|
8481
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8482
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8483
|
+
// response => {
|
|
8484
|
+
// if (JSON.parse(response)) {
|
|
8485
|
+
// this.viewCompStatus = '';
|
|
8486
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8487
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8488
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8489
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8490
|
+
// }
|
|
8491
|
+
// }
|
|
8492
|
+
// },
|
|
8493
|
+
// (error: any) => {
|
|
8494
|
+
// this.errorMessage = error;
|
|
8495
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8496
|
+
// });
|
|
8497
|
+
// }
|
|
7300
8498
|
/**
|
|
7301
8499
|
* @param {?} key
|
|
7302
8500
|
* @param {?} value
|
|
7303
8501
|
* @return {?}
|
|
7304
8502
|
*/
|
|
7305
|
-
AddRemissionComponent.prototype.selectRadioButton =
|
|
8503
|
+
AddRemissionComponent.prototype.selectRadioButton =
|
|
8504
|
+
// Retro Refund
|
|
8505
|
+
// confirmRetroRefund() {
|
|
8506
|
+
// this.isConfirmationBtnDisabled = true;
|
|
8507
|
+
// this.errorMessage = '';
|
|
8508
|
+
// this.errorMsg = [];
|
|
8509
|
+
// if( this.isRefundRemission) {
|
|
8510
|
+
// this.retroRemission = true;
|
|
8511
|
+
// }
|
|
8512
|
+
// const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);
|
|
8513
|
+
// this.paymentViewService.postRefundsReason(requestBody).subscribe(
|
|
8514
|
+
// response => {
|
|
8515
|
+
// if (JSON.parse(response)) {
|
|
8516
|
+
// this.viewCompStatus = '';
|
|
8517
|
+
// this.viewStatus = 'retrorefundconfirmationpage';
|
|
8518
|
+
// this.refundReference =JSON.parse(response).refund_reference;
|
|
8519
|
+
// if(JSON.parse(response).refund_amount) {
|
|
8520
|
+
// this.refundAmount = JSON.parse(response).refund_amount;
|
|
8521
|
+
// }
|
|
8522
|
+
// }
|
|
8523
|
+
// },
|
|
8524
|
+
// (error: any) => {
|
|
8525
|
+
// this.errorMessage = error;
|
|
8526
|
+
// this.isConfirmationBtnDisabled = false;
|
|
8527
|
+
// });
|
|
8528
|
+
// }
|
|
8529
|
+
/**
|
|
7306
8530
|
* @param {?} key
|
|
7307
8531
|
* @param {?} value
|
|
7308
8532
|
* @return {?}
|
|
@@ -7315,6 +8539,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7315
8539
|
remissionctrls['reason'].reset();
|
|
7316
8540
|
this.isRefundReasonsSelected = true;
|
|
7317
8541
|
this.errorMessage = false;
|
|
8542
|
+
this.errorMsg = [];
|
|
7318
8543
|
this.isReasonEmpty = false;
|
|
7319
8544
|
this.showReasonText = false;
|
|
7320
8545
|
this.refundHasError = false;
|
|
@@ -7349,6 +8574,38 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7349
8574
|
this.refundReason = args.target.options[args.target.options.selectedIndex].id;
|
|
7350
8575
|
}
|
|
7351
8576
|
};
|
|
8577
|
+
/**
|
|
8578
|
+
* @param {?} obj
|
|
8579
|
+
* @param {?} type
|
|
8580
|
+
* @return {?}
|
|
8581
|
+
*/
|
|
8582
|
+
AddRemissionComponent.prototype.getContactDetails = /**
|
|
8583
|
+
* @param {?} obj
|
|
8584
|
+
* @param {?} type
|
|
8585
|
+
* @return {?}
|
|
8586
|
+
*/
|
|
8587
|
+
function (obj, type) {
|
|
8588
|
+
this.contactDetailsObj = obj;
|
|
8589
|
+
this.viewCompStatus = '';
|
|
8590
|
+
this.viewStatus = type;
|
|
8591
|
+
};
|
|
8592
|
+
/**
|
|
8593
|
+
* @return {?}
|
|
8594
|
+
*/
|
|
8595
|
+
AddRemissionComponent.prototype.gotoPartialFeeRefundScreen = /**
|
|
8596
|
+
* @return {?}
|
|
8597
|
+
*/
|
|
8598
|
+
function () {
|
|
8599
|
+
if (this.isFromRefundStatusPage) {
|
|
8600
|
+
/** @type {?} */
|
|
8601
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8602
|
+
this.refundListReason.emit({ reason: this.displayRefundReason, code: this.refundReason });
|
|
8603
|
+
return;
|
|
8604
|
+
}
|
|
8605
|
+
this.refundHasError = false;
|
|
8606
|
+
this.viewCompStatus = 'issuerefund';
|
|
8607
|
+
this.viewStatus = '';
|
|
8608
|
+
};
|
|
7352
8609
|
/**
|
|
7353
8610
|
* @param {?} event
|
|
7354
8611
|
* @return {?}
|
|
@@ -7360,7 +8617,21 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7360
8617
|
function (event) {
|
|
7361
8618
|
var _this = this;
|
|
7362
8619
|
this.errorMessage = '';
|
|
8620
|
+
this.errorMsg = [];
|
|
8621
|
+
this.isFromCheckAnsPage = false;
|
|
7363
8622
|
event.preventDefault();
|
|
8623
|
+
if (this.isFromRefundStatusPage) {
|
|
8624
|
+
/** @type {?} */
|
|
8625
|
+
var remissionctrls = this.remissionForm.controls;
|
|
8626
|
+
this.totalRefundAmount = this.remissionForm.value.feesList.reduce((/**
|
|
8627
|
+
* @param {?} a
|
|
8628
|
+
* @param {?} c
|
|
8629
|
+
* @return {?}
|
|
8630
|
+
*/
|
|
8631
|
+
function (a, c) { return a + c.refund_amount * c.selected; }), 0);
|
|
8632
|
+
this.refundListAmount.emit(this.totalRefundAmount.toString());
|
|
8633
|
+
return;
|
|
8634
|
+
}
|
|
7364
8635
|
if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {
|
|
7365
8636
|
this.viewStatus = 'order-full-view';
|
|
7366
8637
|
this.viewCompStatus = '';
|
|
@@ -7395,64 +8666,40 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7395
8666
|
}
|
|
7396
8667
|
this.viewCompStatus = '';
|
|
7397
8668
|
}
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
|
|
7423
|
-
|
|
7424
|
-
|
|
7425
|
-
|
|
7426
|
-
|
|
7427
|
-
|
|
7428
|
-
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
// partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7433
|
-
// partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7434
|
-
// partUrl += `&caseType=${this.caseType}`;
|
|
7435
|
-
// if(this.isFromPaymentDetailPage) {
|
|
7436
|
-
// partUrl += this.paymentLibComponent.isFromPaymentDetailPage
|
|
7437
|
-
// }
|
|
7438
|
-
// if(!this.paymentLibComponent.TAKEPAYMENT) {
|
|
7439
|
-
// this.paymentLibComponent.TAKEPAYMENT = undefined;
|
|
7440
|
-
// }
|
|
7441
|
-
// if ( this.paymentLibComponent.SERVICEREQUEST) {
|
|
7442
|
-
// const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;
|
|
7443
|
-
// this.router.routeReuseStrategy.shouldReuseRoute = () => false;
|
|
7444
|
-
// this.router.onSameUrlNavigation = 'reload';
|
|
7445
|
-
// this.router.navigateByUrl(url);
|
|
7446
|
-
// } else {
|
|
7447
|
-
// const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;
|
|
7448
|
-
// this.router.routeReuseStrategy.shouldReuseRoute = () => false;
|
|
7449
|
-
// this.router.onSameUrlNavigation = 'reload';
|
|
7450
|
-
// this.router.navigateByUrl(url);
|
|
7451
|
-
// }
|
|
7452
|
-
// } else {
|
|
7453
|
-
// this.paymentLibComponent.viewName === 'refundstatuslist';
|
|
7454
|
-
// this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
7455
|
-
// }
|
|
8669
|
+
};
|
|
8670
|
+
/**
|
|
8671
|
+
* @param {?=} note
|
|
8672
|
+
* @return {?}
|
|
8673
|
+
*/
|
|
8674
|
+
AddRemissionComponent.prototype.gotoAddressPage = /**
|
|
8675
|
+
* @param {?=} note
|
|
8676
|
+
* @return {?}
|
|
8677
|
+
*/
|
|
8678
|
+
function (note) {
|
|
8679
|
+
if (note) {
|
|
8680
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
8681
|
+
}
|
|
8682
|
+
this.errorMessage = '';
|
|
8683
|
+
this.viewCompStatus = 'addrefundforremission';
|
|
8684
|
+
this.viewStatus = '';
|
|
8685
|
+
this.isRefundRemission = true;
|
|
8686
|
+
this.errorMessage = false;
|
|
8687
|
+
};
|
|
8688
|
+
/**
|
|
8689
|
+
* @param {?} event
|
|
8690
|
+
* @return {?}
|
|
8691
|
+
*/
|
|
8692
|
+
AddRemissionComponent.prototype.gotoRemissionSuccess = /**
|
|
8693
|
+
* @param {?} event
|
|
8694
|
+
* @return {?}
|
|
8695
|
+
*/
|
|
8696
|
+
function (event) {
|
|
8697
|
+
event.preventDefault();
|
|
8698
|
+
this.errorMessage = '';
|
|
8699
|
+
this.viewCompStatus = '';
|
|
8700
|
+
this.viewStatus = 'retroremissionconfirmationpage';
|
|
8701
|
+
this.isRefundRemission = true;
|
|
8702
|
+
this.errorMessage = false;
|
|
7456
8703
|
};
|
|
7457
8704
|
/**
|
|
7458
8705
|
* @return {?}
|
|
@@ -7463,9 +8710,12 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7463
8710
|
function () {
|
|
7464
8711
|
this.OrderslistService.setnavigationPage('casetransactions');
|
|
7465
8712
|
this.errorMessage = '';
|
|
8713
|
+
this.errorMsg = [];
|
|
7466
8714
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7467
8715
|
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
7468
8716
|
this.paymentLibComponent.ISTURNOFF = this.isTurnOff;
|
|
8717
|
+
this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;
|
|
8718
|
+
this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;
|
|
7469
8719
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
7470
8720
|
this.resetOrderData();
|
|
7471
8721
|
/** @type {?} */
|
|
@@ -7474,6 +8724,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7474
8724
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7475
8725
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7476
8726
|
partUrl += "&caseType=" + this.caseType;
|
|
8727
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8728
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
7477
8729
|
/** @type {?} */
|
|
7478
8730
|
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=" + this.paymentLibComponent.TAKEPAYMENT + "&selectedOption=" + this.option + partUrl;
|
|
7479
8731
|
this.router.routeReuseStrategy.shouldReuseRoute = (/**
|
|
@@ -7492,30 +8744,38 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7492
8744
|
* @return {?}
|
|
7493
8745
|
*/
|
|
7494
8746
|
function (event) {
|
|
7495
|
-
var _this = this;
|
|
7496
8747
|
event.preventDefault();
|
|
7497
|
-
|
|
8748
|
+
this.errorMsg = [];
|
|
8749
|
+
if (this.paymentLibComponent.isFromServiceRequestPage !== undefined && !this.paymentLibComponent.isFromServiceRequestPage) {
|
|
8750
|
+
this.OrderslistService.setnavigationPage('casetransactions');
|
|
8751
|
+
this.OrderslistService.setisFromServiceRequestPage(false);
|
|
8752
|
+
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
8753
|
+
this.paymentLibComponent.viewName = 'case-transactions';
|
|
8754
|
+
this.paymentLibComponent.ISBSENABLE = true;
|
|
8755
|
+
this.paymentLibComponent.isRefundStatusView = false;
|
|
7498
8756
|
this.OrderslistService.setnavigationPage('casetransactions');
|
|
7499
8757
|
this.OrderslistService.setisFromServiceRequestPage(false);
|
|
7500
8758
|
this.paymentLibComponent.VIEW = 'case-transactions';
|
|
7501
8759
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7502
8760
|
this.paymentLibComponent.ISBSENABLE = true;
|
|
7503
8761
|
this.paymentLibComponent.isRefundStatusView = false;
|
|
7504
|
-
|
|
7505
|
-
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
|
|
8762
|
+
this.resetOrderData();
|
|
8763
|
+
/** @type {?} */
|
|
8764
|
+
var partUrl = this.bsPaymentDcnNumber ? "&dcn=" + this.bsPaymentDcnNumber : '';
|
|
8765
|
+
partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
8766
|
+
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
8767
|
+
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
8768
|
+
partUrl += "&caseType=" + this.caseType;
|
|
8769
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8770
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
8771
|
+
/** @type {?} */
|
|
8772
|
+
var url = "/payment-history/" + this.ccdCaseNumber + "?view=case-transactions&takePayment=" + this.paymentLibComponent.TAKEPAYMENT + "&selectedOption=" + this.option + partUrl;
|
|
8773
|
+
this.router.routeReuseStrategy.shouldReuseRoute = (/**
|
|
8774
|
+
* @return {?}
|
|
8775
|
+
*/
|
|
8776
|
+
function () { return false; });
|
|
8777
|
+
this.router.onSameUrlNavigation = 'reload';
|
|
8778
|
+
this.router.navigateByUrl(url);
|
|
7519
8779
|
}
|
|
7520
8780
|
else {
|
|
7521
8781
|
if (this.paymentLibComponent.REFUNDLIST) {
|
|
@@ -7531,33 +8791,18 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7531
8791
|
this.errorMessage = '';
|
|
7532
8792
|
this.paymentLibComponent.viewName = 'case-transactions';
|
|
7533
8793
|
this.paymentLibComponent.ISTURNOFF = this.isTurnOff;
|
|
8794
|
+
this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;
|
|
8795
|
+
this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;
|
|
7534
8796
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
7535
8797
|
this.paymentLibComponent.ISBSENABLE = true;
|
|
7536
|
-
this.paymentViewService.getBSfeature().subscribe((/**
|
|
7537
|
-
* @param {?} features
|
|
7538
|
-
* @return {?}
|
|
7539
|
-
*/
|
|
7540
|
-
function (features) {
|
|
7541
|
-
/** @type {?} */
|
|
7542
|
-
var result = JSON.parse(features).filter((/**
|
|
7543
|
-
* @param {?} feature
|
|
7544
|
-
* @return {?}
|
|
7545
|
-
*/
|
|
7546
|
-
function (feature) { return feature.uid === BS_ENABLE_FLAG$3; }));
|
|
7547
|
-
_this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;
|
|
7548
|
-
}), (/**
|
|
7549
|
-
* @param {?} err
|
|
7550
|
-
* @return {?}
|
|
7551
|
-
*/
|
|
7552
|
-
function (err) {
|
|
7553
|
-
_this.paymentLibComponent.ISBSENABLE = false;
|
|
7554
|
-
}));
|
|
7555
8798
|
/** @type {?} */
|
|
7556
8799
|
var partUrl = this.bsPaymentDcnNumber ? "&dcn=" + this.bsPaymentDcnNumber : '';
|
|
7557
8800
|
partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';
|
|
7558
8801
|
partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';
|
|
7559
8802
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
7560
8803
|
partUrl += "&caseType=" + this.caseType;
|
|
8804
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
8805
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
7561
8806
|
if (this.isFromPaymentDetailPage) {
|
|
7562
8807
|
partUrl += this.paymentLibComponent.isFromPaymentDetailPage;
|
|
7563
8808
|
}
|
|
@@ -7599,6 +8844,17 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7599
8844
|
this.OrderslistService.setorderRemissionTotal(null);
|
|
7600
8845
|
this.OrderslistService.setorderFeesTotal(null);
|
|
7601
8846
|
};
|
|
8847
|
+
/**
|
|
8848
|
+
* @return {?}
|
|
8849
|
+
*/
|
|
8850
|
+
AddRemissionComponent.prototype.changeRefundAmount = /**
|
|
8851
|
+
* @return {?}
|
|
8852
|
+
*/
|
|
8853
|
+
function () {
|
|
8854
|
+
this.isFromCheckAnsPage = true;
|
|
8855
|
+
this.viewCompStatus = 'issuerefund';
|
|
8856
|
+
this.viewStatus = '';
|
|
8857
|
+
};
|
|
7602
8858
|
/**
|
|
7603
8859
|
* @param {?} currency
|
|
7604
8860
|
* @return {?}
|
|
@@ -7616,8 +8872,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7616
8872
|
AddRemissionComponent.decorators = [
|
|
7617
8873
|
{ type: Component, args: [{
|
|
7618
8874
|
selector: 'ccpay-add-remission',
|
|
7619
|
-
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",
|
|
7620
|
-
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 .
|
|
8875
|
+
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>",
|
|
8876
|
+
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}"]
|
|
7621
8877
|
}] }
|
|
7622
8878
|
];
|
|
7623
8879
|
/** @nocollapse */
|
|
@@ -7632,6 +8888,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7632
8888
|
]; };
|
|
7633
8889
|
AddRemissionComponent.propDecorators = {
|
|
7634
8890
|
fee: [{ type: Input }],
|
|
8891
|
+
fees: [{ type: Input }],
|
|
7635
8892
|
payment: [{ type: Input }],
|
|
7636
8893
|
remission: [{ type: Input }],
|
|
7637
8894
|
ccdCaseNumber: [{ type: Input }],
|
|
@@ -7640,12 +8897,19 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7640
8897
|
paymentGroupRef: [{ type: Input }],
|
|
7641
8898
|
isTurnOff: [{ type: Input }],
|
|
7642
8899
|
isRefundRemission: [{ type: Input }],
|
|
8900
|
+
isOldPcipalOff: [{ type: Input }],
|
|
8901
|
+
isNewPcipalOff: [{ type: Input }],
|
|
7643
8902
|
isStrategicFixEnable: [{ type: Input }],
|
|
7644
8903
|
paidAmount: [{ type: Input }],
|
|
7645
8904
|
isFromRefundListPage: [{ type: Input }],
|
|
7646
8905
|
isFromPaymentDetailPage: [{ type: Input }],
|
|
7647
8906
|
isFromServiceRequestPage: [{ type: Input }],
|
|
8907
|
+
isFullyRefund: [{ type: Input, args: ['isFullyRefund',] }],
|
|
7648
8908
|
feeamount: [{ type: Input }],
|
|
8909
|
+
refundPaymentReference: [{ type: Input }],
|
|
8910
|
+
isFromRefundStatusPage: [{ type: Input }],
|
|
8911
|
+
changeRefundReason: [{ type: Input }],
|
|
8912
|
+
isServiceRequest: [{ type: Input, args: ["isServiceRequest",] }],
|
|
7649
8913
|
LOGGEDINUSERROLES: [{ type: Input, args: ['LOGGEDINUSERROLES',] }],
|
|
7650
8914
|
orderDetail: [{ type: Input, args: ['orderDetail',] }],
|
|
7651
8915
|
orderRef: [{ type: Input, args: ['orderRef',] }],
|
|
@@ -7659,7 +8923,8 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
7659
8923
|
orderRemissionTotal: [{ type: Input, args: ['orderRemissionTotal',] }],
|
|
7660
8924
|
cancelRemission: [{ type: Output }],
|
|
7661
8925
|
refundListReason: [{ type: Output }],
|
|
7662
|
-
refundListAmount: [{ type: Output }]
|
|
8926
|
+
refundListAmount: [{ type: Output }],
|
|
8927
|
+
refundFees: [{ type: Output }]
|
|
7663
8928
|
};
|
|
7664
8929
|
return AddRemissionComponent;
|
|
7665
8930
|
}());
|
|
@@ -8397,13 +9662,29 @@ var TableComponent = /** @class */ (function () {
|
|
|
8397
9662
|
return (r[user_full_name] = '', r);
|
|
8398
9663
|
}), {});
|
|
8399
9664
|
this.userLst = Object.keys(this.userLst);
|
|
9665
|
+
this.userLst.sort((/**
|
|
9666
|
+
* @param {?} a
|
|
9667
|
+
* @param {?} b
|
|
9668
|
+
* @return {?}
|
|
9669
|
+
*/
|
|
9670
|
+
function (a, b) { return a.toString().localeCompare(b); }));
|
|
9671
|
+
this.serviceLst = this.refundList.reduce((/**
|
|
9672
|
+
* @param {?} r
|
|
9673
|
+
* @param {?} __1
|
|
9674
|
+
* @return {?}
|
|
9675
|
+
*/
|
|
9676
|
+
function (r, _a) {
|
|
9677
|
+
var service_type = _a.service_type;
|
|
9678
|
+
return (r[service_type] = '', r);
|
|
9679
|
+
}), {});
|
|
9680
|
+
this.serviceLst = Object.keys(this.serviceLst);
|
|
9681
|
+
this.serviceLst.sort((/**
|
|
9682
|
+
* @param {?} a
|
|
9683
|
+
* @param {?} b
|
|
9684
|
+
* @return {?}
|
|
9685
|
+
*/
|
|
9686
|
+
function (a, b) { return a.toString().localeCompare(b); }));
|
|
8400
9687
|
}
|
|
8401
|
-
this.userLst.sort((/**
|
|
8402
|
-
* @param {?} a
|
|
8403
|
-
* @param {?} b
|
|
8404
|
-
* @return {?}
|
|
8405
|
-
*/
|
|
8406
|
-
function (a, b) { return a.toString().localeCompare(b); }));
|
|
8407
9688
|
};
|
|
8408
9689
|
/**
|
|
8409
9690
|
* Set the paginator and sort after the view init since this component will
|
|
@@ -8503,8 +9784,8 @@ var TableComponent = /** @class */ (function () {
|
|
|
8503
9784
|
TableComponent.decorators = [
|
|
8504
9785
|
{ type: Component, args: [{
|
|
8505
9786
|
selector: 'ccpay-table',
|
|
8506
|
-
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\"
|
|
8507
|
-
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}"]
|
|
9787
|
+
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",
|
|
9788
|
+
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}"]
|
|
8508
9789
|
}] }
|
|
8509
9790
|
];
|
|
8510
9791
|
/** @nocollapse */
|
|
@@ -8525,14 +9806,32 @@ var TableComponent = /** @class */ (function () {
|
|
|
8525
9806
|
return TableComponent;
|
|
8526
9807
|
}());
|
|
8527
9808
|
|
|
9809
|
+
/**
|
|
9810
|
+
* @fileoverview added by tsickle
|
|
9811
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
9812
|
+
*/
|
|
9813
|
+
var IPutNotificationRequest = /** @class */ (function () {
|
|
9814
|
+
function IPutNotificationRequest(contactDetails, notificationType) {
|
|
9815
|
+
if (notificationType === 'EMAIL') {
|
|
9816
|
+
this.recipient_email_address = contactDetails;
|
|
9817
|
+
}
|
|
9818
|
+
else if (notificationType === 'LETTER') {
|
|
9819
|
+
this.recipient_postal_address = contactDetails;
|
|
9820
|
+
}
|
|
9821
|
+
}
|
|
9822
|
+
return IPutNotificationRequest;
|
|
9823
|
+
}());
|
|
9824
|
+
|
|
8528
9825
|
/**
|
|
8529
9826
|
* @fileoverview added by tsickle
|
|
8530
9827
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8531
9828
|
*/
|
|
8532
9829
|
var IResubmitRefundRequest = /** @class */ (function () {
|
|
8533
|
-
function IResubmitRefundRequest(refund_reason, amount) {
|
|
9830
|
+
function IResubmitRefundRequest(refund_reason, amount, contact_details, refund_fees) {
|
|
8534
9831
|
this.refund_reason = refund_reason;
|
|
8535
9832
|
this.amount = amount;
|
|
9833
|
+
this.contact_details = contact_details;
|
|
9834
|
+
this.refund_fees = refund_fees;
|
|
8536
9835
|
}
|
|
8537
9836
|
return IResubmitRefundRequest;
|
|
8538
9837
|
}());
|
|
@@ -8542,20 +9841,18 @@ var IResubmitRefundRequest = /** @class */ (function () {
|
|
|
8542
9841
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8543
9842
|
*/
|
|
8544
9843
|
var RefundStatusComponent = /** @class */ (function () {
|
|
8545
|
-
function RefundStatusComponent(formBuilder, refundService,
|
|
9844
|
+
function RefundStatusComponent(formBuilder, refundService, notificationService, paymentLibComponent, OrderslistService$$1, paymentViewService) {
|
|
8546
9845
|
var _this = this;
|
|
8547
9846
|
this.formBuilder = formBuilder;
|
|
8548
9847
|
this.refundService = refundService;
|
|
9848
|
+
this.notificationService = notificationService;
|
|
8549
9849
|
this.paymentLibComponent = paymentLibComponent;
|
|
8550
|
-
this.paymentViewService = paymentViewService;
|
|
8551
|
-
this.router = router;
|
|
8552
9850
|
this.OrderslistService = OrderslistService$$1;
|
|
9851
|
+
this.paymentViewService = paymentViewService;
|
|
8553
9852
|
this.LOGGEDINUSERROLES = [];
|
|
8554
9853
|
this.rejectedRefundList = [];
|
|
8555
9854
|
this.approvalStatus = 'Sent for approval';
|
|
8556
9855
|
this.rejectStatus = 'Update required';
|
|
8557
|
-
// approvalStatus = 'sent for approval';
|
|
8558
|
-
// rejectStatus = 'sent back';
|
|
8559
9856
|
this.errorMessage = null;
|
|
8560
9857
|
this.refundButtonState = '';
|
|
8561
9858
|
this.isAmountEmpty = false;
|
|
@@ -8564,6 +9861,9 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8564
9861
|
this.isRemissionLessThanFeeError = false;
|
|
8565
9862
|
this.refundHasError = false;
|
|
8566
9863
|
this.refundReasons = [];
|
|
9864
|
+
this.isResendOperationSuccess = false;
|
|
9865
|
+
this.isEditDetailsClicked = false;
|
|
9866
|
+
this.isEditAddressDeatilsClicked = false;
|
|
8567
9867
|
this.isRefundBtnDisabled = true;
|
|
8568
9868
|
this.isLastUpdatedByCurrentUser = true;
|
|
8569
9869
|
this.isProcessRefund = false;
|
|
@@ -8589,13 +9889,9 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8589
9889
|
*/
|
|
8590
9890
|
function () {
|
|
8591
9891
|
var _this = this;
|
|
8592
|
-
// if (this.check4AllowedRoles2AccessRefund()) {
|
|
8593
9892
|
this.resetRemissionForm([false, false, false, false], 'All');
|
|
8594
9893
|
this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;
|
|
8595
9894
|
this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;
|
|
8596
|
-
// if(this.paymentLibComponent.isFromRefundStatusPage) {
|
|
8597
|
-
// this.viewName = 'reviewandsubmitview';
|
|
8598
|
-
// }
|
|
8599
9895
|
if (this.paymentLibComponent.isRefundStatusView) {
|
|
8600
9896
|
this.viewName = 'refundview';
|
|
8601
9897
|
this.OrderslistService.getRefundView().subscribe((/**
|
|
@@ -8617,6 +9913,7 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8617
9913
|
*/
|
|
8618
9914
|
function (refundList) {
|
|
8619
9915
|
_this.rejectedRefundList = refundList['refund_list'];
|
|
9916
|
+
//this.refundFees = this.rejectedRefundList['refund_fees'];
|
|
8620
9917
|
})),
|
|
8621
9918
|
(/**
|
|
8622
9919
|
* @param {?} error
|
|
@@ -8635,6 +9932,7 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8635
9932
|
reason: new FormControl()
|
|
8636
9933
|
});
|
|
8637
9934
|
if (this.refundlist !== undefined) {
|
|
9935
|
+
this.getRefundsNotification();
|
|
8638
9936
|
this.getRefundsStatusHistoryList();
|
|
8639
9937
|
if (this.LOGGEDINUSERROLES.some((/**
|
|
8640
9938
|
* @param {?} i
|
|
@@ -8654,7 +9952,6 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8654
9952
|
this.refundButtonState = this.refundlist.refund_status.name;
|
|
8655
9953
|
}
|
|
8656
9954
|
}
|
|
8657
|
-
//}
|
|
8658
9955
|
};
|
|
8659
9956
|
/**
|
|
8660
9957
|
* @return {?}
|
|
@@ -8682,6 +9979,29 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8682
9979
|
});
|
|
8683
9980
|
}
|
|
8684
9981
|
};
|
|
9982
|
+
/**
|
|
9983
|
+
* @return {?}
|
|
9984
|
+
*/
|
|
9985
|
+
RefundStatusComponent.prototype.getRefundsNotification = /**
|
|
9986
|
+
* @return {?}
|
|
9987
|
+
*/
|
|
9988
|
+
function () {
|
|
9989
|
+
var _this = this;
|
|
9990
|
+
this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe((/**
|
|
9991
|
+
* @param {?} refundsNotification
|
|
9992
|
+
* @return {?}
|
|
9993
|
+
*/
|
|
9994
|
+
function (refundsNotification) {
|
|
9995
|
+
_this.notificationList = refundsNotification['notifications'];
|
|
9996
|
+
})),
|
|
9997
|
+
(/**
|
|
9998
|
+
* @param {?} error
|
|
9999
|
+
* @return {?}
|
|
10000
|
+
*/
|
|
10001
|
+
function (error) {
|
|
10002
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
10003
|
+
});
|
|
10004
|
+
};
|
|
8685
10005
|
/**
|
|
8686
10006
|
* @param {?} refundlist
|
|
8687
10007
|
* @param {?} navigationpage
|
|
@@ -8772,18 +10092,21 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8772
10092
|
}));
|
|
8773
10093
|
};
|
|
8774
10094
|
/**
|
|
10095
|
+
* @param {?} refundReason
|
|
8775
10096
|
* @return {?}
|
|
8776
10097
|
*/
|
|
8777
10098
|
RefundStatusComponent.prototype.gotoRefundReasonPage = /**
|
|
10099
|
+
* @param {?} refundReason
|
|
8778
10100
|
* @return {?}
|
|
8779
10101
|
*/
|
|
8780
|
-
function () {
|
|
10102
|
+
function (refundReason) {
|
|
8781
10103
|
this.isRefundBtnDisabled = false;
|
|
8782
10104
|
this.paymentLibComponent.REFUNDLIST = "true";
|
|
8783
10105
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
8784
10106
|
this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;
|
|
8785
10107
|
this.errorMessage = false;
|
|
8786
|
-
this.
|
|
10108
|
+
this.changeRefundReason = refundReason;
|
|
10109
|
+
this.viewName = 'issuerefundpage1';
|
|
8787
10110
|
};
|
|
8788
10111
|
/**
|
|
8789
10112
|
* @return {?}
|
|
@@ -8797,7 +10120,12 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8797
10120
|
this.isRefundBtnDisabled = false;
|
|
8798
10121
|
this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;
|
|
8799
10122
|
this.paymentLibComponent.isFromRefundStatusPage = true;
|
|
8800
|
-
this.
|
|
10123
|
+
if (this.refundlist.reason == 'Retrospective remission') {
|
|
10124
|
+
this.viewName = 'processretroremissonpage';
|
|
10125
|
+
}
|
|
10126
|
+
else {
|
|
10127
|
+
this.viewName = 'issuerefund';
|
|
10128
|
+
}
|
|
8801
10129
|
};
|
|
8802
10130
|
/**
|
|
8803
10131
|
* @return {?}
|
|
@@ -8879,6 +10207,7 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8879
10207
|
function (refundListReason) {
|
|
8880
10208
|
if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {
|
|
8881
10209
|
this.refundlist.reason = refundListReason.reason;
|
|
10210
|
+
this.refundlist.code = refundListReason.code;
|
|
8882
10211
|
this.refundCode = refundListReason.code;
|
|
8883
10212
|
}
|
|
8884
10213
|
else {
|
|
@@ -8908,6 +10237,22 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8908
10237
|
this.viewName = 'reviewandsubmitview';
|
|
8909
10238
|
this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;
|
|
8910
10239
|
};
|
|
10240
|
+
/**
|
|
10241
|
+
* @param {?} fees
|
|
10242
|
+
* @return {?}
|
|
10243
|
+
*/
|
|
10244
|
+
RefundStatusComponent.prototype.getRefundFees = /**
|
|
10245
|
+
* @param {?} fees
|
|
10246
|
+
* @return {?}
|
|
10247
|
+
*/
|
|
10248
|
+
function (fees) {
|
|
10249
|
+
this.fees = fees;
|
|
10250
|
+
this.refundFees = this.fees.map((/**
|
|
10251
|
+
* @param {?} obj
|
|
10252
|
+
* @return {?}
|
|
10253
|
+
*/
|
|
10254
|
+
function (obj) { return ({ fee_id: obj.id, code: obj.code, version: obj.version, volume: obj.volume, refund_amount: obj.refund_amount }); }));
|
|
10255
|
+
};
|
|
8911
10256
|
/**
|
|
8912
10257
|
* @return {?}
|
|
8913
10258
|
*/
|
|
@@ -8916,11 +10261,15 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8916
10261
|
*/
|
|
8917
10262
|
function () {
|
|
8918
10263
|
var _this = this;
|
|
8919
|
-
if (this.oldRefundReason === this.refundlist.reason) {
|
|
8920
|
-
|
|
10264
|
+
// if (this.oldRefundReason === this.refundlist.reason) {
|
|
10265
|
+
// this.refundCode = '';
|
|
10266
|
+
// }
|
|
10267
|
+
if (this.refundFees === undefined) {
|
|
10268
|
+
this.refundFees = this.refundlist['refund_fees'];
|
|
8921
10269
|
}
|
|
10270
|
+
this.refundCode = this.refundlist.code;
|
|
8922
10271
|
/** @type {?} */
|
|
8923
|
-
var resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);
|
|
10272
|
+
var resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount, this.refundlist.contact_details, this.refundFees);
|
|
8924
10273
|
this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe((/**
|
|
8925
10274
|
* @param {?} response
|
|
8926
10275
|
* @return {?}
|
|
@@ -8939,6 +10288,144 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8939
10288
|
_this.errorMessage = error.replace(/"/g, "");
|
|
8940
10289
|
}));
|
|
8941
10290
|
};
|
|
10291
|
+
/**
|
|
10292
|
+
* @param {?} note
|
|
10293
|
+
* @return {?}
|
|
10294
|
+
*/
|
|
10295
|
+
RefundStatusComponent.prototype.gotoEditAddressDetails = /**
|
|
10296
|
+
* @param {?} note
|
|
10297
|
+
* @return {?}
|
|
10298
|
+
*/
|
|
10299
|
+
function (note) {
|
|
10300
|
+
this.notification = note;
|
|
10301
|
+
this.isEditDetailsClicked = true;
|
|
10302
|
+
this.viewName = 'refundEditView';
|
|
10303
|
+
};
|
|
10304
|
+
/**
|
|
10305
|
+
* @param {?} obj
|
|
10306
|
+
* @return {?}
|
|
10307
|
+
*/
|
|
10308
|
+
RefundStatusComponent.prototype.getContactDetails = /**
|
|
10309
|
+
* @param {?} obj
|
|
10310
|
+
* @return {?}
|
|
10311
|
+
*/
|
|
10312
|
+
function (obj) {
|
|
10313
|
+
this.addressDetails = obj;
|
|
10314
|
+
this.viewName = 'revieweditdetailsconfirmationpage';
|
|
10315
|
+
};
|
|
10316
|
+
/**
|
|
10317
|
+
* @param {?} obj
|
|
10318
|
+
* @return {?}
|
|
10319
|
+
*/
|
|
10320
|
+
RefundStatusComponent.prototype.getContactDetailsForRefundList = /**
|
|
10321
|
+
* @param {?} obj
|
|
10322
|
+
* @return {?}
|
|
10323
|
+
*/
|
|
10324
|
+
function (obj) {
|
|
10325
|
+
this.refundlist.contact_details = obj;
|
|
10326
|
+
this.isEditDetailsClicked = false;
|
|
10327
|
+
this.isRefundBtnDisabled = false;
|
|
10328
|
+
this.viewName = 'reviewandsubmitview';
|
|
10329
|
+
};
|
|
10330
|
+
/**
|
|
10331
|
+
* @param {?=} note
|
|
10332
|
+
* @return {?}
|
|
10333
|
+
*/
|
|
10334
|
+
RefundStatusComponent.prototype.gotoEditDetailsPage = /**
|
|
10335
|
+
* @param {?=} note
|
|
10336
|
+
* @return {?}
|
|
10337
|
+
*/
|
|
10338
|
+
function (note) {
|
|
10339
|
+
if (note) {
|
|
10340
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
10341
|
+
}
|
|
10342
|
+
this.isEditDetailsClicked = true;
|
|
10343
|
+
this.viewName = 'refundEditView';
|
|
10344
|
+
};
|
|
10345
|
+
/**
|
|
10346
|
+
* @return {?}
|
|
10347
|
+
*/
|
|
10348
|
+
RefundStatusComponent.prototype.submitEditDetail = /**
|
|
10349
|
+
* @return {?}
|
|
10350
|
+
*/
|
|
10351
|
+
function () {
|
|
10352
|
+
var _this = this;
|
|
10353
|
+
this.isResendOperationSuccess = false;
|
|
10354
|
+
/** @type {?} */
|
|
10355
|
+
var contactDetails = this.addressDetails.notification_type === 'EMAIL' ? this.addressDetails.email :
|
|
10356
|
+
{
|
|
10357
|
+
address_line: this.addressDetails.address_line,
|
|
10358
|
+
city: this.addressDetails.city,
|
|
10359
|
+
county: this.addressDetails.county,
|
|
10360
|
+
country: this.addressDetails.country,
|
|
10361
|
+
postal_code: this.addressDetails.postal_code,
|
|
10362
|
+
};
|
|
10363
|
+
/** @type {?} */
|
|
10364
|
+
var resendRequest = new IPutNotificationRequest(contactDetails, this.addressDetails.notification_type);
|
|
10365
|
+
this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, this.addressDetails.notification_type).subscribe((/**
|
|
10366
|
+
* @param {?} response
|
|
10367
|
+
* @return {?}
|
|
10368
|
+
*/
|
|
10369
|
+
function (response) {
|
|
10370
|
+
_this.isResendOperationSuccess = response;
|
|
10371
|
+
}), (/**
|
|
10372
|
+
* @param {?} error
|
|
10373
|
+
* @return {?}
|
|
10374
|
+
*/
|
|
10375
|
+
function (error) {
|
|
10376
|
+
_this.isResendOperationSuccess = false;
|
|
10377
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
10378
|
+
}));
|
|
10379
|
+
};
|
|
10380
|
+
/**
|
|
10381
|
+
* @param {?} notification
|
|
10382
|
+
* @return {?}
|
|
10383
|
+
*/
|
|
10384
|
+
RefundStatusComponent.prototype.putResend = /**
|
|
10385
|
+
* @param {?} notification
|
|
10386
|
+
* @return {?}
|
|
10387
|
+
*/
|
|
10388
|
+
function (notification) {
|
|
10389
|
+
var _this = this;
|
|
10390
|
+
this.isResendOperationSuccess = false;
|
|
10391
|
+
/** @type {?} */
|
|
10392
|
+
var contactDetails = notification.notification_type === 'EMAIL' ? notification.contact_details.email :
|
|
10393
|
+
{
|
|
10394
|
+
address_line: notification.contact_details.address_line,
|
|
10395
|
+
city: notification.contact_details.city,
|
|
10396
|
+
county: notification.contact_details.county,
|
|
10397
|
+
country: notification.contact_details.country,
|
|
10398
|
+
postal_code: notification.contact_details.postal_code,
|
|
10399
|
+
};
|
|
10400
|
+
/** @type {?} */
|
|
10401
|
+
var resendRequest = new IPutNotificationRequest(contactDetails, notification.notification_type);
|
|
10402
|
+
this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, notification.notification_type).subscribe((/**
|
|
10403
|
+
* @param {?} response
|
|
10404
|
+
* @return {?}
|
|
10405
|
+
*/
|
|
10406
|
+
function (response) {
|
|
10407
|
+
_this.isResendOperationSuccess = response;
|
|
10408
|
+
}), (/**
|
|
10409
|
+
* @param {?} error
|
|
10410
|
+
* @return {?}
|
|
10411
|
+
*/
|
|
10412
|
+
function (error) {
|
|
10413
|
+
_this.isResendOperationSuccess = false;
|
|
10414
|
+
_this.errorMessage = error.replace(/"/g, "");
|
|
10415
|
+
}));
|
|
10416
|
+
};
|
|
10417
|
+
/**
|
|
10418
|
+
* @param {?} Event
|
|
10419
|
+
* @return {?}
|
|
10420
|
+
*/
|
|
10421
|
+
RefundStatusComponent.prototype.gotoCasetransationPageCancelBtnClicked = /**
|
|
10422
|
+
* @param {?} Event
|
|
10423
|
+
* @return {?}
|
|
10424
|
+
*/
|
|
10425
|
+
function (Event) {
|
|
10426
|
+
event.preventDefault();
|
|
10427
|
+
this.viewName = 'refundstatuslist';
|
|
10428
|
+
};
|
|
8942
10429
|
/**
|
|
8943
10430
|
* @param {?} refundReference
|
|
8944
10431
|
* @param {?} refundList
|
|
@@ -8957,23 +10444,26 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8957
10444
|
RefundStatusComponent.decorators = [
|
|
8958
10445
|
{ type: Component, args: [{
|
|
8959
10446
|
selector: 'ccpay-refund-status',
|
|
8960
|
-
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",
|
|
8961
|
-
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-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}.white{color:#fff}.pagesize{margin:2em;width:97%}.govuk-link{cursor:pointer}"]
|
|
10447
|
+
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",
|
|
10448
|
+
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%}"]
|
|
8962
10449
|
}] }
|
|
8963
10450
|
];
|
|
8964
10451
|
/** @nocollapse */
|
|
8965
10452
|
RefundStatusComponent.ctorParameters = function () { return [
|
|
8966
10453
|
{ type: FormBuilder },
|
|
8967
10454
|
{ type: RefundsService },
|
|
10455
|
+
{ type: NotificationService },
|
|
8968
10456
|
{ type: PaymentLibComponent },
|
|
8969
|
-
{ type:
|
|
8970
|
-
{ type:
|
|
8971
|
-
{ type: OrderslistService }
|
|
10457
|
+
{ type: OrderslistService },
|
|
10458
|
+
{ type: PaymentViewService }
|
|
8972
10459
|
]; };
|
|
8973
10460
|
RefundStatusComponent.propDecorators = {
|
|
8974
10461
|
LOGGEDINUSERROLES: [{ type: Input, args: ['LOGGEDINUSERROLES',] }],
|
|
10462
|
+
isOldPcipalOff: [{ type: Input }],
|
|
10463
|
+
isNewPcipalOff: [{ type: Input }],
|
|
8975
10464
|
ccdCaseNumber: [{ type: Input }],
|
|
8976
|
-
isTurnOff: [{ type: Input }]
|
|
10465
|
+
isTurnOff: [{ type: Input }],
|
|
10466
|
+
orderParty: [{ type: Input }]
|
|
8977
10467
|
};
|
|
8978
10468
|
return RefundStatusComponent;
|
|
8979
10469
|
}());
|
|
@@ -8983,11 +10473,11 @@ var RefundStatusComponent = /** @class */ (function () {
|
|
|
8983
10473
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8984
10474
|
*/
|
|
8985
10475
|
var ServiceRequestComponent = /** @class */ (function () {
|
|
8986
|
-
function ServiceRequestComponent(paymentLibComponent, paymentViewService, OrderslistService$$1, router) {
|
|
8987
|
-
var _this = this;
|
|
10476
|
+
function ServiceRequestComponent(paymentLibComponent, paymentViewService, OrderslistService$$1, cd, router) {
|
|
8988
10477
|
this.paymentLibComponent = paymentLibComponent;
|
|
8989
10478
|
this.paymentViewService = paymentViewService;
|
|
8990
10479
|
this.OrderslistService = OrderslistService$$1;
|
|
10480
|
+
this.cd = cd;
|
|
8991
10481
|
this.router = router;
|
|
8992
10482
|
this.goToServiceRquestComponent = new EventEmitter();
|
|
8993
10483
|
this.paymentGroups = [];
|
|
@@ -8995,7 +10485,6 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
8995
10485
|
this.nonPayments = [];
|
|
8996
10486
|
this.allPayments = [];
|
|
8997
10487
|
this.remissions = [];
|
|
8998
|
-
this.fees = [];
|
|
8999
10488
|
this.isRefundRemission = true;
|
|
9000
10489
|
this.isAddFeeBtnEnabled = true;
|
|
9001
10490
|
this.isExceptionRecord = false;
|
|
@@ -9015,30 +10504,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9015
10504
|
this.isAddRemissionBtnEnabled = false;
|
|
9016
10505
|
this.isRefundRemissionBtnEnable = false;
|
|
9017
10506
|
this.allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];
|
|
9018
|
-
this.
|
|
9019
|
-
* @return {?}
|
|
9020
|
-
*/
|
|
9021
|
-
function () {
|
|
9022
|
-
return _this.allowedRolesToAccessRefund.some((/**
|
|
9023
|
-
* @param {?} role
|
|
9024
|
-
* @return {?}
|
|
9025
|
-
*/
|
|
9026
|
-
function (role) {
|
|
9027
|
-
return _this.LOGGEDINUSERROLES.indexOf(role) !== -1;
|
|
9028
|
-
}));
|
|
9029
|
-
});
|
|
9030
|
-
this.allowFurtherAccessAfter4Days = (/**
|
|
9031
|
-
* @param {?} payment
|
|
9032
|
-
* @return {?}
|
|
9033
|
-
*/
|
|
9034
|
-
function (payment) {
|
|
9035
|
-
if (payment !== null && payment !== undefined) {
|
|
9036
|
-
/** @type {?} */
|
|
9037
|
-
var tmp4DayAgo = new Date();
|
|
9038
|
-
tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);
|
|
9039
|
-
return tmp4DayAgo >= new Date(payment.date_created);
|
|
9040
|
-
}
|
|
9041
|
-
});
|
|
10507
|
+
this.isContinueBtnDisabled = true;
|
|
9042
10508
|
}
|
|
9043
10509
|
/**
|
|
9044
10510
|
* @return {?}
|
|
@@ -9048,6 +10514,8 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9048
10514
|
*/
|
|
9049
10515
|
function () {
|
|
9050
10516
|
var _this = this;
|
|
10517
|
+
this.isTurnOff = this.paymentLibComponent.ISTURNOFF;
|
|
10518
|
+
this.isServiceRequest = 'false';
|
|
9051
10519
|
if (this.viewStatus === undefined) {
|
|
9052
10520
|
this.viewStatus = this.paymentLibComponent.viewName;
|
|
9053
10521
|
}
|
|
@@ -9095,9 +10563,9 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9095
10563
|
function (data) { return _this.orderTotalPayments = data; }));
|
|
9096
10564
|
}
|
|
9097
10565
|
}
|
|
9098
|
-
|
|
9099
|
-
|
|
9100
|
-
|
|
10566
|
+
if (this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.TAKEPAYMENT) {
|
|
10567
|
+
this.isServiceRequest = 'false';
|
|
10568
|
+
}
|
|
9101
10569
|
};
|
|
9102
10570
|
/**
|
|
9103
10571
|
* @return {?}
|
|
@@ -9126,7 +10594,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9126
10594
|
if (this.takePayment) {
|
|
9127
10595
|
this.paymentLibComponent.isTakePayment = this.takePayment;
|
|
9128
10596
|
}
|
|
9129
|
-
this.paymentLibComponent.SERVICEREQUEST = "true";
|
|
10597
|
+
//this.paymentLibComponent.SERVICEREQUEST = "true";
|
|
9130
10598
|
this.paymentLibComponent.isFromServiceRequestPage = false;
|
|
9131
10599
|
if (this.isServiceRequest !== 'false') {
|
|
9132
10600
|
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
@@ -9143,6 +10611,8 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9143
10611
|
partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';
|
|
9144
10612
|
partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';
|
|
9145
10613
|
partUrl += "&caseType=" + this.paymentLibComponent.CASETYPE;
|
|
10614
|
+
partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';
|
|
10615
|
+
partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';
|
|
9146
10616
|
/** @type {?} */
|
|
9147
10617
|
var url = "/payment-history/" + this.paymentLibComponent.CCD_CASE_NUMBER + "?view=case-transactions&selectedOption=" + this.paymentLibComponent.SELECTED_OPTION + partUrl;
|
|
9148
10618
|
this.router.routeReuseStrategy.shouldReuseRoute = (/**
|
|
@@ -9152,75 +10622,6 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9152
10622
|
this.router.onSameUrlNavigation = 'reload';
|
|
9153
10623
|
this.router.navigateByUrl(url);
|
|
9154
10624
|
};
|
|
9155
|
-
/**
|
|
9156
|
-
* @param {?} feeCode
|
|
9157
|
-
* @return {?}
|
|
9158
|
-
*/
|
|
9159
|
-
ServiceRequestComponent.prototype.chkForAddRemission = /**
|
|
9160
|
-
* @param {?} feeCode
|
|
9161
|
-
* @return {?}
|
|
9162
|
-
*/
|
|
9163
|
-
function (feeCode) {
|
|
9164
|
-
var e_1, _a;
|
|
9165
|
-
if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {
|
|
9166
|
-
if (this.orderDetail[0]['remissions'].length > 0) {
|
|
9167
|
-
try {
|
|
9168
|
-
for (var _b = __values(this.orderDetail[0]['remissions']), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
9169
|
-
var remission = _c.value;
|
|
9170
|
-
if (remission.fee_code === feeCode) {
|
|
9171
|
-
return false;
|
|
9172
|
-
}
|
|
9173
|
-
}
|
|
9174
|
-
}
|
|
9175
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
9176
|
-
finally {
|
|
9177
|
-
try {
|
|
9178
|
-
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
9179
|
-
}
|
|
9180
|
-
finally { if (e_1) throw e_1.error; }
|
|
9181
|
-
}
|
|
9182
|
-
}
|
|
9183
|
-
return true;
|
|
9184
|
-
}
|
|
9185
|
-
else {
|
|
9186
|
-
return false;
|
|
9187
|
-
}
|
|
9188
|
-
};
|
|
9189
|
-
/**
|
|
9190
|
-
* @return {?}
|
|
9191
|
-
*/
|
|
9192
|
-
ServiceRequestComponent.prototype.chkForPBAPayment = /**
|
|
9193
|
-
* @return {?}
|
|
9194
|
-
*/
|
|
9195
|
-
function () {
|
|
9196
|
-
var _this = this;
|
|
9197
|
-
if (this.orderDetail !== null && this.orderDetail !== undefined) {
|
|
9198
|
-
this.orderDetail.forEach((/**
|
|
9199
|
-
* @param {?} orderDetail
|
|
9200
|
-
* @return {?}
|
|
9201
|
-
*/
|
|
9202
|
-
function (orderDetail) {
|
|
9203
|
-
if (orderDetail.payments) {
|
|
9204
|
-
orderDetail.payments.forEach((/**
|
|
9205
|
-
* @param {?} payment
|
|
9206
|
-
* @return {?}
|
|
9207
|
-
*/
|
|
9208
|
-
function (payment) {
|
|
9209
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
9210
|
-
_this.paymentLibComponent.paymentReference = payment.reference;
|
|
9211
|
-
_this.isPBA = true;
|
|
9212
|
-
}
|
|
9213
|
-
}));
|
|
9214
|
-
}
|
|
9215
|
-
}));
|
|
9216
|
-
if (this.isPBA) {
|
|
9217
|
-
return true;
|
|
9218
|
-
}
|
|
9219
|
-
else {
|
|
9220
|
-
return false;
|
|
9221
|
-
}
|
|
9222
|
-
}
|
|
9223
|
-
};
|
|
9224
10625
|
/**
|
|
9225
10626
|
* @param {?} fee
|
|
9226
10627
|
* @return {?}
|
|
@@ -9231,7 +10632,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9231
10632
|
*/
|
|
9232
10633
|
function (fee) {
|
|
9233
10634
|
var _this = this;
|
|
9234
|
-
if (this.
|
|
10635
|
+
if (this.chkIsAddRemissionBtnEnable(fee)) {
|
|
9235
10636
|
this.feeId = fee;
|
|
9236
10637
|
this.viewStatus = 'addremission';
|
|
9237
10638
|
this.payment = this.orderDetail[0].payments[0];
|
|
@@ -9247,8 +10648,8 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9247
10648
|
*/
|
|
9248
10649
|
function (paymentGroupObj) { return paymentGroupObj['reference'].includes(_this.paymentLibComponent.paymentReference); }));
|
|
9249
10650
|
_this.payment = _this.paymentGroup.payments[0];
|
|
9250
|
-
//
|
|
9251
|
-
//
|
|
10651
|
+
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
10652
|
+
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
9252
10653
|
}), (/**
|
|
9253
10654
|
* @param {?} error
|
|
9254
10655
|
* @return {?}
|
|
@@ -9270,9 +10671,8 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9270
10671
|
*/
|
|
9271
10672
|
function (payment, remission, fees) {
|
|
9272
10673
|
var _this = this;
|
|
9273
|
-
this.
|
|
9274
|
-
this.payment
|
|
9275
|
-
this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe((/**
|
|
10674
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
10675
|
+
this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe((/**
|
|
9276
10676
|
* @param {?} paymentGroup
|
|
9277
10677
|
* @return {?}
|
|
9278
10678
|
*/
|
|
@@ -9282,7 +10682,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9282
10682
|
* @param {?} paymentGroupObj
|
|
9283
10683
|
* @return {?}
|
|
9284
10684
|
*/
|
|
9285
|
-
function (paymentGroupObj) { return paymentGroupObj
|
|
10685
|
+
function (paymentGroupObj) { return paymentGroupObj.reference === payment.reference; }));
|
|
9286
10686
|
_this.payment = _this.paymentGroup.payments[0];
|
|
9287
10687
|
_this.remissions = remission;
|
|
9288
10688
|
_this.remissionFeeAmt = fees.filter((/**
|
|
@@ -9290,6 +10690,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9290
10690
|
* @return {?}
|
|
9291
10691
|
*/
|
|
9292
10692
|
function (data) { return data.code === _this.remissions['fee_code']; }))[0].net_amount;
|
|
10693
|
+
_this.viewStatus = 'addrefundforremission';
|
|
9293
10694
|
// const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;
|
|
9294
10695
|
// this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;
|
|
9295
10696
|
}), (/**
|
|
@@ -9333,61 +10734,6 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9333
10734
|
_this.isRemoveBtnDisabled = false;
|
|
9334
10735
|
}));
|
|
9335
10736
|
};
|
|
9336
|
-
/**
|
|
9337
|
-
* @param {?} payment
|
|
9338
|
-
* @return {?}
|
|
9339
|
-
*/
|
|
9340
|
-
ServiceRequestComponent.prototype.chkIssueRefundBtnEnable = /**
|
|
9341
|
-
* @param {?} payment
|
|
9342
|
-
* @return {?}
|
|
9343
|
-
*/
|
|
9344
|
-
function (payment) {
|
|
9345
|
-
if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&
|
|
9346
|
-
payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {
|
|
9347
|
-
this.isIssueRefunfBtnEnable = true;
|
|
9348
|
-
}
|
|
9349
|
-
if (this.isIssueRefunfBtnEnable) {
|
|
9350
|
-
return true;
|
|
9351
|
-
}
|
|
9352
|
-
else {
|
|
9353
|
-
return false;
|
|
9354
|
-
}
|
|
9355
|
-
};
|
|
9356
|
-
/**
|
|
9357
|
-
* @return {?}
|
|
9358
|
-
*/
|
|
9359
|
-
ServiceRequestComponent.prototype.chkIsRefundRemissionBtnEnable = /**
|
|
9360
|
-
* @return {?}
|
|
9361
|
-
*/
|
|
9362
|
-
function () {
|
|
9363
|
-
var _this = this;
|
|
9364
|
-
if (this.orderDetail !== null && this.orderDetail !== undefined) {
|
|
9365
|
-
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
9366
|
-
this.orderDetail.forEach((/**
|
|
9367
|
-
* @param {?} orderDetail
|
|
9368
|
-
* @return {?}
|
|
9369
|
-
*/
|
|
9370
|
-
function (orderDetail) {
|
|
9371
|
-
if (orderDetail.payments) {
|
|
9372
|
-
orderDetail.payments.forEach((/**
|
|
9373
|
-
* @param {?} payment
|
|
9374
|
-
* @return {?}
|
|
9375
|
-
*/
|
|
9376
|
-
function (payment) {
|
|
9377
|
-
if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && _this.allowFurtherAccessAfter4Days(payment)) {
|
|
9378
|
-
_this.isRefundRemissionBtnEnable = true;
|
|
9379
|
-
}
|
|
9380
|
-
}));
|
|
9381
|
-
}
|
|
9382
|
-
}));
|
|
9383
|
-
if (this.isRefundRemissionBtnEnable) {
|
|
9384
|
-
return true;
|
|
9385
|
-
}
|
|
9386
|
-
else {
|
|
9387
|
-
return false;
|
|
9388
|
-
}
|
|
9389
|
-
}
|
|
9390
|
-
};
|
|
9391
10737
|
/**
|
|
9392
10738
|
* @param {?} payment
|
|
9393
10739
|
* @return {?}
|
|
@@ -9398,11 +10744,16 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9398
10744
|
*/
|
|
9399
10745
|
function (payment) {
|
|
9400
10746
|
if (payment !== null && payment !== undefined) {
|
|
9401
|
-
if (this.
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
9405
|
-
|
|
10747
|
+
if (this.chkIsIssueRefundBtnEnable(payment)) {
|
|
10748
|
+
if (payment[0].over_payment > 0) {
|
|
10749
|
+
this.viewCompStatus = 'overpayment';
|
|
10750
|
+
}
|
|
10751
|
+
else {
|
|
10752
|
+
this.viewStatus = 'issuerefund';
|
|
10753
|
+
this.payment = payment;
|
|
10754
|
+
this.paymentLibComponent.isFromServiceRequestPage = true;
|
|
10755
|
+
this.isRefundRemission = true;
|
|
10756
|
+
}
|
|
9406
10757
|
}
|
|
9407
10758
|
}
|
|
9408
10759
|
};
|
|
@@ -9444,6 +10795,54 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9444
10795
|
this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);
|
|
9445
10796
|
this.viewStatus = 'payment-view';
|
|
9446
10797
|
};
|
|
10798
|
+
/**
|
|
10799
|
+
* @param {?} payment
|
|
10800
|
+
* @return {?}
|
|
10801
|
+
*/
|
|
10802
|
+
ServiceRequestComponent.prototype.chkIsIssueRefundBtnEnable = /**
|
|
10803
|
+
* @param {?} payment
|
|
10804
|
+
* @return {?}
|
|
10805
|
+
*/
|
|
10806
|
+
function (payment) {
|
|
10807
|
+
if (payment !== null && payment !== undefined) {
|
|
10808
|
+
return payment.issue_refund && payment.refund_enable;
|
|
10809
|
+
}
|
|
10810
|
+
else {
|
|
10811
|
+
return false;
|
|
10812
|
+
}
|
|
10813
|
+
};
|
|
10814
|
+
/**
|
|
10815
|
+
* @param {?} remission
|
|
10816
|
+
* @return {?}
|
|
10817
|
+
*/
|
|
10818
|
+
ServiceRequestComponent.prototype.chkIsAddRefundBtnEnable = /**
|
|
10819
|
+
* @param {?} remission
|
|
10820
|
+
* @return {?}
|
|
10821
|
+
*/
|
|
10822
|
+
function (remission) {
|
|
10823
|
+
if (remission !== null && remission !== undefined) {
|
|
10824
|
+
return remission.add_refund;
|
|
10825
|
+
}
|
|
10826
|
+
else {
|
|
10827
|
+
return false;
|
|
10828
|
+
}
|
|
10829
|
+
};
|
|
10830
|
+
/**
|
|
10831
|
+
* @param {?} fee
|
|
10832
|
+
* @return {?}
|
|
10833
|
+
*/
|
|
10834
|
+
ServiceRequestComponent.prototype.chkIsAddRemissionBtnEnable = /**
|
|
10835
|
+
* @param {?} fee
|
|
10836
|
+
* @return {?}
|
|
10837
|
+
*/
|
|
10838
|
+
function (fee) {
|
|
10839
|
+
if (fee !== null && fee !== undefined) {
|
|
10840
|
+
return fee.add_remission && fee.remission_enable;
|
|
10841
|
+
}
|
|
10842
|
+
else {
|
|
10843
|
+
return false;
|
|
10844
|
+
}
|
|
10845
|
+
};
|
|
9447
10846
|
/**
|
|
9448
10847
|
* @return {?}
|
|
9449
10848
|
*/
|
|
@@ -9460,10 +10859,156 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9460
10859
|
this.OrderslistService.setorderRemissionTotal(null);
|
|
9461
10860
|
this.OrderslistService.setorderFeesTotal(null);
|
|
9462
10861
|
};
|
|
10862
|
+
/**
|
|
10863
|
+
* @param {?} paymentType
|
|
10864
|
+
* @return {?}
|
|
10865
|
+
*/
|
|
10866
|
+
ServiceRequestComponent.prototype.selectPymentOption = /**
|
|
10867
|
+
* @param {?} paymentType
|
|
10868
|
+
* @return {?}
|
|
10869
|
+
*/
|
|
10870
|
+
function (paymentType) {
|
|
10871
|
+
this.paymentType = paymentType;
|
|
10872
|
+
this.isContinueBtnDisabled = false;
|
|
10873
|
+
};
|
|
10874
|
+
/**
|
|
10875
|
+
* @return {?}
|
|
10876
|
+
*/
|
|
10877
|
+
ServiceRequestComponent.prototype.goToPaymentViewComp = /**
|
|
10878
|
+
* @return {?}
|
|
10879
|
+
*/
|
|
10880
|
+
function () {
|
|
10881
|
+
this.viewCompStatus = '';
|
|
10882
|
+
this.viewStatus = 'paymentview';
|
|
10883
|
+
};
|
|
10884
|
+
/**
|
|
10885
|
+
* @param {?} paymentgrp
|
|
10886
|
+
* @return {?}
|
|
10887
|
+
*/
|
|
10888
|
+
ServiceRequestComponent.prototype.continuePayment = /**
|
|
10889
|
+
* @param {?} paymentgrp
|
|
10890
|
+
* @return {?}
|
|
10891
|
+
*/
|
|
10892
|
+
function (paymentgrp) {
|
|
10893
|
+
if (this.paymentType === 'op') {
|
|
10894
|
+
this.isFullyRefund = false;
|
|
10895
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
10896
|
+
}
|
|
10897
|
+
else if (this.paymentType === 'fp') {
|
|
10898
|
+
this.isFullyRefund = true;
|
|
10899
|
+
this.paymentGroup = paymentgrp;
|
|
10900
|
+
this.viewStatus = 'issuerefund';
|
|
10901
|
+
this.viewCompStatus = "";
|
|
10902
|
+
this.isRefundRemission = true;
|
|
10903
|
+
this.paymentLibComponent.isFromPaymentDetailPage = true;
|
|
10904
|
+
this.isFromPaymentDetailPage = true;
|
|
10905
|
+
this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;
|
|
10906
|
+
}
|
|
10907
|
+
};
|
|
10908
|
+
/**
|
|
10909
|
+
* @param {?} obj
|
|
10910
|
+
* @return {?}
|
|
10911
|
+
*/
|
|
10912
|
+
ServiceRequestComponent.prototype.getContactDetails = /**
|
|
10913
|
+
* @param {?} obj
|
|
10914
|
+
* @return {?}
|
|
10915
|
+
*/
|
|
10916
|
+
function (obj) {
|
|
10917
|
+
this.contactDetailsObj = obj;
|
|
10918
|
+
this.viewCompStatus = 'overpaymentcheckandanswer';
|
|
10919
|
+
};
|
|
10920
|
+
/**
|
|
10921
|
+
* @param {?} event
|
|
10922
|
+
* @return {?}
|
|
10923
|
+
*/
|
|
10924
|
+
ServiceRequestComponent.prototype.gotoPaymentSelectPage = /**
|
|
10925
|
+
* @param {?} event
|
|
10926
|
+
* @return {?}
|
|
10927
|
+
*/
|
|
10928
|
+
function (event) {
|
|
10929
|
+
event.preventDefault();
|
|
10930
|
+
this.viewCompStatus = 'overpayment';
|
|
10931
|
+
};
|
|
10932
|
+
/**
|
|
10933
|
+
* @param {?=} note
|
|
10934
|
+
* @return {?}
|
|
10935
|
+
*/
|
|
10936
|
+
ServiceRequestComponent.prototype.gotoAddressPage = /**
|
|
10937
|
+
* @param {?=} note
|
|
10938
|
+
* @return {?}
|
|
10939
|
+
*/
|
|
10940
|
+
function (note) {
|
|
10941
|
+
if (note) {
|
|
10942
|
+
this.notification = { contact_details: note, notification_type: note.notification_type };
|
|
10943
|
+
}
|
|
10944
|
+
this.errorMessage = '';
|
|
10945
|
+
this.viewCompStatus = 'overPaymentAddressCapture';
|
|
10946
|
+
};
|
|
10947
|
+
/**
|
|
10948
|
+
* @return {?}
|
|
10949
|
+
*/
|
|
10950
|
+
ServiceRequestComponent.prototype.processRefund = /**
|
|
10951
|
+
* @return {?}
|
|
10952
|
+
*/
|
|
10953
|
+
function () {
|
|
10954
|
+
var _this = this;
|
|
10955
|
+
this.isConfirmationBtnDisabled = true;
|
|
10956
|
+
this.errorMessage = '';
|
|
10957
|
+
/** @type {?} */
|
|
10958
|
+
var obj = this.paymentGroup.fees[0];
|
|
10959
|
+
this.fees = [{ id: obj.id,
|
|
10960
|
+
code: obj.code,
|
|
10961
|
+
version: obj.version,
|
|
10962
|
+
apportion_amount: obj.apportion_amount,
|
|
10963
|
+
calculated_amount: obj.calculated_amount,
|
|
10964
|
+
updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,
|
|
10965
|
+
volume: obj.volume,
|
|
10966
|
+
refund_amount: this.getOverPaymentValue() }];
|
|
10967
|
+
/** @type {?} */
|
|
10968
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.paymentGroup.payments[0].reference, 'RR037', this.getOverPaymentValue());
|
|
10969
|
+
this.paymentViewService.postRefundsReason(requestBody).subscribe((/**
|
|
10970
|
+
* @param {?} response
|
|
10971
|
+
* @return {?}
|
|
10972
|
+
*/
|
|
10973
|
+
function (response) {
|
|
10974
|
+
if (JSON.parse(response)) {
|
|
10975
|
+
_this.viewCompStatus = '';
|
|
10976
|
+
_this.viewStatus = 'refundconfirmationpage';
|
|
10977
|
+
_this.refundReference = JSON.parse(response).refund_reference;
|
|
10978
|
+
_this.refundAmount = JSON.parse(response).refund_amount;
|
|
10979
|
+
}
|
|
10980
|
+
}), (/**
|
|
10981
|
+
* @param {?} error
|
|
10982
|
+
* @return {?}
|
|
10983
|
+
*/
|
|
10984
|
+
function (error) {
|
|
10985
|
+
_this.errorMessage = error;
|
|
10986
|
+
_this.isConfirmationBtnDisabled = false;
|
|
10987
|
+
_this.cd.detectChanges();
|
|
10988
|
+
}));
|
|
10989
|
+
};
|
|
10990
|
+
/**
|
|
10991
|
+
* @return {?}
|
|
10992
|
+
*/
|
|
10993
|
+
ServiceRequestComponent.prototype.getOverPaymentValue = /**
|
|
10994
|
+
* @return {?}
|
|
10995
|
+
*/
|
|
10996
|
+
function () {
|
|
10997
|
+
/** @type {?} */
|
|
10998
|
+
var feesOverPayment = 0;
|
|
10999
|
+
this.paymentGroup.fees.forEach((/**
|
|
11000
|
+
* @param {?} fee
|
|
11001
|
+
* @return {?}
|
|
11002
|
+
*/
|
|
11003
|
+
function (fee) {
|
|
11004
|
+
feesOverPayment += fee.over_payment;
|
|
11005
|
+
}));
|
|
11006
|
+
return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;
|
|
11007
|
+
};
|
|
9463
11008
|
ServiceRequestComponent.decorators = [
|
|
9464
11009
|
{ type: Component, args: [{
|
|
9465
11010
|
selector: 'ccpay-service-request',
|
|
9466
|
-
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",
|
|
11011
|
+
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>",
|
|
9467
11012
|
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%}"]
|
|
9468
11013
|
}] }
|
|
9469
11014
|
];
|
|
@@ -9472,6 +11017,7 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
9472
11017
|
{ type: PaymentLibComponent },
|
|
9473
11018
|
{ type: PaymentViewService },
|
|
9474
11019
|
{ type: OrderslistService },
|
|
11020
|
+
{ type: ChangeDetectorRef },
|
|
9475
11021
|
{ type: Router }
|
|
9476
11022
|
]; };
|
|
9477
11023
|
ServiceRequestComponent.propDecorators = {
|
|
@@ -9758,6 +11304,7 @@ var PaymentLibModule = /** @class */ (function () {
|
|
|
9758
11304
|
PaymentListComponent,
|
|
9759
11305
|
PaymentViewComponent,
|
|
9760
11306
|
PbaPaymentComponent,
|
|
11307
|
+
ContactDetailsComponent,
|
|
9761
11308
|
ProcessRefundComponent,
|
|
9762
11309
|
RefundListComponent,
|
|
9763
11310
|
CardDetailsComponent,
|
|
@@ -9803,6 +11350,6 @@ var PaymentLibModule = /** @class */ (function () {
|
|
|
9803
11350
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
9804
11351
|
*/
|
|
9805
11352
|
|
|
9806
|
-
export { PaymentLibService, PaymentLibComponent, PaymentLibModule, AddRemissionComponent as
|
|
11353
|
+
export { PaymentLibService, PaymentLibComponent, PaymentLibModule, AddRemissionComponent as ɵbd, AllocatePaymentsComponent as ɵy, CardDetailsComponent as ɵo, CaseTransactionsComponent as ɵbb, ContactDetailsComponent as ɵj, ErrorBannerComponent as ɵbk, FeeSummaryComponent as ɵbc, MarkUnidentifiedPaymentComponent as ɵt, MarkUnsolicitedPaymentComponent as ɵv, PageNotFoundComponent as ɵq, PaymentListComponent as ɵb, PaymentViewComponent as ɵf, PbaDetailsComponent as ɵba, PbaPaymentComponent as ɵi, ProcessRefundComponent as ɵl, ProcessedPaymentsComponent as ɵx, RefundListComponent as ɵn, RefundStatusComponent as ɵbm, ReportsComponent as ɵbi, ServiceRequestComponent as ɵbn, StatusHistoryComponent as ɵr, TableComponent as ɵbl, UnprocessedPaymentsComponent as ɵw, CapitalizePipe as ɵbf, CcdHyphensPipe as ɵbe, keyValuePipe as ɵbg, SanitizeHtmlPipe as ɵbh, BulkScaningPaymentService as ɵu, CardDetailsService as ɵp, CaseTransactionsService as ɵz, NotificationService as ɵk, OrderslistService as ɵa, PaymentListService as ɵc, PaymentViewService as ɵg, RefundsService as ɵm, ErrorHandlerService as ɵe, WebComponentHttpClient as ɵh, ConsoleLoggerService as ɵbo, LoggerService as ɵd, StatusHistoryService as ɵs, XlFileService as ɵbj };
|
|
9807
11354
|
|
|
9808
11355
|
//# sourceMappingURL=hmcts-ccpay-web-component.js.map
|